X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=pv%2Fview%2Fdecodetrace.h;h=08558c98091af6668dca55c992df1784ee51c595;hb=83c23cc9fa0d4501d9e6b8759251fa6337f5d491;hp=2b964c196ad99fe51392639f4e47be046dc8f717;hpb=e563a7c0fd19cc3fd4ef114cf58dff249a33255f;p=pulseview.git diff --git a/pv/view/decodetrace.h b/pv/view/decodetrace.h index 2b964c19..08558c98 100644 --- a/pv/view/decodetrace.h +++ b/pv/view/decodetrace.h @@ -26,6 +26,8 @@ #include #include +#include + #include #include @@ -37,14 +39,22 @@ class QComboBox; namespace pv { +class SigSession; + namespace data { class DecoderStack; namespace decode { +class Annotation; class Decoder; +class Row; } } +namespace widgets { +class DecoderGroupBox; +} + namespace view { class DecodeTrace : public Trace @@ -62,6 +72,13 @@ private: private: static const QColor DecodeColours[4]; static const QColor ErrorBgColour; + static const QColor NoDecodeColour; + + static const double EndCapWidth; + static const int DrawPadding; + + static const QColor Colours[16]; + static const QColor OutlineColours[16]; public: DecodeTrace(pv::SigSession &session, @@ -97,10 +114,26 @@ public: void delete_pressed(); private: + void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p, + QColor text_colour, int text_height, int left, int right, + double samples_per_pixel, double pixels_offset, int y, + size_t base_colour) const; + + void draw_instant(const pv::data::decode::Annotation &a, QPainter &p, + QColor fill, QColor outline, QColor text_color, int h, double x, + int y) const; + + void draw_range(const pv::data::decode::Annotation &a, QPainter &p, + QColor fill, QColor outline, QColor text_color, int h, double start, + double end, int y) const; + void draw_error(QPainter &p, const QString &message, int left, int right); - void create_decoder_form( + void draw_unresolved_period(QPainter &p, int h, int left, + int right, double samples_per_pixel, double pixels_offset); + + void create_decoder_form(int index, boost::shared_ptr &dec, QWidget *parent, QFormLayout *form); @@ -122,7 +155,12 @@ private slots: void on_stack_decoder(srd_decoder *decoder); + void on_delete_decoder(int index); + + void on_show_hide_decoder(int index); + private: + pv::SigSession &_session; boost::shared_ptr _decoder_stack; uint64_t _decode_start, _decode_end; @@ -131,6 +169,9 @@ private: _bindings; std::list _probe_selectors; + std::vector _decoder_forms; + + QSignalMapper _delete_mapper, _show_hide_mapper; }; } // namespace view