X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fwidgets%2Fdevicetoolbutton.hpp;h=ed69a4b64a4ef1b0209daf004f2192117a9af8c6;hb=f32905530347e1020d5ce7959123cf797c9a4829;hp=1fb0a54486057cbcd776b3f782580d54f416ea43;hpb=079d39ea735015597a65390e4c5cacc7d272f78c;p=pulseview.git diff --git a/pv/widgets/devicetoolbutton.hpp b/pv/widgets/devicetoolbutton.hpp index 1fb0a54..ed69a4b 100644 --- a/pv/widgets/devicetoolbutton.hpp +++ b/pv/widgets/devicetoolbutton.hpp @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_WIDGETS_DEVICETOOLBUTTON_H -#define PULSEVIEW_PV_WIDGETS_DEVICETOOLBUTTON_H +#ifndef PULSEVIEW_PV_WIDGETS_DEVICETOOLBUTTON_HPP +#define PULSEVIEW_PV_WIDGETS_DEVICETOOLBUTTON_HPP #include #include @@ -32,14 +32,14 @@ struct srd_decoder; -namespace sigrok { -class Device; -} - namespace pv { class DeviceManager; +namespace devices { +class Device; +} + namespace widgets { class DeviceToolButton : public QToolButton @@ -59,7 +59,7 @@ public: /** * Returns a reference to the selected device. */ - std::shared_ptr selected_device(); + std::shared_ptr selected_device(); /** * Sets the current list of devices. @@ -67,8 +67,8 @@ public: * @param selected_device the currently active device. */ void set_device_list( - const std::list< std::shared_ptr > &devices, - std::shared_ptr selected); + const std::list< std::shared_ptr > &devices, + std::shared_ptr selected); private: /** @@ -79,6 +79,10 @@ private: private Q_SLOTS: void on_action(QObject *action); + void on_menu_hovered(QAction *action); + + void on_menu_hover_timeout(); + Q_SIGNALS: void device_selected(); @@ -89,11 +93,13 @@ private: QMenu menu_; QSignalMapper mapper_; - std::shared_ptr selected_device_; - std::vector< std::weak_ptr > devices_; + std::shared_ptr selected_device_; + std::vector< std::weak_ptr > devices_; + + QString device_tooltip_; }; } // widgets } // pv -#endif // PULSEVIEW_PV_WIDGETS_DEVICETOOLBUTTON_H +#endif // PULSEVIEW_PV_WIDGETS_DEVICETOOLBUTTON_HPP