Lines Matching refs:val
47 const double val = _adjustment->get_value();
49 const double val = _adjustment.get_value();
53 return Glib::Ascii::dtostr((int)val);
55 return Glib::Ascii::dtostr(val);
60 const gchar* val = attribute_value(o);
62 if(val)
63 _adjustment->set_value(Glib::Ascii::strtod(val));
67 if(val)
68 _adjustment.set_value(Glib::Ascii::strtod(val));
92 void SpinSlider::set_value(const double val)
95 _adjustment->set_value(val);
97 _adjustment.set_value(val);
191 const gchar* val = attribute_value(o);
192 if(val) {
193 // Split val into parts
194 gchar** toks = g_strsplit(val, " ", 2);