]> sigrok.org Git - pulseview.git/blame_incremental - pv/dialogs/connect.hpp
Connect dialog: Fix constructor initialization order
[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, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#ifndef PULSEVIEW_PV_CONNECT_HPP
22#define PULSEVIEW_PV_CONNECT_HPP
23
24#include <memory>
25
26#include <QComboBox>
27#include <QDialog>
28#include <QDialogButtonBox>
29#include <QFormLayout>
30#include <QHBoxLayout>
31#include <QLineEdit>
32#include <QSpinBox>
33#include <QListWidget>
34#include <QPushButton>
35#include <QVBoxLayout>
36
37namespace sigrok {
38class Driver;
39}
40
41namespace pv {
42namespace devices {
43class HardwareDevice;
44}
45}
46
47Q_DECLARE_METATYPE(std::shared_ptr<sigrok::Driver>);
48Q_DECLARE_METATYPE(std::shared_ptr<pv::devices::HardwareDevice>);
49
50namespace pv {
51
52class DeviceManager;
53
54namespace dialogs {
55
56class Connect : public QDialog
57{
58 Q_OBJECT
59
60public:
61 Connect(QWidget *parent, pv::DeviceManager &device_manager);
62
63 std::shared_ptr<devices::HardwareDevice> get_selected_device() const;
64
65private:
66 void populate_drivers();
67
68 void populate_serials(std::shared_ptr<sigrok::Driver> driver);
69
70 void unset_connection();
71
72 void set_serial_connection(std::shared_ptr<sigrok::Driver> driver);
73 void set_tcp_connection(std::shared_ptr<sigrok::Driver> driver);
74
75private Q_SLOTS:
76 void device_selected(int index);
77
78 void scan_pressed();
79
80private:
81 pv::DeviceManager &device_manager_;
82
83 QVBoxLayout layout_;
84
85 QWidget form_;
86 QFormLayout form_layout_;
87
88 QComboBox drivers_;
89
90 QComboBox serial_devices_;
91
92 QWidget tcp_endpoint_;
93 QHBoxLayout tcp_endpoint_layout_;
94 QLineEdit tcp_host_;
95 QSpinBox tcp_port_;
96
97 QPushButton scan_button_;
98 QListWidget device_list_;
99
100 QDialogButtonBox button_box_;
101};
102
103} // namespace dialogs
104} // namespace pv
105
106#endif // PULSEVIEW_PV_CONNECT_HPP