]> sigrok.org Git - pulseview.git/blame - pv/dialogs/connect.hpp
TraceView: Center traces more than once
[pulseview.git] / pv / dialogs / connect.hpp
CommitLineData
9663c82b
JH
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
9663c82b
JH
18 */
19
7a01bd36
JH
20#ifndef PULSEVIEW_PV_CONNECT_HPP
21#define PULSEVIEW_PV_CONNECT_HPP
9663c82b 22
f9abf97e 23#include <memory>
19adbc2c 24
1ebe875c 25#include <QCheckBox>
9663c82b
JH
26#include <QComboBox>
27#include <QDialog>
28#include <QDialogButtonBox>
29#include <QFormLayout>
26f209b7 30#include <QHBoxLayout>
9663c82b 31#include <QLineEdit>
26f209b7 32#include <QSpinBox>
c9de8b32
JH
33#include <QListWidget>
34#include <QPushButton>
9663c82b
JH
35#include <QVBoxLayout>
36
e8d00928 37namespace sigrok {
9894618a 38class Driver;
da30ecb7
JH
39}
40
41namespace pv {
42namespace devices {
9894618a 43class HardwareDevice;
e8d00928 44}
da30ecb7 45}
e8d00928
ML
46
47Q_DECLARE_METATYPE(std::shared_ptr<sigrok::Driver>);
da30ecb7 48Q_DECLARE_METATYPE(std::shared_ptr<pv::devices::HardwareDevice>);
c9de8b32 49
9663c82b 50namespace pv {
107ca6d3
JH
51
52class DeviceManager;
94574501 53
9663c82b
JH
54namespace dialogs {
55
56class Connect : public QDialog
57{
58 Q_OBJECT
59
60public:
107ca6d3 61 Connect(QWidget *parent, pv::DeviceManager &device_manager);
9663c82b 62
da30ecb7 63 std::shared_ptr<devices::HardwareDevice> get_selected_device() const;
5eb0fa13 64
9663c82b
JH
65private:
66 void populate_drivers();
67
34750abe
AJ
68 void populate_serials(std::shared_ptr<sigrok::Driver> driver);
69
c9de8b32
JH
70 void unset_connection();
71
e9213170 72private Q_SLOTS:
1ebe875c
SA
73 void driver_selected(int index);
74
75 void serial_toggled(bool checked);
76 void tcp_toggled(bool checked);
9663c82b 77
c9de8b32 78 void scan_pressed();
9663c82b 79
9663c82b 80private:
8dbbc7f0 81 pv::DeviceManager &device_manager_;
107ca6d3 82
8dbbc7f0 83 QVBoxLayout layout_;
9663c82b 84
8dbbc7f0
JH
85 QWidget form_;
86 QFormLayout form_layout_;
9663c82b 87
8dbbc7f0 88 QComboBox drivers_;
9663c82b 89
34750abe 90 QComboBox serial_devices_;
9663c82b 91
1ebe875c
SA
92 QWidget *tcp_config_;
93 QLineEdit *tcp_host_;
94 QSpinBox *tcp_port_;
95 QCheckBox *tcp_use_vxi_;
26f209b7 96
8dbbc7f0
JH
97 QPushButton scan_button_;
98 QListWidget device_list_;
c9de8b32 99
8dbbc7f0 100 QDialogButtonBox button_box_;
9663c82b
JH
101};
102
103} // namespace dialogs
104} // namespace pv
105
7a01bd36 106#endif // PULSEVIEW_PV_CONNECT_HPP