X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fsignal.hpp;h=35081cdedd006fd561a31ccb1991ea69c5300d21;hp=72c97e1d00c6f1720cc5cebabfbb38ee05b7f0a9;hb=f4e57597347e47a4ea58fbdc7b0a22e07f1c0ede;hpb=73a25a6e488f1813c1cd12da085a16e4f91ed4da diff --git a/pv/view/signal.hpp b/pv/view/signal.hpp index 72c97e1d..35081cde 100644 --- a/pv/view/signal.hpp +++ b/pv/view/signal.hpp @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PULSEVIEW_PV_VIEW_SIGNAL_HPP -#define PULSEVIEW_PV_VIEW_SIGNAL_HPP +#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_SIGNAL_HPP +#define PULSEVIEW_PV_VIEWS_TRACEVIEW_SIGNAL_HPP #include @@ -41,7 +41,8 @@ class SignalBase; class SignalData; } -namespace view { +namespace views { +namespace TraceView { class Signal : public Trace, public ViewItemOwner { @@ -64,10 +65,12 @@ public: */ bool enabled() const; - void enable(bool enable = true); - std::shared_ptr base() const; + virtual void save_settings(QSettings &settings) const; + + virtual void restore_settings(QSettings &settings); + /** * Returns a list of row items owned by this object. */ @@ -102,6 +105,8 @@ protected Q_SLOTS: void on_disable(); + void on_enabled_changed(bool enabled); + protected: pv::Session &session_; @@ -111,7 +116,8 @@ protected: QComboBox *name_widget_; }; -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv -#endif // PULSEVIEW_PV_VIEW_SIGNAL_HPP +#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_SIGNAL_HPP