Lines Matching refs:css
347 SPCSSAttr *css = sp_repr_css_attr_new();
348 sp_repr_css_set_property(css, "fill-rule", (mode == SPPaintSelector::FILLRULE_EVENODD) ? "evenodd":"nonzero");
350 sp_desktop_set_style(desktop, css);
352 sp_repr_css_attr_unref(css);
353 css = 0;
494 SPCSSAttr *css = sp_repr_css_attr_new();
495 sp_repr_css_set_property(css, (kind == FILL) ? "fill" : "stroke", "none");
497 sp_desktop_set_style(desktop, css);
499 sp_repr_css_attr_unref(css);
500 css = 0;
546 SPCSSAttr *css = 0;
549 css = sp_repr_css_attr_new();
550 sp_repr_css_set_property(css, "fill-opacity", "1.0");
576 sp_repr_css_change_recursive((*i)->getRepr(), css, "style");
602 sp_repr_css_change_recursive((*i)->getRepr(), css, "style");
610 if (css) {
611 sp_repr_css_attr_unref(css);
612 css = 0;
633 SPCSSAttr *css = sp_repr_css_attr_new();
635 sp_repr_css_set_property(css, (kind == FILL) ? "fill" : "stroke", urltext);
639 sp_repr_css_set_property(css, "fill-opacity", "1.0");
663 sp_desktop_apply_css_recursive(selobj, css, true);
665 sp_repr_css_change_recursive(selrepr, css, "style");
669 sp_repr_css_attr_unref(css);
670 css = 0;
684 SPCSSAttr *css = sp_repr_css_attr_new();
686 sp_repr_css_unset_property(css, "fill");
688 sp_repr_css_unset_property(css, "stroke");
689 sp_repr_css_unset_property(css, "stroke-opacity");
690 sp_repr_css_unset_property(css, "stroke-width");
691 sp_repr_css_unset_property(css, "stroke-miterlimit");
692 sp_repr_css_unset_property(css, "stroke-linejoin");
693 sp_repr_css_unset_property(css, "stroke-linecap");
694 sp_repr_css_unset_property(css, "stroke-dashoffset");
695 sp_repr_css_unset_property(css, "stroke-dasharray");
698 sp_desktop_set_style(desktop, css);
699 sp_repr_css_attr_unref(css);
700 css = 0;