X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fdecodetrace.h;h=9e0faace5847294090f617b6ffbdd26f80200e9e;hp=420961ad1c9f4d83a1d873f3740aac9cb6ce1d63;hb=c294543f8df3b3c90fa613c8198506aea68e91e7;hpb=ef40ad83ac7e2cb12b4ecfede4564ba3ef416905 diff --git a/pv/view/decodetrace.h b/pv/view/decodetrace.h index 420961ad..9e0faace 100644 --- a/pv/view/decodetrace.h +++ b/pv/view/decodetrace.h @@ -30,6 +30,7 @@ #include #include +#include struct srd_channel; struct srd_decoder; @@ -123,8 +124,7 @@ public: 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, + QColor text_colour, int text_height, int left, int right, int y, size_t base_colour) const; void draw_instant(const pv::data::decode::Annotation &a, QPainter &p, @@ -139,7 +139,32 @@ private: int left, int right); void draw_unresolved_period(QPainter &p, int h, int left, - int right, double samples_per_pixel, double pixels_offset); + int right) const; + + double get_pixels_offset() const; + + double get_samples_per_pixel() const; + + /** + * Determines the start and end sample for a given pixel range. + * @param x_start the X coordinate of the start sample in the view + * @param x_end the X coordinate of the end sample in the view + * @return Returns a pair containing the start sample and the end + * sample that correspond to the start and end coordinates. + */ + std::pair get_sample_range(int x_start, int x_end) const; + + bool hover_point_is_over_trace(); + + int get_row_at_hover_point(); + + const QString get_annotation_at_hover_point(); + + void show_hover_annotation(); + + void hide_hover_annotation(); + + void hover_point_changed(); void create_decoder_form(int index, std::shared_ptr &dec, @@ -179,7 +204,7 @@ private: std::list _channel_selectors; std::vector _decoder_forms; - std::vector _cur_row_headings; + std::vector _visible_rows; int _text_height, _row_height; QSignalMapper _delete_mapper, _show_hide_mapper;