Searched refs:def (Results 1 - 21 of 21) sorted by relevance

/inkscape/cxxtest/sample/winddk/
H A DMakefile2 !include $(NTMAKEENV)\makefile.def
/inkscape/src/svg/
H A Dtest-stubs.h17 long long int prefs_get_int_attribute(gchar const *path, gchar const *attr, long long int def);
H A Dtest-stubs.cpp30 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 Dsvg-color.h8 guint32 sp_svg_read_color(char const *str, char const **end_ptr, guint32 def);
H A Dsvg-color.cpp214 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 Dsvg.h61 double sp_svg_read_percentage( const char * str, double def );
H A Dsvg-length.cpp530 double sp_svg_read_percentage(char const *str, double def)
533 return def;
/inkscape/src/
H A Dpreferences.h138 * @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 Ddocument.cpp1626 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 Dsp-object.cpp765 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 Dsp-object.h700 int getIntAttribute(char const *key, int def);
756 char const *getStyleProperty(char const *key, char const *def) const;
/inkscape/share/extensions/test/
H A Dtest_template.py.txt17 #def setUp(self):
19 def test_run_without_parameters(self):
/inkscape/src/extension/
H A Dpatheffect.h27 Inkscape::XML::Node * def);
/inkscape/src/ui/dialog/
H A Dcolor-item.cpp128 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 Dswatches.cpp173 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 Dcolor-item.h17 #include "widgets/ege-paint-def.h"
69 ege::PaintDef def; member in class:Inkscape::UI::Dialogs::ColorItem
H A Dfilter-effects-dialog.cpp117 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 Dlp-mark-bugs-released26 def mark_released (bug):
33 def main():
/inkscape/share/extensions/
H A Dsimplepath.rb27 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 Dtoolbox.h132 Glib::ustring const &path, gdouble def,
H A Dtoolbox.cpp1083 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

Completed in 264 milliseconds