1 2 3 /* 4 * Copyright 2006 The Android Open Source Project 5 * 6 * Use of this source code is governed by a BSD-style license that can be 7 * found in the LICENSE file. 8 */ 9 10 11 #ifndef SkPaint_DEFINED 12 #define SkPaint_DEFINED 13 14 #include "SkColor.h" 15 #include "SkDrawLooper.h" 16 #include "SkMatrix.h" 17 #include "SkXfermode.h" 18 #ifdef SK_BUILD_FOR_ANDROID 19 #include "SkPaintOptionsAndroid.h" 20 #endif 21 22 class SkAnnotation; 23 class SkAutoGlyphCache; 24 class SkColorFilter; 25 class SkDescriptor; 26 struct SkDeviceProperties; 27 class SkFlattenableReadBuffer; 28 class SkFlattenableWriteBuffer; 29 struct SkGlyph; 30 struct SkRect; 31 class SkGlyphCache; 32 class SkImageFilter; 33 class SkMaskFilter; 34 class SkPath; 35 class SkPathEffect; 36 struct SkPoint; 37 class SkRasterizer; 38 class SkShader; 39 class SkTypeface; 40 41 typedef const SkGlyph& (*SkDrawCacheProc)(SkGlyphCache*, const char**, 42 SkFixed x, SkFixed y); 43 44 typedef const SkGlyph& (*SkMeasureCacheProc)(SkGlyphCache*, const char**); 45 46 #define kBicubicFilterBitmap_Flag kHighQualityFilterBitmap_Flag 47 48 /** \class SkPaint 49 50 The SkPaint class holds the style and color information about how to draw 51 geometries, text and bitmaps. 52 */ 53 54 class SK_API SkPaint { 55 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 }; 63 public: 64 SkPaint(); 65 SkPaint(const SkPaint& paint); 66 ~SkPaint(); 67 68 SkPaint& operator=(const SkPaint&); 69 70 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 75 void flatten(SkFlattenableWriteBuffer&) const; 76 void unflatten(SkFlattenableReadBuffer&); 77 78 /** Restores the paint to its initial settings. 79 */ 80 void reset(); 81 82 /** 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 96 kFull_Hinting = 3 97 }; 98 99 Hinting getHinting() const { 100 return static_cast<Hinting>(fHinting); 101 } 102 103 void setHinting(Hinting hintingLevel); 104 105 /** Specifies the bit values that are stored in the paint's flags. 106 */ 107 enum Flags { 108 kAntiAlias_Flag = 0x01, //!< mask to enable antialiasing 109 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 114 kSubpixelText_Flag = 0x80, //!< mask to enable subpixel text positioning 115 kDevKernText_Flag = 0x100, //!< mask to enable device kerning text 116 kLCDRenderText_Flag = 0x200, //!< mask to enable subpixel glyph renderering 117 kEmbeddedBitmapText_Flag = 0x400, //!< mask to enable embedded bitmap strikes 118 kAutoHinting_Flag = 0x800, //!< mask to force Freetype's autohinter 119 kVerticalText_Flag = 0x1000, 120 kGenA8FromLCD_Flag = 0x2000, // hack for GDI -- do not use if you can help it 121 // when adding extra flags, note that the fFlags member is specified 122 // with a bit-width and you'll have to expand it. 123 124 kAllFlags = 0xFFFF 125 }; 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 */ 140 bool isAntiAlias() const { 141 return SkToBool(this->getFlags() & kAntiAlias_Flag); 142 } 143 144 /** 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); 148 149 /** 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 */ 152 bool isDither() const { 153 return SkToBool(this->getFlags() & kDither_Flag); 154 } 155 156 /** 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); 160 161 /** 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 */ 164 bool isLinearText() const { 165 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 */ 177 bool isSubpixelText() const { 178 return SkToBool(this->getFlags() & kSubpixelText_Flag); 179 } 180 181 /** 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 */ 186 void setSubpixelText(bool subpixelText); 187 188 bool isLCDRenderText() const { 189 return SkToBool(this->getFlags() & kLCDRenderText_Flag); 190 } 191 192 /** 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); 199 200 bool isEmbeddedBitmapText() const { 201 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 210 bool isAutohinted() const { 211 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 221 bool isVerticalText() const { 222 return SkToBool(this->getFlags() & kVerticalText_Flag); 223 } 224 225 /** 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 235 /** 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 */ 238 bool isUnderlineText() const { 239 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 */ 251 bool isStrikeThruText() const { 252 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 */ 264 bool isFakeBoldText() const { 265 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 */ 277 bool isDevKernText() const { 278 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 287 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 * If the predicate is true, set the filterLevel to Low, else set it to 308 * None. 309 */ 310 SK_ATTR_DEPRECATED("use setFilterLevel") 311 void setFilterBitmap(bool doFilter) { 312 this->setFilterLevel(doFilter ? kLow_FilterLevel : kNone_FilterLevel); 313 } 314 315 /** 316 * Returns true if getFilterLevel() returns anything other than None. 317 */ 318 SK_ATTR_DEPRECATED("use getFilterLevel") 319 bool isFilterBitmap() const { 320 return kNone_FilterLevel != this->getFilterLevel(); 321 } 322 323 /** Styles apply to rect, oval, path, and text. 324 Bitmaps are always drawn in "fill", and lines are always drawn in 325 "stroke". 326 327 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. 331 */ 332 enum Style { 333 kFill_Style, //!< fill the geometry 334 kStroke_Style, //!< stroke the geometry 335 kStrokeAndFill_Style, //!< fill and stroke the geometry 336 }; 337 enum { 338 kStyleCount = kStrokeAndFill_Style + 1 339 }; 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)); } 374 375 /** 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 390 /** Return the width for stroking. 391 <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 399 /** Set the width for stroking. 400 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 472 /** 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; 486 487 /** 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. 495 * 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 */ 510 SkShader* setShader(SkShader* shader); 511 512 /** 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); 545 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 */ 550 SkXfermode* setXfermodeMode(SkXfermode::Mode); 551 552 /** 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 632 SkImageFilter* getImageFilter() const { return fImageFilter; } 633 SkImageFilter* setImageFilter(SkImageFilter*); 634 635 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 SK_ATTR_DEPRECATED("use getAnnotation and check for non-null") 643 bool isNoDrawAnnotation() const { return this->getAnnotation() != NULL; } 644 645 /** 646 * Return the paint's SkDrawLooper (if any). Does not affect the looper's 647 * reference count. 648 */ 649 SkDrawLooper* getLooper() const { return fLooper; } 650 651 /** 652 * Set or clear the looper object. 653 * <p /> 654 * Pass NULL to clear any previous looper. 655 * As a convenience, the parameter passed is also returned. 656 * If a previous looper exists in the paint, its reference count is 657 * decremented. If looper is not NULL, its reference count is 658 * incremented. 659 * @param looper May be NULL. The new looper to be installed in the paint. 660 * @return looper 661 */ 662 SkDrawLooper* setLooper(SkDrawLooper* looper); 663 664 enum Align { 665 kLeft_Align, 666 kCenter_Align, 667 kRight_Align, 668 }; 669 enum { 670 kAlignCount = 3 671 }; 672 673 /** Return the paint's Align value for drawing text. 674 @return the paint's Align value for drawing text. 675 */ 676 Align getTextAlign() const { return (Align)fTextAlign; } 677 678 /** Set the paint's text alignment. 679 @param align set the paint's Align value for drawing text. 680 */ 681 void setTextAlign(Align align); 682 683 /** Return the paint's text size. 684 @return the paint's text size. 685 */ 686 SkScalar getTextSize() const { return fTextSize; } 687 688 /** Set the paint's text size. This value must be > 0 689 @param textSize set the paint's text size. 690 */ 691 void setTextSize(SkScalar textSize); 692 693 /** Return the paint's horizontal scale factor for text. The default value 694 is 1.0. 695 @return the paint's scale factor in X for drawing/measuring text 696 */ 697 SkScalar getTextScaleX() const { return fTextScaleX; } 698 699 /** Set the paint's horizontal scale factor for text. The default value 700 is 1.0. Values > 1.0 will stretch the text wider. Values < 1.0 will 701 stretch the text narrower. 702 @param scaleX set the paint's scale factor in X for drawing/measuring 703 text. 704 */ 705 void setTextScaleX(SkScalar scaleX); 706 707 /** Return the paint's horizontal skew factor for text. The default value 708 is 0. 709 @return the paint's skew factor in X for drawing text. 710 */ 711 SkScalar getTextSkewX() const { return fTextSkewX; } 712 713 /** Set the paint's horizontal skew factor for text. The default value 714 is 0. For approximating oblique text, use values around -0.25. 715 @param skewX set the paint's skew factor in X for drawing text. 716 */ 717 void setTextSkewX(SkScalar skewX); 718 719 /** Describes how to interpret the text parameters that are passed to paint 720 methods like measureText() and getTextWidths(). 721 */ 722 enum TextEncoding { 723 kUTF8_TextEncoding, //!< the text parameters are UTF8 724 kUTF16_TextEncoding, //!< the text parameters are UTF16 725 kUTF32_TextEncoding, //!< the text parameters are UTF32 726 kGlyphID_TextEncoding //!< the text parameters are glyph indices 727 }; 728 729 TextEncoding getTextEncoding() const { return (TextEncoding)fTextEncoding; } 730 731 void setTextEncoding(TextEncoding encoding); 732 733 struct FontMetrics { 734 SkScalar fTop; //!< The greatest distance above the baseline for any glyph (will be <= 0) 735 SkScalar fAscent; //!< The recommended distance above the baseline (will be <= 0) 736 SkScalar fDescent; //!< The recommended distance below the baseline (will be >= 0) 737 SkScalar fBottom; //!< The greatest distance below the baseline for any glyph (will be >= 0) 738 SkScalar fLeading; //!< The recommended distance to add between lines of text (will be >= 0) 739 SkScalar fAvgCharWidth; //!< the average charactor width (>= 0) 740 SkScalar fMaxCharWidth; //!< the max charactor width (>= 0) 741 SkScalar fXMin; //!< The minimum bounding box x value for all glyphs 742 SkScalar fXMax; //!< The maximum bounding box x value for all glyphs 743 SkScalar fXHeight; //!< the height of an 'x' in px, or 0 if no 'x' in face 744 }; 745 746 /** Return the recommend spacing between lines (which will be 747 fDescent - fAscent + fLeading). 748 If metrics is not null, return in it the font metrics for the 749 typeface/pointsize/etc. currently set in the paint. 750 @param metrics If not null, returns the font metrics for the 751 current typeface/pointsize/etc setting in this 752 paint. 753 @param scale If not 0, return width as if the canvas were scaled 754 by this value 755 @param return the recommended spacing between lines 756 */ 757 SkScalar getFontMetrics(FontMetrics* metrics, SkScalar scale = 0) const; 758 759 /** Return the recommend line spacing. This will be 760 fDescent - fAscent + fLeading 761 */ 762 SkScalar getFontSpacing() const { return this->getFontMetrics(NULL, 0); } 763 764 /** Convert the specified text into glyph IDs, returning the number of 765 glyphs ID written. If glyphs is NULL, it is ignore and only the count 766 is returned. 767 */ 768 int textToGlyphs(const void* text, size_t byteLength, 769 uint16_t glyphs[]) const; 770 771 /** Return true if all of the specified text has a corresponding non-zero 772 glyph ID. If any of the code-points in the text are not supported in 773 the typeface (i.e. the glyph ID would be zero), then return false. 774 775 If the text encoding for the paint is kGlyph_TextEncoding, then this 776 returns true if all of the specified glyph IDs are non-zero. 777 */ 778 bool containsText(const void* text, size_t byteLength) const; 779 780 /** Convert the glyph array into Unichars. Unconvertable glyphs are mapped 781 to zero. Note: this does not look at the text-encoding setting in the 782 paint, only at the typeface. 783 */ 784 void glyphsToUnichars(const uint16_t glyphs[], int count, 785 SkUnichar text[]) const; 786 787 /** Return the number of drawable units in the specified text buffer. 788 This looks at the current TextEncoding field of the paint. If you also 789 want to have the text converted into glyph IDs, call textToGlyphs 790 instead. 791 */ 792 int countText(const void* text, size_t byteLength) const { 793 return this->textToGlyphs(text, byteLength, NULL); 794 } 795 796 /** Return the width of the text. This will return the vertical measure 797 * if isVerticalText() is true, in which case the returned value should 798 * be treated has a height instead of a width. 799 * 800 * @param text The text to be measured 801 * @param length Number of bytes of text to measure 802 * @param bounds If not NULL, returns the bounds of the text, 803 * relative to (0, 0). 804 * @param scale If not 0, return width as if the canvas were scaled 805 * by this value 806 * @return The advance width of the text 807 */ 808 SkScalar measureText(const void* text, size_t length, 809 SkRect* bounds, SkScalar scale = 0) const; 810 811 /** 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 Address of the text 816 * @param length Number of bytes of text to measure 817 * @return The advance width of the text 818 */ 819 SkScalar measureText(const void* text, size_t length) const { 820 return this->measureText(text, length, NULL, 0); 821 } 822 823 /** Specify the direction the text buffer should be processed in breakText() 824 */ 825 enum TextBufferDirection { 826 /** When measuring text for breakText(), begin at the start of the text 827 buffer and proceed forward through the data. This is the default. 828 */ 829 kForward_TextBufferDirection, 830 /** When measuring text for breakText(), begin at the end of the text 831 buffer and proceed backwards through the data. 832 */ 833 kBackward_TextBufferDirection 834 }; 835 836 /** Return the number of bytes of text that were measured. If 837 * isVerticalText() is true, then the vertical advances are used for 838 * the measurement. 839 * 840 * @param text The text to be measured 841 * @param length Number of bytes of text to measure 842 * @param maxWidth Maximum width. Only the subset of text whose accumulated 843 * widths are <= maxWidth are measured. 844 * @param measuredWidth Optional. If non-null, this returns the actual 845 * width of the measured text. 846 * @param tbd Optional. The direction the text buffer should be 847 * traversed during measuring. 848 * @return The number of bytes of text that were measured. Will be 849 * <= length. 850 */ 851 size_t breakText(const void* text, size_t length, SkScalar maxWidth, 852 SkScalar* measuredWidth = NULL, 853 TextBufferDirection tbd = kForward_TextBufferDirection) 854 const; 855 856 /** Return the advances for the text. These will be vertical advances if 857 * isVerticalText() returns true. 858 * 859 * @param text the text 860 * @param byteLength number of bytes to of text 861 * @param widths If not null, returns the array of advances for 862 * the glyphs. If not NULL, must be at least a large 863 * as the number of unichars in the specified text. 864 * @param bounds If not null, returns the bounds for each of 865 * character, relative to (0, 0) 866 * @return the number of unichars in the specified text. 867 */ 868 int getTextWidths(const void* text, size_t byteLength, SkScalar widths[], 869 SkRect bounds[] = NULL) const; 870 871 /** Return the path (outline) for the specified text. 872 Note: just like SkCanvas::drawText, this will respect the Align setting 873 in the paint. 874 */ 875 void getTextPath(const void* text, size_t length, SkScalar x, SkScalar y, 876 SkPath* path) const; 877 878 void getPosTextPath(const void* text, size_t length, 879 const SkPoint pos[], SkPath* path) const; 880 881 #ifdef SK_BUILD_FOR_ANDROID 882 const SkGlyph& getUnicharMetrics(SkUnichar, const SkMatrix*); 883 const SkGlyph& getGlyphMetrics(uint16_t, const SkMatrix*); 884 const void* findImage(const SkGlyph&, const SkMatrix*); 885 886 uint32_t getGenerationID() const; 887 void setGenerationID(uint32_t generationID); 888 889 /** Returns the base glyph count for the strike associated with this paint 890 */ 891 unsigned getBaseGlyphCount(SkUnichar text) const; 892 893 const SkPaintOptionsAndroid& getPaintOptionsAndroid() const { 894 return fPaintOptionsAndroid; 895 } 896 void setPaintOptionsAndroid(const SkPaintOptionsAndroid& options); 897 #endif 898 899 // returns true if the paint's settings (e.g. xfermode + alpha) resolve to 900 // mean that we need not draw at all (e.g. SrcOver + 0-alpha) 901 bool nothingToDraw() const; 902 903 /////////////////////////////////////////////////////////////////////////// 904 // would prefer to make these private... 905 906 /** Returns true if the current paint settings allow for fast computation of 907 bounds (i.e. there is nothing complex like a patheffect that would make 908 the bounds computation expensive. 909 */ 910 bool canComputeFastBounds() const { 911 if (this->getLooper()) { 912 return this->getLooper()->canComputeFastBounds(*this); 913 } 914 return !this->getRasterizer(); 915 } 916 917 /** Only call this if canComputeFastBounds() returned true. This takes a 918 raw rectangle (the raw bounds of a shape), and adjusts it for stylistic 919 effects in the paint (e.g. stroking). If needed, it uses the storage 920 rect parameter. It returns the adjusted bounds that can then be used 921 for quickReject tests. 922 923 The returned rect will either be orig or storage, thus the caller 924 should not rely on storage being set to the result, but should always 925 use the retured value. It is legal for orig and storage to be the same 926 rect. 927 928 e.g. 929 if (paint.canComputeFastBounds()) { 930 SkRect r, storage; 931 path.computeBounds(&r, SkPath::kFast_BoundsType); 932 const SkRect& fastR = paint.computeFastBounds(r, &storage); 933 if (canvas->quickReject(fastR, ...)) { 934 // don't draw the path 935 } 936 } 937 */ 938 const SkRect& computeFastBounds(const SkRect& orig, SkRect* storage) const { 939 SkPaint::Style style = this->getStyle(); 940 // ultra fast-case: filling with no effects that affect geometry 941 if (kFill_Style == style) { 942 uintptr_t effects = reinterpret_cast<uintptr_t>(this->getLooper()); 943 effects |= reinterpret_cast<uintptr_t>(this->getMaskFilter()); 944 effects |= reinterpret_cast<uintptr_t>(this->getPathEffect()); 945 if (!effects) { 946 return orig; 947 } 948 } 949 950 return this->doComputeFastBounds(orig, storage, style); 951 } 952 953 const SkRect& computeFastStrokeBounds(const SkRect& orig, 954 SkRect* storage) const { 955 return this->doComputeFastBounds(orig, storage, kStroke_Style); 956 } 957 958 // Take the style explicitly, so the caller can force us to be stroked 959 // without having to make a copy of the paint just to change that field. 960 const SkRect& doComputeFastBounds(const SkRect& orig, SkRect* storage, 961 Style) const; 962 963 /** 964 * Return a matrix that applies the paint's text values: size, scale, skew 965 */ 966 static SkMatrix* SetTextMatrix(SkMatrix* matrix, SkScalar size, 967 SkScalar scaleX, SkScalar skewX) { 968 matrix->setScale(size * scaleX, size); 969 if (skewX) { 970 matrix->postSkew(skewX, 0); 971 } 972 return matrix; 973 } 974 975 SkMatrix* setTextMatrix(SkMatrix* matrix) const { 976 return SetTextMatrix(matrix, fTextSize, fTextScaleX, fTextSkewX); 977 } 978 979 SkDEVCODE(void toString(SkString*) const;) 980 981 private: 982 SkTypeface* fTypeface; 983 SkScalar fTextSize; 984 SkScalar fTextScaleX; 985 SkScalar fTextSkewX; 986 987 SkPathEffect* fPathEffect; 988 SkShader* fShader; 989 SkXfermode* fXfermode; 990 SkMaskFilter* fMaskFilter; 991 SkColorFilter* fColorFilter; 992 SkRasterizer* fRasterizer; 993 SkDrawLooper* fLooper; 994 SkImageFilter* fImageFilter; 995 SkAnnotation* fAnnotation; 996 997 SkColor fColor; 998 SkScalar fWidth; 999 SkScalar fMiterLimit; 1000 // all of these bitfields should add up to 32 1001 unsigned fFlags : 16; 1002 unsigned fTextAlign : 2; 1003 unsigned fCapType : 2; 1004 unsigned fJoinType : 2; 1005 unsigned fStyle : 2; 1006 unsigned fTextEncoding : 2; // 3 values 1007 unsigned fHinting : 2; 1008 //unsigned fFreeBits : 4; 1009 1010 1011 SkDrawCacheProc getDrawCacheProc() const; 1012 SkMeasureCacheProc getMeasureCacheProc(TextBufferDirection dir, 1013 bool needFullMetrics) const; 1014 1015 SkScalar measure_text(SkGlyphCache*, const char* text, size_t length, 1016 int* count, SkRect* bounds) const; 1017 1018 SkGlyphCache* detachCache(const SkDeviceProperties* deviceProperties, const SkMatrix*) const; 1019 1020 void descriptorProc(const SkDeviceProperties* deviceProperties, const SkMatrix* deviceMatrix, 1021 void (*proc)(SkTypeface*, const SkDescriptor*, void*), 1022 void* context, bool ignoreGamma = false) const; 1023 1024 static void Term(); 1025 1026 enum { 1027 /* This is the size we use when we ask for a glyph's path. We then 1028 * post-transform it as we draw to match the request. 1029 * This is done to try to re-use cache entries for the path. 1030 * 1031 * This value is somewhat arbitrary. In theory, it could be 1, since 1032 * we store paths as floats. However, we get the path from the font 1033 * scaler, and it may represent its paths as fixed-point (or 26.6), 1034 * so we shouldn't ask for something too big (might overflow 16.16) 1035 * or too small (underflow 26.6). 1036 * 1037 * This value could track kMaxSizeForGlyphCache, assuming the above 1038 * constraints, but since we ask for unhinted paths, the two values 1039 * need not match per-se. 1040 */ 1041 kCanonicalTextSizeForPaths = 64, 1042 1043 /* 1044 * Above this size (taking into account CTM and textSize), we never use 1045 * the cache for bits or metrics (we might overflow), so we just ask 1046 * for a caononical size and post-transform that. 1047 */ 1048 kMaxSizeForGlyphCache = 256, 1049 }; 1050 1051 static bool TooBigToUseCache(const SkMatrix& ctm, const SkMatrix& textM); 1052 1053 bool tooBigToUseCache() const; 1054 bool tooBigToUseCache(const SkMatrix& ctm) const; 1055 1056 // Set flags/hinting/textSize up to use for drawing text as paths. 1057 // Returns scale factor to restore the original textSize, since will will 1058 // have change it to kCanonicalTextSizeForPaths. 1059 SkScalar setupForAsPaths(); 1060 1061 static SkScalar MaxCacheSize2() { 1062 static const SkScalar kMaxSize = SkIntToScalar(kMaxSizeForGlyphCache); 1063 static const SkScalar kMag2Max = kMaxSize * kMaxSize; 1064 return kMag2Max; 1065 } 1066 1067 friend class SkAutoGlyphCache; 1068 friend class SkCanvas; 1069 friend class SkDraw; 1070 friend class SkGraphics; // So Term() can be called. 1071 friend class SkPDFDevice; 1072 friend class SkTextToPathIter; 1073 friend class SkCanonicalizePaint; 1074 1075 #ifdef SK_BUILD_FOR_ANDROID 1076 SkPaintOptionsAndroid fPaintOptionsAndroid; 1077 1078 // In order for the == operator to work properly this must be the last field 1079 // in the struct so that we can do a memcmp to this field's offset. 1080 uint32_t fGenerationID; 1081 #endif 1082 }; 1083 1084 #endif 1085