Searched defs:stroke (Results 1 - 21 of 21) sorted by relevance

/inkscape/src/extension/internal/filter/
H A Ddistort.h77 "<param name=\"stroke\" gui-text=\"" N_("Stroke:") "\" type=\"enum\">\n"
125 std::ostringstream stroke; local
139 stroke << ext->get_param_enum("stroke");
160 map.str().c_str(), intensity.str().c_str(), dilat.str().c_str(), erosion.str().c_str(), stroke.str().c_str() );
H A Dtextures.h45 * Arithmetic stroke options
75 "<param name=\"stroke\" gui-text=\"" N_("Stroke:") "\" type=\"enum\">\n"
83 "<_param name=\"customHeader\" type=\"description\" appearance=\"header\">" N_("Custom stroke options") "</_param>\n"
114 std::ostringstream stroke; local
126 const gchar *ope = ext->get_param_enum("stroke");
133 stroke << ext->get_param_enum("stroke");
145 custom.str().c_str(), stroke.str().c_str() );
/inkscape/src/extension/implementation/
H A Dimplementation.h165 virtual unsigned stroke(Inkscape::Extension::Print * /*module*/, function in class:Inkscape::Extension::Implementation::Implementation
/inkscape/src/extension/
H A Dprint.cpp86 Print::stroke (Geom::PathVector const &pathv, Geom::Affine const &ctm, SPStyle const *style, function in class:Inkscape::Extension::Print
89 return imp->stroke (this, pathv, ctm, style, pbox, dbox, bbox);
/inkscape/src/
H A Dknot.h63 guint32 stroke[SP_KNOT_VISIBLE_STATES]; member in class:SPKnot
H A Dsp-cursor.cpp57 GdkPixbuf *sp_cursor_pixbuf_from_xpm(char const *const *xpm, GdkColor const& black, GdkColor const& white, guint32 fill, guint32 stroke) argument
92 colorMap[ccode] = RGBA(SP_RGBA32_R_U(stroke), SP_RGBA32_G_U(stroke), SP_RGBA32_B_U(stroke), SP_RGBA32_A_U(stroke));
H A Dstyle.h225 /** stroke */
226 SPIPaint stroke; member in class:SPStyle
227 /** stroke-width */
229 /** stroke-linecap */
231 /** stroke-linejoin */
233 /** stroke-miterlimit */
235 /** stroke-dasharray */
237 /** stroke-dashoffset */
239 /** stroke-opacity */
305 SPPaintServer *getStrokePaintServer() { return (stroke
[all...]
H A Dsp-item.cpp1231 bool stroke = (pt == TRANSFORM_STROKE || pt == TRANSFORM_BOTH); local
1232 if (stroke && style && (style->stroke.isPaintserver())) {
1236 SPPattern *pattern = serverPatt->clone_if_necessary(this, "stroke");
1264 if ( style && style->stroke.isPaintserver() ) {
1268 SPGradient *gradient = sp_gradient_convert_to_userspace( serverGrad, this, "stroke");
1438 // recursively compensating for stroke scaling will not always work, because it can be scaled to zero or infinite
1442 if (!prefs->getBool("/options/transform/stroke", true)) {
1471 // this converts the gradient/pattern fill/stroke, if any, to userSpaceOnUse; we need to do
1502 if (!prefs->getBool("/options/transform/stroke", tru
[all...]
H A Dselection-chemistry.cpp1863 * Selects all the visible items with the same fill and/or stroke color/style as the items in the current selection
1868 * stroke - select objects matching stroke
1870 void sp_select_same_fill_stroke_style(SPDesktop *desktop, gboolean fill, gboolean stroke, gboolean style) argument
1876 if (!fill && !stroke && !style) {
1902 if (fill && stroke && style) {
1908 else if (stroke) {
1964 * Find all items in src list that have the same fill or stroke style as sel
1972 SPIPaint *sel_paint = (type == SP_FILL_COLOR) ? &(sel->style->fill) : &(sel->style->stroke);
1977 SPIPaint *iter_paint = (type == SP_FILL_COLOR) ? &(iter->style->fill) : &(iter->style->stroke);
[all...]
/inkscape/src/extension/internal/
H A Dlatex-pstricks.cpp215 unsigned int PrintLatex::stroke(Inkscape::Extension::Print * /*mod*/, function in class:Inkscape::Extension::Internal::PrintLatex
223 if (style->stroke.isColor()) {
232 sp_color_get_rgb_floatv(&style->stroke.value.color, rgb);
H A Dodf.h72 stroke = other.stroke;
84 stroke = "none";
100 stroke != other.stroke ||
113 Glib::ustring stroke; member in class:Inkscape::Extension::Internal::StyleInfo
H A Djavafx-out.cpp415 * SPIPaint stroke;
426 SPIPaint const &stroke = style->stroke; local
427 out(" stroke: %s\n",
428 rgba(stroke.value.color, SP_SCALE24_TO_FLOAT(style->stroke_opacity.value)).c_str());
H A Dwmf-print.cpp539 // set a default stroke in case we can't figure out a better way to do it
549 sp_color_get_rgb_floatv(&style->stroke.value.color, rgb);
800 use_fill = false; // gradients handled, be sure stroke does not use stroke and fill
804 This was because it never called stroke() (next method).
809 if (style->stroke.noneSet || style->stroke_width.computed == 0.0) {
813 /* postpone fill in case stroke also required AND all stroke paths closed
825 (style->stroke.isNone() || style->stroke
838 unsigned int PrintWmf::stroke( function in class:Inkscape::Extension::Internal::PrintWmf
[all...]
H A Dcairo-render-context.cpp179 if (style->fill.isPaintserver() || style->stroke.isPaintserver())
182 // disable rendering of opacity if there's a stroke on the fill
185 && !style->stroke.isNone())
1367 if (style->stroke.isColor() || (style->stroke.isPaintserver() && !style->getStrokePaintServer()->isValid())) {
1369 sp_color_get_rgb_floatv(&style->stroke.value.color, rgb);
1373 g_assert( style->stroke.isPaintserver()
1457 * inbetween fill and stroke.
1484 bool no_stroke = style->stroke.isNone() || style->stroke_width.computed < 1e-9 ||
1722 bool stroke local
[all...]
H A Demf-print.cpp564 // set a default stroke in case we can't figure out a better way to do it
574 SPPaintServer *paintserver = style->stroke.value.href->getObject();
617 SPPaintServer *paintserver = style->stroke.value.href->getObject();
651 } else if (style->stroke.isColor()) { // test last, always seems to be set, even for other types above
652 sp_color_get_rgb_floatv(&style->stroke.value.color, rgb);
1382 use_fill = false; // gradients handled, be sure stroke does not use stroke and fill
1386 This was because it never called stroke() (next method).
1391 if (style->stroke.noneSet || style->stroke_width.computed == 0.0) {
1395 /* postpone fill in case stroke als
1420 unsigned int PrintEmf::stroke( function in class:Inkscape::Extension::Internal::PrintEmf
[all...]
/inkscape/src/ui/tool/
H A Dcontrol-point.h202 guint32 stroke; member in struct:Inkscape::UI::ControlPoint::ColorEntry
/inkscape/src/live_effects/
H A Dlpe-curvestitch.cpp80 D2<Piecewise<SBasis> > stroke = make_cuts_independent(strokepath.get_pwd2()); local
81 OptInterval bndsStroke = bounds_exact(stroke[0]);
82 OptInterval bndsStrokeY = bounds_exact(stroke[1]);
161 // set the stroke path to run horizontally in the middle of the bounding box of the original path
/inkscape/src/display/
H A Ddrawing-context.h93 void stroke() { cairo_stroke(_ct); } function in class:Inkscape::DrawingContext
H A Dnr-style.h64 Paint stroke; member in struct:NRStyle
/inkscape/src/extension/internal/pdfinput/
H A Dsvg-builder.cpp296 * \brief Sets stroke style from poppler's GfxState data structure
303 sp_repr_css_set_property(css, "stroke", urltext);
310 sp_repr_css_set_property(css, "stroke", svgConvertGfxRGB(&stroke_color));
316 sp_repr_css_set_property(css, "stroke-opacity", os_opacity.str().c_str());
324 // emit a stroke which is 1px in toplevel user units
328 sp_repr_css_set_property(css, "stroke-width", os_width.str().c_str());
333 sp_repr_css_set_property(css, "stroke-linecap", "butt");
336 sp_repr_css_set_property(css, "stroke-linecap", "round");
339 sp_repr_css_set_property(css, "stroke-linecap", "square");
346 sp_repr_css_set_property(css, "stroke
417 _setStyle(GfxState *state, bool fill, bool stroke, bool even_odd) argument
442 addPath(GfxState *state, bool fill, bool stroke, bool even_odd) argument
[all...]
H A Dpdf-parser.cpp761 // transparency support: blend mode, fill/stroke opacity
780 // fill/stroke overprint
794 // stroke adjust
1156 error(errSyntaxError, getPos(), "Bad color space (stroke)");
1398 //error(getPos(), const_cast<char*>("No path in stroke"));
1414 //error(getPos(), const_cast<char*>("No path in closepath/stroke"));
1466 //error(getPos(), const_cast<char*>("No path in fill/stroke"));
1480 //error(getPos(), const_cast<char*>("No path in closepath/fill/stroke"));
1493 //error(getPos(), const_cast<char*>("No path in eofill/stroke"));
1505 //error(getPos(), const_cast<char*>("No path in closepath/eofill/stroke"));
1571 doShadingPatternFillFallback(GfxShadingPattern *sPat, GBool stroke, GBool eoFill) argument
[all...]

Completed in 87 milliseconds