X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fsignalbase.hpp;h=7375c1dbfb149b360962fee6f0a6e846752132fa;hb=b5d20c6d003d853ad0828d15b365988519e73e88;hp=977a9cd68121f743e7e7070d67957e9d7e07081e;hpb=63253d727162257aa0a3765bfb897c6826ebf611;p=pulseview.git diff --git a/pv/data/signalbase.hpp b/pv/data/signalbase.hpp index 977a9cd..7375c1d 100644 --- a/pv/data/signalbase.hpp +++ b/pv/data/signalbase.hpp @@ -140,6 +140,12 @@ public: */ QString internal_name() const; + /** + * Produces a string for this signal that can be used for display, + * i.e. it contains one or both of the signal/internal names. + */ + QString display_name() const; + /** * Sets the name of the signal. */ @@ -175,6 +181,12 @@ public: */ shared_ptr logic_data() const; + /** + * Determines whether a given segment is complete (i.e. end-of-frame has + * been seen). It only considers the original data, not the converted data. + */ + bool segment_is_complete(uint32_t segment_id) const; + /** * Queries the kind of conversion performed on this channel. */