]> sigrok.org Git - pulseview.git/blame_incremental - pv/dialogs/connect.hpp
Session: Handle failing sigrok::Device::read_config() calls
[pulseview.git] / pv / dialogs / connect.hpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2012-2013 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PULSEVIEW_PV_CONNECT_HPP
21#define PULSEVIEW_PV_CONNECT_HPP
22
23#include <memory>
24
25#include <QCheckBox>
26#include <QComboBox>
27#include <QDialog>
28#include <QDialogButtonBox>
29#include <QFormLayout>
30#include <QHBoxLayout>
31#include <QLineEdit>
32#include <QListWidget>
33#include <QPushButton>
34#include <QSpinBox>
35#include <QVBoxLayout>
36
37using std::shared_ptr;
38
39namespace sigrok {
40class Driver;
41}
42
43namespace pv {
44namespace devices {
45class HardwareDevice;
46}
47}
48
49Q_DECLARE_METATYPE(shared_ptr<sigrok::Driver>);
50Q_DECLARE_METATYPE(shared_ptr<pv::devices::HardwareDevice>);
51
52namespace pv {
53
54class DeviceManager;
55
56namespace dialogs {
57
58class Connect : public QDialog
59{
60 Q_OBJECT
61
62public:
63 Connect(QWidget *parent, pv::DeviceManager &device_manager);
64
65 shared_ptr<devices::HardwareDevice> get_selected_device() const;
66
67private:
68 void populate_drivers();
69
70 void populate_serials(shared_ptr<sigrok::Driver> driver);
71
72 void unset_connection();
73
74private Q_SLOTS:
75 void driver_selected(int index);
76
77 void serial_toggled(bool checked);
78 void tcp_toggled(bool checked);
79
80 void scan_pressed();
81
82private:
83 pv::DeviceManager &device_manager_;
84
85 QVBoxLayout layout_;
86
87 QWidget form_;
88 QFormLayout form_layout_;
89
90 QComboBox drivers_;
91
92 QComboBox serial_devices_;
93
94 QWidget *tcp_config_;
95 QLineEdit *tcp_host_;
96 QSpinBox *tcp_port_;
97 QCheckBox *tcp_use_vxi_;
98
99 QPushButton scan_button_;
100 QListWidget device_list_;
101
102 QDialogButtonBox button_box_;
103};
104
105} // namespace dialogs
106} // namespace pv
107
108#endif // PULSEVIEW_PV_CONNECT_HPP