X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fprop%2Fdouble.hpp;h=44e9f7e7cb25b94b508ad1b96457454f5b46c7cc;hp=dc119bdb36e40c421421869e3e9610cc700157cb;hb=b571a8e7e0dc3e3b6daa58f27050e76466f006dd;hpb=c6246dc56ed01d7e99aa65ab88b8c191300b1ebd diff --git a/pv/prop/double.hpp b/pv/prop/double.hpp index dc119bdb..44e9f7e7 100644 --- a/pv/prop/double.hpp +++ b/pv/prop/double.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_DOUBLE_HPP @@ -27,6 +26,8 @@ #include "property.hpp" +using std::pair; + class QDoubleSpinBox; namespace pv { @@ -37,8 +38,8 @@ class Double : public Property Q_OBJECT public: - Double(QString name, int decimals, QString suffix, - boost::optional< std::pair > range, + Double(QString name, QString desc, int decimals, QString suffix, + boost::optional< pair > range, boost::optional step, Getter getter, Setter setter); @@ -46,6 +47,7 @@ public: virtual ~Double() = default; QWidget* get_widget(QWidget *parent, bool auto_commit); + void update_widget(); void commit(); @@ -55,13 +57,13 @@ private Q_SLOTS: private: const int decimals_; const QString suffix_; - const boost::optional< std::pair > range_; + const boost::optional< pair > range_; const boost::optional step_; QDoubleSpinBox *spin_box_; }; -} // prop -} // pv +} // namespace prop +} // namespace pv #endif // PULSEVIEW_PV_PROP_DOUBLE_HPP