/inkscape/src/ |
H A D | sp-cursor.h | 9 GdkPixbuf* sp_cursor_pixbuf_from_xpm(char const *const *xpm, GdkColor const& black, GdkColor const& white, guint32 fill, guint32 stroke);
|
H A D | sp-cursor.cpp | 57 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 D | style.h | 225 /** 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 D | knot.cpp | 89 this->stroke[SP_KNOT_STATE_NORMAL] = 0x01000000; 90 this->stroke[SP_KNOT_STATE_MOUSEOVER] = 0x01000000; 91 this->stroke[SP_KNOT_STATE_DRAGGING] = 0x01000000; 484 g_object_set(this->item, "stroke_color", this->stroke[state], NULL); 515 stroke[SP_KNOT_STATE_NORMAL] = normal; 516 stroke[SP_KNOT_STATE_MOUSEOVER] = mouseover; 517 stroke[SP_KNOT_STATE_DRAGGING] = dragging;
|
H A D | knot.h | 63 guint32 stroke[SP_KNOT_VISIBLE_STATES]; member in class:SPKnot
|
/inkscape/src/display/ |
H A D | nr-style.cpp | 47 , stroke() 90 stroke.clear(); 97 // Handle 'context-fill' and 'context-stroke': Work in progress 108 style_fill = &(context_style->stroke); 110 //std::cerr << "NRStyle::set: 'context-stroke': 'context_style' is NULL" << std::endl; 131 //std::cerr << "NRStyle::set: fill: context-stroke: Double" << std::endl; 149 const SPIPaint *style_stroke = &(style->stroke); 158 style_stroke = &(context_style->stroke); 160 //std::cerr << "NRStyle::set: 'context-stroke': 'context_style' is NULL" << std::endl; 167 stroke [all...] |
H A D | drawing-shape.cpp | 119 if (boundingbox && (_nrstyle.stroke.type != NRStyle::PAINT_NONE || outline)) { 142 ( _nrstyle.stroke.type != NRStyle::PAINT_NONE && !outline) )) 218 dc.stroke(); 234 // update fill and stroke paints. 253 } // has fill or stroke pattern 323 // this overrides display mode and stroke style considerations 326 } else if (_nrstyle.stroke.type != NRStyle::PAINT_NONE && _nrstyle.stroke.opacity > 1e-3) { 327 // for normal picking calculate the distance corresponding top the stroke width 375 // this ignores dashing (as if the stroke i [all...] |
H A D | nr-style.h | 64 Paint stroke; member in struct:NRStyle
|
/inkscape/src/extension/internal/filter/ |
H A D | textures.h | 45 * 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() );
|
H A D | distort.h | 77 "<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() );
|
/inkscape/src/extension/ |
H A D | print.cpp | 86 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);
|
H A D | print.h | 57 unsigned int stroke (Geom::PathVector const &pathv,
|
/inkscape/src/extension/internal/ |
H A D | odf.h | 72 stroke = other.stroke; 84 stroke = "none"; 100 stroke != other.stroke || 113 Glib::ustring stroke; member in class:Inkscape::Extension::Internal::StyleInfo
|
H A D | latex-pstricks.h | 57 virtual unsigned int stroke (Inkscape::Extension::Print *module, Geom::PathVector const &pathv,
|
H A D | wmf-print.h | 52 virtual unsigned int stroke (Inkscape::Extension::Print * module,
|
H A D | latex-text-renderer.cpp | 299 } else if (style->stroke.set && style->stroke.isColor()) { 301 rgba = style->stroke.value.color.toRGBA32(1.); 449 } else if (style->stroke.set && style->stroke.isColor()) { 451 rgba = style->stroke.value.color.toRGBA32(1.);
|
H A D | latex-pstricks.cpp | 215 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 D | emf-print.h | 52 virtual unsigned int stroke (Inkscape::Extension::Print * module,
|
/inkscape/share/extensions/ |
H A D | markers_strokepaint.py | 38 dest="fill_type", default="stroke", 39 help="Replace the markers' fill with the object stroke or fill color") 43 help="Assign the object fill and stroke alpha to the markers") 47 help="Invert fill and stroke colors") 59 help="Assign a stroke color to the markers") 88 temp_stroke = style.get('stroke', '#000000') 92 stroke = temp_fill 95 stroke = temp_stroke 97 temp_stroke_opacity = style.get('stroke-opacity', '1') 106 fill = stroke [all...] |
H A D | synfig_prepare.py | 272 Returns a the list [fill, stroke], where each is the XML element of the 273 fill or stroke, or None. 277 # If there is only stroke or only fill, don't split anything 279 if "stroke" not in style.keys() or style["stroke"] == "none": 280 return [None, None] # Path has neither stroke nor fill 283 if "stroke" not in style.keys() or style["stroke"] == "none": 288 stroke = etree.SubElement(group, addNS("path", "svg")) 296 raise AssertionError, "Cannot split stroke an [all...] |
H A D | print_win32_vector.py | 55 rgb = (0,0,0) # stroke color 57 stroke = 1 # pen width in printer pixels 62 if style.has_key('stroke'): 63 if style['stroke'] and style['stroke'] != 'none' and style['stroke'][0:3] != 'url': 64 rgb = simplestyle.parseColor(style['stroke']) 65 if style.has_key('stroke-width'): 66 stroke = self.unittouu(style['stroke [all...] |
/inkscape/src/live_effects/ |
H A D | lpe-jointype.cpp | 54 line_width(_("Line width"), _("Thickness of the stroke"), "line_width", &wr, this, 1.), 55 linecap_type(_("Line cap"), _("The end shape of the stroke"), "linecap_type", CapTypeConverter, &wr, this, butt_straight), 59 miter_limit(_("Miter limit:"), _("Maximum length of the miter join (in units of stroke width)"), "miter_limit", &wr, this, 100.), 82 //from LPEPowerStroke -- sets fill if stroke color because we will 92 if (lpeitem->style->stroke.isPaintserver()) { 101 } else if (lpeitem->style->stroke.isColor()) { 103 sp_svg_write_color (c, sizeof(c), lpeitem->style->stroke.value.color.toRGBA32(SP_SCALE24_TO_FLOAT(lpeitem->style->stroke_opacity.value))); 110 sp_repr_css_set_property(css, "stroke", "none"); 120 //from LPEPowerStroke -- sets stroke color from existing fill color 135 sp_repr_css_set_property (css, "stroke", st [all...] |
H A D | lpe-curvestitch.cpp | 80 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/share/extensions/test/ |
H A D | inkweb-debug.js | 314 style: "fill:#C00; stroke:#800; stroke-width:2",
|
/inkscape/src/ui/dialog/ |
H A D | color-item.h | 65 void setState( bool fill, bool stroke );
|