X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fsignal.hpp;h=8796660e175fd4ce84d779afbeb660889681ee0f;hp=36d87d4594d0a6def78eb2f29daeb1c42408ace4;hb=ae5f66281c38a76dcb7011907d7a86a99b9dd4dd;hpb=bf0edd2b0cbb5f4bd5d69b0f00bcea7d037e2287 diff --git a/pv/view/signal.hpp b/pv/view/signal.hpp index 36d87d45..8796660e 100644 --- a/pv/view/signal.hpp +++ b/pv/view/signal.hpp @@ -14,12 +14,11 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ -#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 +40,8 @@ class SignalBase; class SignalData; } -namespace view { +namespace views { +namespace TraceView { class Signal : public Trace, public ViewItemOwner { @@ -64,9 +64,11 @@ public: */ bool enabled() const; - void enable(bool enable = true); + std::shared_ptr base() const; - std::shared_ptr channel() 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 +104,8 @@ protected Q_SLOTS: void on_disable(); + void on_enabled_changed(bool enabled); + protected: pv::Session &session_; @@ -111,7 +115,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