X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fdecodetrace.hpp;h=2705d3cf4a90c2fd3ca8b522900cb5bbc555ca81;hp=a0f8e8000cbf66e5dc3b2d4b277f75970ce68d0f;hb=752281db3591fe0eeb2590379b2055b8e05cd14f;hpb=ebdfa0942aeed7b314da24a2e572103a50d056bc diff --git a/pv/view/decodetrace.hpp b/pv/view/decodetrace.hpp index a0f8e800..2705d3cf 100644 --- a/pv/view/decodetrace.hpp +++ b/pv/view/decodetrace.hpp @@ -18,18 +18,19 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_VIEW_DECODETRACE_H -#define PULSEVIEW_PV_VIEW_DECODETRACE_H +#ifndef PULSEVIEW_PV_VIEW_DECODETRACE_HPP +#define PULSEVIEW_PV_VIEW_DECODETRACE_HPP #include "trace.hpp" #include #include #include +#include #include -#include +#include #include struct srd_channel; @@ -76,6 +77,7 @@ private: static const int ArrowSize; static const double EndCapWidth; + static const int RowTitleMargin; static const int DrawPadding; static const QColor Colours[16]; @@ -100,22 +102,22 @@ public: * Paints the background layer of the trace with a QPainter * @param p the QPainter to paint into. * @param pp the painting parameters object to paint with.. - **/ - void paint_back(QPainter &p, const RowItemPaintParams &pp); + */ + void paint_back(QPainter &p, const ViewItemPaintParams &pp); /** * Paints the mid-layer of the trace with a QPainter * @param p the QPainter to paint into. * @param pp the painting parameters object to paint with. - **/ - void paint_mid(QPainter &p, const RowItemPaintParams &pp); + */ + void paint_mid(QPainter &p, const ViewItemPaintParams &pp); /** * Paints the foreground layer of the trace with a QPainter * @param p the QPainter to paint into. * @param pp the painting parameters object to paint with. - **/ - void paint_fore(QPainter &p, const RowItemPaintParams &pp); + */ + void paint_fore(QPainter &p, const ViewItemPaintParams &pp); void populate_popup_form(QWidget *parent, QFormLayout *form); @@ -124,19 +126,26 @@ public: void delete_pressed(); private: + void draw_annotations(std::vector annotations, + QPainter &p, int h, const ViewItemPaintParams &pp, int y, + size_t base_colour, int row_title_width); + void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p, - int text_height, const RowItemPaintParams &pp, int y, - size_t base_colour) const; + int h, const ViewItemPaintParams &pp, int y, + size_t base_colour, int row_title_width) const; + + 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, - QColor fill, QColor outline, int h, double x, int y) const; + int h, double x, int y) const; void draw_range(const pv::data::decode::Annotation &a, QPainter &p, - QColor fill, QColor outline, int h, double start, - double end, int y) const; + int h, double start, double end, int y, const ViewItemPaintParams &pp, + int row_title_width) const; void draw_error(QPainter &p, const QString &message, - const RowItemPaintParams &pp); + const ViewItemPaintParams &pp); void draw_unresolved_period(QPainter &p, int h, int left, int right) const; @@ -191,14 +200,17 @@ private: uint64_t decode_start_, decode_end_; - std::list< std::shared_ptr > + std::list< std::shared_ptr > bindings_; std::list channel_selectors_; std::vector decoder_forms_; std::vector visible_rows_; - int text_height_, row_height_; + std::map row_title_widths_; + int row_height_, max_visible_rows_; + + int min_useful_label_width_; QSignalMapper delete_mapper_, show_hide_mapper_; }; @@ -206,4 +218,4 @@ private: } // namespace view } // namespace pv -#endif // PULSEVIEW_PV_VIEW_DECODETRACE_H +#endif // PULSEVIEW_PV_VIEW_DECODETRACE_HPP