summaryrefslogtreecommitdiffstats
path: root/widget/ThemeDrawing.h
blob: 469c29ea2fd63d864f84425b9940221e292cdb55 (plain)
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
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef mozilla_widget_ThemeDrawing_h
#define mozilla_widget_ThemeDrawing_h

#include "mozilla/layers/IpcResourceUpdateQueue.h"
#include "mozilla/layers/RenderRootStateManager.h"
#include "mozilla/layers/StackingContextHelper.h"
#include "RetainedDisplayListBuilder.h"

namespace mozilla::widget {

struct WebRenderBackendData {
  wr::DisplayListBuilder& mBuilder;
  wr::IpcResourceUpdateQueue& mResources;
  const layers::StackingContextHelper& mSc;
  layers::RenderRootStateManager* mManager;
};

class ThemeDrawing {
 protected:
  using DrawTarget = gfx::DrawTarget;
  using sRGBColor = gfx::sRGBColor;
  using DPIRatio = CSSToLayoutDeviceScale;

 public:
  virtual ~ThemeDrawing() = 0;

  static void FillRect(DrawTarget&, const LayoutDeviceRect&, const sRGBColor&);
  static void FillRect(WebRenderBackendData&, const LayoutDeviceRect&,
                       const sRGBColor&);

  // Returns the right scale for points in a aSize x aSize sized box, centered
  // at 0x0 to fill aRect in the smaller dimension.
  static float ScaleToFillRect(const LayoutDeviceRect& aRect,
                               const float& aSize) {
    return std::min(aRect.width, aRect.height) / aSize;
  }

  static LayoutDeviceIntCoord SnapBorderWidth(const CSSCoord& aCssWidth,
                                              const DPIRatio& aDpiRatio);

  static void PaintArrow(DrawTarget&, const LayoutDeviceRect&,
                         const float aArrowPolygonX[],
                         const float aArrowPolygonY[],
                         const float aArrowPolygonSize,
                         const int32_t aArrowNumPoints,
                         const sRGBColor aFillColor);

  static void PaintRoundedRectWithRadius(
      DrawTarget&, const LayoutDeviceRect& aRect,
      const LayoutDeviceRect& aClipRect, const sRGBColor& aBackgroundColor,
      const sRGBColor& aBorderColor, const CSSCoord& aBorderWidth,
      const CSSCoord& aRadius, const DPIRatio&);
  static void PaintRoundedRectWithRadius(
      WebRenderBackendData&, const LayoutDeviceRect& aRect,
      const LayoutDeviceRect& aClipRect, const sRGBColor& aBackgroundColor,
      const sRGBColor& aBorderColor, const CSSCoord& aBorderWidth,
      const CSSCoord& aRadius, const DPIRatio&);
  template <typename PaintBackendData>
  static void PaintRoundedRectWithRadius(PaintBackendData& aData,
                                         const LayoutDeviceRect& aRect,
                                         const sRGBColor& aBackgroundColor,
                                         const sRGBColor& aBorderColor,
                                         const CSSCoord& aBorderWidth,
                                         const CSSCoord& aRadius,
                                         const DPIRatio& aDpiRatio) {
    PaintRoundedRectWithRadius(aData, aRect, aRect, aBackgroundColor,
                               aBorderColor, aBorderWidth, aRadius, aDpiRatio);
  }
};

}  // namespace mozilla::widget

#endif