Searched refs:a_h (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/widgets/
H A Dselect-toolbar.cpp187 GtkAdjustment* a_h = GTK_ADJUSTMENT( g_object_get_data( tbl, "height" ) ); local
194 y1 = y0 + Quantity::convert(gtk_adjustment_get_value(a_h), unit, "px");;
195 yrel = Quantity::convert(gtk_adjustment_get_value(a_h), unit, "px") / bbox_user->dimensions()[Geom::Y];
203 yrel = gtk_adjustment_get_value (a_h) / (100 / unit->factor);
210 if (adj == a_h) {
/inkscape/src/ui/dialog/
H A Dfilter-effects-dialog.cpp2700 Glib::RefPtr<Gtk::Adjustment> a_h = dynamic_cast<Gtk::ScrolledWindow*>(get_parent())->get_hadjustment(); local
2701 double h = a_h->get_value() + _autoscroll_x;
2705 if(h > a_h->get_upper() - a_h->get_page_size())
2706 h = a_h->get_upper() - a_h->get_page_size();
2708 a_h->set_value(h);
2710 Gtk::Adjustment& a_h = *dynamic_cast<Gtk::ScrolledWindow*>(get_parent())->get_hadjustment();
2711 double h = a_h.get_value() + _autoscroll_x;
2715 if(h > a_h
[all...]

Completed in 24 milliseconds