blob: fa0c61e4ea5f1813aee8902bccaa3ce937e07c63 [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@google.comed43dff2013-06-04 16:56:27 +000016#include "SkMatrix.h"
reed@android.coma0f5d152009-06-22 17:38:10 +000017#include "SkXfermode.h"
commit-bot@chromium.orgc7a20e42013-05-13 14:09:13 +000018#ifdef SK_BUILD_FOR_ANDROID
19#include "SkPaintOptionsAndroid.h"
20#endif
reed@android.coma0f5d152009-06-22 17:38:10 +000021
reed@google.comb0a34d82012-07-11 19:57:55 +000022class SkAnnotation;
reed@android.com8a1c16f2008-12-17 15:59:43 +000023class SkAutoGlyphCache;
24class SkColorFilter;
25class SkDescriptor;
bungeman@google.com532470f2013-01-22 19:25:14 +000026struct SkDeviceProperties;
reed@android.com8a1c16f2008-12-17 15:59:43 +000027class SkFlattenableReadBuffer;
28class SkFlattenableWriteBuffer;
29struct SkGlyph;
30struct SkRect;
31class SkGlyphCache;
reed@google.com15356a62011-11-03 19:29:08 +000032class SkImageFilter;
reed@android.com8a1c16f2008-12-17 15:59:43 +000033class SkMaskFilter;
reed@android.com8a1c16f2008-12-17 15:59:43 +000034class SkPath;
35class SkPathEffect;
djsollen@google.comc73dd5c2012-08-07 15:54:32 +000036struct SkPoint;
reed@android.com8a1c16f2008-12-17 15:59:43 +000037class SkRasterizer;
38class SkShader;
reed@android.com8a1c16f2008-12-17 15:59:43 +000039class SkTypeface;
reed@android.com8a1c16f2008-12-17 15:59:43 +000040
41typedef const SkGlyph& (*SkDrawCacheProc)(SkGlyphCache*, const char**,
42 SkFixed x, SkFixed y);
43
44typedef const SkGlyph& (*SkMeasureCacheProc)(SkGlyphCache*, const char**);
45
humper@google.comb0889472013-07-09 21:37:14 +000046#define kBicubicFilterBitmap_Flag kHighQualityFilterBitmap_Flag
47
reed@android.com8a1c16f2008-12-17 15:59:43 +000048/** \class SkPaint
49
50 The SkPaint class holds the style and color information about how to draw
51 geometries, text and bitmaps.
52*/
humper@google.comb0889472013-07-09 21:37:14 +000053
ctguil@chromium.org7ffb1b22011-03-15 21:27:08 +000054class SK_API SkPaint {
reed@google.com9cfc83c2013-07-22 17:18:18 +000055 enum {
56 // DEPRECATED -- use setFilterLevel instead
57 kFilterBitmap_Flag = 0x02, // temporary flag
58 // DEPRECATED -- use setFilterLevel instead
59 kHighQualityFilterBitmap_Flag = 0x4000, // temporary flag
60 // DEPRECATED -- use setFilterLevel instead
61 kHighQualityDownsampleBitmap_Flag = 0x8000, // temporary flag
62 };
reed@android.com8a1c16f2008-12-17 15:59:43 +000063public:
64 SkPaint();
65 SkPaint(const SkPaint& paint);
66 ~SkPaint();
67
68 SkPaint& operator=(const SkPaint&);
69
robertphillips@google.comb2657412013-08-07 22:36:29 +000070 SK_API friend bool operator==(const SkPaint& a, const SkPaint& b);
71 friend bool operator!=(const SkPaint& a, const SkPaint& b) {
72 return !(a == b);
73 }
74
reed@android.com8a1c16f2008-12-17 15:59:43 +000075 void flatten(SkFlattenableWriteBuffer&) const;
76 void unflatten(SkFlattenableReadBuffer&);
77
78 /** Restores the paint to its initial settings.
79 */
80 void reset();
81
agl@chromium.org309485b2009-07-21 17:41:32 +000082 /** Specifies the level of hinting to be performed. These names are taken
83 from the Gnome/Cairo names for the same. They are translated into
84 Freetype concepts the same as in cairo-ft-font.c:
85 kNo_Hinting -> FT_LOAD_NO_HINTING
86 kSlight_Hinting -> FT_LOAD_TARGET_LIGHT
87 kNormal_Hinting -> <default, no option>
88 kFull_Hinting -> <same as kNormalHinting, unless we are rendering
89 subpixel glyphs, in which case TARGET_LCD or
90 TARGET_LCD_V is used>
91 */
92 enum Hinting {
93 kNo_Hinting = 0,
94 kSlight_Hinting = 1,
95 kNormal_Hinting = 2, //!< this is the default
tomhudson@google.com1f902872012-06-01 13:15:47 +000096 kFull_Hinting = 3
agl@chromium.org309485b2009-07-21 17:41:32 +000097 };
98
reed@google.com9d07fec2011-03-16 20:02:59 +000099 Hinting getHinting() const {
agl@chromium.org309485b2009-07-21 17:41:32 +0000100 return static_cast<Hinting>(fHinting);
101 }
102
djsollen@google.comf5dbe2f2011-04-15 13:41:26 +0000103 void setHinting(Hinting hintingLevel);
agl@chromium.org309485b2009-07-21 17:41:32 +0000104
reed@android.com8a1c16f2008-12-17 15:59:43 +0000105 /** Specifies the bit values that are stored in the paint's flags.
106 */
107 enum Flags {
108 kAntiAlias_Flag = 0x01, //!< mask to enable antialiasing
reed@android.com8a1c16f2008-12-17 15:59:43 +0000109 kDither_Flag = 0x04, //!< mask to enable dithering
110 kUnderlineText_Flag = 0x08, //!< mask to enable underline text
111 kStrikeThruText_Flag = 0x10, //!< mask to enable strike-thru text
112 kFakeBoldText_Flag = 0x20, //!< mask to enable fake-bold text
113 kLinearText_Flag = 0x40, //!< mask to enable linear-text
agl@chromium.org309485b2009-07-21 17:41:32 +0000114 kSubpixelText_Flag = 0x80, //!< mask to enable subpixel text positioning
reed@android.com8a1c16f2008-12-17 15:59:43 +0000115 kDevKernText_Flag = 0x100, //!< mask to enable device kerning text
agl@chromium.org309485b2009-07-21 17:41:32 +0000116 kLCDRenderText_Flag = 0x200, //!< mask to enable subpixel glyph renderering
agl@chromium.orge95c91e2010-01-04 18:27:55 +0000117 kEmbeddedBitmapText_Flag = 0x400, //!< mask to enable embedded bitmap strikes
agl@chromium.orga2c71cb2010-06-17 20:49:17 +0000118 kAutoHinting_Flag = 0x800, //!< mask to force Freetype's autohinter
reed@google.com830a23e2011-11-10 15:20:49 +0000119 kVerticalText_Flag = 0x1000,
reed@google.com8351aab2012-01-18 17:06:35 +0000120 kGenA8FromLCD_Flag = 0x2000, // hack for GDI -- do not use if you can help it
agl@chromium.org309485b2009-07-21 17:41:32 +0000121 // when adding extra flags, note that the fFlags member is specified
122 // with a bit-width and you'll have to expand it.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000123
humper@google.com387db0a2013-07-09 14:13:04 +0000124 kAllFlags = 0xFFFF
reed@android.com8a1c16f2008-12-17 15:59:43 +0000125 };
126
127 /** Return the paint's flags. Use the Flag enum to test flag values.
128 @return the paint's flags (see enums ending in _Flag for bit masks)
129 */
130 uint32_t getFlags() const { return fFlags; }
131
132 /** Set the paint's flags. Use the Flag enum to specific flag values.
133 @param flags The new flag bits for the paint (see Flags enum)
134 */
135 void setFlags(uint32_t flags);
136
137 /** Helper for getFlags(), returning true if kAntiAlias_Flag bit is set
138 @return true if the antialias bit is set in the paint's flags.
139 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000140 bool isAntiAlias() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000141 return SkToBool(this->getFlags() & kAntiAlias_Flag);
142 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000143
reed@android.com8a1c16f2008-12-17 15:59:43 +0000144 /** Helper for setFlags(), setting or clearing the kAntiAlias_Flag bit
145 @param aa true to enable antialiasing, false to disable it
146 */
147 void setAntiAlias(bool aa);
reed@google.com9d07fec2011-03-16 20:02:59 +0000148
reed@android.com8a1c16f2008-12-17 15:59:43 +0000149 /** Helper for getFlags(), returning true if kDither_Flag bit is set
150 @return true if the dithering bit is set in the paint's flags.
151 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000152 bool isDither() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000153 return SkToBool(this->getFlags() & kDither_Flag);
154 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000155
reed@android.com8a1c16f2008-12-17 15:59:43 +0000156 /** Helper for setFlags(), setting or clearing the kDither_Flag bit
157 @param dither true to enable dithering, false to disable it
158 */
159 void setDither(bool dither);
reed@google.com9d07fec2011-03-16 20:02:59 +0000160
reed@android.com8a1c16f2008-12-17 15:59:43 +0000161 /** Helper for getFlags(), returning true if kLinearText_Flag bit is set
162 @return true if the lineartext bit is set in the paint's flags
163 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000164 bool isLinearText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000165 return SkToBool(this->getFlags() & kLinearText_Flag);
166 }
167
168 /** Helper for setFlags(), setting or clearing the kLinearText_Flag bit
169 @param linearText true to set the linearText bit in the paint's flags,
170 false to clear it.
171 */
172 void setLinearText(bool linearText);
173
174 /** Helper for getFlags(), returning true if kSubpixelText_Flag bit is set
175 @return true if the lineartext bit is set in the paint's flags
176 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000177 bool isSubpixelText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000178 return SkToBool(this->getFlags() & kSubpixelText_Flag);
179 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000180
reed@google.com84b437e2011-08-01 12:45:35 +0000181 /**
182 * Helper for setFlags(), setting or clearing the kSubpixelText_Flag.
183 * @param subpixelText true to set the subpixelText bit in the paint's
184 * flags, false to clear it.
185 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000186 void setSubpixelText(bool subpixelText);
agl@chromium.org309485b2009-07-21 17:41:32 +0000187
reed@google.com9d07fec2011-03-16 20:02:59 +0000188 bool isLCDRenderText() const {
agl@chromium.org309485b2009-07-21 17:41:32 +0000189 return SkToBool(this->getFlags() & kLCDRenderText_Flag);
190 }
191
reed@google.com84b437e2011-08-01 12:45:35 +0000192 /**
193 * Helper for setFlags(), setting or clearing the kLCDRenderText_Flag.
194 * Note: antialiasing must also be on for lcd rendering
195 * @param lcdText true to set the LCDRenderText bit in the paint's flags,
196 * false to clear it.
197 */
198 void setLCDRenderText(bool lcdText);
agl@chromium.org309485b2009-07-21 17:41:32 +0000199
reed@google.com9d07fec2011-03-16 20:02:59 +0000200 bool isEmbeddedBitmapText() const {
agl@chromium.orge95c91e2010-01-04 18:27:55 +0000201 return SkToBool(this->getFlags() & kEmbeddedBitmapText_Flag);
202 }
203
204 /** Helper for setFlags(), setting or clearing the kEmbeddedBitmapText_Flag bit
205 @param useEmbeddedBitmapText true to set the kEmbeddedBitmapText bit in the paint's flags,
206 false to clear it.
207 */
208 void setEmbeddedBitmapText(bool useEmbeddedBitmapText);
209
reed@google.com9d07fec2011-03-16 20:02:59 +0000210 bool isAutohinted() const {
agl@chromium.orga2c71cb2010-06-17 20:49:17 +0000211 return SkToBool(this->getFlags() & kAutoHinting_Flag);
212 }
213
214 /** Helper for setFlags(), setting or clearing the kAutoHinting_Flag bit
215 @param useAutohinter true to set the kEmbeddedBitmapText bit in the
216 paint's flags,
217 false to clear it.
218 */
219 void setAutohinted(bool useAutohinter);
220
reed@google.com830a23e2011-11-10 15:20:49 +0000221 bool isVerticalText() const {
222 return SkToBool(this->getFlags() & kVerticalText_Flag);
223 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000224
reed@google.com830a23e2011-11-10 15:20:49 +0000225 /**
226 * Helper for setting or clearing the kVerticalText_Flag bit in
227 * setFlags(...).
228 *
229 * If this bit is set, then advances are treated as Y values rather than
230 * X values, and drawText will places its glyphs vertically rather than
231 * horizontally.
232 */
233 void setVerticalText(bool);
234
reed@android.com8a1c16f2008-12-17 15:59:43 +0000235 /** Helper for getFlags(), returning true if kUnderlineText_Flag bit is set
236 @return true if the underlineText bit is set in the paint's flags.
237 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000238 bool isUnderlineText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000239 return SkToBool(this->getFlags() & kUnderlineText_Flag);
240 }
241
242 /** Helper for setFlags(), setting or clearing the kUnderlineText_Flag bit
243 @param underlineText true to set the underlineText bit in the paint's
244 flags, false to clear it.
245 */
246 void setUnderlineText(bool underlineText);
247
248 /** Helper for getFlags(), returns true if kStrikeThruText_Flag bit is set
249 @return true if the strikeThruText bit is set in the paint's flags.
250 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000251 bool isStrikeThruText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000252 return SkToBool(this->getFlags() & kStrikeThruText_Flag);
253 }
254
255 /** Helper for setFlags(), setting or clearing the kStrikeThruText_Flag bit
256 @param strikeThruText true to set the strikeThruText bit in the
257 paint's flags, false to clear it.
258 */
259 void setStrikeThruText(bool strikeThruText);
260
261 /** Helper for getFlags(), returns true if kFakeBoldText_Flag bit is set
262 @return true if the kFakeBoldText_Flag bit is set in the paint's flags.
263 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000264 bool isFakeBoldText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000265 return SkToBool(this->getFlags() & kFakeBoldText_Flag);
266 }
267
268 /** Helper for setFlags(), setting or clearing the kFakeBoldText_Flag bit
269 @param fakeBoldText true to set the kFakeBoldText_Flag bit in the paint's
270 flags, false to clear it.
271 */
272 void setFakeBoldText(bool fakeBoldText);
273
274 /** Helper for getFlags(), returns true if kDevKernText_Flag bit is set
275 @return true if the kernText bit is set in the paint's flags.
276 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000277 bool isDevKernText() const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000278 return SkToBool(this->getFlags() & kDevKernText_Flag);
279 }
280
281 /** Helper for setFlags(), setting or clearing the kKernText_Flag bit
282 @param kernText true to set the kKernText_Flag bit in the paint's
283 flags, false to clear it.
284 */
285 void setDevKernText(bool devKernText);
286
reed@google.comc9683152013-07-18 13:47:01 +0000287 enum FilterLevel {
288 kNone_FilterLevel,
289 kLow_FilterLevel,
290 kMedium_FilterLevel,
291 kHigh_FilterLevel
292 };
293
294 /**
295 * Return the filter level. This affects the quality (and performance) of
296 * drawing scaled images.
297 */
298 FilterLevel getFilterLevel() const;
299
300 /**
301 * Set the filter level. This affects the quality (and performance) of
302 * drawing scaled images.
303 */
304 void setFilterLevel(FilterLevel);
305
306 /**
307 * DEPRECATED: use setFilterLevel instead.
308 * If the predicate is true, set the filterLevel to Low, else set it to
309 * None.
310 */
311 void setFilterBitmap(bool doFilter) {
312 this->setFilterLevel(doFilter ? kLow_FilterLevel : kNone_FilterLevel);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000313 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000314
reed@google.comc9683152013-07-18 13:47:01 +0000315 /**
316 * DEPRECATED: call getFilterLevel() instead.
317 * Returns true if getFilterLevel() returns anything other than None.
318 */
319 bool isFilterBitmap() const {
320 return kNone_FilterLevel != this->getFilterLevel();
321 }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000322
323 /** Styles apply to rect, oval, path, and text.
324 Bitmaps are always drawn in "fill", and lines are always drawn in
325 "stroke".
reed@google.com9d07fec2011-03-16 20:02:59 +0000326
reed@android.comed881c22009-09-15 14:10:42 +0000327 Note: strokeandfill implicitly draws the result with
328 SkPath::kWinding_FillType, so if the original path is even-odd, the
329 results may not appear the same as if it was drawn twice, filled and
330 then stroked.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000331 */
332 enum Style {
reed@android.comed881c22009-09-15 14:10:42 +0000333 kFill_Style, //!< fill the geometry
334 kStroke_Style, //!< stroke the geometry
335 kStrokeAndFill_Style, //!< fill and stroke the geometry
mike@reedtribe.orgaac2fb82013-02-04 05:17:10 +0000336 };
337 enum {
338 kStyleCount = kStrokeAndFill_Style + 1
reed@android.com8a1c16f2008-12-17 15:59:43 +0000339 };
340
341 /** Return the paint's style, used for controlling how primitives'
342 geometries are interpreted (except for drawBitmap, which always assumes
343 kFill_Style).
344 @return the paint's Style
345 */
346 Style getStyle() const { return (Style)fStyle; }
347
348 /** Set the paint's style, used for controlling how primitives'
349 geometries are interpreted (except for drawBitmap, which always assumes
350 Fill).
351 @param style The new style to set in the paint
352 */
353 void setStyle(Style style);
354
355 /** Return the paint's color. Note that the color is a 32bit value
356 containing alpha as well as r,g,b. This 32bit value is not
357 premultiplied, meaning that its alpha can be any value, regardless of
358 the values of r,g,b.
359 @return the paint's color (and alpha).
360 */
361 SkColor getColor() const { return fColor; }
362
363 /** Set the paint's color. Note that the color is a 32bit value containing
364 alpha as well as r,g,b. This 32bit value is not premultiplied, meaning
365 that its alpha can be any value, regardless of the values of r,g,b.
366 @param color The new color (including alpha) to set in the paint.
367 */
368 void setColor(SkColor color);
369
370 /** Helper to getColor() that just returns the color's alpha value.
371 @return the alpha component of the paint's color.
372 */
373 uint8_t getAlpha() const { return SkToU8(SkColorGetA(fColor)); }
reed@google.com9d07fec2011-03-16 20:02:59 +0000374
reed@android.com8a1c16f2008-12-17 15:59:43 +0000375 /** Helper to setColor(), that only assigns the color's alpha value,
376 leaving its r,g,b values unchanged.
377 @param a set the alpha component (0..255) of the paint's color.
378 */
379 void setAlpha(U8CPU a);
380
381 /** Helper to setColor(), that takes a,r,g,b and constructs the color value
382 using SkColorSetARGB()
383 @param a The new alpha component (0..255) of the paint's color.
384 @param r The new red component (0..255) of the paint's color.
385 @param g The new green component (0..255) of the paint's color.
386 @param b The new blue component (0..255) of the paint's color.
387 */
388 void setARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b);
389
reed@google.com9d07fec2011-03-16 20:02:59 +0000390 /** Return the width for stroking.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000391 <p />
392 A value of 0 strokes in hairline mode.
393 Hairlines always draw 1-pixel wide, regardless of the matrix.
394 @return the paint's stroke width, used whenever the paint's style is
395 Stroke or StrokeAndFill.
396 */
397 SkScalar getStrokeWidth() const { return fWidth; }
398
reed@google.com9d07fec2011-03-16 20:02:59 +0000399 /** Set the width for stroking.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000400 Pass 0 to stroke in hairline mode.
401 Hairlines always draw 1-pixel wide, regardless of the matrix.
402 @param width set the paint's stroke width, used whenever the paint's
403 style is Stroke or StrokeAndFill.
404 */
405 void setStrokeWidth(SkScalar width);
406
407 /** Return the paint's stroke miter value. This is used to control the
408 behavior of miter joins when the joins angle is sharp.
409 @return the paint's miter limit, used whenever the paint's style is
410 Stroke or StrokeAndFill.
411 */
412 SkScalar getStrokeMiter() const { return fMiterLimit; }
413
414 /** Set the paint's stroke miter value. This is used to control the
415 behavior of miter joins when the joins angle is sharp. This value must
416 be >= 0.
417 @param miter set the miter limit on the paint, used whenever the
418 paint's style is Stroke or StrokeAndFill.
419 */
420 void setStrokeMiter(SkScalar miter);
421
422 /** Cap enum specifies the settings for the paint's strokecap. This is the
423 treatment that is applied to the beginning and end of each non-closed
424 contour (e.g. lines).
425 */
426 enum Cap {
427 kButt_Cap, //!< begin/end contours with no extension
428 kRound_Cap, //!< begin/end contours with a semi-circle extension
429 kSquare_Cap, //!< begin/end contours with a half square extension
430
431 kCapCount,
432 kDefault_Cap = kButt_Cap
433 };
434
435 /** Join enum specifies the settings for the paint's strokejoin. This is
436 the treatment that is applied to corners in paths and rectangles.
437 */
438 enum Join {
439 kMiter_Join, //!< connect path segments with a sharp join
440 kRound_Join, //!< connect path segments with a round join
441 kBevel_Join, //!< connect path segments with a flat bevel join
442
443 kJoinCount,
444 kDefault_Join = kMiter_Join
445 };
446
447 /** Return the paint's stroke cap type, controlling how the start and end
448 of stroked lines and paths are treated.
449 @return the line cap style for the paint, used whenever the paint's
450 style is Stroke or StrokeAndFill.
451 */
452 Cap getStrokeCap() const { return (Cap)fCapType; }
453
454 /** Set the paint's stroke cap type.
455 @param cap set the paint's line cap style, used whenever the paint's
456 style is Stroke or StrokeAndFill.
457 */
458 void setStrokeCap(Cap cap);
459
460 /** Return the paint's stroke join type.
461 @return the paint's line join style, used whenever the paint's style is
462 Stroke or StrokeAndFill.
463 */
464 Join getStrokeJoin() const { return (Join)fJoinType; }
465
466 /** Set the paint's stroke join type.
467 @param join set the paint's line join style, used whenever the paint's
468 style is Stroke or StrokeAndFill.
469 */
470 void setStrokeJoin(Join join);
471
reed@google.com4bbdeac2013-01-24 21:03:11 +0000472 /**
473 * Applies any/all effects (patheffect, stroking) to src, returning the
474 * result in dst. The result is that drawing src with this paint will be
475 * the same as drawing dst with a default paint (at least from the
476 * geometric perspective).
477 *
478 * @param src input path
479 * @param dst output path (may be the same as src)
480 * @param cullRect If not null, the dst path may be culled to this rect.
481 * @return true if the path should be filled, or false if it should be
482 * drawn with a hairline (width == 0)
483 */
484 bool getFillPath(const SkPath& src, SkPath* dst,
485 const SkRect* cullRect = NULL) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000486
reed@android.com8a1c16f2008-12-17 15:59:43 +0000487 /** Get the paint's shader object.
488 <p />
489 The shader's reference count is not affected.
490 @return the paint's shader (or NULL)
491 */
492 SkShader* getShader() const { return fShader; }
493
494 /** Set or clear the shader object.
reed@google.com880dc472012-05-11 14:47:03 +0000495 * Shaders specify the source color(s) for what is being drawn. If a paint
496 * has no shader, then the paint's color is used. If the paint has a
497 * shader, then the shader's color(s) are use instead, but they are
498 * modulated by the paint's alpha. This makes it easy to create a shader
499 * once (e.g. bitmap tiling or gradient) and then change its transparency
500 * w/o having to modify the original shader... only the paint's alpha needs
501 * to be modified.
502 * <p />
503 * Pass NULL to clear any previous shader.
504 * As a convenience, the parameter passed is also returned.
505 * If a previous shader exists, its reference count is decremented.
506 * If shader is not NULL, its reference count is incremented.
507 * @param shader May be NULL. The shader to be installed in the paint
508 * @return shader
509 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000510 SkShader* setShader(SkShader* shader);
reed@google.com9d07fec2011-03-16 20:02:59 +0000511
reed@android.com8a1c16f2008-12-17 15:59:43 +0000512 /** Get the paint's colorfilter. If there is a colorfilter, its reference
513 count is not changed.
514 @return the paint's colorfilter (or NULL)
515 */
516 SkColorFilter* getColorFilter() const { return fColorFilter; }
517
518 /** Set or clear the paint's colorfilter, returning the parameter.
519 <p />
520 If the paint already has a filter, its reference count is decremented.
521 If filter is not NULL, its reference count is incremented.
522 @param filter May be NULL. The filter to be installed in the paint
523 @return filter
524 */
525 SkColorFilter* setColorFilter(SkColorFilter* filter);
526
527 /** Get the paint's xfermode object.
528 <p />
529 The xfermode's reference count is not affected.
530 @return the paint's xfermode (or NULL)
531 */
532 SkXfermode* getXfermode() const { return fXfermode; }
533
534 /** Set or clear the xfermode object.
535 <p />
536 Pass NULL to clear any previous xfermode.
537 As a convenience, the parameter passed is also returned.
538 If a previous xfermode exists, its reference count is decremented.
539 If xfermode is not NULL, its reference count is incremented.
540 @param xfermode May be NULL. The new xfermode to be installed in the
541 paint
542 @return xfermode
543 */
544 SkXfermode* setXfermode(SkXfermode* xfermode);
reed@android.coma0f5d152009-06-22 17:38:10 +0000545
546 /** Create an xfermode based on the specified Mode, and assign it into the
547 paint, returning the mode that was set. If the Mode is SrcOver, then
548 the paint's xfermode is set to null.
549 */
reed@android.com0baf1932009-06-24 12:41:42 +0000550 SkXfermode* setXfermodeMode(SkXfermode::Mode);
reed@android.coma0f5d152009-06-22 17:38:10 +0000551
reed@android.com8a1c16f2008-12-17 15:59:43 +0000552 /** Get the paint's patheffect object.
553 <p />
554 The patheffect reference count is not affected.
555 @return the paint's patheffect (or NULL)
556 */
557 SkPathEffect* getPathEffect() const { return fPathEffect; }
558
559 /** Set or clear the patheffect object.
560 <p />
561 Pass NULL to clear any previous patheffect.
562 As a convenience, the parameter passed is also returned.
563 If a previous patheffect exists, its reference count is decremented.
564 If patheffect is not NULL, its reference count is incremented.
565 @param effect May be NULL. The new patheffect to be installed in the
566 paint
567 @return effect
568 */
569 SkPathEffect* setPathEffect(SkPathEffect* effect);
570
571 /** Get the paint's maskfilter object.
572 <p />
573 The maskfilter reference count is not affected.
574 @return the paint's maskfilter (or NULL)
575 */
576 SkMaskFilter* getMaskFilter() const { return fMaskFilter; }
577
578 /** Set or clear the maskfilter object.
579 <p />
580 Pass NULL to clear any previous maskfilter.
581 As a convenience, the parameter passed is also returned.
582 If a previous maskfilter exists, its reference count is decremented.
583 If maskfilter is not NULL, its reference count is incremented.
584 @param maskfilter May be NULL. The new maskfilter to be installed in
585 the paint
586 @return maskfilter
587 */
588 SkMaskFilter* setMaskFilter(SkMaskFilter* maskfilter);
589
590 // These attributes are for text/fonts
591
592 /** Get the paint's typeface object.
593 <p />
594 The typeface object identifies which font to use when drawing or
595 measuring text. The typeface reference count is not affected.
596 @return the paint's typeface (or NULL)
597 */
598 SkTypeface* getTypeface() const { return fTypeface; }
599
600 /** Set or clear the typeface object.
601 <p />
602 Pass NULL to clear any previous typeface.
603 As a convenience, the parameter passed is also returned.
604 If a previous typeface exists, its reference count is decremented.
605 If typeface is not NULL, its reference count is incremented.
606 @param typeface May be NULL. The new typeface to be installed in the
607 paint
608 @return typeface
609 */
610 SkTypeface* setTypeface(SkTypeface* typeface);
611
612 /** Get the paint's rasterizer (or NULL).
613 <p />
614 The raster controls how paths/text are turned into alpha masks.
615 @return the paint's rasterizer (or NULL)
616 */
617 SkRasterizer* getRasterizer() const { return fRasterizer; }
618
619 /** Set or clear the rasterizer object.
620 <p />
621 Pass NULL to clear any previous rasterizer.
622 As a convenience, the parameter passed is also returned.
623 If a previous rasterizer exists in the paint, its reference count is
624 decremented. If rasterizer is not NULL, its reference count is
625 incremented.
626 @param rasterizer May be NULL. The new rasterizer to be installed in
627 the paint.
628 @return rasterizer
629 */
630 SkRasterizer* setRasterizer(SkRasterizer* rasterizer);
631
reed@google.com15356a62011-11-03 19:29:08 +0000632 SkImageFilter* getImageFilter() const { return fImageFilter; }
633 SkImageFilter* setImageFilter(SkImageFilter*);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000634
reed@google.comb0a34d82012-07-11 19:57:55 +0000635 SkAnnotation* getAnnotation() const { return fAnnotation; }
636 SkAnnotation* setAnnotation(SkAnnotation*);
637
638 /**
639 * Returns true if there is an annotation installed on this paint, and
640 * the annotation specifics no-drawing.
641 */
642 bool isNoDrawAnnotation() const {
643 return SkToBool(fPrivFlags & kNoDrawAnnotation_PrivFlag);
644 }
reed@google.com15356a62011-11-03 19:29:08 +0000645
reed@google.com9d07fec2011-03-16 20:02:59 +0000646 /**
647 * Return the paint's SkDrawLooper (if any). Does not affect the looper's
648 * reference count.
649 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000650 SkDrawLooper* getLooper() const { return fLooper; }
reed@google.com9d07fec2011-03-16 20:02:59 +0000651
652 /**
653 * Set or clear the looper object.
654 * <p />
655 * Pass NULL to clear any previous looper.
656 * As a convenience, the parameter passed is also returned.
657 * If a previous looper exists in the paint, its reference count is
658 * decremented. If looper is not NULL, its reference count is
659 * incremented.
660 * @param looper May be NULL. The new looper to be installed in the paint.
661 * @return looper
662 */
663 SkDrawLooper* setLooper(SkDrawLooper* looper);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000664
665 enum Align {
666 kLeft_Align,
667 kCenter_Align,
668 kRight_Align,
mike@reedtribe.orgddc813b2013-06-08 12:58:19 +0000669 };
670 enum {
671 kAlignCount = 3
reed@android.com8a1c16f2008-12-17 15:59:43 +0000672 };
reed@google.com9d07fec2011-03-16 20:02:59 +0000673
reed@android.com8a1c16f2008-12-17 15:59:43 +0000674 /** Return the paint's Align value for drawing text.
675 @return the paint's Align value for drawing text.
676 */
677 Align getTextAlign() const { return (Align)fTextAlign; }
reed@google.com9d07fec2011-03-16 20:02:59 +0000678
reed@android.com8a1c16f2008-12-17 15:59:43 +0000679 /** Set the paint's text alignment.
680 @param align set the paint's Align value for drawing text.
681 */
682 void setTextAlign(Align align);
683
684 /** Return the paint's text size.
685 @return the paint's text size.
686 */
687 SkScalar getTextSize() const { return fTextSize; }
688
689 /** Set the paint's text size. This value must be > 0
690 @param textSize set the paint's text size.
691 */
692 void setTextSize(SkScalar textSize);
693
694 /** Return the paint's horizontal scale factor for text. The default value
695 is 1.0.
696 @return the paint's scale factor in X for drawing/measuring text
697 */
698 SkScalar getTextScaleX() const { return fTextScaleX; }
699
700 /** Set the paint's horizontal scale factor for text. The default value
701 is 1.0. Values > 1.0 will stretch the text wider. Values < 1.0 will
702 stretch the text narrower.
703 @param scaleX set the paint's scale factor in X for drawing/measuring
704 text.
705 */
706 void setTextScaleX(SkScalar scaleX);
707
708 /** Return the paint's horizontal skew factor for text. The default value
709 is 0.
710 @return the paint's skew factor in X for drawing text.
711 */
712 SkScalar getTextSkewX() const { return fTextSkewX; }
713
714 /** Set the paint's horizontal skew factor for text. The default value
715 is 0. For approximating oblique text, use values around -0.25.
716 @param skewX set the paint's skew factor in X for drawing text.
717 */
718 void setTextSkewX(SkScalar skewX);
719
reed@google.com1f1543f2012-09-12 21:08:33 +0000720#ifdef SK_SUPPORT_HINTING_SCALE_FACTOR
721 /** Return the paint's scale factor used for correctly rendering
722 glyphs in high DPI mode without text subpixel positioning.
723 @return the scale factor used for rendering glyphs in high DPI mode.
724 */
725 SkScalar getHintingScaleFactor() const { return fHintingScaleFactor; }
726
727 /** Set the paint's scale factor used for correctly rendering
728 glyphs in high DPI mode without text subpixel positioning.
729 @param the scale factor used for rendering glyphs in high DPI mode.
730 */
731 void setHintingScaleFactor(SkScalar hintingScaleFactor);
732#endif
733
reed@android.com8a1c16f2008-12-17 15:59:43 +0000734 /** Describes how to interpret the text parameters that are passed to paint
735 methods like measureText() and getTextWidths().
736 */
737 enum TextEncoding {
738 kUTF8_TextEncoding, //!< the text parameters are UTF8
739 kUTF16_TextEncoding, //!< the text parameters are UTF16
robertphillips@google.com69705572012-03-21 19:46:50 +0000740 kUTF32_TextEncoding, //!< the text parameters are UTF32
reed@android.com8a1c16f2008-12-17 15:59:43 +0000741 kGlyphID_TextEncoding //!< the text parameters are glyph indices
742 };
reed@google.com9d07fec2011-03-16 20:02:59 +0000743
744 TextEncoding getTextEncoding() const { return (TextEncoding)fTextEncoding; }
reed@android.com8a1c16f2008-12-17 15:59:43 +0000745
746 void setTextEncoding(TextEncoding encoding);
747
748 struct FontMetrics {
749 SkScalar fTop; //!< The greatest distance above the baseline for any glyph (will be <= 0)
750 SkScalar fAscent; //!< The recommended distance above the baseline (will be <= 0)
751 SkScalar fDescent; //!< The recommended distance below the baseline (will be >= 0)
752 SkScalar fBottom; //!< The greatest distance below the baseline for any glyph (will be >= 0)
753 SkScalar fLeading; //!< The recommended distance to add between lines of text (will be >= 0)
agl@chromium.orgcc3096b2009-04-22 22:09:04 +0000754 SkScalar fAvgCharWidth; //!< the average charactor width (>= 0)
bungeman@google.come9d83192013-06-21 05:31:38 +0000755 SkScalar fMaxCharWidth; //!< the max charactor width (>= 0)
agl@chromium.orgcc3096b2009-04-22 22:09:04 +0000756 SkScalar fXMin; //!< The minimum bounding box x value for all glyphs
757 SkScalar fXMax; //!< The maximum bounding box x value for all glyphs
758 SkScalar fXHeight; //!< the height of an 'x' in px, or 0 if no 'x' in face
reed@android.com8a1c16f2008-12-17 15:59:43 +0000759 };
reed@google.com9d07fec2011-03-16 20:02:59 +0000760
reed@android.com8a1c16f2008-12-17 15:59:43 +0000761 /** Return the recommend spacing between lines (which will be
762 fDescent - fAscent + fLeading).
763 If metrics is not null, return in it the font metrics for the
reed@google.com9d07fec2011-03-16 20:02:59 +0000764 typeface/pointsize/etc. currently set in the paint.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000765 @param metrics If not null, returns the font metrics for the
766 current typeface/pointsize/etc setting in this
767 paint.
768 @param scale If not 0, return width as if the canvas were scaled
769 by this value
770 @param return the recommended spacing between lines
771 */
772 SkScalar getFontMetrics(FontMetrics* metrics, SkScalar scale = 0) const;
reed@google.com9d07fec2011-03-16 20:02:59 +0000773
reed@android.com8a1c16f2008-12-17 15:59:43 +0000774 /** Return the recommend line spacing. This will be
775 fDescent - fAscent + fLeading
776 */
777 SkScalar getFontSpacing() const { return this->getFontMetrics(NULL, 0); }
778
779 /** Convert the specified text into glyph IDs, returning the number of
780 glyphs ID written. If glyphs is NULL, it is ignore and only the count
781 is returned.
782 */
783 int textToGlyphs(const void* text, size_t byteLength,
784 uint16_t glyphs[]) const;
785
reed@android.coma5dcaf62010-02-05 17:12:32 +0000786 /** Return true if all of the specified text has a corresponding non-zero
787 glyph ID. If any of the code-points in the text are not supported in
788 the typeface (i.e. the glyph ID would be zero), then return false.
789
790 If the text encoding for the paint is kGlyph_TextEncoding, then this
791 returns true if all of the specified glyph IDs are non-zero.
792 */
793 bool containsText(const void* text, size_t byteLength) const;
794
reed@android.com9d3a9852010-01-08 14:07:42 +0000795 /** Convert the glyph array into Unichars. Unconvertable glyphs are mapped
796 to zero. Note: this does not look at the text-encoding setting in the
797 paint, only at the typeface.
798 */
799 void glyphsToUnichars(const uint16_t glyphs[], int count,
800 SkUnichar text[]) const;
801
reed@android.com8a1c16f2008-12-17 15:59:43 +0000802 /** Return the number of drawable units in the specified text buffer.
803 This looks at the current TextEncoding field of the paint. If you also
804 want to have the text converted into glyph IDs, call textToGlyphs
805 instead.
806 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000807 int countText(const void* text, size_t byteLength) const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000808 return this->textToGlyphs(text, byteLength, NULL);
809 }
810
reed@google.com44da42e2011-11-10 20:04:47 +0000811 /** Return the width of the text. This will return the vertical measure
812 * if isVerticalText() is true, in which case the returned value should
813 * be treated has a height instead of a width.
814 *
815 * @param text The text to be measured
816 * @param length Number of bytes of text to measure
817 * @param bounds If not NULL, returns the bounds of the text,
818 * relative to (0, 0).
819 * @param scale If not 0, return width as if the canvas were scaled
820 * by this value
821 * @return The advance width of the text
822 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000823 SkScalar measureText(const void* text, size_t length,
824 SkRect* bounds, SkScalar scale = 0) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000825
reed@google.com44da42e2011-11-10 20:04:47 +0000826 /** Return the width of the text. This will return the vertical measure
827 * if isVerticalText() is true, in which case the returned value should
828 * be treated has a height instead of a width.
829 *
830 * @param text Address of the text
831 * @param length Number of bytes of text to measure
reed@google.com97ecd1d2012-05-15 19:25:17 +0000832 * @return The advance width of the text
reed@google.com44da42e2011-11-10 20:04:47 +0000833 */
reed@google.com9d07fec2011-03-16 20:02:59 +0000834 SkScalar measureText(const void* text, size_t length) const {
reed@android.com8a1c16f2008-12-17 15:59:43 +0000835 return this->measureText(text, length, NULL, 0);
836 }
reed@google.com9d07fec2011-03-16 20:02:59 +0000837
reed@android.com8a1c16f2008-12-17 15:59:43 +0000838 /** Specify the direction the text buffer should be processed in breakText()
839 */
840 enum TextBufferDirection {
841 /** When measuring text for breakText(), begin at the start of the text
842 buffer and proceed forward through the data. This is the default.
843 */
844 kForward_TextBufferDirection,
845 /** When measuring text for breakText(), begin at the end of the text
846 buffer and proceed backwards through the data.
847 */
848 kBackward_TextBufferDirection
849 };
850
reed@google.com44da42e2011-11-10 20:04:47 +0000851 /** Return the number of bytes of text that were measured. If
852 * isVerticalText() is true, then the vertical advances are used for
853 * the measurement.
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000854 *
reed@google.com44da42e2011-11-10 20:04:47 +0000855 * @param text The text to be measured
856 * @param length Number of bytes of text to measure
857 * @param maxWidth Maximum width. Only the subset of text whose accumulated
858 * widths are <= maxWidth are measured.
859 * @param measuredWidth Optional. If non-null, this returns the actual
860 * width of the measured text.
861 * @param tbd Optional. The direction the text buffer should be
862 * traversed during measuring.
863 * @return The number of bytes of text that were measured. Will be
864 * <= length.
865 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000866 size_t breakText(const void* text, size_t length, SkScalar maxWidth,
867 SkScalar* measuredWidth = NULL,
868 TextBufferDirection tbd = kForward_TextBufferDirection)
869 const;
870
reed@google.com44da42e2011-11-10 20:04:47 +0000871 /** Return the advances for the text. These will be vertical advances if
872 * isVerticalText() returns true.
873 *
874 * @param text the text
875 * @param byteLength number of bytes to of text
876 * @param widths If not null, returns the array of advances for
877 * the glyphs. If not NULL, must be at least a large
878 * as the number of unichars in the specified text.
879 * @param bounds If not null, returns the bounds for each of
880 * character, relative to (0, 0)
881 * @return the number of unichars in the specified text.
882 */
reed@android.com8a1c16f2008-12-17 15:59:43 +0000883 int getTextWidths(const void* text, size_t byteLength, SkScalar widths[],
884 SkRect bounds[] = NULL) const;
885
886 /** Return the path (outline) for the specified text.
887 Note: just like SkCanvas::drawText, this will respect the Align setting
888 in the paint.
889 */
890 void getTextPath(const void* text, size_t length, SkScalar x, SkScalar y,
891 SkPath* path) const;
892
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000893 void getPosTextPath(const void* text, size_t length,
reed@google.comca0062e2012-07-20 11:20:32 +0000894 const SkPoint pos[], SkPath* path) const;
895
djsollen@google.com56c69772011-11-08 19:00:26 +0000896#ifdef SK_BUILD_FOR_ANDROID
djsollen@google.com4bd2bdb2013-03-08 18:35:13 +0000897 const SkGlyph& getUnicharMetrics(SkUnichar, const SkMatrix*);
898 const SkGlyph& getGlyphMetrics(uint16_t, const SkMatrix*);
899 const void* findImage(const SkGlyph&, const SkMatrix*);
djsollen@google.comf5dbe2f2011-04-15 13:41:26 +0000900
901 uint32_t getGenerationID() const;
djsollen@google.com4bd2bdb2013-03-08 18:35:13 +0000902 void setGenerationID(uint32_t generationID);
djsollen@google.com60abb072012-02-15 18:49:15 +0000903
904 /** Returns the base glyph count for the strike associated with this paint
905 */
906 unsigned getBaseGlyphCount(SkUnichar text) const;
commit-bot@chromium.orgc7a20e42013-05-13 14:09:13 +0000907
908 const SkPaintOptionsAndroid& getPaintOptionsAndroid() const {
909 return fPaintOptionsAndroid;
910 }
911 void setPaintOptionsAndroid(const SkPaintOptionsAndroid& options);
djsollen@google.comf5dbe2f2011-04-15 13:41:26 +0000912#endif
913
reed@google.com632e1a22011-10-06 12:37:00 +0000914 // returns true if the paint's settings (e.g. xfermode + alpha) resolve to
915 // mean that we need not draw at all (e.g. SrcOver + 0-alpha)
916 bool nothingToDraw() const;
917
reed@google.coma584aed2012-05-16 14:06:02 +0000918 ///////////////////////////////////////////////////////////////////////////
reed@google.comd5f20792012-05-16 14:15:02 +0000919 // would prefer to make these private...
920
reed@google.coma584aed2012-05-16 14:06:02 +0000921 /** Returns true if the current paint settings allow for fast computation of
922 bounds (i.e. there is nothing complex like a patheffect that would make
923 the bounds computation expensive.
924 */
925 bool canComputeFastBounds() const {
926 if (this->getLooper()) {
927 return this->getLooper()->canComputeFastBounds(*this);
928 }
929 return !this->getRasterizer();
930 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000931
reed@google.coma584aed2012-05-16 14:06:02 +0000932 /** Only call this if canComputeFastBounds() returned true. This takes a
933 raw rectangle (the raw bounds of a shape), and adjusts it for stylistic
934 effects in the paint (e.g. stroking). If needed, it uses the storage
935 rect parameter. It returns the adjusted bounds that can then be used
936 for quickReject tests.
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000937
reed@google.coma584aed2012-05-16 14:06:02 +0000938 The returned rect will either be orig or storage, thus the caller
939 should not rely on storage being set to the result, but should always
940 use the retured value. It is legal for orig and storage to be the same
941 rect.
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000942
reed@google.coma584aed2012-05-16 14:06:02 +0000943 e.g.
944 if (paint.canComputeFastBounds()) {
945 SkRect r, storage;
946 path.computeBounds(&r, SkPath::kFast_BoundsType);
947 const SkRect& fastR = paint.computeFastBounds(r, &storage);
948 if (canvas->quickReject(fastR, ...)) {
949 // don't draw the path
950 }
951 }
952 */
953 const SkRect& computeFastBounds(const SkRect& orig, SkRect* storage) const {
954 SkPaint::Style style = this->getStyle();
955 // ultra fast-case: filling with no effects that affect geometry
956 if (kFill_Style == style) {
957 uintptr_t effects = reinterpret_cast<uintptr_t>(this->getLooper());
958 effects |= reinterpret_cast<uintptr_t>(this->getMaskFilter());
959 effects |= reinterpret_cast<uintptr_t>(this->getPathEffect());
960 if (!effects) {
961 return orig;
962 }
963 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000964
reed@google.coma584aed2012-05-16 14:06:02 +0000965 return this->doComputeFastBounds(orig, storage, style);
966 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000967
reed@google.coma584aed2012-05-16 14:06:02 +0000968 const SkRect& computeFastStrokeBounds(const SkRect& orig,
969 SkRect* storage) const {
reed@google.com73a02582012-05-16 19:21:12 +0000970 return this->doComputeFastBounds(orig, storage, kStroke_Style);
reed@google.coma584aed2012-05-16 14:06:02 +0000971 }
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000972
reed@google.coma584aed2012-05-16 14:06:02 +0000973 // Take the style explicitly, so the caller can force us to be stroked
974 // without having to make a copy of the paint just to change that field.
975 const SkRect& doComputeFastBounds(const SkRect& orig, SkRect* storage,
976 Style) const;
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000977
reed@google.comed43dff2013-06-04 16:56:27 +0000978 /**
979 * Return a matrix that applies the paint's text values: size, scale, skew
980 */
981 static SkMatrix* SetTextMatrix(SkMatrix* matrix, SkScalar size,
982 SkScalar scaleX, SkScalar skewX) {
983 matrix->setScale(size * scaleX, size);
984 if (skewX) {
985 matrix->postSkew(skewX, 0);
986 }
987 return matrix;
988 }
skia.committer@gmail.com8f6ef402013-06-05 07:01:06 +0000989
reed@google.comed43dff2013-06-04 16:56:27 +0000990 SkMatrix* setTextMatrix(SkMatrix* matrix) const {
991 return SetTextMatrix(matrix, fTextSize, fTextScaleX, fTextSkewX);
992 }
skia.committer@gmail.com8f6ef402013-06-05 07:01:06 +0000993
robertphillips@google.com791f12e2013-02-14 13:53:53 +0000994 SkDEVCODE(void toString(SkString*) const;)
995
reed@google.comd5f20792012-05-16 14:15:02 +0000996private:
997 SkTypeface* fTypeface;
998 SkScalar fTextSize;
999 SkScalar fTextScaleX;
1000 SkScalar fTextSkewX;
reed@google.com1f1543f2012-09-12 21:08:33 +00001001#ifdef SK_SUPPORT_HINTING_SCALE_FACTOR
1002 SkScalar fHintingScaleFactor;
1003#endif
reed@google.coma584aed2012-05-16 14:06:02 +00001004
reed@google.comd5f20792012-05-16 14:15:02 +00001005 SkPathEffect* fPathEffect;
1006 SkShader* fShader;
1007 SkXfermode* fXfermode;
1008 SkMaskFilter* fMaskFilter;
1009 SkColorFilter* fColorFilter;
1010 SkRasterizer* fRasterizer;
1011 SkDrawLooper* fLooper;
1012 SkImageFilter* fImageFilter;
reed@google.comb0a34d82012-07-11 19:57:55 +00001013 SkAnnotation* fAnnotation;
reed@google.comd5f20792012-05-16 14:15:02 +00001014
1015 SkColor fColor;
1016 SkScalar fWidth;
1017 SkScalar fMiterLimit;
reed@google.comb0a34d82012-07-11 19:57:55 +00001018 // all of these bitfields should add up to 32
1019 unsigned fFlags : 16;
reed@google.comd5f20792012-05-16 14:15:02 +00001020 unsigned fTextAlign : 2;
1021 unsigned fCapType : 2;
1022 unsigned fJoinType : 2;
1023 unsigned fStyle : 2;
1024 unsigned fTextEncoding : 2; // 3 values
1025 unsigned fHinting : 2;
reed@google.comb0a34d82012-07-11 19:57:55 +00001026 unsigned fPrivFlags : 4; // these are not flattened/unflattened
1027
1028 enum PrivFlags {
1029 kNoDrawAnnotation_PrivFlag = 1 << 0,
1030 };
reed@google.comd5f20792012-05-16 14:15:02 +00001031
1032 SkDrawCacheProc getDrawCacheProc() const;
1033 SkMeasureCacheProc getMeasureCacheProc(TextBufferDirection dir,
1034 bool needFullMetrics) const;
1035
1036 SkScalar measure_text(SkGlyphCache*, const char* text, size_t length,
1037 int* count, SkRect* bounds) const;
1038
bungeman@google.com532470f2013-01-22 19:25:14 +00001039 SkGlyphCache* detachCache(const SkDeviceProperties* deviceProperties, const SkMatrix*) const;
reed@google.comd5f20792012-05-16 14:15:02 +00001040
bungeman@google.com532470f2013-01-22 19:25:14 +00001041 void descriptorProc(const SkDeviceProperties* deviceProperties, const SkMatrix* deviceMatrix,
reed@google.com90808e82013-03-19 14:44:54 +00001042 void (*proc)(SkTypeface*, const SkDescriptor*, void*),
reed@google.comd5f20792012-05-16 14:15:02 +00001043 void* context, bool ignoreGamma = false) const;
reed@android.comd252db02009-04-01 18:31:44 +00001044
bungeman@google.comb24b4fa2012-09-04 13:49:59 +00001045 static void Term();
1046
reed@android.com8a1c16f2008-12-17 15:59:43 +00001047 enum {
reed@google.comed43dff2013-06-04 16:56:27 +00001048 /* This is the size we use when we ask for a glyph's path. We then
1049 * post-transform it as we draw to match the request.
1050 * This is done to try to re-use cache entries for the path.
1051 *
1052 * This value is somewhat arbitrary. In theory, it could be 1, since
1053 * we store paths as floats. However, we get the path from the font
1054 * scaler, and it may represent its paths as fixed-point (or 26.6),
1055 * so we shouldn't ask for something too big (might overflow 16.16)
1056 * or too small (underflow 26.6).
1057 *
1058 * This value could track kMaxSizeForGlyphCache, assuming the above
1059 * constraints, but since we ask for unhinted paths, the two values
1060 * need not match per-se.
1061 */
1062 kCanonicalTextSizeForPaths = 64,
1063
1064 /*
1065 * Above this size (taking into account CTM and textSize), we never use
1066 * the cache for bits or metrics (we might overflow), so we just ask
1067 * for a caononical size and post-transform that.
1068 */
1069 kMaxSizeForGlyphCache = 256,
reed@android.com8a1c16f2008-12-17 15:59:43 +00001070 };
reed@google.comed43dff2013-06-04 16:56:27 +00001071
1072 static bool TooBigToUseCache(const SkMatrix& ctm, const SkMatrix& textM);
1073
1074 bool tooBigToUseCache() const;
1075 bool tooBigToUseCache(const SkMatrix& ctm) const;
skia.committer@gmail.com8f6ef402013-06-05 07:01:06 +00001076
reed@google.comed43dff2013-06-04 16:56:27 +00001077 // Set flags/hinting/textSize up to use for drawing text as paths.
1078 // Returns scale factor to restore the original textSize, since will will
1079 // have change it to kCanonicalTextSizeForPaths.
1080 SkScalar setupForAsPaths();
1081
1082 static SkScalar MaxCacheSize2() {
1083 static const SkScalar kMaxSize = SkIntToScalar(kMaxSizeForGlyphCache);
1084 static const SkScalar kMag2Max = kMaxSize * kMaxSize;
1085 return kMag2Max;
1086 }
1087
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001088 friend class SkAutoGlyphCache;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001089 friend class SkCanvas;
1090 friend class SkDraw;
bungeman@google.comb24b4fa2012-09-04 13:49:59 +00001091 friend class SkGraphics; // So Term() can be called.
vandebo@chromium.org28be72b2010-11-11 21:37:00 +00001092 friend class SkPDFDevice;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001093 friend class SkTextToPathIter;
reed@google.comed43dff2013-06-04 16:56:27 +00001094 friend class SkCanonicalizePaint;
djsollen@google.comb44cd652011-12-01 17:09:21 +00001095
1096#ifdef SK_BUILD_FOR_ANDROID
commit-bot@chromium.orgc7a20e42013-05-13 14:09:13 +00001097 SkPaintOptionsAndroid fPaintOptionsAndroid;
1098
djsollen@google.comb44cd652011-12-01 17:09:21 +00001099 // In order for the == operator to work properly this must be the last field
1100 // in the struct so that we can do a memcmp to this field's offset.
1101 uint32_t fGenerationID;
1102#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00001103};
1104
reed@android.com8a1c16f2008-12-17 15:59:43 +00001105#endif