]> sigrok.org Git - pulseview.git/blobdiff - pv/view/header.h
Moved Signal and LogicSignal into pv::view
[pulseview.git] / pv / view / header.h
index 36b786c69268e85e23d65f5119e6d7c029c7269a..efc126e9aa36d305bba37a39dd11b10cd5ad10a3 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>
  *
  * 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 {
 namespace view {
 
+class Signal;
 class View;
 
 class Header : public QWidget
@@ -38,11 +41,29 @@ 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();
+
+       void on_action_set_colour_triggered();
+
 private:
        View &_view;
+
+       QPoint _mouse_point;
+
+       boost::shared_ptr<Signal> _context_signal;
+       QAction *_action_set_name;
+       QAction *_action_set_colour;
 };
 
 } // namespace view
 } // namespace pv
 
-#endif // PV_VIEW_HEADER_H
+#endif // PULSEVIEW_PV_VIEW_HEADER_H