]> sigrok.org Git - pulseview.git/blame - pv/widgets/devicetoolbutton.hpp
TraceView: Fix variable name
[pulseview.git] / pv / widgets / devicetoolbutton.hpp
CommitLineData
079d39ea
JH
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
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
079d39ea
JH
18 */
19
7a01bd36
JH
20#ifndef PULSEVIEW_PV_WIDGETS_DEVICETOOLBUTTON_HPP
21#define PULSEVIEW_PV_WIDGETS_DEVICETOOLBUTTON_HPP
079d39ea
JH
22
23#include <list>
24#include <memory>
25#include <vector>
26
27#include <QAction>
28#include <QMenu>
29#include <QSignalMapper>
30#include <QToolButton>
31
32struct srd_decoder;
33
079d39ea
JH
34namespace pv {
35
36class DeviceManager;
37
da30ecb7
JH
38namespace devices {
39class Device;
40}
41
079d39ea
JH
42namespace widgets {
43
44class DeviceToolButton : public QToolButton
45{
46 Q_OBJECT;
47
48public:
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 */
da30ecb7 61 std::shared_ptr<devices::Device> selected_device();
079d39ea
JH
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(
da30ecb7
JH
69 const std::list< std::shared_ptr<devices::Device> > &devices,
70 std::shared_ptr<devices::Device> selected);
079d39ea 71
7e0c99bf
SA
72 /**
73 * Sets the current device to "no device". Useful for when a selected
74 * device fails to open.
75 */
76 void reset();
77
079d39ea
JH
78private:
79 /**
80 * Repopulates the menu from the device list.
81 */
82 void update_device_list();
83
84private Q_SLOTS:
85 void on_action(QObject *action);
86
1982c650
SA
87 void on_menu_hovered(QAction *action);
88
89 void on_menu_hover_timeout();
90
079d39ea
JH
91Q_SIGNALS:
92 void device_selected();
93
94private:
95 DeviceManager &device_manager_;
96 QAction *const connect_action_;
97
98 QMenu menu_;
99 QSignalMapper mapper_;
100
da30ecb7
JH
101 std::shared_ptr<devices::Device> selected_device_;
102 std::vector< std::weak_ptr<devices::Device> > devices_;
1982c650
SA
103
104 QString device_tooltip_;
079d39ea
JH
105};
106
107} // widgets
108} // pv
109
7a01bd36 110#endif // PULSEVIEW_PV_WIDGETS_DEVICETOOLBUTTON_HPP