/inkscape/share/filters/ |
H A D | i18n.py | 16 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 D | template-widget.cpp | 70 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 D | object-attributes.cpp | 133 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 D | object-properties.cpp | 435 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 D | description.cpp | 31 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 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 | 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 | 49 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 D | float.cpp | 32 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 D | int.cpp | 32 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 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) 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 D | parameter.cpp | 64 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 D | radiobutton.cpp | 62 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 D | box3d-side.cpp | 85 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 D | path-chemistry.cpp | 423 gchar *desc = item->desc(); local 441 if (desc && newObj) { 442 newObj->setDesc(desc); 443 g_free(desc);
|
H A D | sp-object.cpp | 122 // 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 D | splivarot.cpp | 718 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 D | box3d-tool.cpp | 517 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 D | page-sizer.cpp | 306 Glib::ustring desc = formatBuf; local 307 desc.append(" " + p->unit); 312 row[_paperSizeListColumns.descColumn] = desc;
|
/inkscape/share/extensions/ |
H A D | dxf_input.py | 362 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 D | font-lister.cpp | 637 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 D | PathOutline.cpp | 1356 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 D | conicsec.cpp | 580 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 D | document-interface.cpp | 227 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);
|