]> sigrok.org Git - pulseview.git/blobdiff - pv/view/header.h
Added cursors
[pulseview.git] / pv / view / header.h
index f7979c6d2ea2f70b60263ed888971fe5d175bfe5..6b97c4af307df7b362e022262a9679d2cafe9bab 100644 (file)
  * 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 <boost/shared_ptr.hpp>
 
 #include <QWidget>
 
 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<pv::Signal> _context_signal;
+       QAction *_action_set_name;
 };
 
 } // namespace view
 } // namespace pv
 
-#endif // PV_VIEW_HEADER_H
+#endif // PULSEVIEW_PV_VIEW_HEADER_H