X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fdecodetrace.h;h=9a991fcb436c63596fb3c2d3cedd9fff4b7a3aa3;hb=8bd26d8b9c831b509ee3241ea4dac6f50c023622;hp=cd8a82d667f83b24cc5a123a9592cbe0f1399ec0;hpb=287d607f16c890e33355337436f182205baf466c;p=pulseview.git diff --git a/pv/view/decodetrace.h b/pv/view/decodetrace.h index cd8a82d6..9a991fcb 100644 --- a/pv/view/decodetrace.h +++ b/pv/view/decodetrace.h @@ -32,13 +32,15 @@ #include -struct srd_probe; +struct srd_channel; struct srd_decoder; class QComboBox; namespace pv { +class SigSession; + namespace data { class DecoderStack; @@ -64,7 +66,7 @@ private: { const QComboBox *_combo; const boost::shared_ptr _decoder; - const srd_probe *_probe; + const srd_channel *_pdch; }; private: @@ -72,6 +74,7 @@ private: static const QColor ErrorBgColour; static const QColor NoDecodeColour; + static const int ArrowSize; static const double EndCapWidth; static const int DrawPadding; @@ -105,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); @@ -137,7 +148,7 @@ private: QComboBox* create_probe_selector(QWidget *parent, const boost::shared_ptr &dec, - const srd_probe *const probe); + const srd_channel *const pdch); void commit_decoder_probes( boost::shared_ptr &dec); @@ -158,6 +169,7 @@ private slots: void on_show_hide_decoder(int index); private: + pv::SigSession &_session; boost::shared_ptr _decoder_stack; uint64_t _decode_start, _decode_end; @@ -168,6 +180,8 @@ private: std::list _probe_selectors; std::vector _decoder_forms; + std::vector _cur_row_headings; + QSignalMapper _delete_mapper, _show_hide_mapper; };