]> sigrok.org Git - pulseview.git/blame - pv/dialogs/connect.hpp
Build: Use -dirty version suffix for local changes
[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
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
7a01bd36
JH
21#ifndef PULSEVIEW_PV_CONNECT_HPP
22#define PULSEVIEW_PV_CONNECT_HPP
9663c82b 23
f9abf97e 24#include <memory>
19adbc2c 25
9663c82b
JH
26#include <QComboBox>
27#include <QDialog>
28#include <QDialogButtonBox>
29#include <QFormLayout>
30#include <QLineEdit>
c9de8b32
JH
31#include <QListWidget>
32#include <QPushButton>
9663c82b
JH
33#include <QVBoxLayout>
34
e8d00928 35namespace sigrok {
9894618a 36class Driver;
da30ecb7
JH
37}
38
39namespace pv {
40namespace devices {
9894618a 41class HardwareDevice;
e8d00928 42}
da30ecb7 43}
e8d00928
ML
44
45Q_DECLARE_METATYPE(std::shared_ptr<sigrok::Driver>);
da30ecb7 46Q_DECLARE_METATYPE(std::shared_ptr<pv::devices::HardwareDevice>);
c9de8b32 47
9663c82b 48namespace pv {
107ca6d3
JH
49
50class DeviceManager;
94574501 51
9663c82b
JH
52namespace dialogs {
53
54class Connect : public QDialog
55{
56 Q_OBJECT
57
58public:
107ca6d3 59 Connect(QWidget *parent, pv::DeviceManager &device_manager);
9663c82b 60
da30ecb7 61 std::shared_ptr<devices::HardwareDevice> get_selected_device() const;
5eb0fa13 62
9663c82b
JH
63private:
64 void populate_drivers();
65
34750abe
AJ
66 void populate_serials(std::shared_ptr<sigrok::Driver> driver);
67
c9de8b32
JH
68 void unset_connection();
69
34750abe 70 void set_serial_connection(std::shared_ptr<sigrok::Driver> driver);
c9de8b32 71
e9213170 72private Q_SLOTS:
9663c82b
JH
73 void device_selected(int index);
74
c9de8b32 75 void scan_pressed();
9663c82b 76
9663c82b 77private:
8dbbc7f0 78 pv::DeviceManager &device_manager_;
107ca6d3 79
8dbbc7f0 80 QVBoxLayout layout_;
9663c82b 81
8dbbc7f0
JH
82 QWidget form_;
83 QFormLayout form_layout_;
9663c82b 84
8dbbc7f0 85 QComboBox drivers_;
9663c82b 86
34750abe 87 QComboBox serial_devices_;
9663c82b 88
8dbbc7f0
JH
89 QPushButton scan_button_;
90 QListWidget device_list_;
c9de8b32 91
8dbbc7f0 92 QDialogButtonBox button_box_;
9663c82b
JH
93};
94
95} // namespace dialogs
96} // namespace pv
97
7a01bd36 98#endif // PULSEVIEW_PV_CONNECT_HPP