Lines Matching refs:css
508 SPCSSAttr *css = sp_repr_css_attr_new();
510 sp_repr_css_set_property(css, combo_id, marker);
526 sp_repr_css_change_recursive(selrepr, css, "style");
537 sp_repr_css_attr_unref(css);
538 css = 0;
695 SPCSSAttr *css = sp_repr_css_attr_new();
697 sp_repr_css_set_property(css, "stroke", lstroke);
698 sp_repr_css_set_property(css, "stroke-opacity", lstroke_opacity);
702 sp_repr_css_set_property(css, "fill", lfill);
703 sp_repr_css_set_property(css, "fill-opacity", lfill_opacity);
707 sp_repr_css_set_property(css, "fill", lstroke);
708 sp_repr_css_set_property(css, "fill-opacity", lstroke_opacity);
712 sp_repr_css_set_property(css, "fill", mfill);
713 //sp_repr_css_set_property(css, "fill-opacity", mfill_opacity);
716 sp_repr_css_change_recursive(marker->firstChild()->getRepr(), css, "style");
724 sp_repr_css_attr_unref(css);
725 css = 0;
1010 StrokeStyle::setScaledDash(SPCSSAttr *css,
1022 sp_repr_css_set_property(css, "stroke-dasharray", osarray.str().c_str());
1026 sp_repr_css_set_property(css, "stroke-dashoffset", osoffset.str().c_str());
1028 sp_repr_css_set_property(css, "stroke-dasharray", "none");
1029 sp_repr_css_set_property(css, "stroke-dashoffset", NULL);
1050 SPCSSAttr *css = sp_repr_css_attr_new();
1080 sp_repr_css_set_property(css, "stroke-width", os_width.str().c_str());
1086 sp_repr_css_set_property(css, "stroke-miterlimit", os_ml.str().c_str());
1090 setScaledDash(css, ndash, dash, offset, width);
1092 sp_desktop_apply_css_recursive ((*i), css, true);
1110 sp_desktop_set_style (desktop, css, false);
1112 sp_repr_css_attr_unref(css);
1113 css = 0;
1168 * calls the respective routines to update css properties, etc.
1183 SPCSSAttr *css = sp_repr_css_attr_new();
1187 sp_repr_css_set_property(css, "stroke-linejoin", tb->get_stroke_style());
1188 sp_desktop_set_style (spw->desktop, css);
1192 sp_repr_css_set_property(css, "stroke-linecap", tb->get_stroke_style());
1193 sp_desktop_set_style (spw->desktop, css);
1197 sp_repr_css_set_property(css, "paint-order", tb->get_stroke_style());
1198 sp_desktop_set_style (spw->desktop, css);
1202 sp_repr_css_attr_unref(css);
1203 css = 0;