PulseView  unreleased development snapshot
A Qt-based sigrok GUI
connect.hpp
Go to the documentation of this file.
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_DIALOGS_CONNECT_HPP
21 #define PULSEVIEW_PV_DIALOGS_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 
37 using std::shared_ptr;
38 
39 namespace sigrok {
40 class Driver;
41 }
42 
43 namespace pv {
44 namespace devices {
45 class HardwareDevice;
46 }
47 }
48 
49 Q_DECLARE_METATYPE(shared_ptr<sigrok::Driver>);
50 Q_DECLARE_METATYPE(shared_ptr<pv::devices::HardwareDevice>);
51 
52 namespace pv {
53 
54 class DeviceManager;
55 
56 namespace dialogs {
57 
58 class Connect : public QDialog
59 {
60  Q_OBJECT
61 
62 public:
63  Connect(QWidget *parent, pv::DeviceManager &device_manager);
64 
65  shared_ptr<devices::HardwareDevice> get_selected_device() const;
66 
67 private:
68  void populate_drivers();
69 
70  void populate_serials(shared_ptr<sigrok::Driver> driver);
71 
72  void unset_connection();
73 
74 private 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 
82 private:
84 
85  QVBoxLayout layout_;
86 
87  QWidget form_;
88  QFormLayout form_layout_;
89 
90  QComboBox drivers_;
91 
92  QWidget *serial_config_;
93  QComboBox serial_devices_, serial_baudrate_;
94 
95  QWidget *tcp_config_;
96  QLineEdit *tcp_host_;
97  QSpinBox *tcp_port_;
98  QComboBox *tcp_protocol_;
99 
100  QPushButton scan_button_;
101  QListWidget device_list_;
102 
103  QDialogButtonBox button_box_;
104 };
105 
106 } // namespace dialogs
107 } // namespace pv
108 
109 #endif // PULSEVIEW_PV_DIALOGS_CONNECT_HPP
QLineEdit * tcp_host_
Definition: connect.hpp:96
QVBoxLayout layout_
Definition: connect.hpp:85
QListWidget device_list_
Definition: connect.hpp:101
QFormLayout form_layout_
Definition: connect.hpp:88
QWidget * serial_config_
Definition: connect.hpp:92
pv::DeviceManager & device_manager_
Definition: connect.hpp:83
QSpinBox * tcp_port_
Definition: connect.hpp:97
QWidget * tcp_config_
Definition: connect.hpp:95
QComboBox drivers_
Definition: connect.hpp:90
Q_DECLARE_METATYPE(shared_ptr< sigrok::Driver >)
QComboBox serial_devices_
Definition: connect.hpp:93
QDialogButtonBox button_box_
Definition: connect.hpp:103
QPushButton scan_button_
Definition: connect.hpp:100
QComboBox * tcp_protocol_
Definition: connect.hpp:98