X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fdecodetrace.hpp;h=f56953209293532716cad294997482b4348dfa65;hp=eb011e74367df36951046beb5c582a8dd06ef8c1;hb=bb7dd726eb7159ddd80d94ede791f2e2a9eaef0f;hpb=f765c3db91d60e9b038ee05f2fa6acc8587d8470 diff --git a/pv/view/decodetrace.hpp b/pv/view/decodetrace.hpp index eb011e74..f5695320 100644 --- a/pv/view/decodetrace.hpp +++ b/pv/view/decodetrace.hpp @@ -31,6 +31,7 @@ #include #include +#include #include struct srd_channel; @@ -44,6 +45,7 @@ class Session; namespace data { class DecoderStack; +class SignalBase; namespace decode { class Annotation; @@ -84,14 +86,15 @@ private: static const QColor OutlineColours[16]; public: - DecodeTrace(pv::Session &session, - std::shared_ptr decoder_stack, + DecodeTrace(pv::Session &session, std::shared_ptr signalbase, int index); bool enabled() const; const std::shared_ptr& decoder() const; + std::shared_ptr base() const; + /** * Computes the vertical extents of the contents of this row item. * @return A pair containing the minimum and maximum y-values. @@ -131,10 +134,10 @@ private: size_t base_colour, int row_title_width); void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p, - int text_height, const ViewItemPaintParams &pp, int y, + int h, const ViewItemPaintParams &pp, int y, size_t base_colour, int row_title_width) const; - void draw_annotation_block(std::vector a, + void draw_annotation_block(std::vector annotations, QPainter &p, int h, int y, size_t base_colour) const; void draw_instant(const pv::data::decode::Annotation &a, QPainter &p, @@ -196,8 +199,9 @@ private Q_SLOTS: private: pv::Session &session_; - std::shared_ptr decoder_stack_; + std::shared_ptr signalbase_; + std::vector visible_rows_; uint64_t decode_start_, decode_end_; std::list< std::shared_ptr > @@ -206,10 +210,11 @@ private: std::list channel_selectors_; std::vector decoder_forms_; - std::vector visible_rows_; std::map row_title_widths_; int row_height_, max_visible_rows_; + int min_useful_label_width_; + QSignalMapper delete_mapper_, show_hide_mapper_; };