]> sigrok.org Git - pulseview.git/blobdiff - pv/devinst.h
In View::zoom_one_to_one use View::get_visible_data
[pulseview.git] / pv / devinst.h
index 64d27583b24e08e8226bb14121dddb0454805ceb..e57a4e44e112a06c35428642804b3f2906f42142 100644 (file)
 
 #include <boost/shared_ptr.hpp>
 
+#include <QObject>
+
+#include <glib.h>
+
+#include <stdint.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 +48,25 @@ 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);
+
+       /**
+        * @brief Gets the sample limit from the driver.
+        *
+        * @return The returned sample limit from the driver, or 0 if the
+        *      sample limit could not be read.
+        */
+       uint64_t get_sample_limit();
+
+signals:
+       void config_changed();
+
 private:
        sr_dev_inst *const _sdi;
 };