Lines Matching refs:_value
29 /** Use the superclass' allocator and set the \c _value. */
40 _value(0.0), _mode(mode), _indent(0), _min(0.0), _max(10.0)
47 _value = g_ascii_strtod (defaultval,NULL);
79 _value = prefs->getDouble(extension_pref_root + pref_name, _value);
82 // std::cout << "New Float:: value: " << _value << " max: " << _max << " min: " << _min << std::endl;
84 if (_value > _max) {
85 _value = _max;
87 if (_value < _min) {
88 _value = _min;
95 * A function to set the \c _value.
107 _value = in;
108 if (_value > _max) {
109 _value = _max;
111 if (_value < _min) {
112 _value = _min;
117 prefs->setDouble(extension_pref_root + prefname, _value);
120 return _value;
126 g_ascii_dtostr(startstring, G_ASCII_DTOSTR_BUF_SIZE, _value);