X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fsignal.hpp;h=36d87d4594d0a6def78eb2f29daeb1c42408ace4;hp=517bbf4a763da925e347f9add1cab83afc5b4bb3;hb=bf0edd2b0cbb5f4bd5d69b0f00bcea7d037e2287;hpb=14f9d4a1f4472d29366ed8333b20f4041cf1b443 diff --git a/pv/view/signal.hpp b/pv/view/signal.hpp index 517bbf4..36d87d4 100644 --- a/pv/view/signal.hpp +++ b/pv/view/signal.hpp @@ -32,15 +32,12 @@ #include "trace.hpp" #include "viewitemowner.hpp" -namespace sigrok { - class Channel; -} - namespace pv { class Session; namespace data { +class SignalBase; class SignalData; } @@ -52,13 +49,13 @@ class Signal : public Trace, public ViewItemOwner protected: Signal(pv::Session &session, - std::shared_ptr channel); + std::shared_ptr channel); public: /** * Sets the name of the signal. */ - void set_name(QString name); + virtual void set_name(QString name); virtual std::shared_ptr data() const = 0; @@ -69,7 +66,7 @@ public: void enable(bool enable = true); - std::shared_ptr channel() const; + std::shared_ptr channel() const; /** * Returns a list of row items owned by this object. @@ -100,12 +97,13 @@ public: */ virtual void scale_handle_released() {}; -private Q_SLOTS: +protected Q_SLOTS: + virtual void on_name_changed(const QString &text); + void on_disable(); protected: pv::Session &session_; - std::shared_ptr channel_; const std::shared_ptr scale_handle_; const item_list items_;