X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fprop%2Fbool.h;h=0d8e205e87a682976b417e3b796fc7ca0e16eb9f;hp=62e5ca36b6425ee1f91f9ff34afe6d1504b9fe2b;hb=a28c30252fd32d3185c62062dfad74ae659ae383;hpb=de1d99bbe58f825e30048baa48a9439c01686f10 diff --git a/pv/prop/bool.h b/pv/prop/bool.h index 62e5ca36..0d8e205e 100644 --- a/pv/prop/bool.h +++ b/pv/prop/bool.h @@ -30,14 +30,21 @@ namespace prop { class Bool : public Property { + Q_OBJECT; + public: Bool(QString name, Getter getter, Setter setter); - QWidget* get_widget(QWidget *parent); + virtual ~Bool(); + + QWidget* get_widget(QWidget *parent, bool auto_commit); bool labeled_widget() const; void commit(); +private slots: + void on_state_changed(int); + private: QCheckBox *_check_box; };