summaryrefslogtreecommitdiffstats
path: root/widget/Screen.h
blob: f3f8b4a628af24adbe89982bbf9e5249d8fbed26 (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
80
81
82
83
84
/* -*- 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_Screen_h
#define mozilla_widget_Screen_h

#include "nsIScreen.h"

#include "Units.h"
#include "mozilla/HalScreenConfiguration.h"  // For hal::ScreenOrientation

namespace mozilla {
namespace dom {
class ScreenDetails;
}  // namespace dom

namespace widget {

class Screen final : public nsIScreen {
 public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSISCREEN

  using OrientationAngle = uint16_t;
  enum class IsPseudoDisplay : bool { No, Yes };

  Screen(LayoutDeviceIntRect aRect, LayoutDeviceIntRect aAvailRect,
         uint32_t aPixelDepth, uint32_t aColorDepth, uint32_t aRefreshRate,
         DesktopToLayoutDeviceScale aContentsScale,
         CSSToLayoutDeviceScale aDefaultCssScale, float aDpi, IsPseudoDisplay,
         hal::ScreenOrientation = hal::ScreenOrientation::None,
         OrientationAngle = 0);
  explicit Screen(const dom::ScreenDetails& aScreenDetails);
  Screen(const Screen& aOther);

  dom::ScreenDetails ToScreenDetails() const;

  OrientationAngle GetOrientationAngle() const { return mOrientationAngle; }
  hal::ScreenOrientation GetOrientationType() const {
    return mScreenOrientation;
  }

  /**
   * Return default orientation type that angle is 0.
   * This returns LandscapePrimary or PortraitPrimary.
   */
  hal::ScreenOrientation GetDefaultOrientationType() const;

  float GetDPI() const { return mDPI; }

  const LayoutDeviceIntRect& GetRect() const { return mRect; }
  const LayoutDeviceIntRect& GetAvailRect() const { return mAvailRect; }
  const DesktopToLayoutDeviceScale& GetContentsScaleFactor() const {
    return mContentsScale;
  }

  enum class IncludeOSZoom : bool { No, Yes };
  CSSToLayoutDeviceScale GetCSSToLayoutDeviceScale(IncludeOSZoom) const;

 private:
  virtual ~Screen() = default;

  const LayoutDeviceIntRect mRect;
  const LayoutDeviceIntRect mAvailRect;
  const DesktopIntRect mRectDisplayPix;
  const DesktopIntRect mAvailRectDisplayPix;
  const uint32_t mPixelDepth;
  const uint32_t mColorDepth;
  const uint32_t mRefreshRate;
  const DesktopToLayoutDeviceScale mContentsScale;
  const CSSToLayoutDeviceScale mDefaultCssScale;
  const float mDPI;
  const hal::ScreenOrientation mScreenOrientation;
  const OrientationAngle mOrientationAngle;
  const bool mIsPseudoDisplay;
};

}  // namespace widget
}  // namespace mozilla

#endif