X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdevice%2Fdevinst.h;h=bdadc2c3e72e44eccc2ca7012f3260358d412824;hb=2445160a5d1eb98196d2a1d57246d4c37dd13811;hp=6e81f49c686fcc8ab1424ed2836ae6e859e5e348;hpb=921b90c0b3ae0cf44247da3d87bd7dc0612e9681;p=pulseview.git diff --git a/pv/device/devinst.h b/pv/device/devinst.h index 6e81f49..bdadc2c 100644 --- a/pv/device/devinst.h +++ b/pv/device/devinst.h @@ -33,9 +33,12 @@ struct sr_dev_inst; struct sr_probe; -struct sr_probe_group; +struct sr_channel_group; namespace pv { + +class SigSession; + namespace device { class DevInst : public QObject @@ -43,18 +46,24 @@ class DevInst : public QObject Q_OBJECT protected: - DevInst(sr_dev_inst *sdi); + DevInst(); public: - sr_dev_inst* dev_inst() const; + virtual sr_dev_inst* dev_inst() const = 0; + + virtual void use(SigSession *owner) throw(QString); + + virtual void release(); + + SigSession* owner() const; virtual std::string format_device_title() const = 0; - GVariant* get_config(const sr_probe_group *group, int key); + GVariant* get_config(const sr_channel_group *group, int key); - bool set_config(const sr_probe_group *group, int key, GVariant *data); + bool set_config(const sr_channel_group *group, int key, GVariant *data); - GVariant* list_config(const sr_probe_group *group, int key); + GVariant* list_config(const sr_channel_group *group, int key); void enable_probe(const sr_probe *probe, bool enable = true); @@ -66,11 +75,18 @@ public: */ uint64_t get_sample_limit(); + virtual bool is_trigger_enabled() const; + +public: + virtual void start(); + + virtual void run(); + signals: void config_changed(); protected: - sr_dev_inst *const _sdi; + SigSession *_owner; }; } // device