blob: 8fcfda26bac0b8f2e1868a9e09f7ac2fdbe1e6cd [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.come4f10a72012-05-15 20:47:50 +00002
reed@android.com8a1c16f2008-12-17 15:59:43 +00003/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00004 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00005 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00006 * Use of this source code is governed by a BSD-style license that can be
7 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00008 */
9
epoger@google.comec3ed6a2011-07-28 14:26:00 +000010
reed@android.com8a1c16f2008-12-17 15:59:43 +000011#ifndef SkPaint_DEFINED
12#define SkPaint_DEFINED
13
14#include "SkColor.h"
reed@google.com9efd9a02012-01-30 15:41:43 +000015#include "SkDrawLooper.h"
reed@android.coma0f5d152009-06-22 17:38:10 +000016#include "SkXfermode.h"
17
reed@android.com8a1c16f2008-12-17 15:59:43 +000018class SkAutoGlyphCache;
19class SkColorFilter;
20class SkDescriptor;
21class SkFlattenableReadBuffer;
22class SkFlattenableWriteBuffer;
23struct SkGlyph;
24struct SkRect;
25class SkGlyphCache;
reed@google.com15356a62011-11-03 19:29:08 +000026class SkImageFilter;
reed@android.com8a1c16f2008-12-17 15:59:43 +000027class SkMaskFilter;
28class SkMatrix;
29class SkPath;
30class SkPathEffect;
31class SkRasterizer;
32class SkShader;
reed@android.com8a1c16f2008-12-17 15:59:43 +000033class SkTypeface;
reed@android.com8a1c16f2008-12-17 15:59:43 +000034
35typedef const SkGlyph& (*SkDrawCacheProc)(SkGlyphCache*, const char**,
36 SkFixed x, SkFixed y);
37
38typedef const SkGlyph& (*SkMeasureCacheProc)(SkGlyphCache*, const char**);
39
40/** \class SkPaint
41
42 The SkPaint class holds the style and color information about how to draw
43 geometries, text and bitmaps.
44*/
ctguil@chromium.org7ffb1b22011-03-15 21:27:08 +000045class SK_API SkPaint {
reed@android.com8a1c16f2008-12-17 15:59:43 +000046public:
47 SkPaint();
48 SkPaint(const SkPaint& paint);
49 ~SkPaint();
50
51 SkPaint& operator=(const SkPaint&);
52
reed@google.comb530ef52011-07-20 19:55:42 +000053 SK_API friend bool operator==(const SkPaint& a, const SkPaint& b);
54 friend bool operator!=(const SkPaint& a, const SkPaint& b) {
reed@android.com8a1c16f2008-12-17 15:59:43 +000055 return !(a == b);
56 }
reed@google.com9d07fec2011-03-16 20:02:59 +000057
reed@android.com8a1c16f2008-12-17 15:59:43 +000058 void flatten(SkFlattenableWriteBuffer&) const;
59 void unflatten(SkFlattenableReadBuffer&);
60
61 /** Restores the paint to its initial settings.
62 */
63 void reset();
64
agl@chromium.org309485b2009-07-21 17:41:32 +000065 /** Specifies the level of hinting to be performed. These names are taken
66 from the Gnome/Cairo names for the same. They are translated into
67 Freetype concepts the same as in cairo-ft-font.c:
68 kNo_Hinting -> FT_LOAD_NO_HINTING
69 kSlight_Hinting -> FT_LOAD_TARGET_LIGHT
70 kNormal_Hinting -> <default, no option>
71 kFull_Hinting -> <same as kNormalHinting, unless we are rendering
72 subpixel glyphs, in which case TARGET_LCD or
73 TARGET_LCD_V is used>
74 */
75 enum Hinting {
76 kNo_Hinting = 0,
77 kSlight_Hinting = 1,
78 kNormal_Hinting = 2, //!< this is the default
79 kFull_Hinting = 3,
80 };
81
reed@google.com9d07fec2011-03-16 20:02:59 +000082 Hinting getHinting() const {
agl@chromium.org309485b2009-07-21 17:41:32 +000083 return static_cast<Hinting>(fHinting);
84 }
85
djsollen@google.comf5dbe2f2011-04-15 13:41:26 +000086 void setHinting(Hinting hintingLevel);
agl@chromium.org309485b2009-07-21 17:41:32 +000087
reed@android.com8a1c16f2008-12-17 15:59:43 +000088 /** Specifies the bit values that are stored in the paint's flags.
89 */
90 enum Flags {
91 kAntiAlias_Flag = 0x01, //!< mask to enable antialiasing
92 kFilterBitmap_Flag = 0x02, //!< mask to enable bitmap filtering
93 kDither_Flag = 0x04, //!< mask to enable dithering
94 kUnderlineText_Flag = 0x08, //!< mask to enable underline text
95 kStrikeThruText_Flag = 0x10, //!< mask to enable strike-thru text
96 kFakeBoldText_Flag = 0x20, //!< mask to enable fake-bold text
97 kLinearText_Flag = 0x40, //!< mask to enable linear-text
agl@chromium.org309485b2009-07-21 17:41:32 +000098 kSubpixelText_Flag = 0x80, //!< mask to enable subpixel text positioning
reed@android.com8a1c16f2008-12-17 15:59:43 +000099 kDevKernText_Flag = 0x100, //!< mask to enable device kerning text
agl@chromium.org309485b2009-07-21 17:41:32 +0000100 kLCDRenderText_Flag = 0x200, //!< mask to enable subpixel glyph renderering
agl@chromium.orge95c91e2010-01-04 18:27:55 +0000101 kEmbeddedBitmapText_Flag = 0x400, //!< mask to enable embedded bitmap strikes
agl@chromium.orga2c71cb2010-06-17 20:49:17 +0000102 kAutoHinting_Flag = 0x800, //!< mask to force Freetype's autohinter
reed@google.com830a23e2011-11-10 15:20:49 +0000103 kVerticalText_Flag = 0x1000,
reed@google.com8351aab2012-01-18 17:06:35 +0000104 kGenA8FromLCD_Flag = 0x2000, // hack for GDI -- do not use if you can help it
reed@google.com32538982011-09-30 20:57:05 +0000105
agl@chromium.org309485b2009-07-21 17:41:32 +0000106 // when adding extra flags, note that the fFlags member is specified
107 // with a bit-width and you'll have to expand it.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000108
reed@google.com8351aab2012-01-18 17:06:35 +0000109 kAllFlags = 0x3FFF
reed@android.com8a1c16f2008-12-17 15:59:43 +0000110 };
111
112 /** Return the paint's flags. Use the Flag enum to test flag values.
113 @return the paint's flags (see enums ending in _Flag for bit masks)
114 */
115 uint32_t getFlags() const { return fFlags; }
116
117 /** Set the paint's flags. Use the Flag enum to specific flag values.
118 @param flags The new flag bits for the paint (see Flags enum)
119 */
120 void setFlags(uint32_t flags);
121
122 /** Helper for getFlags(), returning true if kAntiAlias_Flag bit is set
123 @return true if the antialias bit is set in the paint's flags.
124 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000125 bool isAntiAlias() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000126 return SkToBool(this->getFlags() & kAntiAlias_Flag);
127 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000128
reed@android.com8a1c16f2008-12-17 15:59:43 +0000129 /** Helper for setFlags(), setting or clearing the kAntiAlias_Flag bit
130 @param aa true to enable antialiasing, false to disable it
131 */
132 void setAntiAlias(bool aa);
reed@google.com9d07fec2011-03-16 20:02:59 +0000133
reed@android.com8a1c16f2008-12-17 15:59:43 +0000134 /** Helper for getFlags(), returning true if kDither_Flag bit is set
135 @return true if the dithering bit is set in the paint's flags.
136 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000137 bool isDither() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000138 return SkToBool(this->getFlags() & kDither_Flag);
139 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000140
reed@android.com8a1c16f2008-12-17 15:59:43 +0000141 /** Helper for setFlags(), setting or clearing the kDither_Flag bit
142 @param dither true to enable dithering, false to disable it
143 */
144 void setDither(bool dither);
reed@google.com9d07fec2011-03-16 20:02:59 +0000145
reed@android.com8a1c16f2008-12-17 15:59:43 +0000146 /** Helper for getFlags(), returning true if kLinearText_Flag bit is set
147 @return true if the lineartext bit is set in the paint's flags
148 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000149 bool isLinearText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000150 return SkToBool(this->getFlags() & kLinearText_Flag);
151 }
152
153 /** Helper for setFlags(), setting or clearing the kLinearText_Flag bit
154 @param linearText true to set the linearText bit in the paint's flags,
155 false to clear it.
156 */
157 void setLinearText(bool linearText);
158
159 /** Helper for getFlags(), returning true if kSubpixelText_Flag bit is set
160 @return true if the lineartext bit is set in the paint's flags
161 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000162 bool isSubpixelText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000163 return SkToBool(this->getFlags() & kSubpixelText_Flag);
164 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000165
reed@google.com84b437e2011-08-01 12:45:35 +0000166 /**
167 * Helper for setFlags(), setting or clearing the kSubpixelText_Flag.
168 * @param subpixelText true to set the subpixelText bit in the paint's
169 * flags, false to clear it.
170 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000171 void setSubpixelText(bool subpixelText);
agl@chromium.org309485b2009-07-21 17:41:32 +0000172
reed@google.com9d07fec2011-03-16 20:02:59 +0000173 bool isLCDRenderText() const {
agl@chromium.org309485b2009-07-21 17:41:32 +0000174 return SkToBool(this->getFlags() & kLCDRenderText_Flag);
175 }
176
reed@google.com84b437e2011-08-01 12:45:35 +0000177 /**
178 * Helper for setFlags(), setting or clearing the kLCDRenderText_Flag.
179 * Note: antialiasing must also be on for lcd rendering
180 * @param lcdText true to set the LCDRenderText bit in the paint's flags,
181 * false to clear it.
182 */
183 void setLCDRenderText(bool lcdText);
agl@chromium.org309485b2009-07-21 17:41:32 +0000184
reed@google.com9d07fec2011-03-16 20:02:59 +0000185 bool isEmbeddedBitmapText() const {
agl@chromium.orge95c91e2010-01-04 18:27:55 +0000186 return SkToBool(this->getFlags() & kEmbeddedBitmapText_Flag);
187 }
188
189 /** Helper for setFlags(), setting or clearing the kEmbeddedBitmapText_Flag bit
190 @param useEmbeddedBitmapText true to set the kEmbeddedBitmapText bit in the paint's flags,
191 false to clear it.
192 */
193 void setEmbeddedBitmapText(bool useEmbeddedBitmapText);
194
reed@google.com9d07fec2011-03-16 20:02:59 +0000195 bool isAutohinted() const {
agl@chromium.orga2c71cb2010-06-17 20:49:17 +0000196 return SkToBool(this->getFlags() & kAutoHinting_Flag);
197 }
198
199 /** Helper for setFlags(), setting or clearing the kAutoHinting_Flag bit
200 @param useAutohinter true to set the kEmbeddedBitmapText bit in the
201 paint's flags,
202 false to clear it.
203 */
204 void setAutohinted(bool useAutohinter);
205
reed@google.com830a23e2011-11-10 15:20:49 +0000206 bool isVerticalText() const {
207 return SkToBool(this->getFlags() & kVerticalText_Flag);
208 }
209
210 /**
211 * Helper for setting or clearing the kVerticalText_Flag bit in
212 * setFlags(...).
213 *
214 * If this bit is set, then advances are treated as Y values rather than
215 * X values, and drawText will places its glyphs vertically rather than
216 * horizontally.
217 */
218 void setVerticalText(bool);
219
reed@android.com8a1c16f2008-12-17 15:59:43 +0000220 /** Helper for getFlags(), returning true if kUnderlineText_Flag bit is set
221 @return true if the underlineText bit is set in the paint's flags.
222 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000223 bool isUnderlineText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000224 return SkToBool(this->getFlags() & kUnderlineText_Flag);
225 }
226
227 /** Helper for setFlags(), setting or clearing the kUnderlineText_Flag bit
228 @param underlineText true to set the underlineText bit in the paint's
229 flags, false to clear it.
230 */
231 void setUnderlineText(bool underlineText);
232
233 /** Helper for getFlags(), returns true if kStrikeThruText_Flag bit is set
234 @return true if the strikeThruText bit is set in the paint's flags.
235 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000236 bool isStrikeThruText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000237 return SkToBool(this->getFlags() & kStrikeThruText_Flag);
238 }
239
240 /** Helper for setFlags(), setting or clearing the kStrikeThruText_Flag bit
241 @param strikeThruText true to set the strikeThruText bit in the
242 paint's flags, false to clear it.
243 */
244 void setStrikeThruText(bool strikeThruText);
245
246 /** Helper for getFlags(), returns true if kFakeBoldText_Flag bit is set
247 @return true if the kFakeBoldText_Flag bit is set in the paint's flags.
248 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000249 bool isFakeBoldText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000250 return SkToBool(this->getFlags() & kFakeBoldText_Flag);
251 }
252
253 /** Helper for setFlags(), setting or clearing the kFakeBoldText_Flag bit
254 @param fakeBoldText true to set the kFakeBoldText_Flag bit in the paint's
255 flags, false to clear it.
256 */
257 void setFakeBoldText(bool fakeBoldText);
258
259 /** Helper for getFlags(), returns true if kDevKernText_Flag bit is set
260 @return true if the kernText bit is set in the paint's flags.
261 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000262 bool isDevKernText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000263 return SkToBool(this->getFlags() & kDevKernText_Flag);
264 }
265
266 /** Helper for setFlags(), setting or clearing the kKernText_Flag bit
267 @param kernText true to set the kKernText_Flag bit in the paint's
268 flags, false to clear it.
269 */
270 void setDevKernText(bool devKernText);
271
reed@google.com9d07fec2011-03-16 20:02:59 +0000272 bool isFilterBitmap() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000273 return SkToBool(this->getFlags() & kFilterBitmap_Flag);
274 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000275
reed@android.com8a1c16f2008-12-17 15:59:43 +0000276 void setFilterBitmap(bool filterBitmap);
277
278 /** Styles apply to rect, oval, path, and text.
279 Bitmaps are always drawn in "fill", and lines are always drawn in
280 "stroke".
reed@google.com9d07fec2011-03-16 20:02:59 +0000281
reed@android.comed881c22009-09-15 14:10:42 +0000282 Note: strokeandfill implicitly draws the result with
283 SkPath::kWinding_FillType, so if the original path is even-odd, the
284 results may not appear the same as if it was drawn twice, filled and
285 then stroked.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000286 */
287 enum Style {
reed@android.comed881c22009-09-15 14:10:42 +0000288 kFill_Style, //!< fill the geometry
289 kStroke_Style, //!< stroke the geometry
290 kStrokeAndFill_Style, //!< fill and stroke the geometry
reed@android.com8a1c16f2008-12-17 15:59:43 +0000291
292 kStyleCount,
293 };
294
295 /** Return the paint's style, used for controlling how primitives'
296 geometries are interpreted (except for drawBitmap, which always assumes
297 kFill_Style).
298 @return the paint's Style
299 */
300 Style getStyle() const { return (Style)fStyle; }
301
302 /** Set the paint's style, used for controlling how primitives'
303 geometries are interpreted (except for drawBitmap, which always assumes
304 Fill).
305 @param style The new style to set in the paint
306 */
307 void setStyle(Style style);
308
309 /** Return the paint's color. Note that the color is a 32bit value
310 containing alpha as well as r,g,b. This 32bit value is not
311 premultiplied, meaning that its alpha can be any value, regardless of
312 the values of r,g,b.
313 @return the paint's color (and alpha).
314 */
315 SkColor getColor() const { return fColor; }
316
317 /** Set the paint's color. Note that the color is a 32bit value containing
318 alpha as well as r,g,b. This 32bit value is not premultiplied, meaning
319 that its alpha can be any value, regardless of the values of r,g,b.
320 @param color The new color (including alpha) to set in the paint.
321 */
322 void setColor(SkColor color);
323
324 /** Helper to getColor() that just returns the color's alpha value.
325 @return the alpha component of the paint's color.
326 */
327 uint8_t getAlpha() const { return SkToU8(SkColorGetA(fColor)); }
reed@google.com9d07fec2011-03-16 20:02:59 +0000328
reed@android.com8a1c16f2008-12-17 15:59:43 +0000329 /** Helper to setColor(), that only assigns the color's alpha value,
330 leaving its r,g,b values unchanged.
331 @param a set the alpha component (0..255) of the paint's color.
332 */
333 void setAlpha(U8CPU a);
334
335 /** Helper to setColor(), that takes a,r,g,b and constructs the color value
336 using SkColorSetARGB()
337 @param a The new alpha component (0..255) of the paint's color.
338 @param r The new red component (0..255) of the paint's color.
339 @param g The new green component (0..255) of the paint's color.
340 @param b The new blue component (0..255) of the paint's color.
341 */
342 void setARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b);
343
reed@google.com9d07fec2011-03-16 20:02:59 +0000344 /** Return the width for stroking.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000345 <p />
346 A value of 0 strokes in hairline mode.
347 Hairlines always draw 1-pixel wide, regardless of the matrix.
348 @return the paint's stroke width, used whenever the paint's style is
349 Stroke or StrokeAndFill.
350 */
351 SkScalar getStrokeWidth() const { return fWidth; }
352
reed@google.com9d07fec2011-03-16 20:02:59 +0000353 /** Set the width for stroking.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000354 Pass 0 to stroke in hairline mode.
355 Hairlines always draw 1-pixel wide, regardless of the matrix.
356 @param width set the paint's stroke width, used whenever the paint's
357 style is Stroke or StrokeAndFill.
358 */
359 void setStrokeWidth(SkScalar width);
360
361 /** Return the paint's stroke miter value. This is used to control the
362 behavior of miter joins when the joins angle is sharp.
363 @return the paint's miter limit, used whenever the paint's style is
364 Stroke or StrokeAndFill.
365 */
366 SkScalar getStrokeMiter() const { return fMiterLimit; }
367
368 /** Set the paint's stroke miter value. This is used to control the
369 behavior of miter joins when the joins angle is sharp. This value must
370 be >= 0.
371 @param miter set the miter limit on the paint, used whenever the
372 paint's style is Stroke or StrokeAndFill.
373 */
374 void setStrokeMiter(SkScalar miter);
375
376 /** Cap enum specifies the settings for the paint's strokecap. This is the
377 treatment that is applied to the beginning and end of each non-closed
378 contour (e.g. lines).
379 */
380 enum Cap {
381 kButt_Cap, //!< begin/end contours with no extension
382 kRound_Cap, //!< begin/end contours with a semi-circle extension
383 kSquare_Cap, //!< begin/end contours with a half square extension
384
385 kCapCount,
386 kDefault_Cap = kButt_Cap
387 };
388
389 /** Join enum specifies the settings for the paint's strokejoin. This is
390 the treatment that is applied to corners in paths and rectangles.
391 */
392 enum Join {
393 kMiter_Join, //!< connect path segments with a sharp join
394 kRound_Join, //!< connect path segments with a round join
395 kBevel_Join, //!< connect path segments with a flat bevel join
396
397 kJoinCount,
398 kDefault_Join = kMiter_Join
399 };
400
401 /** Return the paint's stroke cap type, controlling how the start and end
402 of stroked lines and paths are treated.
403 @return the line cap style for the paint, used whenever the paint's
404 style is Stroke or StrokeAndFill.
405 */
406 Cap getStrokeCap() const { return (Cap)fCapType; }
407
408 /** Set the paint's stroke cap type.
409 @param cap set the paint's line cap style, used whenever the paint's
410 style is Stroke or StrokeAndFill.
411 */
412 void setStrokeCap(Cap cap);
413
414 /** Return the paint's stroke join type.
415 @return the paint's line join style, used whenever the paint's style is
416 Stroke or StrokeAndFill.
417 */
418 Join getStrokeJoin() const { return (Join)fJoinType; }
419
420 /** Set the paint's stroke join type.
421 @param join set the paint's line join style, used whenever the paint's
422 style is Stroke or StrokeAndFill.
423 */
424 void setStrokeJoin(Join join);
425
426 /** Applies any/all effects (patheffect, stroking) to src, returning the
427 result in dst. The result is that drawing src with this paint will be
428 the same as drawing dst with a default paint (at least from the
429 geometric perspective).
430 @param src input path
431 @param dst output path (may be the same as src)
432 @return true if the path should be filled, or false if it should be
433 drawn with a hairline (width == 0)
434 */
435 bool getFillPath(const SkPath& src, SkPath* dst) const;
436
reed@android.com8a1c16f2008-12-17 15:59:43 +0000437 /** Get the paint's shader object.
438 <p />
439 The shader's reference count is not affected.
440 @return the paint's shader (or NULL)
441 */
442 SkShader* getShader() const { return fShader; }
443
444 /** Set or clear the shader object.
reed@google.com880dc472012-05-11 14:47:03 +0000445 * Shaders specify the source color(s) for what is being drawn. If a paint
446 * has no shader, then the paint's color is used. If the paint has a
447 * shader, then the shader's color(s) are use instead, but they are
448 * modulated by the paint's alpha. This makes it easy to create a shader
449 * once (e.g. bitmap tiling or gradient) and then change its transparency
450 * w/o having to modify the original shader... only the paint's alpha needs
451 * to be modified.
452 * <p />
453 * Pass NULL to clear any previous shader.
454 * As a convenience, the parameter passed is also returned.
455 * If a previous shader exists, its reference count is decremented.
456 * If shader is not NULL, its reference count is incremented.
457 * @param shader May be NULL. The shader to be installed in the paint
458 * @return shader
459 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000460 SkShader* setShader(SkShader* shader);
reed@google.com9d07fec2011-03-16 20:02:59 +0000461
reed@android.com8a1c16f2008-12-17 15:59:43 +0000462 /** Get the paint's colorfilter. If there is a colorfilter, its reference
463 count is not changed.
464 @return the paint's colorfilter (or NULL)
465 */
466 SkColorFilter* getColorFilter() const { return fColorFilter; }
467
468 /** Set or clear the paint's colorfilter, returning the parameter.
469 <p />
470 If the paint already has a filter, its reference count is decremented.
471 If filter is not NULL, its reference count is incremented.
472 @param filter May be NULL. The filter to be installed in the paint
473 @return filter
474 */
475 SkColorFilter* setColorFilter(SkColorFilter* filter);
476
477 /** Get the paint's xfermode object.
478 <p />
479 The xfermode's reference count is not affected.
480 @return the paint's xfermode (or NULL)
481 */
482 SkXfermode* getXfermode() const { return fXfermode; }
483
484 /** Set or clear the xfermode object.
485 <p />
486 Pass NULL to clear any previous xfermode.
487 As a convenience, the parameter passed is also returned.
488 If a previous xfermode exists, its reference count is decremented.
489 If xfermode is not NULL, its reference count is incremented.
490 @param xfermode May be NULL. The new xfermode to be installed in the
491 paint
492 @return xfermode
493 */
494 SkXfermode* setXfermode(SkXfermode* xfermode);
reed@android.coma0f5d152009-06-22 17:38:10 +0000495
496 /** Create an xfermode based on the specified Mode, and assign it into the
497 paint, returning the mode that was set. If the Mode is SrcOver, then
498 the paint's xfermode is set to null.
499 */
reed@android.com0baf1932009-06-24 12:41:42 +0000500 SkXfermode* setXfermodeMode(SkXfermode::Mode);
reed@android.coma0f5d152009-06-22 17:38:10 +0000501
reed@android.com8a1c16f2008-12-17 15:59:43 +0000502 /** Get the paint's patheffect object.
503 <p />
504 The patheffect reference count is not affected.
505 @return the paint's patheffect (or NULL)
506 */
507 SkPathEffect* getPathEffect() const { return fPathEffect; }
508
509 /** Set or clear the patheffect object.
510 <p />
511 Pass NULL to clear any previous patheffect.
512 As a convenience, the parameter passed is also returned.
513 If a previous patheffect exists, its reference count is decremented.
514 If patheffect is not NULL, its reference count is incremented.
515 @param effect May be NULL. The new patheffect to be installed in the
516 paint
517 @return effect
518 */
519 SkPathEffect* setPathEffect(SkPathEffect* effect);
520
521 /** Get the paint's maskfilter object.
522 <p />
523 The maskfilter reference count is not affected.
524 @return the paint's maskfilter (or NULL)
525 */
526 SkMaskFilter* getMaskFilter() const { return fMaskFilter; }
527
528 /** Set or clear the maskfilter object.
529 <p />
530 Pass NULL to clear any previous maskfilter.
531 As a convenience, the parameter passed is also returned.
532 If a previous maskfilter exists, its reference count is decremented.
533 If maskfilter is not NULL, its reference count is incremented.
534 @param maskfilter May be NULL. The new maskfilter to be installed in
535 the paint
536 @return maskfilter
537 */
538 SkMaskFilter* setMaskFilter(SkMaskFilter* maskfilter);
539
540 // These attributes are for text/fonts
541
542 /** Get the paint's typeface object.
543 <p />
544 The typeface object identifies which font to use when drawing or
545 measuring text. The typeface reference count is not affected.
546 @return the paint's typeface (or NULL)
547 */
548 SkTypeface* getTypeface() const { return fTypeface; }
549
550 /** Set or clear the typeface object.
551 <p />
552 Pass NULL to clear any previous typeface.
553 As a convenience, the parameter passed is also returned.
554 If a previous typeface exists, its reference count is decremented.
555 If typeface is not NULL, its reference count is incremented.
556 @param typeface May be NULL. The new typeface to be installed in the
557 paint
558 @return typeface
559 */
560 SkTypeface* setTypeface(SkTypeface* typeface);
561
562 /** Get the paint's rasterizer (or NULL).
563 <p />
564 The raster controls how paths/text are turned into alpha masks.
565 @return the paint's rasterizer (or NULL)
566 */
567 SkRasterizer* getRasterizer() const { return fRasterizer; }
568
569 /** Set or clear the rasterizer object.
570 <p />
571 Pass NULL to clear any previous rasterizer.
572 As a convenience, the parameter passed is also returned.
573 If a previous rasterizer exists in the paint, its reference count is
574 decremented. If rasterizer is not NULL, its reference count is
575 incremented.
576 @param rasterizer May be NULL. The new rasterizer to be installed in
577 the paint.
578 @return rasterizer
579 */
580 SkRasterizer* setRasterizer(SkRasterizer* rasterizer);
581
reed@google.com15356a62011-11-03 19:29:08 +0000582 SkImageFilter* getImageFilter() const { return fImageFilter; }
583 SkImageFilter* setImageFilter(SkImageFilter*);
584
reed@google.com9d07fec2011-03-16 20:02:59 +0000585 /**
586 * Return the paint's SkDrawLooper (if any). Does not affect the looper's
587 * reference count.
588 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000589 SkDrawLooper* getLooper() const { return fLooper; }
reed@google.com9d07fec2011-03-16 20:02:59 +0000590
591 /**
592 * Set or clear the looper object.
593 * <p />
594 * Pass NULL to clear any previous looper.
595 * As a convenience, the parameter passed is also returned.
596 * If a previous looper exists in the paint, its reference count is
597 * decremented. If looper is not NULL, its reference count is
598 * incremented.
599 * @param looper May be NULL. The new looper to be installed in the paint.
600 * @return looper
601 */
602 SkDrawLooper* setLooper(SkDrawLooper* looper);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000603
604 enum Align {
605 kLeft_Align,
606 kCenter_Align,
607 kRight_Align,
608
609 kAlignCount
610 };
reed@google.com9d07fec2011-03-16 20:02:59 +0000611
reed@android.com8a1c16f2008-12-17 15:59:43 +0000612 /** Return the paint's Align value for drawing text.
613 @return the paint's Align value for drawing text.
614 */
615 Align getTextAlign() const { return (Align)fTextAlign; }
reed@google.com9d07fec2011-03-16 20:02:59 +0000616
reed@android.com8a1c16f2008-12-17 15:59:43 +0000617 /** Set the paint's text alignment.
618 @param align set the paint's Align value for drawing text.
619 */
620 void setTextAlign(Align align);
621
622 /** Return the paint's text size.
623 @return the paint's text size.
624 */
625 SkScalar getTextSize() const { return fTextSize; }
626
627 /** Set the paint's text size. This value must be > 0
628 @param textSize set the paint's text size.
629 */
630 void setTextSize(SkScalar textSize);
631
632 /** Return the paint's horizontal scale factor for text. The default value
633 is 1.0.
634 @return the paint's scale factor in X for drawing/measuring text
635 */
636 SkScalar getTextScaleX() const { return fTextScaleX; }
637
638 /** Set the paint's horizontal scale factor for text. The default value
639 is 1.0. Values > 1.0 will stretch the text wider. Values < 1.0 will
640 stretch the text narrower.
641 @param scaleX set the paint's scale factor in X for drawing/measuring
642 text.
643 */
644 void setTextScaleX(SkScalar scaleX);
645
646 /** Return the paint's horizontal skew factor for text. The default value
647 is 0.
648 @return the paint's skew factor in X for drawing text.
649 */
650 SkScalar getTextSkewX() const { return fTextSkewX; }
651
652 /** Set the paint's horizontal skew factor for text. The default value
653 is 0. For approximating oblique text, use values around -0.25.
654 @param skewX set the paint's skew factor in X for drawing text.
655 */
656 void setTextSkewX(SkScalar skewX);
657
658 /** Describes how to interpret the text parameters that are passed to paint
659 methods like measureText() and getTextWidths().
660 */
661 enum TextEncoding {
662 kUTF8_TextEncoding, //!< the text parameters are UTF8
663 kUTF16_TextEncoding, //!< the text parameters are UTF16
robertphillips@google.com69705572012-03-21 19:46:50 +0000664 kUTF32_TextEncoding, //!< the text parameters are UTF32
reed@android.com8a1c16f2008-12-17 15:59:43 +0000665 kGlyphID_TextEncoding //!< the text parameters are glyph indices
666 };
reed@google.com9d07fec2011-03-16 20:02:59 +0000667
668 TextEncoding getTextEncoding() const { return (TextEncoding)fTextEncoding; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000669
670 void setTextEncoding(TextEncoding encoding);
671
672 struct FontMetrics {
673 SkScalar fTop; //!< The greatest distance above the baseline for any glyph (will be <= 0)
674 SkScalar fAscent; //!< The recommended distance above the baseline (will be <= 0)
675 SkScalar fDescent; //!< The recommended distance below the baseline (will be >= 0)
676 SkScalar fBottom; //!< The greatest distance below the baseline for any glyph (will be >= 0)
677 SkScalar fLeading; //!< The recommended distance to add between lines of text (will be >= 0)
agl@chromium.orgcc3096b2009-04-22 22:09:04 +0000678 SkScalar fAvgCharWidth; //!< the average charactor width (>= 0)
679 SkScalar fXMin; //!< The minimum bounding box x value for all glyphs
680 SkScalar fXMax; //!< The maximum bounding box x value for all glyphs
681 SkScalar fXHeight; //!< the height of an 'x' in px, or 0 if no 'x' in face
reed@android.com8a1c16f2008-12-17 15:59:43 +0000682 };
reed@google.com9d07fec2011-03-16 20:02:59 +0000683
reed@android.com8a1c16f2008-12-17 15:59:43 +0000684 /** Return the recommend spacing between lines (which will be
685 fDescent - fAscent + fLeading).
686 If metrics is not null, return in it the font metrics for the
reed@google.com9d07fec2011-03-16 20:02:59 +0000687 typeface/pointsize/etc. currently set in the paint.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000688 @param metrics If not null, returns the font metrics for the
689 current typeface/pointsize/etc setting in this
690 paint.
691 @param scale If not 0, return width as if the canvas were scaled
692 by this value
693 @param return the recommended spacing between lines
694 */
695 SkScalar getFontMetrics(FontMetrics* metrics, SkScalar scale = 0) const;
reed@google.com9d07fec2011-03-16 20:02:59 +0000696
reed@android.com8a1c16f2008-12-17 15:59:43 +0000697 /** Return the recommend line spacing. This will be
698 fDescent - fAscent + fLeading
699 */
700 SkScalar getFontSpacing() const { return this->getFontMetrics(NULL, 0); }
701
702 /** Convert the specified text into glyph IDs, returning the number of
703 glyphs ID written. If glyphs is NULL, it is ignore and only the count
704 is returned.
705 */
706 int textToGlyphs(const void* text, size_t byteLength,
707 uint16_t glyphs[]) const;
708
reed@android.coma5dcaf62010-02-05 17:12:32 +0000709 /** Return true if all of the specified text has a corresponding non-zero
710 glyph ID. If any of the code-points in the text are not supported in
711 the typeface (i.e. the glyph ID would be zero), then return false.
712
713 If the text encoding for the paint is kGlyph_TextEncoding, then this
714 returns true if all of the specified glyph IDs are non-zero.
715 */
716 bool containsText(const void* text, size_t byteLength) const;
717
reed@android.com9d3a9852010-01-08 14:07:42 +0000718 /** Convert the glyph array into Unichars. Unconvertable glyphs are mapped
719 to zero. Note: this does not look at the text-encoding setting in the
720 paint, only at the typeface.
721 */
722 void glyphsToUnichars(const uint16_t glyphs[], int count,
723 SkUnichar text[]) const;
724
reed@android.com8a1c16f2008-12-17 15:59:43 +0000725 /** Return the number of drawable units in the specified text buffer.
726 This looks at the current TextEncoding field of the paint. If you also
727 want to have the text converted into glyph IDs, call textToGlyphs
728 instead.
729 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000730 int countText(const void* text, size_t byteLength) const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000731 return this->textToGlyphs(text, byteLength, NULL);
732 }
733
reed@google.com44da42e2011-11-10 20:04:47 +0000734 /** Return the width of the text. This will return the vertical measure
735 * if isVerticalText() is true, in which case the returned value should
736 * be treated has a height instead of a width.
737 *
738 * @param text The text to be measured
739 * @param length Number of bytes of text to measure
740 * @param bounds If not NULL, returns the bounds of the text,
741 * relative to (0, 0).
742 * @param scale If not 0, return width as if the canvas were scaled
743 * by this value
744 * @return The advance width of the text
745 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000746 SkScalar measureText(const void* text, size_t length,
747 SkRect* bounds, SkScalar scale = 0) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000748
reed@google.com44da42e2011-11-10 20:04:47 +0000749 /** Return the width of the text. This will return the vertical measure
750 * if isVerticalText() is true, in which case the returned value should
751 * be treated has a height instead of a width.
752 *
753 * @param text Address of the text
754 * @param length Number of bytes of text to measure
reed@google.com97ecd1d2012-05-15 19:25:17 +0000755 * @return The advance width of the text
reed@google.com44da42e2011-11-10 20:04:47 +0000756 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000757 SkScalar measureText(const void* text, size_t length) const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000758 return this->measureText(text, length, NULL, 0);
759 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000760
reed@android.com8a1c16f2008-12-17 15:59:43 +0000761 /** Specify the direction the text buffer should be processed in breakText()
762 */
763 enum TextBufferDirection {
764 /** When measuring text for breakText(), begin at the start of the text
765 buffer and proceed forward through the data. This is the default.
766 */
767 kForward_TextBufferDirection,
768 /** When measuring text for breakText(), begin at the end of the text
769 buffer and proceed backwards through the data.
770 */
771 kBackward_TextBufferDirection
772 };
773
reed@google.com44da42e2011-11-10 20:04:47 +0000774 /** Return the number of bytes of text that were measured. If
775 * isVerticalText() is true, then the vertical advances are used for
776 * the measurement.
777 *
778 * @param text The text to be measured
779 * @param length Number of bytes of text to measure
780 * @param maxWidth Maximum width. Only the subset of text whose accumulated
781 * widths are <= maxWidth are measured.
782 * @param measuredWidth Optional. If non-null, this returns the actual
783 * width of the measured text.
784 * @param tbd Optional. The direction the text buffer should be
785 * traversed during measuring.
786 * @return The number of bytes of text that were measured. Will be
787 * <= length.
788 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000789 size_t breakText(const void* text, size_t length, SkScalar maxWidth,
790 SkScalar* measuredWidth = NULL,
791 TextBufferDirection tbd = kForward_TextBufferDirection)
792 const;
793
reed@google.com44da42e2011-11-10 20:04:47 +0000794 /** Return the advances for the text. These will be vertical advances if
795 * isVerticalText() returns true.
796 *
797 * @param text the text
798 * @param byteLength number of bytes to of text
799 * @param widths If not null, returns the array of advances for
800 * the glyphs. If not NULL, must be at least a large
801 * as the number of unichars in the specified text.
802 * @param bounds If not null, returns the bounds for each of
803 * character, relative to (0, 0)
804 * @return the number of unichars in the specified text.
805 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000806 int getTextWidths(const void* text, size_t byteLength, SkScalar widths[],
807 SkRect bounds[] = NULL) const;
808
809 /** Return the path (outline) for the specified text.
810 Note: just like SkCanvas::drawText, this will respect the Align setting
811 in the paint.
812 */
813 void getTextPath(const void* text, size_t length, SkScalar x, SkScalar y,
814 SkPath* path) const;
815
djsollen@google.com56c69772011-11-08 19:00:26 +0000816#ifdef SK_BUILD_FOR_ANDROID
djsollen@google.comf5dbe2f2011-04-15 13:41:26 +0000817 const SkGlyph& getUnicharMetrics(SkUnichar);
djsollen@google.com60abb072012-02-15 18:49:15 +0000818 const SkGlyph& getGlyphMetrics(uint16_t);
djsollen@google.comf5dbe2f2011-04-15 13:41:26 +0000819 const void* findImage(const SkGlyph&);
820
821 uint32_t getGenerationID() const;
djsollen@google.com60abb072012-02-15 18:49:15 +0000822
823 /** Returns the base glyph count for the strike associated with this paint
824 */
825 unsigned getBaseGlyphCount(SkUnichar text) const;
djsollen@google.comf5dbe2f2011-04-15 13:41:26 +0000826#endif
827
reed@google.com632e1a22011-10-06 12:37:00 +0000828 // returns true if the paint's settings (e.g. xfermode + alpha) resolve to
829 // mean that we need not draw at all (e.g. SrcOver + 0-alpha)
830 bool nothingToDraw() const;
831
reed@android.com8a1c16f2008-12-17 15:59:43 +0000832private:
833 SkTypeface* fTypeface;
834 SkScalar fTextSize;
835 SkScalar fTextScaleX;
836 SkScalar fTextSkewX;
837
838 SkPathEffect* fPathEffect;
839 SkShader* fShader;
840 SkXfermode* fXfermode;
841 SkMaskFilter* fMaskFilter;
842 SkColorFilter* fColorFilter;
843 SkRasterizer* fRasterizer;
844 SkDrawLooper* fLooper;
reed@google.com15356a62011-11-03 19:29:08 +0000845 SkImageFilter* fImageFilter;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000846
847 SkColor fColor;
848 SkScalar fWidth;
849 SkScalar fMiterLimit;
reed@google.com8351aab2012-01-18 17:06:35 +0000850 unsigned fFlags : 15;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000851 unsigned fTextAlign : 2;
852 unsigned fCapType : 2;
853 unsigned fJoinType : 2;
854 unsigned fStyle : 2;
855 unsigned fTextEncoding : 2; // 3 values
agl@chromium.org309485b2009-07-21 17:41:32 +0000856 unsigned fHinting : 2;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000857
858 SkDrawCacheProc getDrawCacheProc() const;
859 SkMeasureCacheProc getMeasureCacheProc(TextBufferDirection dir,
860 bool needFullMetrics) const;
861
862 SkScalar measure_text(SkGlyphCache*, const char* text, size_t length,
863 int* count, SkRect* bounds) const;
864
865 SkGlyphCache* detachCache(const SkMatrix*) const;
866
867 void descriptorProc(const SkMatrix* deviceMatrix,
868 void (*proc)(const SkDescriptor*, void*),
djsollen@google.com57f49692011-02-23 20:46:31 +0000869 void* context, bool ignoreGamma = false) const;
reed@android.comd252db02009-04-01 18:31:44 +0000870
reed@google.coma584aed2012-05-16 14:06:02 +0000871 ///////////////////////////////////////////////////////////////////////////
872
873 /** Returns true if the current paint settings allow for fast computation of
874 bounds (i.e. there is nothing complex like a patheffect that would make
875 the bounds computation expensive.
876 */
877 bool canComputeFastBounds() const {
878 if (this->getLooper()) {
879 return this->getLooper()->canComputeFastBounds(*this);
880 }
881 return !this->getRasterizer();
882 }
883
884 /** Only call this if canComputeFastBounds() returned true. This takes a
885 raw rectangle (the raw bounds of a shape), and adjusts it for stylistic
886 effects in the paint (e.g. stroking). If needed, it uses the storage
887 rect parameter. It returns the adjusted bounds that can then be used
888 for quickReject tests.
889
890 The returned rect will either be orig or storage, thus the caller
891 should not rely on storage being set to the result, but should always
892 use the retured value. It is legal for orig and storage to be the same
893 rect.
894
895 e.g.
896 if (paint.canComputeFastBounds()) {
897 SkRect r, storage;
898 path.computeBounds(&r, SkPath::kFast_BoundsType);
899 const SkRect& fastR = paint.computeFastBounds(r, &storage);
900 if (canvas->quickReject(fastR, ...)) {
901 // don't draw the path
902 }
903 }
904 */
905 const SkRect& computeFastBounds(const SkRect& orig, SkRect* storage) const {
906 SkPaint::Style style = this->getStyle();
907 // ultra fast-case: filling with no effects that affect geometry
908 if (kFill_Style == style) {
909 uintptr_t effects = reinterpret_cast<uintptr_t>(this->getLooper());
910 effects |= reinterpret_cast<uintptr_t>(this->getMaskFilter());
911 effects |= reinterpret_cast<uintptr_t>(this->getPathEffect());
912 if (!effects) {
913 return orig;
914 }
915 }
916
917 return this->doComputeFastBounds(orig, storage, style);
918 }
919
920 const SkRect& computeFastStrokeBounds(const SkRect& orig,
921 SkRect* storage) const {
922 return this->doComputeFastBounds(orig, storage, kFill_Style);
923 }
924
925 // Take the style explicitly, so the caller can force us to be stroked
926 // without having to make a copy of the paint just to change that field.
927 const SkRect& doComputeFastBounds(const SkRect& orig, SkRect* storage,
928 Style) const;
929
930 ///////////////////////////////////////////////////////////////////////////
reed@android.comd252db02009-04-01 18:31:44 +0000931
reed@android.com8a1c16f2008-12-17 15:59:43 +0000932 enum {
933 kCanonicalTextSizeForPaths = 64
934 };
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000935 friend class SkAutoGlyphCache;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000936 friend class SkCanvas;
937 friend class SkDraw;
reed@google.coma584aed2012-05-16 14:06:02 +0000938 friend class SkDrawLooper; // computeFastBounds
939 friend class SkPictureRecord; // computeFastBounds
vandebo@chromium.org28be72b2010-11-11 21:37:00 +0000940 friend class SkPDFDevice;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000941 friend class SkTextToPathIter;
djsollen@google.comb44cd652011-12-01 17:09:21 +0000942
943#ifdef SK_BUILD_FOR_ANDROID
944 // In order for the == operator to work properly this must be the last field
945 // in the struct so that we can do a memcmp to this field's offset.
946 uint32_t fGenerationID;
947#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +0000948};
949
reed@android.com8a1c16f2008-12-17 15:59:43 +0000950#endif
951