X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fdecodetrace.cpp;h=dd39b321b9d789208d1e341dec55260e67efd181;hp=61f67b9eb584ca424786e59c753b0354fb4e1216;hb=796e136093befc76f6c223afff1c1221182cf5dd;hpb=f3697d314410ef2ce0ab8f53b11f7a9912c7b0cd diff --git a/pv/view/decodetrace.cpp b/pv/view/decodetrace.cpp index 61f67b9e..dd39b321 100644 --- a/pv/view/decodetrace.cpp +++ b/pv/view/decodetrace.cpp @@ -160,10 +160,10 @@ const std::shared_ptr& DecodeTrace::decoder() const pair DecodeTrace::v_extents() const { - /// @todo Replace this with an implementation that knows the true - /// height of the trace const int row_height = (ViewItemPaintParams::text_height() * 6) / 4; - return make_pair(-row_height / 2, row_height * 7 / 2); + const int rows = visible_rows_.size(); + + return make_pair(-row_height, row_height * rows); } void DecodeTrace::paint_back(QPainter &p, const ViewItemPaintParams &pp) @@ -211,9 +211,9 @@ void DecodeTrace::paint_mid(QPainter &p, const ViewItemPaintParams &pp) decoder_stack_->get_annotation_subset(annotations, row, sample_range.first, sample_range.second); if (!annotations.empty()) { - for (const Annotation &a : annotations) - draw_annotation(a, p, annotation_height, - pp, y, base_colour); + draw_annotations(annotations, p, annotation_height, pp, y, + base_colour); + y += row_height_; visible_rows_.push_back(rows[i]); @@ -327,6 +327,48 @@ QMenu* DecodeTrace::create_context_menu(QWidget *parent) return menu; } +void DecodeTrace::draw_annotations(vector annotations, + QPainter &p, int h, const ViewItemPaintParams &pp, int y, + size_t base_colour) +{ + using namespace pv::data::decode; + + vector a_block; + int prev_ann_pos = INT_MIN; + + double samples_per_pixel, pixels_offset; + tie(pixels_offset, samples_per_pixel) = + get_pixels_offset_samples_per_pixel(); + + // Gather all annotations that form a visual "block" and draw them as such + for (const Annotation &a : annotations) { + + const int end = a.end_sample() / samples_per_pixel - pixels_offset; + const int delta = end - prev_ann_pos; + + // Some annotations are in reverse order, so we cannot + // simply check for delta > 1 + if (abs(delta) > 1) { + // Block was broken, draw it + if (a_block.size() == 1) + draw_annotation(a_block.front(), p, h, pp, y, base_colour); + else + if (a_block.size() > 0) + draw_annotation_block(a_block, p, h, pp, y, base_colour); + + a_block.clear(); + } + + a_block.push_back(a); + prev_ann_pos = end; + } + + if (a_block.size() == 1) + draw_annotation(a_block.front(), p, h, pp, y, base_colour); + else + draw_annotation_block(a_block, p, h, pp, y, base_colour); +} + void DecodeTrace::draw_annotation(const pv::data::decode::Annotation &a, QPainter &p, int h, const ViewItemPaintParams &pp, int y, size_t base_colour) const @@ -353,6 +395,33 @@ void DecodeTrace::draw_annotation(const pv::data::decode::Annotation &a, draw_range(a, p, fill, outline, h, start, end, y); } +void DecodeTrace::draw_annotation_block(vector a, + QPainter &p, int h, const ViewItemPaintParams &pp, int y, + size_t base_colour) const +{ + double samples_per_pixel, pixels_offset; + tie(pixels_offset, samples_per_pixel) = + get_pixels_offset_samples_per_pixel(); + + const size_t colour = + (base_colour + a.front().format()) % countof(Colours); + + const int start = a.front().start_sample() / samples_per_pixel - + pixels_offset; + const int end = a.back().end_sample() / samples_per_pixel - + pixels_offset; + + const QRectF rect( + std::max(pp.left(), start), + y - h/2 + 0.5, + std::min(pp.right(), end) - std::max(pp.left(), start) + 1, + h); + + p.setPen(OutlineColours[colour]); + p.setBrush(Colours[colour]); + p.drawRect(rect); +} + void DecodeTrace::draw_instant(const pv::data::decode::Annotation &a, QPainter &p, QColor fill, QColor outline, int h, double x, int y) const {