X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fprop%2Fint.hpp;h=1f6a64ca503fddf069090f9c9e03e2eaa44b2bc6;hb=HEAD;hp=709e02e635eda56ee1f195cd4b9f76733c32b560;hpb=9a267f8dec48c9a28472c1a3bb146c624819e98b;p=pulseview.git diff --git a/pv/prop/int.hpp b/pv/prop/int.hpp index 709e02e6..1f6a64ca 100644 --- a/pv/prop/int.hpp +++ b/pv/prop/int.hpp @@ -35,16 +35,17 @@ namespace prop { class Int : public Property { - Q_OBJECT; + Q_OBJECT public: Int(QString name, QString desc, QString suffix, boost::optional< pair > range, - Getter getter, Setter setter); + Getter getter, Setter setter, QString special_value_text = ""); virtual ~Int() = default; QWidget* get_widget(QWidget *parent, bool auto_commit); + void update_widget(); void commit(); @@ -52,7 +53,7 @@ private Q_SLOTS: void on_value_changed(int); private: - const QString suffix_; + const QString suffix_, special_value_text_; const boost::optional< pair > range_; Glib::VariantBase value_;