X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fdecodetrace.h;h=9704f69a0d4b73e44ac94b7b1a151220ca67ad95;hb=8dbbc7f0b9ea59d0f0d62225772f8a56eee125f5;hp=6f7182f4ebd618f583cc6972b4f8d38b191218cb;hpb=b93295580db08d9008b9c9e49a3a3a86ef562f14;p=pulseview.git diff --git a/pv/view/decodetrace.h b/pv/view/decodetrace.h index 6f7182f..9704f69 100644 --- a/pv/view/decodetrace.h +++ b/pv/view/decodetrace.h @@ -23,20 +23,36 @@ #include "trace.h" +#include #include +#include -#include +#include #include +#include -struct srd_probe; +struct srd_channel; +struct srd_decoder; class QComboBox; namespace pv { +class SigSession; + namespace data { +class DecoderStack; + +namespace decode { +class Annotation; class Decoder; +class Row; +} +} + +namespace widgets { +class DecoderGroupBox; } namespace view { @@ -45,19 +61,40 @@ class DecodeTrace : public Trace { Q_OBJECT +private: + struct ChannelSelector + { + const QComboBox *combo_; + const std::shared_ptr decoder_; + const srd_channel *pdch_; + }; + private: static const QColor DecodeColours[4]; static const QColor ErrorBgColour; + static const QColor NoDecodeColour; + + static const int ArrowSize; + static const double EndCapWidth; + static const int DrawPadding; + + static const QColor Colours[16]; + static const QColor OutlineColours[16]; public: DecodeTrace(pv::SigSession &session, - boost::shared_ptr decoder, int index); + std::shared_ptr decoder_stack, + int index); bool enabled() const; - const boost::shared_ptr& decoder() const; + const std::shared_ptr& decoder() const; - void set_view(pv::view::View *view); + /** + * Computes the vertical extents of the contents of this row item. + * @return A pair containing the minimum and maximum y-values. + */ + std::pair v_extents() const; /** * Paints the background layer of the trace with a QPainter @@ -75,6 +112,14 @@ public: **/ void paint_mid(QPainter &p, int left, int right); + /** + * Paints the foreground layer of the trace with a QPainter + * @param p the QPainter to paint into. + * @param left the x-coordinate of the left edge of the signal + * @param right the x-coordinate of the right edge of the signal + **/ + void paint_fore(QPainter &p, int left, int right); + void populate_popup_form(QWidget *parent, QFormLayout *form); QMenu* create_context_menu(QWidget *parent); @@ -82,29 +127,86 @@ public: void delete_pressed(); private: + void draw_annotation(const pv::data::decode::Annotation &a, QPainter &p, + 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, + QColor fill, QColor outline, QColor text_color, int h, double x, + int y) const; + + void draw_range(const pv::data::decode::Annotation &a, QPainter &p, + QColor fill, QColor outline, QColor text_color, int h, double start, + double end, int y) const; + void draw_error(QPainter &p, const QString &message, int left, int right); - QComboBox* create_probe_selector( - QWidget *parent, const srd_probe *const probe); + void draw_unresolved_period(QPainter &p, int h, int left, + 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, + std::shared_ptr &dec, + QWidget *parent, QFormLayout *form); + + QComboBox* create_channel_selector(QWidget *parent, + const std::shared_ptr &dec, + const srd_channel *const pdch); - void commit_probes(); + void commit_decoder_channels( + std::shared_ptr &dec); -private slots: + void commit_channels(); + +public: + void hover_point_changed(); + +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); + + void on_delete_decoder(int index); + + void on_show_hide_decoder(int index); private: - boost::shared_ptr _decoder; + pv::SigSession &session_; + std::shared_ptr decoder_stack_; + + uint64_t decode_start_, decode_end_; + + std::list< std::shared_ptr > + bindings_; - uint64_t _decode_start, _decode_end; + std::list channel_selectors_; + std::vector decoder_forms_; - pv::prop::binding::DecoderOptions _binding; + std::vector visible_rows_; + int text_height_, row_height_; - std::map _probe_selector_map; + QSignalMapper delete_mapper_, show_hide_mapper_; }; } // namespace view