X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fprop%2Fbool.h;h=c96c87af2fd03d3c2b86040382fc2e57a12a1324;hb=e9213170687cf4afd14e20acdc690ff9381d94ae;hp=22fc95cc8c2827305491bacd6f21e6602f0a6b27;hpb=f459c5400e067c4389c472b84194d760e7bfd585;p=pulseview.git diff --git a/pv/prop/bool.h b/pv/prop/bool.h index 22fc95c..c96c87a 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 Q_SLOTS: + void on_state_changed(int); + private: QCheckBox *_check_box; };