X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fdecodesignal.h;h=271937b831d87410d202776f83bfd5c6bc0e0033;hp=31804589cc8f7041862dc9f2b22a69cbab319f04;hb=fe08b6e8a85c80ae738757f7d85aa38ef7c4bdc3;hpb=01fd32630269c1cfb99eb2b0d6060d7d19a42475 diff --git a/pv/view/decodesignal.h b/pv/view/decodesignal.h index 31804589..271937b8 100644 --- a/pv/view/decodesignal.h +++ b/pv/view/decodesignal.h @@ -35,6 +35,8 @@ namespace view { class DecodeSignal : public Trace { + Q_OBJECT + public: DecodeSignal(pv::SigSession &session, boost::shared_ptr decoder); @@ -43,13 +45,23 @@ public: bool enabled() const; + void set_view(pv::view::View *view); + /** - * Paints the trace with a QPainter + * Paints the background 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_back(QPainter &p, int left, int right); + + /** + * Paints the mid-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(QPainter &p, int left, int right); + void paint_mid(QPainter &p, int left, int right); const std::list get_context_bar_actions(); @@ -63,6 +75,8 @@ private: private: boost::shared_ptr _decoder; + + uint64_t _decode_start, _decode_end; }; } // namespace view