1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748
|
/*
* Copyright (C) 2003-2021 Apple Inc. All rights reserved.
* Copyright (C) 2008-2009 Torch Mobile, Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "DashArray.h"
#include "DestinationColorSpace.h"
#include "FloatRect.h"
#include "FontCascade.h"
#include "GraphicsTypes.h"
#include "Image.h"
#include "ImageOrientation.h"
#include "ImagePaintingOptions.h"
#include "IntRect.h"
#include "Pattern.h"
#include "RenderingMode.h"
#include <wtf/Function.h>
#include <wtf/Noncopyable.h>
#include <wtf/OptionSet.h>
#if USE(CG)
typedef struct CGContext PlatformGraphicsContext;
#elif USE(CAIRO)
namespace WebCore {
class GraphicsContextCairo;
}
typedef WebCore::GraphicsContextCairo PlatformGraphicsContext;
#else
typedef void PlatformGraphicsContext;
#endif
#if PLATFORM(WIN)
#include "DIBPixelData.h"
typedef struct HDC__* HDC;
#if !USE(CG)
// UInt8 is defined in CoreFoundation/CFBase.h
typedef unsigned char UInt8;
#endif
#endif
// X11 headers define a bunch of macros with common terms, interfering with WebCore and WTF enum values.
// As a workaround, we explicitly undef them here.
#if defined(None)
#undef None
#endif
#if defined(Below)
#undef Below
#endif
#if defined(Success)
#undef Success
#endif
namespace WebCore {
class AffineTransform;
class Filter;
class FilterResults;
class FloatRoundedRect;
class Gradient;
class GraphicsContextPlatformPrivate;
class ImageBuffer;
class IntRect;
class MediaPlayer;
class RoundedRect;
class GraphicsContextGL;
class Path;
class TextRun;
class TransformationMatrix;
namespace DisplayList {
class Recorder;
}
enum class TextDrawingMode : uint8_t {
Fill = 1 << 0,
Stroke = 1 << 1,
};
using TextDrawingModeFlags = OptionSet<TextDrawingMode>;
// Legacy shadow blur radius is used for canvas, and -webkit-box-shadow.
// It has different treatment of radii > 8px.
enum class ShadowRadiusMode : bool {
Default,
Legacy
};
enum StrokeStyle {
NoStroke,
SolidStroke,
DottedStroke,
DashedStroke,
DoubleStroke,
WavyStroke,
};
struct DocumentMarkerLineStyle {
enum class Mode : uint8_t {
TextCheckingDictationPhraseWithAlternatives,
Spelling,
Grammar,
AutocorrectionReplacement,
DictationAlternatives
} mode;
bool shouldUseDarkAppearance { false };
template<class Encoder> void encode(Encoder&) const;
template<class Decoder> static std::optional<DocumentMarkerLineStyle> decode(Decoder&);
};
template<class Encoder>
void DocumentMarkerLineStyle::encode(Encoder& encoder) const
{
encoder << mode;
encoder << shouldUseDarkAppearance;
}
template<class Decoder>
std::optional<DocumentMarkerLineStyle> DocumentMarkerLineStyle::decode(Decoder& decoder)
{
std::optional<Mode> mode;
decoder >> mode;
if (!mode)
return std::nullopt;
std::optional<bool> shouldUseDarkAppearance;
decoder >> shouldUseDarkAppearance;
if (!shouldUseDarkAppearance)
return std::nullopt;
return {{ *mode, *shouldUseDarkAppearance }};
}
struct GraphicsContextStateChange;
struct GraphicsContextState {
WEBCORE_EXPORT GraphicsContextState();
WEBCORE_EXPORT ~GraphicsContextState();
GraphicsContextState(const GraphicsContextState&);
WEBCORE_EXPORT GraphicsContextState(GraphicsContextState&&);
GraphicsContextState& operator=(const GraphicsContextState&);
WEBCORE_EXPORT GraphicsContextState& operator=(GraphicsContextState&&);
enum Change : uint32_t {
StrokeGradientChange = 1 << 0,
StrokePatternChange = 1 << 1,
FillGradientChange = 1 << 2,
FillPatternChange = 1 << 3,
StrokeThicknessChange = 1 << 4,
StrokeColorChange = 1 << 5,
StrokeStyleChange = 1 << 6,
FillColorChange = 1 << 7,
FillRuleChange = 1 << 8,
ShadowChange = 1 << 9,
ShadowsIgnoreTransformsChange = 1 << 10,
AlphaChange = 1 << 11,
CompositeOperationChange = 1 << 12,
BlendModeChange = 1 << 13,
TextDrawingModeChange = 1 << 14,
ShouldAntialiasChange = 1 << 15,
ShouldSmoothFontsChange = 1 << 16,
ShouldSubpixelQuantizeFontsChange = 1 << 17,
DrawLuminanceMaskChange = 1 << 18,
ImageInterpolationQualityChange = 1 << 19,
#if HAVE(OS_DARK_MODE_SUPPORT)
UseDarkAppearanceChange = 1 << 20,
#endif
};
using StateChangeFlags = OptionSet<Change>;
void mergeChanges(const GraphicsContextState&, GraphicsContextState::StateChangeFlags);
RefPtr<Gradient> strokeGradient;
RefPtr<Pattern> strokePattern;
RefPtr<Gradient> fillGradient;
RefPtr<Pattern> fillPattern;
FloatSize shadowOffset;
Color strokeColor { Color::black };
Color fillColor { Color::black };
Color shadowColor;
AffineTransform strokeGradientSpaceTransform;
AffineTransform fillGradientSpaceTransform;
float strokeThickness { 0 };
float shadowBlur { 0 };
float alpha { 1 };
StrokeStyle strokeStyle { SolidStroke };
WindRule fillRule { WindRule::NonZero };
TextDrawingModeFlags textDrawingMode { TextDrawingMode::Fill };
CompositeOperator compositeOperator { CompositeOperator::SourceOver };
BlendMode blendMode { BlendMode::Normal };
InterpolationQuality imageInterpolationQuality { InterpolationQuality::Default };
ShadowRadiusMode shadowRadiusMode { ShadowRadiusMode::Default };
bool shouldAntialias : 1;
bool shouldSmoothFonts : 1;
bool shouldSubpixelQuantizeFonts : 1;
bool shadowsIgnoreTransforms : 1;
bool drawLuminanceMask : 1;
#if HAVE(OS_DARK_MODE_SUPPORT)
bool useDarkAppearance : 1;
#endif
};
struct GraphicsContextStateChange {
GraphicsContextStateChange() = default;
GraphicsContextStateChange(const GraphicsContextState& state, GraphicsContextState::StateChangeFlags flags)
: m_state(state)
, m_changeFlags(flags)
{
}
GraphicsContextState::StateChangeFlags changesFromState(const GraphicsContextState&) const;
void accumulate(const GraphicsContextState&, GraphicsContextState::StateChangeFlags);
void apply(GraphicsContext&) const;
void dump(WTF::TextStream&) const;
GraphicsContextState m_state;
GraphicsContextState::StateChangeFlags m_changeFlags;
};
WTF::TextStream& operator<<(WTF::TextStream&, const GraphicsContextStateChange&);
class GraphicsContext {
WTF_MAKE_NONCOPYABLE(GraphicsContext); WTF_MAKE_FAST_ALLOCATED;
public:
WEBCORE_EXPORT GraphicsContext() = default;
WEBCORE_EXPORT virtual ~GraphicsContext();
virtual bool hasPlatformContext() const { return false; }
virtual PlatformGraphicsContext* platformContext() const { return nullptr; }
virtual bool paintingDisabled() const { return false; }
virtual bool performingPaintInvalidation() const { return false; }
virtual bool invalidatingControlTints() const { return false; }
virtual bool invalidatingImagesWithAsyncDecodes() const { return false; }
virtual bool detectingContentfulPaint() const { return false; }
// Context State
void setStrokeThickness(float thickness) { m_state.strokeThickness = thickness; didUpdateState(m_state, GraphicsContextState::StrokeThicknessChange); }
float strokeThickness() const { return m_state.strokeThickness; }
void setStrokeStyle(StrokeStyle style) { m_state.strokeStyle = style; didUpdateState(m_state, GraphicsContextState::StrokeStyleChange); }
StrokeStyle strokeStyle() const { return m_state.strokeStyle; }
WEBCORE_EXPORT void setStrokeColor(const Color&);
const Color& strokeColor() const { return m_state.strokeColor; }
WEBCORE_EXPORT void setStrokePattern(Ref<Pattern>&&);
Pattern* strokePattern() const { return m_state.strokePattern.get(); }
WEBCORE_EXPORT void setStrokeGradient(Ref<Gradient>&&, const AffineTransform& = { });
Gradient* strokeGradient() const { return m_state.strokeGradient.get(); }
void setFillRule(WindRule fillRule) { m_state.fillRule = fillRule; didUpdateState(m_state, GraphicsContextState::FillRuleChange); }
WindRule fillRule() const { return m_state.fillRule; }
WEBCORE_EXPORT void setFillColor(const Color&);
const Color& fillColor() const { return m_state.fillColor; }
WEBCORE_EXPORT void setFillPattern(Ref<Pattern>&&);
Pattern* fillPattern() const { return m_state.fillPattern.get(); }
WEBCORE_EXPORT void setFillGradient(Ref<Gradient>&&, const AffineTransform& = { });
Gradient* fillGradient() const { return m_state.fillGradient.get(); }
void setShadowsIgnoreTransforms(bool shadowsIgnoreTransforms) { m_state.shadowsIgnoreTransforms = shadowsIgnoreTransforms; didUpdateState(m_state, GraphicsContextState::ShadowsIgnoreTransformsChange); }
bool shadowsIgnoreTransforms() const { return m_state.shadowsIgnoreTransforms; }
void setShouldAntialias(bool shouldAntialias) { m_state.shouldAntialias = shouldAntialias; didUpdateState(m_state, GraphicsContextState::ShouldAntialiasChange); }
bool shouldAntialias() const { return m_state.shouldAntialias; }
void setShouldSmoothFonts(bool shouldSmoothFonts) { m_state.shouldSmoothFonts = shouldSmoothFonts; didUpdateState(m_state, GraphicsContextState::ShouldSmoothFontsChange); }
bool shouldSmoothFonts() const { return m_state.shouldSmoothFonts; }
// Normally CG enables subpixel-quantization because it improves the performance of aligning glyphs.
// In some cases we have to disable to to ensure a high-quality output of the glyphs.
void setShouldSubpixelQuantizeFonts(bool shouldSubpixelQuantizeFonts) { m_state.shouldSubpixelQuantizeFonts = shouldSubpixelQuantizeFonts; didUpdateState(m_state, GraphicsContextState::ShouldSubpixelQuantizeFontsChange); }
bool shouldSubpixelQuantizeFonts() const { return m_state.shouldSubpixelQuantizeFonts; }
void setImageInterpolationQuality(InterpolationQuality quality) { m_state.imageInterpolationQuality = quality; didUpdateState(m_state, GraphicsContextState::ImageInterpolationQualityChange); }
InterpolationQuality imageInterpolationQuality() const { return m_state.imageInterpolationQuality; }
void setAlpha(float alpha) { m_state.alpha = alpha; didUpdateState(m_state, GraphicsContextState::AlphaChange); }
float alpha() const { return m_state.alpha; }
WEBCORE_EXPORT void setCompositeOperation(CompositeOperator, BlendMode = BlendMode::Normal);
CompositeOperator compositeOperation() const { return m_state.compositeOperator; }
BlendMode blendModeOperation() const { return m_state.blendMode; }
void setDrawLuminanceMask(bool drawLuminanceMask) { m_state.drawLuminanceMask = drawLuminanceMask; didUpdateState(m_state, GraphicsContextState::DrawLuminanceMaskChange); }
bool drawLuminanceMask() const { return m_state.drawLuminanceMask; }
void setTextDrawingMode(TextDrawingModeFlags mode) { m_state.textDrawingMode = mode; didUpdateState(m_state, GraphicsContextState::TextDrawingModeChange); }
TextDrawingModeFlags textDrawingMode() const { return m_state.textDrawingMode; }
WEBCORE_EXPORT void setShadow(const FloatSize&, float blur, const Color&, ShadowRadiusMode = ShadowRadiusMode::Default);
WEBCORE_EXPORT virtual void clearShadow();
WEBCORE_EXPORT bool getShadow(FloatSize&, float&, Color&) const;
bool hasVisibleShadow() const { return m_state.shadowColor.isVisible(); }
bool hasShadow() const { return hasVisibleShadow() && (m_state.shadowBlur || m_state.shadowOffset.width() || m_state.shadowOffset.height()); }
bool hasBlurredShadow() const { return hasVisibleShadow() && m_state.shadowBlur; }
#if HAVE(OS_DARK_MODE_SUPPORT)
void setUseDarkAppearance(bool useDarkAppearance) { m_state.useDarkAppearance = useDarkAppearance; didUpdateState(m_state, GraphicsContextState::UseDarkAppearanceChange); }
bool useDarkAppearance() const { return m_state.useDarkAppearance; }
#endif
virtual const GraphicsContextState& state() const { return m_state; }
void updateState(const GraphicsContextState&, GraphicsContextState::StateChangeFlags);
// Called *after* any change to GraphicsContextState; generally used to propagate changes
// to the platform context's state.
virtual void didUpdateState(const GraphicsContextState&, GraphicsContextState::StateChangeFlags) = 0;
WEBCORE_EXPORT virtual void save();
WEBCORE_EXPORT virtual void restore();
unsigned stackSize() const { return m_stack.size(); }
#if USE(CG)
// FIXME: Should these really be public GraphicsContext methods?
virtual void applyStrokePattern() = 0;
virtual void applyFillPattern() = 0;
// FIXME: Can we make this a why instead of a what, and then have it exist cross-platform?
virtual void setIsCALayerContext(bool) = 0;
virtual bool isCALayerContext() const = 0;
// FIXME: Can this be a GraphicsContextCG constructor parameter? Or just be read off the context?
virtual void setIsAcceleratedContext(bool) = 0;
#endif
virtual RenderingMode renderingMode() const { return RenderingMode::Unaccelerated; }
// Pixel Snapping
enum RoundingMode {
RoundAllSides,
RoundOriginAndDimensions
};
virtual FloatRect roundToDevicePixels(const FloatRect&, RoundingMode = RoundAllSides) = 0;
WEBCORE_EXPORT static void adjustLineToPixelBoundaries(FloatPoint& p1, FloatPoint& p2, float strokeWidth, StrokeStyle);
// Shapes
// These draw methods will do both stroking and filling.
// FIXME: ...except drawRect(), which fills properly but always strokes
// using a 1-pixel stroke inset from the rect borders (of the correct
// stroke color).
virtual void drawRect(const FloatRect&, float borderThickness = 1) = 0;
virtual void drawLine(const FloatPoint&, const FloatPoint&) = 0;
virtual void drawEllipse(const FloatRect&) = 0;
WEBCORE_EXPORT virtual void drawRaisedEllipse(const FloatRect&, const Color& ellipseColor, const Color& shadowColor);
virtual void fillPath(const Path&) = 0;
virtual void strokePath(const Path&) = 0;
WEBCORE_EXPORT virtual void drawPath(const Path&);
virtual void fillEllipse(const FloatRect& ellipse) { fillEllipseAsPath(ellipse); }
virtual void strokeEllipse(const FloatRect& ellipse) { strokeEllipseAsPath(ellipse); }
virtual void fillRect(const FloatRect&) = 0;
virtual void fillRect(const FloatRect&, const Color&) = 0;
WEBCORE_EXPORT virtual void fillRect(const FloatRect&, Gradient&);
WEBCORE_EXPORT virtual void fillRect(const FloatRect&, const Color&, CompositeOperator, BlendMode = BlendMode::Normal);
virtual void fillRoundedRectImpl(const FloatRoundedRect&, const Color&) = 0;
WEBCORE_EXPORT virtual void fillRoundedRect(const FloatRoundedRect&, const Color&, BlendMode = BlendMode::Normal);
WEBCORE_EXPORT virtual void fillRectWithRoundedHole(const FloatRect&, const FloatRoundedRect& roundedHoleRect, const Color&);
virtual void clearRect(const FloatRect&) = 0;
virtual void strokeRect(const FloatRect&, float lineWidth) = 0;
virtual void setLineCap(LineCap) = 0;
virtual void setLineDash(const DashArray&, float dashOffset) = 0;
virtual void setLineJoin(LineJoin) = 0;
virtual void setMiterLimit(float) = 0;
// Images, Patterns, and Media
IntSize compatibleImageBufferSize(const FloatSize&) const;
WEBCORE_EXPORT RefPtr<ImageBuffer> createImageBuffer(const FloatSize&, const FloatSize& scale = { 1, 1 }, const DestinationColorSpace& = DestinationColorSpace::SRGB(), std::optional<RenderingMode> = std::nullopt, RenderingMethod = RenderingMethod::Default) const;
WEBCORE_EXPORT RefPtr<ImageBuffer> createImageBuffer(const FloatRect&, const FloatSize& scale = { 1, 1 }, const DestinationColorSpace& = DestinationColorSpace::SRGB(), std::optional<RenderingMode> = std::nullopt, RenderingMethod = RenderingMethod::Default) const;
WEBCORE_EXPORT virtual RefPtr<ImageBuffer> createCompatibleImageBuffer(const FloatSize&, const DestinationColorSpace& = DestinationColorSpace::SRGB(), RenderingMethod = RenderingMethod::Default) const;
WEBCORE_EXPORT virtual RefPtr<ImageBuffer> createCompatibleImageBuffer(const FloatRect&, const DestinationColorSpace& = DestinationColorSpace::SRGB(), RenderingMethod = RenderingMethod::Default) const;
virtual void drawNativeImage(NativeImage&, const FloatSize& selfSize, const FloatRect& destRect, const FloatRect& srcRect, const ImagePaintingOptions& = { }) = 0;
WEBCORE_EXPORT ImageDrawResult drawImage(Image&, const FloatPoint& destination, const ImagePaintingOptions& = { ImageOrientation::FromImage });
WEBCORE_EXPORT ImageDrawResult drawImage(Image&, const FloatRect& destination, const ImagePaintingOptions& = { ImageOrientation::FromImage });
WEBCORE_EXPORT virtual ImageDrawResult drawImage(Image&, const FloatRect& destination, const FloatRect& source, const ImagePaintingOptions& = { ImageOrientation::FromImage });
WEBCORE_EXPORT virtual ImageDrawResult drawTiledImage(Image&, const FloatRect& destination, const FloatPoint& source, const FloatSize& tileSize, const FloatSize& spacing, const ImagePaintingOptions& = { });
WEBCORE_EXPORT virtual ImageDrawResult drawTiledImage(Image&, const FloatRect& destination, const FloatRect& source, const FloatSize& tileScaleFactor, Image::TileRule, Image::TileRule, const ImagePaintingOptions& = { });
WEBCORE_EXPORT void drawImageBuffer(ImageBuffer&, const FloatPoint& destination, const ImagePaintingOptions& = { });
WEBCORE_EXPORT void drawImageBuffer(ImageBuffer&, const FloatRect& destination, const ImagePaintingOptions& = { });
WEBCORE_EXPORT virtual void drawImageBuffer(ImageBuffer&, const FloatRect& destination, const FloatRect& source, const ImagePaintingOptions& = { });
WEBCORE_EXPORT void drawConsumingImageBuffer(RefPtr<ImageBuffer>, const FloatPoint& destination, const ImagePaintingOptions& = { });
WEBCORE_EXPORT void drawConsumingImageBuffer(RefPtr<ImageBuffer>, const FloatRect& destination, const ImagePaintingOptions& = { });
WEBCORE_EXPORT virtual void drawConsumingImageBuffer(RefPtr<ImageBuffer>, const FloatRect& destination, const FloatRect& source, const ImagePaintingOptions& = { });
WEBCORE_EXPORT virtual void drawFilteredImageBuffer(ImageBuffer* sourceImage, const FloatRect& sourceImageRect, Filter&, FilterResults&);
virtual void drawPattern(NativeImage&, const FloatRect& destRect, const FloatRect& tileRect, const AffineTransform& patternTransform, const FloatPoint& phase, const FloatSize& spacing, const ImagePaintingOptions& = { }) = 0;
WEBCORE_EXPORT virtual void drawPattern(ImageBuffer&, const FloatRect& destRect, const FloatRect& tileRect, const AffineTransform& patternTransform, const FloatPoint& phase, const FloatSize& spacing, const ImagePaintingOptions& = { });
#if ENABLE(VIDEO)
WEBCORE_EXPORT virtual void paintFrameForMedia(MediaPlayer&, const FloatRect& destination);
#endif
// Clipping
virtual void clip(const FloatRect&) = 0;
WEBCORE_EXPORT virtual void clipRoundedRect(const FloatRoundedRect&);
virtual void clipOut(const FloatRect&) = 0;
virtual void clipOut(const Path&) = 0;
WEBCORE_EXPORT virtual void clipOutRoundedRect(const FloatRoundedRect&);
virtual void clipPath(const Path&, WindRule = WindRule::EvenOdd) = 0;
WEBCORE_EXPORT virtual void clipToImageBuffer(ImageBuffer&, const FloatRect&);
WEBCORE_EXPORT virtual IntRect clipBounds() const;
// Text
WEBCORE_EXPORT virtual FloatSize drawText(const FontCascade&, const TextRun&, const FloatPoint&, unsigned from = 0, std::optional<unsigned> to = std::nullopt);
WEBCORE_EXPORT virtual void drawGlyphs(const Font&, const GlyphBufferGlyph*, const GlyphBufferAdvance*, unsigned numGlyphs, const FloatPoint&, FontSmoothingMode);
WEBCORE_EXPORT virtual void drawEmphasisMarks(const FontCascade&, const TextRun&, const AtomString& mark, const FloatPoint&, unsigned from = 0, std::optional<unsigned> to = std::nullopt);
WEBCORE_EXPORT virtual void drawBidiText(const FontCascade&, const TextRun&, const FloatPoint&, FontCascade::CustomFontNotReadyAction = FontCascade::DoNotPaintIfFontNotReady);
virtual void drawGlyphsAndCacheFont(const Font& font, const GlyphBufferGlyph* glyphs, const GlyphBufferAdvance* advances, unsigned numGlyphs, const FloatPoint& point, FontSmoothingMode fontSmoothingMode)
{
drawGlyphs(font, glyphs, advances, numGlyphs, point, fontSmoothingMode);
}
WEBCORE_EXPORT FloatRect computeUnderlineBoundsForText(const FloatRect&, bool printing);
WEBCORE_EXPORT void drawLineForText(const FloatRect&, bool printing, bool doubleLines = false, StrokeStyle = SolidStroke);
virtual void drawLinesForText(const FloatPoint&, float thickness, const DashArray& widths, bool printing, bool doubleLines = false, StrokeStyle = SolidStroke) = 0;
virtual void drawDotsForDocumentMarker(const FloatRect&, DocumentMarkerLineStyle) = 0;
// Transparency Layers
WEBCORE_EXPORT virtual void beginTransparencyLayer(float opacity);
WEBCORE_EXPORT virtual void endTransparencyLayer();
bool isInTransparencyLayer() const { return (m_transparencyLayerCount > 0) && supportsTransparencyLayers(); }
// Focus Rings
virtual void drawFocusRing(const Vector<FloatRect>&, float width, float offset, const Color&) = 0;
virtual void drawFocusRing(const Path&, float width, float offset, const Color&) = 0;
// FIXME: Can we hide these in the CG implementation? Or elsewhere?
#if PLATFORM(MAC)
virtual void drawFocusRing(const Path&, double timeOffset, bool& needsRedraw, const Color&) = 0;
virtual void drawFocusRing(const Vector<FloatRect>&, double timeOffset, bool& needsRedraw, const Color&) = 0;
#endif
// Transforms
void scale(float s) { scale({ s, s }); }
virtual void scale(const FloatSize&) = 0;
virtual void rotate(float angleInRadians) = 0;
void translate(const FloatSize& size) { translate(size.width(), size.height()); }
void translate(const FloatPoint& p) { translate(p.x(), p.y()); }
virtual void translate(float x, float y) = 0;
virtual void concatCTM(const AffineTransform&) = 0;
virtual void setCTM(const AffineTransform&) = 0;
enum IncludeDeviceScale { DefinitelyIncludeDeviceScale, PossiblyIncludeDeviceScale };
virtual AffineTransform getCTM(IncludeDeviceScale = PossiblyIncludeDeviceScale) const = 0;
// This function applies the device scale factor to the context, making the context capable of
// acting as a base-level context for a HiDPI environment.
virtual void applyDeviceScaleFactor(float factor) { scale(factor); }
WEBCORE_EXPORT FloatSize scaleFactor() const;
WEBCORE_EXPORT FloatSize scaleFactorForDrawing(const FloatRect& destRect, const FloatRect& srcRect) const;
// Links
virtual void setURLForRect(const URL&, const FloatRect&) { }
virtual void setDestinationForRect(const String&, const FloatRect&) { }
virtual void addDestinationAtPoint(const String&, const FloatPoint&) { }
virtual bool supportsInternalLinks() const { return false; }
// Contentful Paint Detection
void setContentfulPaintDetected() { m_contentfulPaintDetected = true; }
bool contenfulPaintDetected() const { return m_contentfulPaintDetected; }
// FIXME: Nothing in this section belongs here, and should be moved elsewhere.
#if OS(WINDOWS)
HDC getWindowsContext(const IntRect&, bool supportAlphaBlend); // The passed in rect is used to create a bitmap for compositing inside transparency layers.
void releaseWindowsContext(HDC, const IntRect&, bool supportAlphaBlend); // The passed in HDC should be the one handed back by getWindowsContext.
#endif
#if OS(WINDOWS) && !USE(CAIRO)
// FIXME: This should not exist; we need a different place to
// put code shared between Windows CG and Windows Cairo backends.
virtual GraphicsContextPlatformPrivate* deprecatedPrivateContext() const { return nullptr; }
#endif
private:
virtual bool supportsTransparencyLayers() const { return true; }
protected:
void fillEllipseAsPath(const FloatRect&);
void strokeEllipseAsPath(const FloatRect&);
WEBCORE_EXPORT virtual RefPtr<ImageBuffer> createImageBuffer(const FloatSize&, const DestinationColorSpace&, RenderingMode, RenderingMethod) const;
FloatRect computeLineBoundsAndAntialiasingModeForText(const FloatRect&, bool printing, Color&);
float dashedLineCornerWidthForStrokeWidth(float) const;
float dashedLinePatternWidthForStrokeWidth(float) const;
float dashedLinePatternOffsetForPatternAndStrokeWidth(float patternWidth, float strokeWidth) const;
Vector<FloatPoint> centerLineAndCutOffCorners(bool isVerticalLine, float cornerWidth, FloatPoint point1, FloatPoint point2) const;
GraphicsContextState m_state;
private:
Vector<GraphicsContextState, 1> m_stack;
unsigned m_transparencyLayerCount { 0 };
bool m_contentfulPaintDetected { false };
};
class GraphicsContextStateSaver {
WTF_MAKE_FAST_ALLOCATED;
public:
GraphicsContextStateSaver(GraphicsContext& context, bool saveAndRestore = true)
: m_context(context)
, m_saveAndRestore(saveAndRestore)
{
if (m_saveAndRestore)
m_context.save();
}
~GraphicsContextStateSaver()
{
if (m_saveAndRestore)
m_context.restore();
}
void save()
{
ASSERT(!m_saveAndRestore);
m_context.save();
m_saveAndRestore = true;
}
void restore()
{
ASSERT(m_saveAndRestore);
m_context.restore();
m_saveAndRestore = false;
}
GraphicsContext* context() const { return &m_context; }
private:
GraphicsContext& m_context;
bool m_saveAndRestore;
};
class TransparencyLayerScope {
public:
TransparencyLayerScope(GraphicsContext& context, float alpha, bool beginLayer = true)
: m_context(context)
, m_alpha(alpha)
, m_beganLayer(beginLayer)
{
if (beginLayer)
m_context.beginTransparencyLayer(m_alpha);
}
void beginLayer(float alpha)
{
m_alpha = alpha;
m_context.beginTransparencyLayer(m_alpha);
m_beganLayer = true;
}
~TransparencyLayerScope()
{
if (m_beganLayer)
m_context.endTransparencyLayer();
}
private:
GraphicsContext& m_context;
float m_alpha;
bool m_beganLayer;
};
class GraphicsContextStateStackChecker {
public:
GraphicsContextStateStackChecker(GraphicsContext& context)
: m_context(context)
, m_stackSize(context.stackSize())
{ }
~GraphicsContextStateStackChecker()
{
if (m_context.stackSize() != m_stackSize)
WTFLogAlways("GraphicsContext %p stack changed by %d", &m_context, (int)m_context.stackSize() - (int)m_stackSize);
}
private:
GraphicsContext& m_context;
unsigned m_stackSize;
};
class InterpolationQualityMaintainer {
public:
explicit InterpolationQualityMaintainer(GraphicsContext& graphicsContext, InterpolationQuality interpolationQualityToUse)
: m_graphicsContext(graphicsContext)
, m_currentInterpolationQuality(graphicsContext.imageInterpolationQuality())
, m_interpolationQualityChanged(interpolationQualityToUse != InterpolationQuality::Default && m_currentInterpolationQuality != interpolationQualityToUse)
{
if (m_interpolationQualityChanged)
m_graphicsContext.setImageInterpolationQuality(interpolationQualityToUse);
}
explicit InterpolationQualityMaintainer(GraphicsContext& graphicsContext, std::optional<InterpolationQuality> interpolationQuality)
: InterpolationQualityMaintainer(graphicsContext, interpolationQuality ? interpolationQuality.value() : graphicsContext.imageInterpolationQuality())
{
}
~InterpolationQualityMaintainer()
{
if (m_interpolationQualityChanged)
m_graphicsContext.setImageInterpolationQuality(m_currentInterpolationQuality);
}
private:
GraphicsContext& m_graphicsContext;
InterpolationQuality m_currentInterpolationQuality;
bool m_interpolationQualityChanged;
};
} // namespace WebCore
namespace WTF {
template<> struct EnumTraits<WebCore::DocumentMarkerLineStyle::Mode> {
using values = EnumValues<
WebCore::DocumentMarkerLineStyle::Mode,
WebCore::DocumentMarkerLineStyle::Mode::TextCheckingDictationPhraseWithAlternatives,
WebCore::DocumentMarkerLineStyle::Mode::Spelling,
WebCore::DocumentMarkerLineStyle::Mode::Grammar,
WebCore::DocumentMarkerLineStyle::Mode::AutocorrectionReplacement,
WebCore::DocumentMarkerLineStyle::Mode::DictationAlternatives
>;
};
template<> struct EnumTraits<WebCore::GraphicsContextState::Change> {
using values = EnumValues<
WebCore::GraphicsContextState::Change,
WebCore::GraphicsContextState::Change::StrokeGradientChange,
WebCore::GraphicsContextState::Change::StrokePatternChange,
WebCore::GraphicsContextState::Change::FillGradientChange,
WebCore::GraphicsContextState::Change::FillPatternChange,
WebCore::GraphicsContextState::Change::StrokeThicknessChange,
WebCore::GraphicsContextState::Change::StrokeColorChange,
WebCore::GraphicsContextState::Change::StrokeStyleChange,
WebCore::GraphicsContextState::Change::FillColorChange,
WebCore::GraphicsContextState::Change::FillRuleChange,
WebCore::GraphicsContextState::Change::ShadowChange,
WebCore::GraphicsContextState::Change::ShadowsIgnoreTransformsChange,
WebCore::GraphicsContextState::Change::AlphaChange,
WebCore::GraphicsContextState::Change::CompositeOperationChange,
WebCore::GraphicsContextState::Change::BlendModeChange,
WebCore::GraphicsContextState::Change::TextDrawingModeChange,
WebCore::GraphicsContextState::Change::ShouldAntialiasChange,
WebCore::GraphicsContextState::Change::ShouldSmoothFontsChange,
WebCore::GraphicsContextState::Change::ShouldSubpixelQuantizeFontsChange,
WebCore::GraphicsContextState::Change::DrawLuminanceMaskChange,
WebCore::GraphicsContextState::Change::ImageInterpolationQualityChange
#if HAVE(OS_DARK_MODE_SUPPORT)
, WebCore::GraphicsContextState::Change::UseDarkAppearanceChange
#endif
>;
};
template<> struct EnumTraits<WebCore::StrokeStyle> {
using values = EnumValues<
WebCore::StrokeStyle,
WebCore::StrokeStyle::NoStroke,
WebCore::StrokeStyle::SolidStroke,
WebCore::StrokeStyle::DottedStroke,
WebCore::StrokeStyle::DashedStroke,
WebCore::StrokeStyle::DoubleStroke,
WebCore::StrokeStyle::WavyStroke
>;
};
template<> struct EnumTraits<WebCore::TextDrawingMode> {
using values = EnumValues<
WebCore::TextDrawingMode,
WebCore::TextDrawingMode::Fill,
WebCore::TextDrawingMode::Stroke
>;
};
} // namespace WTF
|