]> sigrok.org Git - pulseview.git/blobdiff - pv/view/signal.h
Replaced boost::shared_ptr with std::shared_ptr
[pulseview.git] / pv / view / signal.h
index ecd13dc92a17493d79f7f84a02a141fc5d6d30cf..99b685c0bdc286f4f4f50e1b08290a8123e57acc 100644 (file)
 #ifndef PULSEVIEW_PV_VIEW_SIGNAL_H
 #define PULSEVIEW_PV_VIEW_SIGNAL_H
 
+#include <memory>
+
 #include <QComboBox>
 #include <QWidgetAction>
 
 #include <stdint.h>
 
-#include <libsigrok/libsigrok.h>
-
 #include "trace.h"
 
+struct sr_channel;
+
 namespace pv {
 
 namespace data {
 class SignalData;
 }
 
+namespace device {
+class DevInst;
+}
+
 namespace view {
 
 class Signal : public Trace
@@ -43,7 +49,8 @@ class Signal : public Trace
        Q_OBJECT
 
 protected:
-       Signal(pv::SigSession &session, sr_probe *const probe);
+       Signal(std::shared_ptr<pv::device::DevInst> dev_inst,
+               const sr_channel *const probe);
 
 public:
        /**
@@ -51,6 +58,8 @@ public:
         */
        void set_name(QString name);
 
+       virtual std::shared_ptr<pv::data::SignalData> data() const = 0;
+
        /**
         * Returns true if the trace is visible and enabled.
         */
@@ -58,17 +67,20 @@ public:
 
        void enable(bool enable = true);
 
-       const sr_probe* probe() const;
+       const sr_channel* probe() const;
 
        virtual void populate_popup_form(QWidget *parent, QFormLayout *form);
 
        QMenu* create_context_menu(QWidget *parent);
 
+       void delete_pressed();
+
 private slots:
        void on_disable();
 
 protected:
-       sr_probe *const _probe;
+       std::shared_ptr<pv::device::DevInst> _dev_inst;
+       const sr_channel *const _probe;
 
        QComboBox *_name_widget;
        bool _updating_name_widget;