X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fprop%2Fint.hpp;h=1f6a64ca503fddf069090f9c9e03e2eaa44b2bc6;hb=2a12830ca3265a97ee13c53cdd809c404328ce8a;hp=baf7dd7e1a8007fc7f7aafca7f5eaf4e2ab8df89;hpb=c6246dc56ed01d7e99aa65ab88b8c191300b1ebd;p=pulseview.git diff --git a/pv/prop/int.hpp b/pv/prop/int.hpp index baf7dd7e..1f6a64ca 100644 --- a/pv/prop/int.hpp +++ b/pv/prop/int.hpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #ifndef PULSEVIEW_PV_PROP_INT_HPP @@ -27,6 +26,8 @@ #include "property.hpp" +using std::pair; + class QSpinBox; namespace pv { @@ -34,16 +35,17 @@ namespace prop { class Int : public Property { - Q_OBJECT; + Q_OBJECT public: - Int(QString name, QString suffix, - boost::optional< std::pair > range, - Getter getter, Setter setter); + Int(QString name, QString desc, QString suffix, + boost::optional< pair > range, + Getter getter, Setter setter, QString special_value_text = ""); virtual ~Int() = default; QWidget* get_widget(QWidget *parent, bool auto_commit); + void update_widget(); void commit(); @@ -51,14 +53,14 @@ private Q_SLOTS: void on_value_changed(int); private: - const QString suffix_; - const boost::optional< std::pair > range_; + const QString suffix_, special_value_text_; + const boost::optional< pair > range_; Glib::VariantBase value_; QSpinBox *spin_box_; }; -} // prop -} // pv +} // namespace prop +} // namespace pv #endif // PULSEVIEW_PV_PROP_INT_HPP