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::kSelectWordOnRightClick = true; | 26 const bool PlatformStyle::kSelectWordOnRightClick = true; |
28 const bool PlatformStyle::kTreeViewHasFocusRing = true; | 27 const bool PlatformStyle::kTreeViewHasFocusRing = true; |
29 const bool PlatformStyle::kTreeViewSelectionPaintsEntireRow = true; | 28 const bool PlatformStyle::kTreeViewSelectionPaintsEntireRow = true; |
30 const bool PlatformStyle::kUseRipples = false; | 29 const bool PlatformStyle::kUseRipples = false; |
31 | 30 |
32 // On Mac, the Cocoa browser window does not flip its UI in RTL (e.g. bookmark | 31 // On Mac, the Cocoa browser window does not flip its UI in RTL (e.g. bookmark |
33 // star remains on the right, padlock on the left). So bubbles should open in | 32 // star remains on the right, padlock on the left). So bubbles should open in |
34 // the same direction as in LTR by default, unless the entire browser is views. | 33 // the same direction as in LTR by default, unless the entire browser is views. |
35 const bool PlatformStyle::kMirrorBubbleArrowInRTLByDefault = | 34 const bool PlatformStyle::kMirrorBubbleArrowInRTLByDefault = |
36 BUILDFLAG(MAC_VIEWS_BROWSER); | 35 BUILDFLAG(MAC_VIEWS_BROWSER); |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 ButtonColorByState& colors = *color_by_state; | 78 ButtonColorByState& colors = *color_by_state; |
80 colors[Button::STATE_PRESSED] = SK_ColorWHITE; | 79 colors[Button::STATE_PRESSED] = SK_ColorWHITE; |
81 } | 80 } |
82 | 81 |
83 // static | 82 // static |
84 void PlatformStyle::OnTextfieldEditFailed() { | 83 void PlatformStyle::OnTextfieldEditFailed() { |
85 NSBeep(); | 84 NSBeep(); |
86 } | 85 } |
87 | 86 |
88 } // namespace views | 87 } // namespace views |
OLD | NEW |