/inkscape/src/ |
H A D | helper-fns.h | 49 inline bool helperfns_read_bool(gchar const *value, bool default_value){ argument 50 if (!value) return default_value; 59 return default_value;
|
/inkscape/src/live_effects/parameter/ |
H A D | enum.h | 30 E default_value) 34 defvalue = default_value; 24 EnumParam( const Glib::ustring& label, const Glib::ustring& tip, const Glib::ustring& key, const Util::EnumDataConverter<E>& c, Inkscape::UI::Widget::Registry* wr, Effect* effect, E default_value) argument
|
H A D | togglebutton.cpp | 26 Effect* effect, bool default_value, const Glib::ustring& inactive_label, 29 : Parameter(label, tip, key, wr, effect), value(default_value), defvalue(default_value), 24 ToggleButtonParam( const Glib::ustring& label, const Glib::ustring& tip, const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr, Effect* effect, bool default_value, const Glib::ustring& inactive_label, char const * icon_active, char const * icon_inactive, Inkscape::IconSize icon_size) argument
|
H A D | parameter.cpp | 57 Effect* effect, gdouble default_value, bool no_widget) 59 value(default_value), 63 defvalue(default_value), 55 ScalarParam( const Glib::ustring& label, const Glib::ustring& tip, const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr, Effect* effect, gdouble default_value, bool no_widget) argument
|
H A D | point.cpp | 28 Effect* effect, const gchar *htip, Geom::Point default_value, 31 defvalue(default_value), 26 PointParam( const Glib::ustring& label, const Glib::ustring& tip, const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr, Effect* effect, const gchar *htip, Geom::Point default_value, bool live_update ) argument
|
H A D | random.cpp | 27 Effect* effect, gdouble default_value, long default_seed) 30 defvalue = default_value; 25 RandomParam( const Glib::ustring& label, const Glib::ustring& tip, const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr, Effect* effect, gdouble default_value, long default_seed) argument
|
H A D | path.cpp | 57 Effect* effect, const gchar * default_value) 66 defvalue = g_strdup(default_value); 55 PathParam( const Glib::ustring& label, const Glib::ustring& tip, const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr, Effect* effect, const gchar * default_value) argument
|
/inkscape/src/ui/widget/ |
H A D | combo-enums.h | 42 ComboBoxEnum(E default_value, const Util::EnumDataConverter<E>& c, const SPAttributeEnum a = SP_ATTR_INVALID, bool sort = true) argument 43 : AttrWidget(a, (unsigned int)default_value), setProgrammatically(false), _converter(c) 61 set_active_by_id(default_value);
|
H A D | preferences-widget.cpp | 198 bool default_value) 203 this->set_active( prefs->getBool(_prefs_path, default_value) ); 217 Glib::ustring const &string_value, bool default_value, PrefRadioButton* group_member) 222 (void)default_value; 238 int int_value, bool default_value, PrefRadioButton* group_member) 250 if (default_value) 272 double default_value, bool is_int, bool is_percent) 281 value = 100 * prefs->getDoubleLimited(prefs_path, default_value, lower/100.0, upper/100.0); 283 value = (double) prefs->getIntLimited(prefs_path, (int) default_value, (int) lower, (int) upper); 286 value = prefs->getDoubleLimited(prefs_path, default_value, lowe 197 init(Glib::ustring const &label, Glib::ustring const &prefs_path, bool default_value) argument 216 init(Glib::ustring const &label, Glib::ustring const &prefs_path, Glib::ustring const &string_value, bool default_value, PrefRadioButton* group_member) argument 237 init(Glib::ustring const &label, Glib::ustring const &prefs_path, int int_value, bool default_value, PrefRadioButton* group_member) argument 270 init(Glib::ustring const &prefs_path, double lower, double upper, double step_increment, double , double default_value, bool is_int, bool is_percent) argument 319 init(Glib::ustring const &prefs_path, double lower, double upper, double step_increment, double default_value, UnitType unit_type, Glib::ustring const &default_unit) argument 541 init(int ruler_width, int ruler_height, double lower, double upper, double step_increment, double page_increment, double default_value) argument 633 init(Glib::ustring const &prefs_path, double lower, double upper, double step_increment, double page_increment, double default_value, int digits) argument 679 init(Glib::ustring const &prefs_path, Glib::ustring labels[], int values[], int num_items, int default_value) argument 697 init(Glib::ustring const &prefs_path, Glib::ustring labels[], Glib::ustring values[], int num_items, Glib::ustring default_value) argument [all...] |
/inkscape/src/util/ |
H A D | list-container.h | 114 value_type default_value; local 116 push_back(default_value);
|
/inkscape/src/live_effects/ |
H A D | lpe-knot.cpp | 307 CrossingPoints::inherit_signs(CrossingPoints const &other, int default_value) argument 332 (*this)[n].sign = default_value;
|
/inkscape/src/ui/dialog/ |
H A D | filter-effects-dialog.cpp | 192 ComboWithTooltip<T>(T default_value, const Util::EnumDataConverter<T>& c, const SPAttributeEnum a = SP_ATTR_INVALID, char* tip_text = NULL) argument 197 combo = new ComboBoxEnum<T>(default_value, c, a, false); 967 template<typename T> ComboBoxEnum<T>* add_combo(T default_value, const SPAttributeEnum attr, argument 971 ComboWithTooltip<T>* combo = new ComboWithTooltip<T>(default_value, conv, attr, tip_text);
|