X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecodesignal.hpp;h=fad3db78548457d25e61f9b4f7dc0bf8042243cf;hp=ca9f9e96f652d7247d1856567990cb0c24f9914b;hb=HEAD;hpb=04b0467582d8dfa989bb38fe18bfb1be20cea456 diff --git a/pv/data/decodesignal.hpp b/pv/data/decodesignal.hpp index ca9f9e96..333e953b 100644 --- a/pv/data/decodesignal.hpp +++ b/pv/data/decodesignal.hpp @@ -103,6 +103,16 @@ public: DecodeSignal(pv::Session &session); virtual ~DecodeSignal(); + /** + * Sets the name of the signal. + */ + virtual void set_name(QString name); + + /** + * Set the color of the signal. + */ + virtual void set_color(QColor color); + bool is_decode_signal() const; const vector< shared_ptr >& decoder_stack() const; @@ -265,6 +275,7 @@ private: bool decode_paused_; map> output_logic_; + map> output_logic_muxed_data_; vector< shared_ptr> output_signals_; };