| /inkscape/src/ui/tools/ |
| H A D | dynamic-base.cpp | 113 this->angle = CLAMP(value.getDouble(), -90, 90); 129 this->cap_rounding = value.getDouble();
|
| H A D | spiral-tool.cpp | 135 this->exp = CLAMP(val.getDouble(), 0.0, 1000.0); 137 this->revo = CLAMP(val.getDouble(3.0), 0.05, 40.0); 139 this->t0 = CLAMP(val.getDouble(), 0.0, 0.999);
|
| H A D | star-tool.cpp | 147 this->proportion = CLAMP(val.getDouble(0.5), 0.01, 2.0); 151 this->rounded = val.getDouble(); 153 this->randomized = val.getDouble();
|
| H A D | lpe-tool.cpp | 327 double ulx = prefs->getDouble("/tools/lpetool/bbox_upperleftx", 0); 328 double uly = prefs->getDouble("/tools/lpetool/bbox_upperlefty", 0); 329 double lrx = prefs->getDouble("/tools/lpetool/bbox_lowerrightx", w); 330 double lry = prefs->getDouble("/tools/lpetool/bbox_lowerrighty", h);
|
| H A D | measure-tool.cpp | 816 dimension_offset = prefs->getDouble("/tools/measure/offset", 5.0); 826 double fontsize = prefs->getDouble("/tools/measure/fontsize", 10.0); 834 double scale = prefs->getDouble("/tools/measure/scale", 100.0) / 100.0; 1216 double scale = prefs->getDouble("/tools/measure/scale", 100.0) / 100.0; 1217 double fontsize = prefs->getDouble("/tools/measure/fontsize", 10.0);
|
| H A D | spray-tool.cpp | 320 this->rotation_variation = CLAMP(val.getDouble(0.0), 0, 100.0); 322 this->scale_variation = CLAMP(val.getDouble(1.0), 0, 100.0); 331 this->tilt = CLAMP(val.getDouble(0.1), 0, 1000.0); 333 this->ratio = CLAMP(val.getDouble(), 0.0, 0.9);
|
| H A D | tweak-tool.cpp | 303 this->width = CLAMP(val.getDouble(0.1), -1000.0, 1000.0); 308 this->fidelity = CLAMP(val.getDouble(), 0.0, 1.0); 310 this->force = CLAMP(val.getDouble(1.0), 0, 1.0);
|
| H A D | eraser-tool.cpp | 893 this->nowidth = prefs->getDouble( "/tools/eraser/width", 1) == 0;
|
| /inkscape/src/ui/widget/ |
| H A D | rendering-options.cpp | 72 _dpi.setValue(prefs->getDouble("/dialogs/printing/dpi",
|
| /inkscape/src/ |
| H A D | preferences.h | 168 inline double getDouble(double def=0.0, Glib::ustring const &unit = "") const; 329 double getDouble(Glib::ustring const &pref_path, double def=0.0, Glib::ustring const &unit = "") { function in class:Inkscape::Preferences 330 return getEntry(pref_path).getDouble(def, unit); 608 inline double Preferences::Entry::getDouble(double def, Glib::ustring const &unit) const function in class:Inkscape::Preferences::Entry
|
| H A D | sp-ellipse.cpp | 657 if (prefs->getDouble("/tools/shapes/arc/start", 0.0) != 0) { 658 this->start = Geom::Angle::from_degrees(prefs->getDouble("/tools/shapes/arc/start", 0.0)).radians0(); 661 if (prefs->getDouble("/tools/shapes/arc/end", 0.0) != 0) { 662 this->end = Geom::Angle::from_degrees(prefs->getDouble("/tools/shapes/arc/end", 0.0)).radians0();
|
| H A D | document.cpp | 402 prefs->getDouble("/template/base/borderopacity", 1.0)); 404 prefs->getDouble("/template/base/objecttolerance", 10.0)); 406 prefs->getDouble("/template/base/gridtolerance", 10.0)); 408 prefs->getDouble("/template/base/guidetolerance", 10.0)); 410 prefs->getDouble("/template/base/inkscape:pageopacity", 0.0)); 1314 gdouble delta = prefs->getDouble("/options/cursortolerance/value", 1.0); 1372 gdouble delta = prefs->getDouble("/options/cursortolerance/value", 1.0); 1405 gdouble delta = prefs->getDouble("/options/cursortolerance/value", 1.0); 1466 gdouble saved_delta = prefs->getDouble("/options/cursortolerance/value", 1.0);
|
| H A D | graphlayout.cpp | 148 double ideal_connector_length = prefs->getDouble("/tools/connector/length", 100.0);
|
| H A D | splivarot.cpp | 1524 double prefOffset = prefs->getDouble("/options/defaultoffsetwidth/value", 1.0, "px"); 1532 double prefOffset = prefs->getDouble("/options/defaultoffsetwidth/value", 1.0, "px"); 1618 o_width = prefs->getDouble("/options/defaultoffsetwidth/value", 1.0, "px"); 2222 prefs->getDouble("/options/simplifythreshold/value", 0.003);
|
| /inkscape/src/extension/internal/ |
| H A D | bluredge.cpp | 62 double old_offset = prefs->getDouble("/options/defaultoffsetwidth/value", 1.0, "px");
|
| H A D | gdkpixbuf-input.cpp | 78 double defaultxdpi = prefs->getDouble("/dialogs/import/defaultxdpi/value", Inkscape::Util::Quantity::convert(1, "in", "px"));
|
| /inkscape/src/io/ |
| H A D | inkscapestream.cpp | 240 static bool getDouble(Glib::ustring &str, double *val) function in namespace:Inkscape::IO 321 if (getDouble(buf, &ival)) 330 if (getDouble(buf, &ival))
|
| /inkscape/src/display/ |
| H A D | canvas-axonomgrid.cpp | 165 origin[Geom::X] = Inkscape::Util::Quantity::convert(prefs->getDouble("/options/grids/axonom/origin_x", 0.0), gridunit, "px"); 166 origin[Geom::Y] = Inkscape::Util::Quantity::convert(prefs->getDouble("/options/grids/axonom/origin_y", 0.0), gridunit, "px"); 170 lengthy = Inkscape::Util::Quantity::convert(prefs->getDouble("/options/grids/axonom/spacing_y", 1.0), gridunit, "px"); 171 angle_deg[X] = prefs->getDouble("/options/grids/axonom/angle_x", 30.0); 172 angle_deg[Z] = prefs->getDouble("/options/grids/axonom/angle_z", 30.0);
|
| H A D | snap-indicator.cpp | 259 double timeout_val = prefs->getDouble("/options/snapindicatorpersistence/value", 2.0);
|
| H A D | canvas-grid.cpp | 471 origin[Geom::X] = Inkscape::Util::Quantity::convert(prefs->getDouble("/options/grids/xy/origin_x", 0.0), gridunit, "px"); 472 origin[Geom::Y] = Inkscape::Util::Quantity::convert(prefs->getDouble("/options/grids/xy/origin_y", 0.0), gridunit, "px"); 476 spacing[Geom::X] = Inkscape::Util::Quantity::convert(prefs->getDouble("/options/grids/xy/spacing_x", 0.0), gridunit, "px"); 477 spacing[Geom::Y] = Inkscape::Util::Quantity::convert(prefs->getDouble("/options/grids/xy/spacing_y", 0.0), gridunit, "px");
|
| /inkscape/src/ui/dialog/ |
| H A D | grid-arrange-tab.cpp | 633 double AutoRow = prefs->getDouble("/dialogs/gridtiler/AutoRowSize", 15); 673 double AutoCol = prefs->getDouble("/dialogs/gridtiler/AutoColSize", 15); 725 double yPad = prefs->getDouble("/dialogs/gridtiler/YPad", 15); 732 double xPad = prefs->getDouble("/dialogs/gridtiler/XPad", 15); 758 double SpacingType = prefs->getDouble("/dialogs/gridtiler/SpacingType", 15);
|
| H A D | export.cpp | 289 prefs->getDouble("/dialogs/export/defaultxdpi/value", DPI_BASE), 302 ydpi_adj = createSpinbutton ( "ydpi", prefs->getDouble("/dialogs/export/defaultxdpi/value", DPI_BASE),
|
| H A D | clonetiler.cpp | 1121 double value = prefs->getDouble(prefs_path + "fillwidth", 50.0); 1158 double value = prefs->getDouble(prefs_path + "fillheight", 50.0); 3006 gdouble width_pixels = prefs->getDouble(prefs_path + "fillwidth"); 3007 gdouble height_pixels = prefs->getDouble(prefs_path + "fillheight");
|
| /inkscape/src/extension/param/ |
| H A D | float.cpp | 79 _value = prefs->getDouble(extension_pref_root + pref_name, _value);
|
| /inkscape/src/widgets/ |
| H A D | calligraphy-toolbar.cpp | 94 double v = j->getDouble(); 393 gtk_adjustment_set_value(adj, i->getDouble());
|