]> sigrok.org Git - pulseview.git/blobdiff - pv/view/decodesignal.h
Removed context bar
[pulseview.git] / pv / view / decodesignal.h
index 271937b831d87410d202776f83bfd5c6bc0e0033..22e0f3d07c02b31bd6b4bf75da4e212eb31b7a79 100644 (file)
@@ -37,11 +37,12 @@ class DecodeSignal : public Trace
 {
        Q_OBJECT
 
+private:
+       static const QColor DecodeColours[4];
+
 public:
        DecodeSignal(pv::SigSession &session,
-               boost::shared_ptr<pv::data::Decoder> decoder);
-
-       void init_context_bar_actions(QWidget *parent);
+               boost::shared_ptr<pv::data::Decoder> decoder, int index);
 
        bool enabled() const;
 
@@ -63,7 +64,7 @@ public:
         **/
        void paint_mid(QPainter &p, int left, int right);
 
-       const std::list<QAction*> get_context_bar_actions();
+       QMenu* create_context_menu(QWidget *parent);
 
 private:
 
@@ -73,6 +74,11 @@ private:
         **/
        int get_nominal_offset(const QRect &rect) const;
 
+private slots:
+       void on_new_decode_data();
+
+       void on_delete();
+
 private:
        boost::shared_ptr<pv::data::Decoder> _decoder;