X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fdecodetrace.h;h=ab495fa06f156ff5763d2896db2a215c0a8e1202;hb=1ef49ddd04f44a4369403fbab19ed235483e2975;hp=9a991fcb436c63596fb3c2d3cedd9fff4b7a3aa3;hpb=8bd26d8b9c831b509ee3241ea4dac6f50c023622;p=pulseview.git diff --git a/pv/view/decodetrace.h b/pv/view/decodetrace.h index 9a991fcb..ab495fa0 100644 --- a/pv/view/decodetrace.h +++ b/pv/view/decodetrace.h @@ -25,12 +25,12 @@ #include #include +#include #include -#include - #include +#include struct srd_channel; struct srd_decoder; @@ -62,10 +62,10 @@ class DecodeTrace : public Trace Q_OBJECT private: - struct ProbeSelector + struct ChannelSelector { const QComboBox *_combo; - const boost::shared_ptr _decoder; + const std::shared_ptr _decoder; const srd_channel *_pdch; }; @@ -83,14 +83,12 @@ private: public: DecodeTrace(pv::SigSession &session, - boost::shared_ptr decoder_stack, + std::shared_ptr decoder_stack, int index); bool enabled() const; - const boost::shared_ptr& decoder() const; - - void set_view(pv::view::View *view); + const std::shared_ptr& decoder() const; /** * Paints the background layer of the trace with a QPainter @@ -124,8 +122,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, @@ -140,27 +137,47 @@ 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; + + std::pair get_pixels_offset_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; + + int get_row_at_point(const QPoint &point); + + const QString get_annotation_at_point(const QPoint &point); + + void hide_hover_annotation(); void create_decoder_form(int index, - boost::shared_ptr &dec, + std::shared_ptr &dec, QWidget *parent, QFormLayout *form); - QComboBox* create_probe_selector(QWidget *parent, - const boost::shared_ptr &dec, + QComboBox* create_channel_selector(QWidget *parent, + const std::shared_ptr &dec, const srd_channel *const pdch); - void commit_decoder_probes( - boost::shared_ptr &dec); + void commit_decoder_channels( + std::shared_ptr &dec); - void commit_probes(); + void commit_channels(); + +public: + void hover_point_changed(); -private slots: +private Q_SLOTS: void on_new_decode_data(); void on_delete(); - void on_probe_selected(int); + void on_channel_selected(int); void on_stack_decoder(srd_decoder *decoder); @@ -170,17 +187,18 @@ private slots: private: pv::SigSession &_session; - boost::shared_ptr _decoder_stack; + std::shared_ptr _decoder_stack; uint64_t _decode_start, _decode_end; - std::list< boost::shared_ptr > + std::list< std::shared_ptr > _bindings; - std::list _probe_selectors; + 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; };