X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fdecodetrace.h;h=642f2a0ed4394cec7d2c90f67548f4d027e0396b;hp=6f7182f4ebd618f583cc6972b4f8d38b191218cb;hb=88908838c9682423c83da4cf1ab07e3aa43fc47e;hpb=b93295580db08d9008b9c9e49a3a3a86ef562f14 diff --git a/pv/view/decodetrace.h b/pv/view/decodetrace.h index 6f7182f4..642f2a0e 100644 --- a/pv/view/decodetrace.h +++ b/pv/view/decodetrace.h @@ -23,20 +23,36 @@ #include "trace.h" +#include #include +#include + #include #include struct srd_probe; +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,17 +61,34 @@ class DecodeTrace : public Trace { Q_OBJECT +private: + struct ProbeSelector + { + const QComboBox *_combo; + const boost::shared_ptr _decoder; + const srd_probe *_probe; + }; + 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); + boost::shared_ptr decoder_stack, + int index); bool enabled() const; - const boost::shared_ptr& decoder() const; + const boost::shared_ptr& decoder() const; void set_view(pv::view::View *view); @@ -75,6 +108,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,11 +123,35 @@ 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, + double samples_per_pixel, double pixels_offset, 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, double samples_per_pixel, double pixels_offset); + + void create_decoder_form(int index, + boost::shared_ptr &dec, + QWidget *parent, QFormLayout *form); + + QComboBox* create_probe_selector(QWidget *parent, + const boost::shared_ptr &dec, + const srd_probe *const probe); + + void commit_decoder_probes( + boost::shared_ptr &dec); void commit_probes(); @@ -97,14 +162,27 @@ private slots: void on_probe_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; + boost::shared_ptr _decoder_stack; uint64_t _decode_start, _decode_end; - pv::prop::binding::DecoderOptions _binding; + std::list< boost::shared_ptr > + _bindings; + + std::list _probe_selectors; + std::vector _decoder_forms; + + std::vector _cur_row_headings; - std::map _probe_selector_map; + QSignalMapper _delete_mapper, _show_hide_mapper; }; } // namespace view