X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fdecodesignal.h;h=22e0f3d07c02b31bd6b4bf75da4e212eb31b7a79;hb=a28a212c7a9a3470e300911fe8aa62833a62d26a;hp=31804589cc8f7041862dc9f2b22a69cbab319f04;hpb=01fd32630269c1cfb99eb2b0d6060d7d19a42475;p=pulseview.git diff --git a/pv/view/decodesignal.h b/pv/view/decodesignal.h index 3180458..22e0f3d 100644 --- a/pv/view/decodesignal.h +++ b/pv/view/decodesignal.h @@ -35,23 +35,36 @@ namespace view { class DecodeSignal : public Trace { + Q_OBJECT + +private: + static const QColor DecodeColours[4]; + public: DecodeSignal(pv::SigSession &session, - boost::shared_ptr decoder); - - void init_context_bar_actions(QWidget *parent); + boost::shared_ptr decoder, int index); bool enabled() const; + void set_view(pv::view::View *view); + + /** + * 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 trace with a QPainter + * 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(); + QMenu* create_context_menu(QWidget *parent); private: @@ -61,8 +74,15 @@ private: **/ int get_nominal_offset(const QRect &rect) const; +private slots: + void on_new_decode_data(); + + void on_delete(); + private: boost::shared_ptr _decoder; + + uint64_t _decode_start, _decode_end; }; } // namespace view