1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/native_theme/native_theme_aurawin.h"
7 #include "third_party/skia/include/core/SkCanvas.h"
8 #include "ui/native_theme/common_theme.h"
9 #include "ui/native_theme/native_theme_win.h"
15 bool IsScrollbarPart(NativeTheme::Part part
) {
17 case NativeTheme::kScrollbarDownArrow
:
18 case NativeTheme::kScrollbarLeftArrow
:
19 case NativeTheme::kScrollbarRightArrow
:
20 case NativeTheme::kScrollbarUpArrow
:
21 case NativeTheme::kScrollbarHorizontalThumb
:
22 case NativeTheme::kScrollbarVerticalThumb
:
23 case NativeTheme::kScrollbarHorizontalTrack
:
24 case NativeTheme::kScrollbarVerticalTrack
:
25 case NativeTheme::kScrollbarHorizontalGripper
:
26 case NativeTheme::kScrollbarVerticalGripper
:
27 case NativeTheme::kScrollbarCorner
:
37 NativeTheme
* NativeTheme::instance() {
38 return NativeThemeAuraWin::instance();
42 NativeThemeAura
* NativeThemeAura::instance() {
43 return NativeThemeAuraWin::instance();
47 NativeThemeAuraWin
* NativeThemeAuraWin::instance() {
48 CR_DEFINE_STATIC_LOCAL(NativeThemeAuraWin
, s_native_theme
, ());
49 return &s_native_theme
;
52 NativeThemeAuraWin::NativeThemeAuraWin() {
55 NativeThemeAuraWin::~NativeThemeAuraWin() {
58 void NativeThemeAuraWin::Paint(SkCanvas
* canvas
,
61 const gfx::Rect
& rect
,
62 const ExtraParams
& extra
) const {
63 if (IsScrollbarPart(part
) &&
64 NativeThemeWin::instance()->IsUsingHighContrastTheme()) {
65 NativeThemeWin::instance()->Paint(canvas
, part
, state
, rect
, extra
);
69 NativeThemeAura::Paint(canvas
, part
, state
, rect
, extra
);
72 gfx::Size
NativeThemeAuraWin::GetPartSize(Part part
,
74 const ExtraParams
& extra
) const {
75 gfx::Size part_size
= CommonThemeGetPartSize(part
, state
, extra
);
76 if (!part_size
.IsEmpty())
79 // We want aura on windows to use the same size for scrollbars as we would in
81 if (IsScrollbarPart(part
))
82 return NativeThemeWin::instance()->GetPartSize(part
, state
, extra
);
84 return NativeThemeAura::GetPartSize(part
, state
, extra
);