X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fsignal.hpp;h=2bb8da1b9b2a99a74d4d089fb0765755e19df184;hp=72c97e1d00c6f1720cc5cebabfbb38ee05b7f0a9;hb=cafe470ed977ab3bff1a865439a261c9f0eb397d;hpb=73a25a6e488f1813c1cd12da085a16e4f91ed4da diff --git a/pv/view/signal.hpp b/pv/view/signal.hpp index 72c97e1d..2bb8da1b 100644 --- a/pv/view/signal.hpp +++ b/pv/view/signal.hpp @@ -14,24 +14,25 @@ * 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 #include #include -#include +#include #include "signalscalehandle.hpp" #include "trace.hpp" #include "viewitemowner.hpp" +using std::shared_ptr; + namespace pv { class Session; @@ -41,15 +42,15 @@ class SignalBase; class SignalData; } -namespace view { +namespace views { +namespace TraceView { class Signal : public Trace, public ViewItemOwner { Q_OBJECT protected: - Signal(pv::Session &session, - std::shared_ptr channel); + Signal(pv::Session &session, shared_ptr channel); public: /** @@ -57,16 +58,18 @@ public: */ virtual void set_name(QString name); - virtual std::shared_ptr data() const = 0; + virtual shared_ptr data() const = 0; /** * Returns true if the trace is visible and enabled. */ bool enabled() const; - void enable(bool enable = true); + shared_ptr base() const; + + virtual void save_settings(QSettings &settings) const; - std::shared_ptr base() const; + virtual void restore_settings(QSettings &settings); /** * Returns a list of row items owned by this object. @@ -102,16 +105,19 @@ protected Q_SLOTS: void on_disable(); + void on_enabled_changed(bool enabled); + protected: pv::Session &session_; - const std::shared_ptr scale_handle_; + const shared_ptr scale_handle_; const item_list items_; QComboBox *name_widget_; }; -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv -#endif // PULSEVIEW_PV_VIEW_SIGNAL_HPP +#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_SIGNAL_HPP