OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/views/style/platform_style.h" | 5 #include "ui/views/style/platform_style.h" |
6 | 6 |
7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
8 #include "ui/base/resource/resource_bundle.h" | 8 #include "ui/base/resource/resource_bundle.h" |
9 #include "ui/base/ui_features.h" | 9 #include "ui/base/ui_features.h" |
10 #include "ui/gfx/color_utils.h" | 10 #include "ui/gfx/color_utils.h" |
11 #include "ui/gfx/paint_vector_icon.h" | 11 #include "ui/gfx/paint_vector_icon.h" |
12 #include "ui/gfx/vector_icons_public.h" | 12 #include "ui/gfx/vector_icons_public.h" |
13 #include "ui/resources/grit/ui_resources.h" | 13 #include "ui/resources/grit/ui_resources.h" |
14 #include "ui/views/controls/button/label_button.h" | 14 #include "ui/views/controls/button/label_button.h" |
15 #import "ui/views/controls/scrollbar/cocoa_scroll_bar.h" | 15 #import "ui/views/controls/scrollbar/cocoa_scroll_bar.h" |
16 | 16 |
17 #import <Cocoa/Cocoa.h> | 17 #import <Cocoa/Cocoa.h> |
18 | 18 |
19 namespace views { | 19 namespace views { |
20 | 20 |
21 const int PlatformStyle::kComboboxNormalArrowPadding = 0; | 21 const int PlatformStyle::kComboboxNormalArrowPadding = 0; |
22 const int PlatformStyle::kMinLabelButtonWidth = 32; | 22 const int PlatformStyle::kMinLabelButtonWidth = 32; |
23 const int PlatformStyle::kMinLabelButtonHeight = 30; | 23 const int PlatformStyle::kMinLabelButtonHeight = 30; |
24 const bool PlatformStyle::kDefaultLabelButtonHasBoldFont = false; | 24 const bool PlatformStyle::kDefaultLabelButtonHasBoldFont = false; |
25 const bool PlatformStyle::kDialogDefaultButtonCanBeCancel = false; | 25 const bool PlatformStyle::kDialogDefaultButtonCanBeCancel = false; |
26 const bool PlatformStyle::kTextDragVerticallyDragsToEnd = true; | |
27 const bool PlatformStyle::kTreeViewHasFocusRing = true; | 26 const bool PlatformStyle::kTreeViewHasFocusRing = true; |
28 const bool PlatformStyle::kTreeViewSelectionPaintsEntireRow = true; | 27 const bool PlatformStyle::kTreeViewSelectionPaintsEntireRow = true; |
29 const bool PlatformStyle::kUseRipples = false; | 28 const bool PlatformStyle::kUseRipples = false; |
30 | 29 |
31 // On Mac, the Cocoa browser window does not flip its UI in RTL (e.g. bookmark | 30 // On Mac, the Cocoa browser window does not flip its UI in RTL (e.g. bookmark |
32 // star remains on the right, padlock on the left). So bubbles should open in | 31 // star remains on the right, padlock on the left). So bubbles should open in |
33 // the same direction as in LTR by default, unless the entire browser is views. | 32 // the same direction as in LTR by default, unless the entire browser is views. |
34 const bool PlatformStyle::kMirrorBubbleArrowInRTLByDefault = | 33 const bool PlatformStyle::kMirrorBubbleArrowInRTLByDefault = |
35 BUILDFLAG(MAC_VIEWS_BROWSER); | 34 BUILDFLAG(MAC_VIEWS_BROWSER); |
36 | 35 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 ButtonColorByState& colors = *color_by_state; | 77 ButtonColorByState& colors = *color_by_state; |
79 colors[Button::STATE_PRESSED] = SK_ColorWHITE; | 78 colors[Button::STATE_PRESSED] = SK_ColorWHITE; |
80 } | 79 } |
81 | 80 |
82 // static | 81 // static |
83 void PlatformStyle::OnTextfieldEditFailed() { | 82 void PlatformStyle::OnTextfieldEditFailed() { |
84 NSBeep(); | 83 NSBeep(); |
85 } | 84 } |
86 | 85 |
87 } // namespace views | 86 } // namespace views |
OLD | NEW |