Lines Matching defs:si
1337 StyleInfo si;
1348 si.fillColor = buf;
1349 si.fill = "solid";
1353 si.fillOpacity = buf;
1360 si.fill = "gradient";
1373 si.strokeColor = buf;
1375 si.strokeWidth = buf;
1376 si.stroke = "solid";
1380 si.strokeOpacity = buf;
1387 si.stroke = "gradient";
1396 if (si.equals(*iter))
1413 si.name = styleName;
1414 styleTable.push_back(si);
1417 output = Glib::ustring::compose ("<style:style style:name=\"%1\" style:family=\"graphic\" style:parent-style-name=\"standard\">\n", si.name);
1419 if (si.fill == "gradient")
1425 output += Glib::ustring(" draw:fill=\"") + si.fill + "\"";
1426 if(si.fill != "none")
1428 output += Glib::ustring::compose(" draw:fill-color=\"%1\"", si.fillColor);
1431 if (si.stroke == "gradient")
1438 output += Glib::ustring(" draw:stroke=\"") + si.stroke + "\"";
1439 if (si.stroke != "none")
1441 output += Glib::ustring::compose (" svg:stroke-width=\"%1\" svg:stroke-color=\"%2\" ", si.strokeWidth, si.strokeColor);