]> sigrok.org Git - pulseview.git/blobdiff - pv/view/signal.h
Added Signal::populate_popup_form
[pulseview.git] / pv / view / signal.h
index 81576dd4d19a9ef0a56465a8146c1f70e206ab08..aff8c4c427498e54c6eb00dc94dfc05e4c3e4169 100644 (file)
@@ -22,7 +22,6 @@
 #define PULSEVIEW_PV_SIGNAL_H
 
 #include <QComboBox>
-#include <QPen>
 #include <QWidgetAction>
 
 #include <stdint.h>
@@ -43,13 +42,12 @@ class Signal : public Trace
 {
        Q_OBJECT
 
-private:
-       static const QPen SignalAxisPen;
-
 protected:
        Signal(pv::SigSession &session, const sr_probe *const probe);
 
 public:
+       virtual void init_context_bar_actions(QWidget *parent);
+
        /**
         * Sets the name of the signal.
         */
@@ -60,16 +58,10 @@ public:
         */
        bool enabled() const;
 
-protected:
+       const sr_probe* probe() const;
 
-       /**
-        * Paints a zero axis across the viewport.
-        * @param p the QPainter to paint into.
-        * @param y the y-offset of the axis.
-        * @param left the x-coordinate of the left edge of the view.
-        * @param right the x-coordinate of the right edge of the view.
-        */
-       void paint_axis(QPainter &p, int y, int left, int right);
+private:
+       virtual void populate_popup_form(QWidget *parent, QFormLayout *form);
 
 private slots:
        void on_text_changed(const QString &text);
@@ -77,8 +69,8 @@ private slots:
 protected:
        const sr_probe *const _probe;
 
-       QWidgetAction _name_action;
-       QComboBox _name_widget;
+       QWidgetAction *_name_action;
+       QComboBox *_name_widget;
        bool _updating_name_widget;
 };