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

Side by Side Diff: ui/views/style/platform_style.cc

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.h ('k') | ui/views/style/platform_style_mac.mm » ('j') | 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 "build/build_config.h" 8 #include "build/build_config.h"
9 #include "ui/base/material_design/material_design_controller.h" 9 #include "ui/base/material_design/material_design_controller.h"
10 #include "ui/base/resource/resource_bundle.h" 10 #include "ui/base/resource/resource_bundle.h"
(...skipping 30 matching lines...) Expand all
41 const int PlatformStyle::kMinLabelButtonHeight = 33; 41 const int PlatformStyle::kMinLabelButtonHeight = 33;
42 const bool PlatformStyle::kDefaultLabelButtonHasBoldFont = true; 42 const bool PlatformStyle::kDefaultLabelButtonHasBoldFont = true;
43 const bool PlatformStyle::kDialogDefaultButtonCanBeCancel = true; 43 const bool PlatformStyle::kDialogDefaultButtonCanBeCancel = true;
44 const bool PlatformStyle::kSelectWordOnRightClick = false; 44 const bool PlatformStyle::kSelectWordOnRightClick = false;
45 const bool PlatformStyle::kSelectAllOnRightClickWhenUnfocused = false; 45 const bool PlatformStyle::kSelectAllOnRightClickWhenUnfocused = false;
46 const CustomButton::NotifyAction PlatformStyle::kMenuNotifyActivationAction = 46 const CustomButton::NotifyAction PlatformStyle::kMenuNotifyActivationAction =
47 CustomButton::NOTIFY_ON_RELEASE; 47 CustomButton::NOTIFY_ON_RELEASE;
48 const CustomButton::KeyClickAction PlatformStyle::kKeyClickActionOnSpace = 48 const CustomButton::KeyClickAction PlatformStyle::kKeyClickActionOnSpace =
49 CustomButton::CLICK_ON_KEY_RELEASE; 49 CustomButton::CLICK_ON_KEY_RELEASE;
50 const bool PlatformStyle::kReturnClicksFocusedControl = true; 50 const bool PlatformStyle::kReturnClicksFocusedControl = true;
51 const bool PlatformStyle::kTreeViewHasFocusRing = false;
52 const bool PlatformStyle::kTreeViewSelectionPaintsEntireRow = false; 51 const bool PlatformStyle::kTreeViewSelectionPaintsEntireRow = false;
53 const bool PlatformStyle::kUseRipples = true; 52 const bool PlatformStyle::kUseRipples = true;
54 const bool PlatformStyle::kMirrorBubbleArrowInRTLByDefault = true; 53 const bool PlatformStyle::kMirrorBubbleArrowInRTLByDefault = true;
55 54
56 // static 55 // static
57 gfx::ImageSkia PlatformStyle::CreateComboboxArrow(bool is_enabled, 56 gfx::ImageSkia PlatformStyle::CreateComboboxArrow(bool is_enabled,
58 Combobox::Style style) { 57 Combobox::Style style) {
59 ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance(); 58 ui::ResourceBundle& rb = ui::ResourceBundle::GetSharedInstance();
60 return *rb.GetImageSkiaNamed(IDR_MENU_DROPARROW); 59 return *rb.GetImageSkiaNamed(IDR_MENU_DROPARROW);
61 } 60 }
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 97
99 #if !defined(DESKTOP_LINUX) 98 #if !defined(DESKTOP_LINUX)
100 // static 99 // static
101 std::unique_ptr<Border> PlatformStyle::CreateThemedLabelButtonBorder( 100 std::unique_ptr<Border> PlatformStyle::CreateThemedLabelButtonBorder(
102 LabelButton* button) { 101 LabelButton* button) {
103 return button->CreateDefaultBorder(); 102 return button->CreateDefaultBorder();
104 } 103 }
105 #endif 104 #endif
106 105
107 } // namespace views 106 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/style/platform_style.h ('k') | ui/views/style/platform_style_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698