X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fview%2Fsignal.hpp;h=a449382faf080d31e21ff33a383fd20ff3c38a34;hb=050b5a6c7d4864cff968d171b6cc4e68ea478835;hp=714b44f6d9d27fcfc4881dc9e4850138f575b0a4;hpb=214470fc17e73bbf4664f4c1678a7dd30c905bf2;p=pulseview.git diff --git a/pv/view/signal.hpp b/pv/view/signal.hpp index 714b44f6..a449382f 100644 --- a/pv/view/signal.hpp +++ b/pv/view/signal.hpp @@ -28,18 +28,16 @@ #include +#include "signalscalehandle.hpp" #include "trace.hpp" #include "viewitemowner.hpp" -namespace sigrok { - class Channel; -} - namespace pv { class Session; namespace data { +class SignalBase; class SignalData; } @@ -51,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; @@ -66,15 +64,15 @@ public: */ bool enabled() const; - void enable(bool enable = true); - - std::shared_ptr channel() const; + std::shared_ptr base() const; /** * Returns a list of row items owned by this object. */ const item_list& child_items() const; + void paint_back(QPainter &p, const ViewItemPaintParams &pp); + virtual void populate_popup_form(QWidget *parent, QFormLayout *form); QMenu* create_context_menu(QWidget *parent); @@ -97,17 +95,20 @@ public: */ virtual void scale_handle_released() {}; -private Q_SLOTS: +protected Q_SLOTS: + virtual void on_name_changed(const QString &text); + void on_disable(); + void on_enabled_changed(bool enabled); + protected: pv::Session &session_; - std::shared_ptr channel_; + const std::shared_ptr scale_handle_; const item_list items_; QComboBox *name_widget_; - bool updating_name_widget_; }; } // namespace view