X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fprop%2Fint.hpp;h=f6b7c2d1f1642d64a55a575fbcd7100618cd3c46;hb=119c5c232ef47e92ef6a5cc9f8b7c4c31dc2f387;hp=92d7c62c93f9748c816b7c00fe5a1ec678f18cee;hpb=efdec55aec1a137460fa362a381ed1904182bfed;p=pulseview.git diff --git a/pv/prop/int.hpp b/pv/prop/int.hpp index 92d7c62c..f6b7c2d1 100644 --- a/pv/prop/int.hpp +++ b/pv/prop/int.hpp @@ -26,6 +26,8 @@ #include "property.hpp" +using std::pair; + class QSpinBox; namespace pv { @@ -36,13 +38,14 @@ class Int : public Property Q_OBJECT; public: - Int(QString name, QString suffix, - boost::optional< std::pair > range, + Int(QString name, QString desc, QString suffix, + boost::optional< pair > range, Getter getter, Setter setter); virtual ~Int() = default; QWidget* get_widget(QWidget *parent, bool auto_commit); + void update_widget(); void commit(); @@ -51,13 +54,13 @@ private Q_SLOTS: private: const QString suffix_; - const boost::optional< std::pair > range_; + const boost::optional< pair > range_; Glib::VariantBase value_; QSpinBox *spin_box_; }; -} // prop -} // pv +} // namespace prop +} // namespace pv #endif // PULSEVIEW_PV_PROP_INT_HPP