Lines Matching +refs:val +refs:entry
26 #include <gtkmm/entry.h>
309 /* File entry */
488 Glib::RefPtr<Gtk::Adjustment> Export::createSpinbutton( gchar const * /*key*/, float val, float min, float max,
495 Gtk::Adjustment * Export::createSpinbutton( gchar const * /*key*/, float val, float min, float max,
504 Glib::RefPtr<Gtk::Adjustment> adj = Gtk::Adjustment::create(val, min, max, step, page, 0);
506 Gtk::Adjustment *adj = new Gtk::Adjustment ( val, min, max, step, page, 0 );
1876 * @param val What value to set it to.
1879 void Export::setValue(Glib::RefPtr<Gtk::Adjustment>& adj, double val )
1881 void Export::setValue( Gtk::Adjustment *adj, double val )
1885 adj->set_value(val);
1898 * @param val What the value should be in points.
1901 void Export::setValuePx(Glib::RefPtr<Gtk::Adjustment>& adj, double val)
1903 void Export::setValuePx( Gtk::Adjustment *adj, double val)
1908 setValue(adj, Inkscape::Util::Quantity::convert(val, "px", unit));