X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fprop%2Fbool.h;h=0d8e205e87a682976b417e3b796fc7ca0e16eb9f;hp=22fc95cc8c2827305491bacd6f21e6602f0a6b27;hb=a28c30252fd32d3185c62062dfad74ae659ae383;hpb=f459c5400e067c4389c472b84194d760e7bfd585 diff --git a/pv/prop/bool.h b/pv/prop/bool.h index 22fc95cc..0d8e205e 100644 --- a/pv/prop/bool.h +++ b/pv/prop/bool.h @@ -30,16 +30,21 @@ namespace prop { class Bool : public Property { + Q_OBJECT; + public: Bool(QString name, Getter getter, Setter setter); virtual ~Bool(); - QWidget* get_widget(QWidget *parent); + 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; };