X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fdecodetrace.h;h=08558c98091af6668dca55c992df1784ee51c595;hb=83c23cc9fa0d4501d9e6b8759251fa6337f5d491;hp=02ea023bf87e5f6f697a3c9958846099b80605e3;hpb=5dfeb70fc60f1c4752697d8ad6f80e1415213197;p=pulseview.git diff --git a/pv/view/decodetrace.h b/pv/view/decodetrace.h index 02ea023..08558c9 100644 --- a/pv/view/decodetrace.h +++ b/pv/view/decodetrace.h @@ -39,12 +39,20 @@ class QComboBox; namespace pv { +class SigSession; + namespace data { class DecoderStack; namespace decode { +class Annotation; class Decoder; +class Row; +} } + +namespace widgets { +class DecoderGroupBox; } namespace view { @@ -66,6 +74,12 @@ private: 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, boost::shared_ptr decoder_stack, @@ -100,6 +114,19 @@ 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); @@ -130,7 +157,10 @@ private slots: 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; @@ -139,8 +169,9 @@ private: _bindings; std::list _probe_selectors; + std::vector _decoder_forms; - QSignalMapper _delete_mapper; + QSignalMapper _delete_mapper, _show_hide_mapper; }; } // namespace view