Searched defs:desc (Results 1 - 25 of 26) 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/ui/dialog/
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 );
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 Dobject-properties.cpp435 gchar *desc = obj->desc(); local
436 if (desc) {
437 _tv_description.get_buffer()->set_text(desc);
438 g_free(desc);
506 Glib::ustring desc = _tv_description.get_buffer()->get_text(start, end, TRUE); local
507 if (obj->setDesc(desc.c_str())) {
/inkscape/src/extension/param/
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 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 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),
H A Denum.cpp49 ParamComboBox::ParamComboBox(const gchar *name, const gchar *guitext, const gchar *desc, argument
52 : Parameter(name, guitext, desc, scope, gui_hidden, gui_tip, ext)
H A Dfloat.cpp32 const gchar * desc,
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 Dint.cpp32 const gchar * desc,
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 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 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 Dradiobutton.cpp62 const gchar * desc,
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/src/
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);
H A Dpath-chemistry.cpp423 gchar *desc = item->desc(); local
441 if (desc && newObj) {
442 newObj->setDesc(desc);
443 g_free(desc);
H A Dsp-object.cpp122 // vg, g, defs, desc, title, symbol, use, image, switch, path, rect, circle, ellipse, line, polyline,
1406 Titles and descriptions are stored in 'title' and 'desc' child elements
1410 be made. The same applies to 'desc' elements. Therefore, these functions
1411 ignore all but the first 'title' child element and first 'desc' child
1414 This will change in SVG 2, where multiple 'title' and 'desc' elements will
1428 gchar * SPObject::desc() const function in class:SPObject
1430 return getTitleOrDesc("svg:desc");
1433 bool SPObject::setDesc(gchar const *desc, bool verbatim) argument
1435 return setTitleOrDesc(desc, "svg:desc", verbati
[all...]
H A Dsplivarot.cpp718 gchar *desc = source->desc(); local
829 if (desc) {
830 doc->getObjectByRepr(repr)->setDesc(desc);
840 if (desc) g_free(desc);
1337 gchar *desc = item->desc(); local
1377 if (desc) {
1378 newitem->setDesc(desc);
2033 gchar *desc = item->desc(); local
[all...]
/inkscape/src/ui/tools/
H A Dbox3d-tool.cpp517 guint desc = Box3D::int_to_face(i); local
519 Box3D::Axis plane = (Box3D::Axis) (desc & 0x7);
523 side->front_or_rear = (Box3D::FrontOrRear) (desc & 0x8);
/inkscape/src/ui/widget/
H A Dpage-sizer.cpp306 Glib::ustring desc = formatBuf; local
307 desc.append(" " + p->unit);
312 row[_paperSizeListColumns.descColumn] = desc;
/inkscape/share/extensions/
H A Ddxf_input.py362 desc = inkex.etree.SubElement(doc.getroot(), 'desc', {}) variable
429 desc.text = '%s - scale = %f, origin = (%f, %f), method = %s' % (unicode(args[0], options.input_encode), scale, xmin, ymin, options.scalemethod)
/inkscape/src/libnrtype/
H A Dfont-lister.cpp637 PangoFontDescription *desc = pango_font_description_from_string(fontspec.c_str()); local
638 PangoWeight weight = pango_font_description_get_weight(desc);
680 PangoStyle style = pango_font_description_get_style(desc);
693 PangoStretch stretch = pango_font_description_get_stretch(desc);
724 PangoVariant variant = pango_font_description_get_variant(desc);
/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...]
/inkscape/src/2geom/
H A Dconicsec.cpp580 double desc = q1*q1 - 4*q2*q0; local
584 << desc << "\n";*/
585 if (desc < 0)
587 else if (desc == 0)
590 desc = std::sqrt(desc);
594 t = -0.5 * desc;
598 t = -0.5 * (q1 + sgn(q1) * desc);
/inkscape/src/extension/dbus/
H A Ddocument-interface.cpp227 gchar *finish_create_shape (DocumentInterface *doc_interface, GError ** /*error*/, Inkscape::XML::Node *newNode, gchar *desc) argument
246 Inkscape::DocumentUndo::done(doc_interface->target.getDocument(), 0, (gchar *)desc);

Completed in 114 milliseconds

12