Added a context menu for set name
[pulseview.git] / pv / view / header.h
index 36b786c69268e85e23d65f5119e6d7c029c7269a..a92d11737873806f61f3092858ee9afc1cf619c1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * This file is part of the sigrok project.
+ * This file is part of the PulseView project.
  *
  * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
  *
 #ifndef PV_VIEW_HEADER_H
 #define PV_VIEW_HEADER_H
 
+#include <boost/shared_ptr.hpp>
+
 #include <QWidget>
 
 namespace pv {
+
+class Signal;
+
 namespace view {
 
 class View;
@@ -38,8 +43,23 @@ 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<pv::Signal> _context_signal;
+       QAction *_action_set_name;
 };
 
 } // namespace view