/inkscape/src/svg/ |
H A D | test-stubs.cpp | 30 prefs_get_int_attribute(gchar const *path, gchar const *attr, long long int def) argument 33 long long int ret = it==int_prefs.end() ? def : it->second;
|
H A D | svg-color.cpp | 214 static guint32 internal_sp_svg_read_color(gchar const *str, gchar const **end_ptr, guint32 def) argument 219 if (str == NULL) return def; 221 if (!*str) return def; 245 return def; 260 if (s == e) return def; 269 if (*s != ',') return def; 273 if (s == e) return def; 282 if (*s != ',') return def; 286 if (s == e) return def; 296 return def; [all...] |
/inkscape/src/ui/dialog/ |
H A D | color-item.h | 17 #include "widgets/ege-paint-def.h" 69 ege::PaintDef def; member in class:Inkscape::UI::Dialogs::ColorItem
|
H A D | filter-effects-dialog.cpp | 117 CheckButtonAttr(bool def, const Glib::ustring& label, argument 121 AttrWidget(a, def), 155 double climb_rate, int digits, const SPAttributeEnum a, double def, char* tip_text) 157 AttrWidget(a, def) 248 DualSpinButton(char* def, double lower, double upper, double step_inc, argument 250 : AttrWidget(a, def), //TO-DO: receive default num-opt-num as parameter in the constructor 314 ColorButton(unsigned int def, const SPAttributeEnum a, char* tip_text) argument 315 : AttrWidget(a, def) 839 CheckButtonAttr* add_checkbutton(bool def, const SPAttributeEnum attr, const Glib::ustring& label, argument 842 CheckButtonAttr* cb = new CheckButtonAttr(def, labe 154 SpinButtonAttr(double lower, double upper, double step_inc, double climb_rate, int digits, const SPAttributeEnum a, double def, char* tip_text) argument 849 add_color(unsigned int def, const SPAttributeEnum attr, const Glib::ustring& label, char* tip_text = NULL) argument 876 add_spinscale(double def, const SPAttributeEnum attr, const Glib::ustring& label, const double lo, const double hi, const double step_inc, const double climb, const int digits, char* tip_text = NULL) argument [all...] |
/inkscape/src/ |
H A D | preferences.h | 138 * @param def Default value if the preference is not set. 140 inline bool getBool(bool def=false) const; 145 * @param def Default value if the preference is not set. 147 inline int getInt(int def=0) const; 156 * @param def Default value if the preference is not set. 160 inline int getIntLimited(int def=0, int min=INT_MIN, int max=INT_MAX) const; 165 * @param def Default value if the preference is not set. 168 inline double getDouble(double def=0.0, Glib::ustring const &unit = "") const; 176 * @param def Default value if the preference is not set. 181 inline double getDoubleLimited(double def 300 getBool(Glib::ustring const &pref_path, bool def=false) argument 310 getInt(Glib::ustring const &pref_path, int def=0) argument 325 getIntLimited(Glib::ustring const &pref_path, int def=0, int min=INT_MIN, int max=INT_MAX) argument 329 getDouble(Glib::ustring const &pref_path, double def=0.0, Glib::ustring const &unit = �) argument 345 getDoubleLimited(Glib::ustring const &pref_path, double def=0.0, double min=DBL_MIN, double max=DBL_MAX, Glib::ustring const &unit = �) argument 367 getColor(Glib::ustring const &pref_path, guint32 def=0x000000ff) argument 598 getIntLimited(int def, int min, int max) const argument 608 getDouble(double def, Glib::ustring const &unit) const argument 619 getDoubleLimited(double def, double min, double max, Glib::ustring const &unit) const argument [all...] |
H A D | sp-object.cpp | 765 int SPObject::getIntAttribute(char const *key, int def) argument 767 sp_repr_get_int(getRepr(),key,&def); local 768 return def; 1344 gchar const * SPObject::getStyleProperty(gchar const *key, gchar const *def) const 1385 return (this->parent)->getStyleProperty(key, def); 1388 return def;
|
/inkscape/src/widgets/ |
H A D | toolbox.cpp | 1083 Glib::ustring const &path, gdouble def, 1100 GtkAdjustment* adj = GTK_ADJUSTMENT( gtk_adjustment_new( prefs->getDouble(path, def) * factor, 1081 create_adjustment_action( gchar const *name, gchar const *label, gchar const *shortLabel, gchar const *tooltip, Glib::ustring const &path, gdouble def, GtkWidget *focusTarget, GObject *dataKludge, gboolean altx, gchar const *altx_mark, gdouble lower, gdouble upper, gdouble step, gdouble page, gchar const** descrLabels, gdouble const* descrValues, guint descrCount, void (*callback)(GtkAdjustment *, GObject *), Inkscape::UI::Widget::UnitTracker *unit_tracker, gdouble climb , guint digits , double factor ) argument
|