]> sigrok.org Git - pulseview.git/blobdiff - pv/view/decodetrace.h
Rename 'probe' to 'channel' (libsigrokdecode change).
[pulseview.git] / pv / view / decodetrace.h
index 08558c98091af6668dca55c992df1784ee51c595..9a991fcb436c63596fb3c2d3cedd9fff4b7a3aa3 100644 (file)
@@ -32,7 +32,7 @@
 
 #include <pv/prop/binding/decoderoptions.h>
 
-struct srd_probe;
+struct srd_channel;
 struct srd_decoder;
 
 class QComboBox;
@@ -66,7 +66,7 @@ private:
        {
                const QComboBox *_combo;
                const boost::shared_ptr<pv::data::decode::Decoder> _decoder;
-               const srd_probe *_probe;
+               const srd_channel *_pdch;
        };
 
 private:
@@ -74,6 +74,7 @@ private:
        static const QColor ErrorBgColour;
        static const QColor NoDecodeColour;
 
+       static const int ArrowSize;
        static const double EndCapWidth;
        static const int DrawPadding;
 
@@ -107,6 +108,14 @@ public:
         **/
        void paint_mid(QPainter &p, int left, int right);
 
+       /**
+        * Paints the foreground layer of the trace with a QPainter
+        * @param p the QPainter to paint into.
+        * @param left the x-coordinate of the left edge of the signal
+        * @param right the x-coordinate of the right edge of the signal
+        **/
+       void paint_fore(QPainter &p, int left, int right);
+
        void populate_popup_form(QWidget *parent, QFormLayout *form);
 
        QMenu* create_context_menu(QWidget *parent);
@@ -139,7 +148,7 @@ private:
 
        QComboBox* create_probe_selector(QWidget *parent,
                const boost::shared_ptr<pv::data::decode::Decoder> &dec,
-               const srd_probe *const probe);
+               const srd_channel *const pdch);
 
        void commit_decoder_probes(
                boost::shared_ptr<data::decode::Decoder> &dec);
@@ -171,6 +180,8 @@ private:
        std::list<ProbeSelector> _probe_selectors;
        std::vector<pv::widgets::DecoderGroupBox*> _decoder_forms;
 
+       std::vector<QString> _cur_row_headings;
+
        QSignalMapper _delete_mapper, _show_hide_mapper;
 };