/inkscape/src/extension/param/ |
H A D | parameter.cpp | 60 const char *gui_tip = in_repr->attribute("gui-tip"); local 61 if (gui_tip == NULL) { 62 gui_tip = in_repr->attribute("_gui-tip"); 97 param = new ParamBool(name, guitext, desc, scope, gui_hidden, gui_tip, in_ext, in_repr); 100 param = new ParamInt(name, guitext, desc, scope, gui_hidden, gui_tip, in_ext, in_repr, ParamInt::FULL); 102 param = new ParamInt(name, guitext, desc, scope, gui_hidden, gui_tip, in_ext, in_repr, ParamInt::MINIMAL); 106 param = new ParamFloat(name, guitext, desc, scope, gui_hidden, gui_tip, in_ext, in_repr, ParamFloat::FULL); 108 param = new ParamFloat(name, guitext, desc, scope, gui_hidden, gui_tip, in_ext, in_repr, ParamFloat::MINIMAL); 111 param = new ParamString(name, guitext, desc, scope, gui_hidden, gui_tip, in_ext, in_repr); 119 param = new ParamDescription(name, guitext, desc, scope, gui_hidden, gui_tip, in_ex 281 Parameter(gchar const * name, gchar const * guitext, gchar const * desc, const Parameter::_scope_t scope, bool gui_hidden, gchar const * gui_tip, Inkscape::Extension::Extension * ext) argument [all...] |
H A D | description.h | 37 const gchar * gui_tip,
|
H A D | description.cpp | 34 const gchar * gui_tip, 38 Parameter(name, guitext, desc, scope, gui_hidden, gui_tip, ext), 29 ParamDescription(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml, AppearanceMode mode) argument
|
H A D | notebook.cpp | 57 ParamNotebookPage(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml); 66 ParamNotebookPage::ParamNotebookPage (const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml) : argument 67 Parameter(name, guitext, desc, scope, gui_hidden, gui_tip, ext) 145 const char * gui_tip; local 151 gui_tip = in_repr->attribute("gui-tip"); 152 if (gui_tip == NULL) 153 gui_tip = in_repr->attribute("_gui-tip"); 182 ParamNotebookPage * page = new ParamNotebookPage(name, guitext, desc, scope, gui_hidden, gui_tip, in_ext, in_repr); 227 ParamNotebook::ParamNotebook (const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml) : argument 228 Parameter(name, guitext, desc, scope, gui_hidden, gui_tip, ex [all...] |
H A D | color.cpp | 55 ParamColor::ParamColor (const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml) : argument 56 Parameter(name, guitext, desc, scope, gui_hidden, gui_tip, ext),
|
H A D | bool.h | 35 ParamBool(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml);
|
H A D | color.h | 34 ParamColor(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml);
|
H A D | enum.h | 41 ParamComboBox(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml);
|
H A D | float.h | 37 const gchar * gui_tip,
|
H A D | int.h | 37 const gchar * gui_tip,
|
H A D | notebook.h | 44 ParamNotebook(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml);
|
H A D | radiobutton.h | 42 const gchar * gui_tip,
|
H A D | string.h | 27 ParamString(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml);
|
H A D | string.cpp | 79 ParamString::ParamString (const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml) : argument 80 Parameter(name, guitext, desc, scope, gui_hidden, gui_tip, ext),
|
H A D | bool.cpp | 27 ParamBool::ParamBool(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml) : argument 28 Parameter(name, guitext, desc, scope, gui_hidden, gui_tip, ext),
|
H A D | enum.cpp | 50 const Parameter::_scope_t scope, bool gui_hidden, const gchar *gui_tip, 52 : Parameter(name, guitext, desc, scope, gui_hidden, gui_tip, ext) 49 ParamComboBox(const gchar *name, const gchar *guitext, const gchar *desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar *gui_tip, Inkscape::Extension::Extension *ext, Inkscape::XML::Node *xml) argument
|
H A D | float.cpp | 35 const gchar * gui_tip, 39 Parameter(name, guitext, desc, scope, gui_hidden, gui_tip, ext), 30 ParamFloat(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml, AppearanceMode mode) argument
|
H A D | int.cpp | 35 const gchar * gui_tip, 39 Parameter(name, guitext, desc, scope, gui_hidden, gui_tip, ext), 30 ParamInt(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml, AppearanceMode mode) argument
|
H A D | parameter.h | 64 gchar const *gui_tip,
|
H A D | radiobutton.cpp | 65 const gchar * gui_tip, 69 Parameter(name, guitext, desc, scope, gui_hidden, gui_tip, ext), 60 ParamRadioButton(const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml, AppearanceMode mode) argument
|