]> sigrok.org Git - pulseview.git/blobdiff - pv/view/signal.h
Added decoder stack item deletion
[pulseview.git] / pv / view / signal.h
index d55bcf1fe5205386ef8165be34b020232d496def..e5e919548be0679147730823eaf113785c3871fe 100644 (file)
@@ -18,8 +18,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-#ifndef PULSEVIEW_PV_SIGNAL_H
-#define PULSEVIEW_PV_SIGNAL_H
+#ifndef PULSEVIEW_PV_VIEW_SIGNAL_H
+#define PULSEVIEW_PV_VIEW_SIGNAL_H
 
 #include <QComboBox>
 #include <QWidgetAction>
@@ -43,11 +43,9 @@ class Signal : public Trace
        Q_OBJECT
 
 protected:
-       Signal(pv::SigSession &session, const sr_probe *const probe);
+       Signal(pv::SigSession &session, sr_probe *const probe);
 
 public:
-       virtual void init_context_bar_actions(QWidget *parent);
-
        /**
         * Sets the name of the signal.
         */
@@ -58,15 +56,22 @@ public:
         */
        bool enabled() const;
 
+       void enable(bool enable = true);
+
        const sr_probe* probe() const;
 
+       virtual void populate_popup_form(QWidget *parent, QFormLayout *form);
+
+       QMenu* create_context_menu(QWidget *parent);
+
+       void delete_pressed();
+
 private slots:
-       void on_text_changed(const QString &text);
+       void on_disable();
 
 protected:
-       const sr_probe *const _probe;
+       sr_probe *const _probe;
 
-       QWidgetAction *_name_action;
        QComboBox *_name_widget;
        bool _updating_name_widget;
 };
@@ -74,4 +79,4 @@ protected:
 } // namespace view
 } // namespace pv
 
-#endif // PULSEVIEW_PV_SIGNAL_H
+#endif // PULSEVIEW_PV_VIEW_SIGNAL_H