Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: ui/views/style/platform_style_mac.mm

Issue 2715813002: Change focus indicator for TableView and TreeView. (Closed)
Patch Set: rename Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/views/style/platform_style.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/resources/grit/ui_resources.h" 12 #include "ui/resources/grit/ui_resources.h"
13 #include "ui/views/controls/button/label_button.h" 13 #include "ui/views/controls/button/label_button.h"
14 #import "ui/views/controls/scrollbar/cocoa_scroll_bar.h" 14 #import "ui/views/controls/scrollbar/cocoa_scroll_bar.h"
15 #include "ui/views/vector_icons.h" 15 #include "ui/views/vector_icons.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::kSelectWordOnRightClick = true; 26 const bool PlatformStyle::kSelectWordOnRightClick = true;
27 const bool PlatformStyle::kSelectAllOnRightClickWhenUnfocused = true; 27 const bool PlatformStyle::kSelectAllOnRightClickWhenUnfocused = true;
28 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);
37 36
38 const CustomButton::NotifyAction PlatformStyle::kMenuNotifyActivationAction = 37 const CustomButton::NotifyAction PlatformStyle::kMenuNotifyActivationAction =
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 ButtonColorByState& colors = *color_by_state; 84 ButtonColorByState& colors = *color_by_state;
86 colors[Button::STATE_PRESSED] = SK_ColorWHITE; 85 colors[Button::STATE_PRESSED] = SK_ColorWHITE;
87 } 86 }
88 87
89 // static 88 // static
90 void PlatformStyle::OnTextfieldEditFailed() { 89 void PlatformStyle::OnTextfieldEditFailed() {
91 NSBeep(); 90 NSBeep();
92 } 91 }
93 92
94 } // namespace views 93 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/style/platform_style.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698