X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fheader.h;h=6b97c4af307df7b362e022262a9679d2cafe9bab;hb=3efda736308edc11468a4b59bdb28d5793902529;hp=f7979c6d2ea2f70b60263ed888971fe5d175bfe5;hpb=b3f22de060b73f15ad3eb2dabee04a0b4f5d947e;p=pulseview.git diff --git a/pv/view/header.h b/pv/view/header.h index f7979c6d..6b97c4af 100644 --- a/pv/view/header.h +++ b/pv/view/header.h @@ -18,12 +18,17 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PV_VIEW_HEADER_H -#define PV_VIEW_HEADER_H +#ifndef PULSEVIEW_PV_VIEW_HEADER_H +#define PULSEVIEW_PV_VIEW_HEADER_H + +#include #include namespace pv { + +class Signal; + namespace view { class View; @@ -38,11 +43,26 @@ public: private: void paintEvent(QPaintEvent *event); +private: + void mouseMoveEvent(QMouseEvent *event); + + void leaveEvent(QEvent *event); + + void contextMenuEvent(QContextMenuEvent *event); + +private slots: + void on_action_set_name_triggered(); + private: View &_view; + + QPoint _mouse_point; + + boost::shared_ptr _context_signal; + QAction *_action_set_name; }; } // namespace view } // namespace pv -#endif // PV_VIEW_HEADER_H +#endif // PULSEVIEW_PV_VIEW_HEADER_H