]> sigrok.org Git - pulseview.git/blobdiff - pv/devinst.h
Moved all sr_probe modification into pv::DevInst
[pulseview.git] / pv / devinst.h
index 64d27583b24e08e8226bb14121dddb0454805ceb..0ce767452742c691f38b9caf58fa39d35bcfd90c 100644 (file)
 
 #include <boost/shared_ptr.hpp>
 
+#include <QObject>
+
+#include <glib.h>
+
 struct sr_dev_inst;
+struct sr_probe;
+struct sr_probe_group;
 
 namespace pv {
 
-class DevInst
+class DevInst : public QObject
 {
+       Q_OBJECT
+
 public:
        DevInst(sr_dev_inst *sdi);
 
@@ -38,6 +46,17 @@ public:
 
        std::string format_device_title() const;
 
+       GVariant* get_config(const sr_probe_group *group, int key);
+
+       bool set_config(const sr_probe_group *group, int key, GVariant *data);
+
+       GVariant* list_config(const sr_probe_group *group, int key);
+
+       void enable_probe(const sr_probe *probe, bool enable = true);
+
+signals:
+       void config_changed();
+
 private:
        sr_dev_inst *const _sdi;
 };