/inkscape/cxxtest/sample/winddk/ |
H A D | Makefile | 2 !include $(NTMAKEENV)\makefile.def
|
/inkscape/src/svg/ |
H A D | test-stubs.h | 17 long long int prefs_get_int_attribute(gchar const *path, gchar const *attr, long long int def);
|
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.h | 8 guint32 sp_svg_read_color(char const *str, char const **end_ptr, guint32 def);
|
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...] |
H A D | svg.h | 61 double sp_svg_read_percentage( const char * str, double def );
|
H A D | svg-length.cpp | 530 double sp_svg_read_percentage(char const *str, double def) 533 return def;
|
/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 | document.cpp | 1626 for ( SPObject *def = obj->firstChild(); def; def = def->getNext()) { 1628 def->requestOrphanCollection(); 1736 for (Inkscape::XML::Node *def = defs->firstChild() ; def ; def = def->next()) { 1737 if(def [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;
|
H A D | sp-object.h | 700 int getIntAttribute(char const *key, int def); 756 char const *getStyleProperty(char const *key, char const *def) const;
|
/inkscape/share/extensions/test/ |
H A D | test_template.py.txt | 17 #def setUp(self): 19 def test_run_without_parameters(self):
|
/inkscape/src/extension/ |
H A D | patheffect.h | 27 Inkscape::XML::Node * def);
|
/inkscape/src/ui/dialog/ |
H A D | color-item.cpp | 128 item->def.descr.c_str()); 210 if (item->def.getType() != ege::PaintDef::RGB){ 237 guint32 fillWith = (0xff000000 & (item->def.getR() << 24)) 238 | (0x00ff0000 & (item->def.getG() << 16)) 239 | (0x0000ff00 & (item->def.getB() << 8)); 275 def(type), 289 def( r, g, b, name ), 320 def = other.def; 366 //def [all...] |
H A D | swatches.cpp | 173 std::string targetName(bounceTarget->def.descr); 215 sp_gradient_unset_swatch(desktop, bounceTarget->def.descr); 1021 if ( (newColor->def.getType() != oldColor->def.getType()) || 1022 (newColor->def.getR() != oldColor->def.getR()) || 1023 (newColor->def.getG() != oldColor->def.getG()) || 1024 (newColor->def.getB() != oldColor->def [all...] |
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/packaging/scripts/ |
H A D | lp-mark-bugs-released | 26 def mark_released (bug): 33 def main():
|
/inkscape/share/extensions/ |
H A D | simplepath.rb | 27 def lexPath(d) 64 def parsePath(d) 161 def formatPath(a) 166 def _transformPath(p) 175 def translatePath(p, x, y) 184 def scalePath(p, x, y) 193 def rotatePath(p, a, cx = 0, cy = 0)
|
/inkscape/src/widgets/ |
H A D | toolbox.h | 132 Glib::ustring const &path, gdouble def,
|
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
|