/inkscape/src/svg/ |
H A D | stringstream.cpp | 16 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 17 ostr.precision(prefs->getInt("/options/svgoutput/numericprecision", 8)); 77 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 78 this->precision(prefs->getInt("/options/svgoutput/numericprecision", 8)); 89 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 90 this->precision(prefs->getInt("/options/svgoutput/numericprecision", 8));
|
H A D | css-ostringstream.cpp | 16 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 17 ostr.precision(prefs->getInt("/options/svgoutput/numericprecision", 8));
|
H A D | svg-color-test.h | 21 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 23 prefs->setBool("/options/svgoutput/usenamedcolors", false); 27 prefs->setBool("/options/svgoutput/usenamedcolors", true);
|
H A D | svg-affine.cpp | 159 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 162 int prec = prefs->getInt("/options/svgoutput/numericprecision", 8); 163 int min_exp = prefs->getInt("/options/svgoutput/minimumexponent", -8);
|
/inkscape/src/extension/ |
H A D | error-file.cpp | 66 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 70 checkbutton->set_active(prefs->getBool(PREFERENCE_ID, true)); 89 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 90 prefs->setBool(PREFERENCE_ID, checkbutton->get_active()); 101 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 102 if (!prefs->getBool(PREFERENCE_ID, true))
|
H A D | output.cpp | 176 Output::prefs (void) function in class:Inkscape::Extension::Output
|
H A D | patheffect.cpp | 53 Inkscape::XML::Node * prefs = sp_repr_lookup_child(defs, "id", &(patheffect[1])); local 54 if (prefs == NULL) { 59 gchar const * ext_id = prefs->attribute("extension"); 68 peffect->processPath(doc, path, prefs);
|
H A D | input.cpp | 212 Input::prefs (const gchar *uri) function in class:Inkscape::Extension::Input
|
/inkscape/src/widgets/ |
H A D | dropper-toolbar.cpp | 48 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 49 prefs->setInt( "/tools/dropper/pick", gtk_toggle_action_get_active( act ) ); 64 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 65 prefs->setBool( "/tools/dropper/setalpha", gtk_toggle_action_get_active( act ) ); 79 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 80 gint pickAlpha = prefs->getInt( "/tools/dropper/pick", 1 ); 110 gtk_toggle_action_set_active( GTK_TOGGLE_ACTION(act), prefs->getBool( "/tools/dropper/setalpha", true) );
|
H A D | eraser-toolbar.cpp | 55 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 56 prefs->setDouble( "/tools/eraser/width", gtk_adjustment_get_value(adj) ); 62 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 63 prefs->setDouble( "/tools/eraser/mass", gtk_adjustment_get_value(adj) ); 72 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 73 prefs->setBool( "/tools/eraser/mode", eraserMode ); 105 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 107 prefs->setBool("/tools/eraser/break_apart", active); 113 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 143 Inkscape::Preferences *prefs local [all...] |
/inkscape/src/debug/ |
H A D | gdk-event-latency-tracker.cpp | 37 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 38 skew = prefs->getDoubleLimited("/debug/latency/skew", 1.0, 0.5, 2.0);
|
/inkscape/src/ |
H A D | preferences-test.h | 32 prefs = Inkscape::Preferences::get(); 35 prefs = NULL; 41 TS_ASSERT_DIFFERS(prefs, static_cast<void*>(0)); 42 TS_ASSERT_EQUALS(prefs->isWritable(), true); 47 prefs->setInt("/test/intvalue", 123); 48 prefs->setInt("/test/intvalue", 321); 49 TS_ASSERT_EQUALS(prefs->getInt("/test/intvalue"), 321); 54 TS_ASSERT_EQUALS(prefs->getInt("/this/path/does/not/exist", 123), 123); 59 prefs->setInt("/test/intvalue", 1000); 62 TS_ASSERT_EQUALS(prefs 124 Inkscape::Preferences *prefs; member in class:PreferencesTest [all...] |
H A D | attribute-rel-util.cpp | 35 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 37 if( prefs->getBool("/options/svgoutput/incorrect_attributes_warn") ) flags += SP_ATTR_CLEAN_ATTR_WARN; 38 if( prefs->getBool("/options/svgoutput/incorrect_attributes_remove") ) flags += SP_ATTR_CLEAN_ATTR_REMOVE; 39 if( prefs->getBool("/options/svgoutput/incorrect_style_properties_warn") ) flags += SP_ATTR_CLEAN_STYLE_WARN; 40 if( prefs->getBool("/options/svgoutput/incorrect_style_properties_remove" ) ) flags += SP_ATTR_CLEAN_STYLE_REMOVE; 41 if( prefs->getBool("/options/svgoutput/style_defaults_warn") ) flags += SP_ATTR_CLEAN_DEFAULT_WARN; 42 if( prefs->getBool("/options/svgoutput/style_defaults_remove") ) flags += SP_ATTR_CLEAN_DEFAULT_REMOVE;
|
H A D | selcue.cpp | 57 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 58 _updateItemBboxes(prefs); 59 prefs->addObserver(_bounding_box_prefs_observer); 83 void Inkscape::SelCue::_updateItemBboxes(Inkscape::Preferences *prefs) argument 85 gint mode = prefs->getInt("/options/selcue/value", MARK); 92 int prefs_bbox = prefs->getBool("/tools/bounding_box"); 139 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 140 gint mode = prefs->getInt("/options/selcue/value", MARK); 147 int prefs_bbox = prefs->getBool("/tools/bounding_box"); 237 Inkscape::Preferences *prefs local [all...] |
H A D | sp-use-reference.cpp | 133 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 134 guint mode = prefs->getInt("/options/clonecompensation/value", SP_CLONE_COMPENSATION_PARALLEL); 176 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 177 guint const mode = prefs->getInt("/options/cloneorphans/value", SP_CLONE_ORPHANS_UNLINK);
|
/inkscape/src/ui/widget/ |
H A D | rendering-options.cpp | 44 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 64 if (prefs->getBool("/dialogs/printing/asbitmap", false)) { 72 _dpi.setValue(prefs->getDouble("/dialogs/printing/dpi",
|
H A D | entity-entry.cpp | 78 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 80 prefs->setString(PREFS_METADATA + Glib::ustring(_entity->name), Glib::ustring(text ? text : "")); 111 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 112 Glib::ustring text = prefs->getString(PREFS_METADATA + Glib::ustring(_entity->name)); 170 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 171 Glib::ustring text = prefs->getString(PREFS_METADATA + Glib::ustring(_entity->name));
|
/inkscape/src/ui/tools/ |
H A D | zoom-tool.cpp | 61 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 63 if (prefs->getBool("/tools/zoom/selcue")) { 67 if (prefs->getBool("/tools/zoom/gradientdrag")) { 75 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 77 tolerance = prefs->getIntLimited("/options/dragtolerance/value", 0, 0, 100); 78 double const zoom_inc = prefs->getDoubleLimited("/options/zoomincrement/value", M_SQRT2, 1.01, 10);
|
/inkscape/src/display/ |
H A D | snap-indicator.cpp | 67 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 68 bool value = prefs->getBool("/options/snapindicator/value", true); 259 double timeout_val = prefs->getDouble("/options/snapindicatorpersistence/value", 2.0); 290 double fontsize = prefs->getInt("/tools/measure/fontsize"); 367 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 368 bool value = prefs->getBool("/options/snapindicator/value", true);
|
/inkscape/src/extension/param/ |
H A D | color.cpp | 48 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 49 prefs->setString(extension_pref_root + prefname, value); 64 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 65 Glib::ustring paramval = prefs->getString(extension_pref_root + pref_name);
|
/inkscape/src/ui/dialog/ |
H A D | panel-dialog.h | 161 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 162 if (prefs->getBool("/dialogs/showclose") || !apply_label.empty()) { 210 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 211 if (prefs->getBool("/dialogs/showclose") || !apply_label.empty()) {
|
H A D | dialog-manager.cpp | 102 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); 103 int dialogs_type = prefs->getIntLimited("/options/dialogtype/value", DOCK, 0, 1); 197 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 198 int dialogs_type = prefs->getIntLimited("/options/dialogtype/value", DOCK, 0, 1);
|
H A D | fill-and-stroke.cpp | 127 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 128 prefs->setInt("/dialogs/fillstroke/page", page_num);
|
/inkscape/src/extension/internal/ |
H A D | bluredge.cpp | 61 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 62 double old_offset = prefs->getDouble("/options/defaultoffsetwidth/value", 1.0, "px"); 98 prefs->setDoubleUnit("/options/defaultoffsetwidth/value", offset, "px"); 101 prefs->setDoubleUnit("/options/defaultoffsetwidth/value", offset, "px"); 111 prefs->setDoubleUnit("/options/defaultoffsetwidth/value", old_offset, "px");
|
/inkscape/src/ui/ |
H A D | dialog-events.cpp | 153 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 158 if (prefs->getBool( "/options/dialogsskiptaskbar/value")) { 163 gint transient_policy = prefs->getIntLimited("/options/transientpolicy/value", 1, 0, 2); 188 Inkscape::Preferences *prefs = Inkscape::Preferences::get(); local 189 gint transient_policy = prefs->getIntLimited( "/options/transientpolicy/value", 1, 0, 2);
|