X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fdecodesignal.h;h=e95c982225f92e9e126d0c40b0850f5dbeaed1fd;hp=95459d68fd7da43faa97474610f94a6a89d0aa7b;hb=b6b267bba9d55d23fe5c3537e4785238d4377ad7;hpb=e0fc58100fbcd6c3bfd5aecb213d7541a3436622 diff --git a/pv/view/decodesignal.h b/pv/view/decodesignal.h index 95459d68..e95c9822 100644 --- a/pv/view/decodesignal.h +++ b/pv/view/decodesignal.h @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_DECODESIGNAL_H -#define PULSEVIEW_PV_DECODESIGNAL_H +#ifndef PULSEVIEW_PV_VIEW_DECODESIGNAL_H +#define PULSEVIEW_PV_VIEW_DECODESIGNAL_H #include "trace.h" @@ -37,25 +37,38 @@ 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; + const boost::shared_ptr& decoder() 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); + + QMenu* create_context_menu(QWidget *parent); - const std::list get_context_bar_actions(); + void delete_pressed(); private: @@ -65,6 +78,11 @@ private: **/ int get_nominal_offset(const QRect &rect) const; +private slots: + void on_new_decode_data(); + + void on_delete(); + private: boost::shared_ptr _decoder; @@ -74,4 +92,4 @@ private: } // namespace view } // namespace pv -#endif // PULSEVIEW_PV_DECODESIGNAL_H +#endif // PULSEVIEW_PV_VIEW_DECODESIGNAL_H