/inkscape/src/libcroco/ |
H A D | cr-declaration.h | 44 *It is actually a chained list of property/value pairs. 49 /**The property.*/ 50 CRString *property ; member in struct:_CRDeclaration 52 /**The value of the property.*/
|
H A D | cr-doc-handler.h | 158 *@param a_name the name of the parsed property. 160 *the value of the property. A css expression is 165 void (*property) (CRDocHandler *a_this, member in struct:_CRDocHandler
|
H A D | cr-declaration.c | 62 *@a_property: the property string of the declaration 95 result->property = a_property; 123 CRString *property = NULL; local 140 status = cr_parser_parse_declaration (parser, &property, 142 if (status != CR_OK || !property) 145 result = cr_declaration_new (a_statement, property, value); 147 property = NULL; 159 if (property) { 160 cr_string_destroy (property); 161 property 188 CRString *property = NULL; local [all...] |
H A D | cr-om-parser.c | 57 static void property (CRDocHandler * a_this, 168 sac_handler->property = property; 646 property (CRDocHandler * a_this, function
|
H A D | cr-parser.c | 1452 *Parses a "property" as specified by the css2 spec at [4.1.1]: 1453 *property : IDENT S*; 1456 *@param GString a_property out parameter. The parsed property without the 1458 *new instance of GString and set it content to the parsed property. 1459 *If not, the property is just appended to a_property's previous content. 1462 *next construction was not a "property", or an error code. 3158 *@a_property: the successfully parsed property. The caller 3166 *declaration ::= [property ':' S* expr prio?]? 3194 (const guchar *) "while parsing declaration: next property is malformed", 3335 CRString *property local 3884 *property = NULL; local 4222 CRString *property = NULL; local [all...] |
/inkscape/src/debug/ |
H A D | simple-event.h | 39 PropertyPair property(unsigned property) const { function in class:Inkscape::Debug::SimpleEvent 40 return _properties[property];
|
H A D | logger.cpp | 173 Event::PropertyPair property=event.property(i); local 174 log_stream << " " << property.name.pointer() << "=\""; 175 write_escaped_value(log_stream, property.value);
|
/inkscape/src/ |
H A D | attribute-rel-css.cpp | 34 * This function checks whether an element -> CSS property pair 37 bool SPAttributeRelCSS::findIfValid(Glib::ustring property, Glib::ustring element) argument 54 if (property[0] == '-' 55 || property.substr(0,4) == "role" 56 || property.substr(0,4) == "aria" 57 || property.substr(0,5) == "xmlns" 58 || property.substr(0,8) == "inkscape:" 59 || property.substr(0,9) == "sodipodi:" 60 || property.substr(0,4) == "rdf:" 61 || property 77 findIfDefault(Glib::ustring property, Glib::ustring value) argument 96 findIfInherit(Glib::ustring property) argument 111 findIfProperty(Glib::ustring property) argument [all...] |
H A D | attribute-rel-util.cpp | 177 * 1. Is a style property appropriate on the given element? 179 * 2. Is the value of the style property useful? 181 * Is it the default value (and the property on the parent is not set or does not inherit)? 200 gchar const * property = g_quark_to_string(iter->key); local 203 // Check if a property is applicable to an element (i.e. is font-family useful for a <rect>?). 204 if( !SPAttributeRelCSS::findIfValid( property, element ) ) { 206 g_warning( "<%s id=\"%s\">: CSS Style property: \"%s\" is inappropriate.", 207 element.c_str(), id.c_str(), property ); 210 toDelete.insert(property); 215 // Find parent value for same property (propert [all...] |
H A D | sp-pattern.cpp | 347 SPPattern *SPPattern::clone_if_necessary(SPItem *item, const gchar *property) argument 355 sp_repr_css_set_property(css, property, href.c_str());
|
H A D | gradient-chemistry.cpp | 430 SPGradient *sp_gradient_convert_to_userspace(SPGradient *gr, SPItem *item, gchar const *property) argument 433 g_message("sp_gradient_convert_to_userspace(%p, %p, \"%s\")", gr, item, property); 541 sp_style_set_property_url(item, property, gr, true); 543 sp_style_set_property_url(item, property, gr, false);
|
H A D | style.cpp | 97 // For enums: property( name, enumeration, default value , inherits = true ); 98 // For scale24: property( name, default value = 0, inherits = true ); 707 g_warning("Unimplemented style property id SP_PROP_FONT_SIZE_ADJUST: value: %s", val); 812 g_warning("Unimplemented style property SP_PROP_ALIGNMENT_BASELINE: value: %s", val); 815 g_warning("Unimplemented style property SP_PROP_ORIENTATION_HORIZONTAL: value: %s", val); 818 g_warning("Unimplemented style property SP_PROP_ORIENTATION_VERTICAL: value: %s", val); 821 g_warning("Unimplemented style property SP_PROP_KERNING: value: %s", val); 825 g_warning("Unimplemented style property SP_PROP_CLIP: value: %s", val); 831 g_warning("Unimplemented style property SP_PROP_CURSOR: value: %s", val); 854 * style property 1579 sp_style_set_property_url(SPObject *item, gchar const *property, SPObject *linked, bool recursive) argument 1893 sp_css_attr_scale_property_single(SPCSSAttr *css, gchar const *property, double ex, bool only_with_units = false) argument 1919 sp_css_attr_scale_property_list(SPCSSAttr *css, gchar const *property, double ex) argument [all...] |
H A D | desktop-style.cpp | 244 // If any font property has changed, then we have written out the font 288 gchar const *property = sp_repr_css_property(desktop->current, local 292 if (desktop->current && property) { // if there is style and the property in it, 293 if (strncmp(property, "url", 3)) { // and if it's not url, 295 r = sp_svg_read_color(property, r); 317 gchar const *property = css ? sp_repr_css_property(css, "opacity", "1.000") : 0; local 319 if (desktop->current && property) { // if there is style and the property in it, 320 if ( !sp_svg_number_read_f(property, 346 gchar const *property = css ? sp_repr_css_property(css, is_fill ? "fill-opacity": "stroke-opacity", "1.000") : 0; local 375 gchar const *property = sp_repr_css_property(css, is_fill ? "fill" : "stroke", "#000"); local 1858 sp_desktop_query_style_from_list(const std::vector<SPItem*> &list, SPStyle *style, int property) argument 1910 sp_desktop_query_style(SPDesktop *desktop, SPStyle *style, int property) argument [all...] |
H A D | gradient-drag.cpp | 133 * When a _query_style_signal is received, check that \a property requests fill/stroke/opacity (otherwise 137 static int gr_drag_style_query(SPStyle *style, int property, gpointer data) argument 141 if (property != QUERY_STYLE_PROPERTY_FILL && property != QUERY_STYLE_PROPERTY_STROKE && property != QUERY_STYLE_PROPERTY_MASTEROPACITY) { 300 sp_repr_css_set_property(stop, "stop-opacity", "0"); // if a single fill/stroke property is set to none, don't change color, set opacity to 0
|
/inkscape/src/ui/widget/ |
H A D | style-subject.cpp | 74 int StyleSubject::Selection::queryStyle(SPStyle *query, int property) { argument 77 return sp_desktop_query_style(desktop, query, property); 150 int StyleSubject::CurrentLayer::queryStyle(SPStyle *query, int property) { argument 155 return sp_desktop_query_style_from_list(list, query, property);
|
/inkscape/src/ui/tools/ |
H A D | text-tool.cpp | 1453 int TextTool::_styleQueried(SPStyle *style, int property) argument 1493 int result = sp_desktop_query_style_from_list (styles_list, style, property);
|