]> sigrok.org Git - pulseview.git/blob - pv/widgets/devicetoolbutton.hpp
cedf49e78386d58482e42b6ac98c439ab89c5b98
[pulseview.git] / pv / widgets / devicetoolbutton.hpp
1 /*
2  * This file is part of the PulseView project.
3  *
4  * Copyright (C) 2014 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_WIDGETS_DEVICETOOLBUTTON_HPP
21 #define PULSEVIEW_PV_WIDGETS_DEVICETOOLBUTTON_HPP
22
23 #include <list>
24 #include <memory>
25 #include <vector>
26
27 #include <QAction>
28 #include <QMenu>
29 #include <QSignalMapper>
30 #include <QToolButton>
31
32 struct srd_decoder;
33
34 namespace pv {
35
36 class DeviceManager;
37
38 namespace devices {
39 class Device;
40 }
41
42 namespace widgets {
43
44 class DeviceToolButton : public QToolButton
45 {
46         Q_OBJECT;
47
48 public:
49         /**
50          * Constructor
51          * @param parent the parent widget.
52          * @param device_manager the device manager.
53          * @param connect_action the connect-to-device action.
54          */
55         DeviceToolButton(QWidget *parent, DeviceManager &device_manager,
56                 QAction *connect_action);
57
58         /**
59          * Returns a reference to the selected device.
60          */
61         std::shared_ptr<devices::Device> selected_device();
62
63         /**
64          * Sets the current list of devices.
65          * @param device the list of devices.
66          * @param selected_device the currently active device.
67          */
68         void set_device_list(
69                 const std::list< std::shared_ptr<devices::Device> > &devices,
70                 std::shared_ptr<devices::Device> selected);
71
72         /**
73          * Sets the current device to "no device". Useful for when a selected
74          * device fails to open.
75          */
76         void reset();
77
78 private:
79         /**
80          * Repopulates the menu from the device list.
81          */
82         void update_device_list();
83
84 private Q_SLOTS:
85         void on_action(QObject *action);
86
87         void on_menu_hovered(QAction *action);
88
89         void on_menu_hover_timeout();
90
91 Q_SIGNALS:
92         void device_selected();
93
94 private:
95         DeviceManager &device_manager_;
96         QAction *const connect_action_;
97
98         QMenu menu_;
99         QSignalMapper mapper_;
100
101         std::shared_ptr<devices::Device> selected_device_;
102         std::vector< std::weak_ptr<devices::Device> > devices_;
103
104         QString device_tooltip_;
105 };
106
107 } // widgets
108 } // pv
109
110 #endif // PULSEVIEW_PV_WIDGETS_DEVICETOOLBUTTON_HPP