/inkscape/src/extension/param/ |
H A D | parameter.cpp | 81 Parameter::_scope_t scope = Parameter::SCOPE_USER; local 83 const char *scope_str = in_repr->attribute("scope"); 86 scope = Parameter::SCOPE_USER; 88 scope = Parameter::SCOPE_DOCUMENT; 90 scope = Parameter::SCOPE_NODE; 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_hidde 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 | 35 const Parameter::_scope_t scope,
|
H A D | description.cpp | 32 const Parameter::_scope_t scope, 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) 142 Parameter::_scope_t scope = Parameter::SCOPE_USER; local 157 scope_str = in_repr->attribute("scope"); 174 scope = Parameter::SCOPE_USER; 176 scope = Parameter::SCOPE_DOCUMENT; 178 scope = Parameter::SCOPE_NODE; 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, boo argument [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 | 35 const Parameter::_scope_t scope,
|
H A D | int.h | 35 const Parameter::_scope_t scope,
|
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 | 40 const Parameter::_scope_t scope,
|
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 | 33 const Parameter::_scope_t scope, 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 | 33 const Parameter::_scope_t scope, 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 | 62 const Parameter::_scope_t scope,
|
H A D | radiobutton.cpp | 63 const Parameter::_scope_t scope, 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
|
/inkscape/share/extensions/ |
H A D | replace_font.py | 169 self.OptionParser.add_option("--scope", action="store", 170 type="string", dest="scope", 183 def relevant_items(self, scope): 185 Depending on the scope, returns all text elements, or all 190 if scope == "selection_only": 237 scope = self.options.scope 239 relevant_items = self.relevant_items(scope)
|