X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fdecoder.hpp;h=2c4337478135fdc40d63c82c63316a59617f188e;hb=999869aa676f7077b7181355eee28e9b025d4cea;hp=b7ef608033b8d84a4a60217f455e30c26e107b2f;hpb=a82325d16a1412f3474423fa3fa56bb85af1fb00;p=pulseview.git diff --git a/pv/data/decode/decoder.hpp b/pv/data/decode/decoder.hpp index b7ef6080..2c433747 100644 --- a/pv/data/decode/decoder.hpp +++ b/pv/data/decode/decoder.hpp @@ -20,6 +20,7 @@ #ifndef PULSEVIEW_PV_DATA_DECODE_DECODER_HPP #define PULSEVIEW_PV_DATA_DECODE_DECODER_HPP +#include #include #include #include @@ -27,8 +28,12 @@ #include +#include + #include +#include +using std::deque; using std::map; using std::string; using std::vector; @@ -49,6 +54,29 @@ namespace decode { class Decoder; +class AnnotationClass: public QObject +{ + Q_OBJECT + +public: + AnnotationClass(size_t _id, char* _name, char* _description, Row* _row); + + bool visible() const; + void set_visible(bool visible); + +Q_SIGNALS: + void visibility_changed(); + +public: + size_t id; + char* name; + char* description; + Row* row; + +private: + bool visible_; +}; + struct DecodeChannel { uint16_t id; ///< Global numerical ID for the decode channels in the stack @@ -61,24 +89,36 @@ struct DecodeChannel const srd_channel *pdch_; }; +struct DecodeBinaryClassInfo +{ + uint32_t bin_class_id; + char* name; + char* description; +}; + -class Decoder +class Decoder : public QObject { + Q_OBJECT + public: - Decoder(const srd_decoder *const dec); + Decoder(const srd_decoder *const dec, uint8_t stack_level); virtual ~Decoder(); - const srd_decoder* decoder() const; + const srd_decoder* get_srd_decoder() const; + + uint8_t get_stack_level() const; - bool shown() const; - void show(bool show = true); + const char* name() const; + + bool visible() const; + void set_visible(bool visible); const vector& channels() const; void set_channels(vector channels); const map& options() const; - void set_option(const char *id, GVariant *value); void apply_all_options(); @@ -88,14 +128,34 @@ public: srd_decoder_inst* create_decoder_inst(srd_session *session); void invalidate_decoder_inst(); + vector get_rows(); + Row* get_row_by_id(size_t id); + + vector ann_classes() const; + vector ann_classes(); + AnnotationClass* get_ann_class_by_id(size_t id); + const AnnotationClass* get_ann_class_by_id(size_t id) const; + + uint32_t get_binary_class_count() const; + const DecodeBinaryClassInfo* get_binary_class(uint32_t id) const; + +Q_SIGNALS: + void annotation_visibility_changed(); +private Q_SLOTS: + void on_row_visibility_changed(); + void on_class_visibility_changed(); private: - const srd_decoder *const decoder_; + const srd_decoder* const srd_decoder_; + uint8_t stack_level_; - bool shown_; + bool visible_; vector channels_; + deque rows_; + deque ann_classes_; + vector bin_classes_; map options_; srd_decoder_inst *decoder_inst_; };