Searched refs:desc (Results 1 - 25 of 44) sorted by relevance

12

/inkscape/share/filters/
H A Di18n.py16 desc = "N_(\"" + filter.getAttribute('inkscape:menu-tooltip') + "\")" variable
18 desc = "" variable
24 sys.stdout.write(comment + "\n" + label + ",\n" + menu + ",\n" + desc + ",\n")
/inkscape/src/
H A DTRPIFormatter.h32 virtual void enterWorld( const WorldDescription & /*desc*/ )
49 virtual void leaveWorld( const WorldDescription & desc )
53 for ( unsigned int i = 0; i < desc.numSuites(); i++ ) {
54 const SuiteDescription& suite = desc.suiteDescription(i);
83 virtual void enterSuite( const SuiteDescription & desc )
85 (void)desc;
94 virtual void leaveSuite( const SuiteDescription & desc )
96 (void)desc;
99 virtual void enterTest( const TestDescription & desc )
101 (void)desc;
[all...]
H A DPylogFormatter.h34 virtual void enterWorld( const WorldDescription & /*desc*/ )
40 virtual void leaveWorld( const WorldDescription & desc )
48 for ( unsigned int i = 0; i < desc.numSuites(); i++ ) {
49 const SuiteDescription& suite = desc.suiteDescription(i);
98 (*_o) << "Command line asked for " << desc.numTotalTests() << " of " << desc.numTotalTests() << " tests" << endl;
108 virtual void enterSuite( const SuiteDescription & desc )
110 (void)desc;
121 virtual void leaveSuite( const SuiteDescription & desc )
123 (void)desc;
[all...]
H A Dbox3d-side.cpp85 guint desc = atoi (value); local
87 if (!Box3D::is_face_id(desc)) {
88 g_print ("desc is not a face id: =%s=\n", value);
91 g_return_if_fail (Box3D::is_face_id (desc));
93 Box3D::Axis plane = (Box3D::Axis) (desc & 0x7);
97 this->front_or_rear = (Box3D::FrontOrRear) (desc & 0x8);
/inkscape/src/ui/dialog/
H A Dobject-attributes.cpp133 const SPAttrDesc *desc; local
138 desc = anchor_desc;
147 desc = image_nohref_desc;
151 desc = image_desc;
166 while (desc[len].label)
168 labels.push_back(desc[len].label);
169 attrs.push_back (desc[len].attribute);
H A Dtemplate-widget.cpp70 SPDesktop *desc = sp_file_new_default(); local
71 _current_template.tpl_effect->effect(desc);
72 DocumentUndo::clearUndo(desc->getDocument());
73 desc->getDocument()->setModifiedSinceSave(false);
76 sp_namedview_window_from_document( desc );
/inkscape/src/extension/param/
H A Dparameter.cpp64 const char *desc = in_repr->attribute("gui-description"); local
65 if (desc == NULL) {
66 desc = in_repr->attribute("_gui-description");
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, scop
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 Ddescription.h34 const gchar * desc,
H A Ddescription.cpp31 const gchar * desc,
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 Dnotebook.cpp57 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)
140 const char * desc; local
154 desc = in_repr->attribute("gui-description");
155 if (desc == NULL)
156 desc = in_repr->attribute("_gui-description");
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, scop
[all...]
H A Dcolor.cpp55 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 Dbool.h35 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 Dcolor.h34 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 Denum.h41 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 Dfloat.h34 const gchar * desc,
H A Dint.h34 const gchar * desc,
H A Dnotebook.h44 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 Dradiobutton.h39 const gchar * desc,
H A Dstring.h27 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 Dstring.cpp79 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 Dbool.cpp27 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),
/inkscape/share/extensions/
H A Dwebslicer_create_group.py80 desc = inkex.etree.SubElement(group, 'desc')
81 desc.text = self.get_conf_text_from_list(
H A Dwebslicer_export.py185 desc = el.find(self.svgNS+'desc')
187 if desc is None:
188 desc = inkex.etree.SubElement(el, 'desc')
189 if desc.text is None:
190 desc.text = ''
191 for line in desc.text.split("\n"):
201 desc.text += "\nhtml-id:"+conf['html-id']
206 desc
[all...]
H A Dwebslicer_create_rect.py118 desc = inkex.etree.SubElement(rect, 'desc')
124 desc.text = self.get_conf_text_from_list( self.get_conf_list() )
/inkscape/src/livarot/
H A DPathOutline.cpp1356 outline_callback_data desc = *data; local
1358 desc.tSt = data->tSt;
1359 desc.tEn = (data->tSt + data->tEn) / 2;
1360 desc.x1 = data->x1;
1361 desc.y1 = data->y1;
1362 desc.x2 = miPos[0];
1363 desc.y2 = miPos[1];
1364 desc.d.c.dx1 = 0.5 * stTle * stTgt[0];
1365 desc.d.c.dy1 = 0.5 * stTle * stTgt[1];
1366 desc
1495 outline_callback_data desc = *data; local
[all...]

Completed in 1972 milliseconds

12