Lines Matching defs:in_repr
55 static ParamNotebookPage * makepage (Inkscape::XML::Node * in_repr, Inkscape::Extension::Extension * in_ext);
117 \param in_repr The XML describing the page
136 ParamNotebookPage::makepage (Inkscape::XML::Node * in_repr, Inkscape::Extension::Extension * in_ext)
147 name = in_repr->attribute("name");
148 guitext = in_repr->attribute("gui-text");
150 guitext = in_repr->attribute("_gui-text");
151 gui_tip = in_repr->attribute("gui-tip");
153 gui_tip = in_repr->attribute("_gui-tip");
154 desc = in_repr->attribute("gui-description");
156 desc = in_repr->attribute("_gui-description");
157 scope_str = in_repr->attribute("scope");
158 gui_hide = in_repr->attribute("gui-hidden");
182 ParamNotebookPage * page = new ParamNotebookPage(name, guitext, desc, scope, gui_hidden, gui_tip, in_ext, in_repr);