Searched defs:element (Results 1 - 8 of 8) sorted by relevance

/inkscape/src/
H A Dattribute-rel-svg.cpp10 * SPAttributeRelSVG class stores the mapping of element->attribute
32 * This functions checks whether an element -> attribute pair is allowed or not
34 bool SPAttributeRelSVG::findIfValid(Glib::ustring attribute, Glib::ustring element) argument
43 // Strip of "svg:" from the element's name
44 Glib::ustring temp = element;
64 //g_warning( "Invalid attribute: %s used on <%s>", attribute.c_str(), element.c_str() );
70 * One timer singleton constructor, to load the element -> attributes data
85 g_warning("Could not open the data file for XML attribute-element map construction: %s", filepath.c_str());
104 std::string element; local
106 element
[all...]
H A Dattribute-rel-css.cpp10 * SPAttributeRelCSS class stores the mapping of element->style_properties
34 * This function checks whether an element -> CSS property pair
37 bool SPAttributeRelCSS::findIfValid(Glib::ustring property, Glib::ustring element) argument
46 // Strip of "svg:" from the element's name
47 Glib::ustring temp = element;
68 //g_warning( "Invalid attribute: %s used on <%s>", property.c_str(), element.c_str() );
153 g_warning("Could not open the data file for CSS attribute-element map construction: %s", fileName.c_str());
169 // Load data to structure that holds element -> set of CSS props
172 std::string element; local
174 element
[all...]
H A Dattribute-rel-util.cpp70 Glib::ustring element = repr->name(); local
73 if( element.substr(0,4) == "svg:" ) {
80 // Don't remove default css values if element is in <defs> or is a <symbol>
81 Glib::ustring element = child->name(); local
83 if( element.compare( "svg:defs" ) == 0 || element.compare( "svg:symbol" ) == 0 ) {
91 * Clean attributes on an element
98 Glib::ustring element = repr->name(); local
114 bool is_useful = sp_attribute_check_attribute( element, id, attribute, flags & SP_ATTR_CLEAN_ATTR_WARN );
129 * Clean CSS style on an element
188 Glib::ustring element = repr->name(); local
269 sp_attribute_check_attribute(Glib::ustring element, Glib::ustring id, Glib::ustring attribute, bool warn) argument
[all...]
/inkscape/src/libvpsc/pairingheap/
H A DPairingHeap.h45 T element; member in class:PairNode
51 element( theElement ),
/inkscape/src/xml/
H A Dsimple-node.cpp48 string = g_strdup_printf("element(%p)=%s(#%s)", &node, node.name(), id);
50 string = g_strdup_printf("element(%p)=%s", &node, node.name());
320 Glib::ustring element = g_quark_to_string(_name); local
321 // g_message("setAttribute: %s: %s: %s", element.c_str(), name, value);
325 if( element.substr(0,4) == "svg:" && value != NULL) {
338 bool is_useful = sp_attribute_check_attribute( element, id, name, attr_warn );
345 // Check style properties -- Note: if element is not yet inserted into
401 //g_warning( "setAttribute notified: %s: %s: %s: %s", name, element.c_str(), old_value, new_value );
/inkscape/src/util/
H A Dunits.cpp456 Glib::ustring element = ctx.get_element(); local
457 if (element == "name") {
459 } else if (element == "plural") {
461 } else if (element == "abbr") {
463 } else if (element == "factor") {
466 } else if (element == "description") {
/inkscape/src/ui/dialog/
H A Dinkscape-preferences.cpp931 _page_svgoutput.add_line( true, "", _svgoutput_inlineattrs, "", _("Put attributes on the same line as the element tag"), false);
964 _page_svgoutput.add_line( true, "", _svgoutput_attrremove, "", _("Delete invalid or non-useful attributes from element tag"), false);
2094 GList* element; local
2098 for (element = g_list_first(recent_list); element; element = g_list_next(element)){
2100 GtkRecentInfo* info = (GtkRecentInfo*) element->data;
/inkscape/src/extension/internal/
H A Dtext_reassemble.c432 element that uses the largest font. This will definitely give the wrong
518 element that uses the largest font. This will definitely give the wrong
1285 \param element pointer to the BRECT_SPECS structure
1287 int brinfo_insert(BR_INFO *bri, const BRECT_SPECS *element){ argument
1291 memcpy(&(bri->rects[bri->used]),element,sizeof(BRECT_SPECS));
1298 \brief Merge BRECT_SPEC element src into/with BRECT_SPEC element dst. src is unchanged. (Merge two bounding rectangles.)
2373 Not until the last element in the second complex is added will the bounding rectangles for the complexes overlap.
2375 Check for this effect now if there is a preceding complex and the first element of the current complex is
2380 tspi = &(tpi->chunks[ kidp->members[kidp->used - 1] ]); /* here, the last text element i
[all...]

Completed in 296 milliseconds