1 // Copyright (c) 2012 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/app_list/app_list_constants.h"
9 const SkColor kContentsBackgroundColor
= SkColorSetRGB(0xF2, 0xF2, 0xF2);
10 const SkColor kSearchBoxBackground
= SK_ColorWHITE
;
12 const SkColor kSearchTextColor
= SkColorSetRGB(0x33, 0x33, 0x33);
14 // In Windows, transparent background color will cause ugly text rendering,
15 // therefore kContentsBackgroundColor should be used. See crbug.com/406989
16 #if defined(OS_CHROMEOS)
17 const SkColor kLabelBackgroundColor
= SK_ColorTRANSPARENT
;
19 const SkColor kLabelBackgroundColor
= kContentsBackgroundColor
;
22 const SkColor kTopSeparatorColor
= SkColorSetRGB(0xC0, 0xC0, 0xC0);
23 const SkColor kBottomSeparatorColor
= SkColorSetRGB(0xC0, 0xC0, 0xC0);
25 // The color of the separator used inside dialogs in the app list.
26 const SkColor kDialogSeparatorColor
= SkColorSetRGB(0xD1, 0xD1, 0xD1);
28 // Non-views Mac requires opaque colors to paint correctly.
29 #if defined(OS_MACOSX) && !defined(TOOLKIT_VIEWS)
30 // The mouse hover colour (3% black over kContentsBackgroundColor).
31 const SkColor kHighlightedColor
= SkColorSetRGB(0xEE, 0xEE, 0xEE);
32 // The keyboard select colour (6% black over kContentsBackgroundColor).
33 const SkColor kSelectedColor
= SkColorSetRGB(0xE6, 0xE6, 0xE6);
35 // The mouse hover colour (3% black).
36 const SkColor kHighlightedColor
= SkColorSetARGB(8, 0, 0, 0);
37 // The keyboard select colour (6% black).
38 const SkColor kSelectedColor
= SkColorSetARGB(15, 0, 0, 0);
41 const SkColor kPagerHoverColor
= SkColorSetRGB(0xB4, 0xB4, 0xB4);
42 const SkColor kPagerNormalColor
= SkColorSetRGB(0xE2, 0xE2, 0xE2);
43 const SkColor kPagerSelectedColor
= SkColorSetRGB(0x46, 0x8F, 0xFC);
45 const SkColor kResultBorderColor
= SkColorSetRGB(0xE5, 0xE5, 0xE5);
46 const SkColor kResultDefaultTextColor
= SkColorSetRGB(0x33, 0x33, 0x33);
47 const SkColor kResultDimmedTextColor
= SkColorSetRGB(0x84, 0x84, 0x84);
48 const SkColor kResultURLTextColor
= SkColorSetRGB(0x00, 0x99, 0x33);
50 const SkColor kGridTitleColor
= SkColorSetRGB(0x33, 0x33, 0x33);
51 const SkColor kGridTitleHoverColor
= kGridTitleColor
;
53 const SkColor kFolderTitleColor
= SkColorSetRGB(0x33, 0x33, 0x33);
54 const SkColor kFolderTitleHintTextColor
= SkColorSetRGB(0xA0, 0xA0, 0xA0);
55 // Color of the folder ink bubble.
56 const SkColor kFolderBubbleColor
= SK_ColorWHITE
;
57 // Color of the folder bubble shadow.
58 const SkColor kFolderShadowColor
= SkColorSetRGB(0xBF, 0xBF, 0xBF);
59 const float kFolderBubbleRadius
= 23;
60 const float kFolderShadowRadius
= 23.5;
61 const float kFolderShadowOffsetY
= 1;
63 const SkColor kCardBackgroundColor
= SK_ColorWHITE
;
65 // Duration in milliseconds for page transition.
66 const int kPageTransitionDurationInMs
= 180;
68 // Duration in milliseconds for over scroll page transition.
69 const int kOverscrollPageTransitionDurationMs
= 50;
71 // Duration in milliseconds for fading in the target page when opening
72 // or closing a folder, and the duration for the top folder icon animation
73 // for flying in or out the folder.
74 const int kFolderTransitionInDurationMs
= 400;
76 // Duration in milliseconds for fading out the old page when opening or closing
78 const int kFolderTransitionOutDurationMs
= 30;
80 // The height of the custom page widget when collapsed on the start page.
81 const int kCustomPageCollapsedHeight
= 78;
83 // Animation curve used for fading in the target page when opening or closing
85 const gfx::Tween::Type kFolderFadeInTweenType
= gfx::Tween::EASE_IN_2
;
87 // Animation curve used for fading out the target page when opening or closing
89 const gfx::Tween::Type kFolderFadeOutTweenType
= gfx::Tween::FAST_OUT_LINEAR_IN
;
91 // Preferred number of columns and rows in apps grid.
92 const int kPreferredCols
= 4;
93 const int kPreferredRows
= 4;
94 const int kGridIconDimension
= 48;
96 // Preferred search result icon sizes.
97 const int kListIconSize
= 24;
98 const int kTileIconSize
= 48;
100 // Preferred number of columns and rows in the centered app list apps grid.
101 const int kCenteredPreferredCols
= 6;
102 const int kCenteredPreferredRows
= 3;
104 // Preferred number of columns and rows in the experimental app list apps grid.
105 const int kExperimentalPreferredCols
= 6;
106 const int kExperimentalPreferredRows
= 4;
108 // Radius of the circle, in which if entered, show re-order preview.
109 const int kReorderDroppingCircleRadius
= 35;
111 // The padding around the outside of the experimental app list apps grid
113 const int kExperimentalAppsGridPadding
= 24;
115 // The padding around the outside of the experimental app list search box (top
117 const int kExperimentalSearchBoxPadding
= 16;
119 // Max items allowed in a folder.
120 size_t kMaxFolderItems
= 16;
122 // Number of the top items in a folder, which are shown inside the folder icon
123 // and animated when opening and closing a folder.
124 const size_t kNumFolderTopItems
= 4;
126 // Maximum length of the folder name in chars.
127 const size_t kMaxFolderNameChars
= 40;
129 // Font style for app item labels.
130 const ui::ResourceBundle::FontStyle kItemTextFontStyle
=
131 ui::ResourceBundle::SmallFont
;
133 // The UMA histogram that logs which page gets opened by the user.
134 const char kPageOpenedHistogram
[] = "Apps.AppListPageOpened";
136 // The UMA histogram that logs the type of search result opened.
137 const char kSearchResultOpenDisplayTypeHistogram
[] =
138 "Apps.AppListSearchResultOpenDisplayType";
140 #if defined(OS_LINUX)
141 #if defined(GOOGLE_CHROME_BUILD)
142 const char kAppListWMClass
[] = "chrome_app_list";
143 #else // CHROMIUM_BUILD
144 const char kAppListWMClass
[] = "chromium_app_list";
148 gfx::ShadowValue
GetShadowForZHeight(int z_height
) {
150 return gfx::ShadowValue();
154 return gfx::ShadowValue(gfx::Vector2d(0, 1), 2,
155 SkColorSetARGB(0x4C, 0, 0, 0));
157 return gfx::ShadowValue(gfx::Vector2d(0, 2), 4,
158 SkColorSetARGB(0x33, 0, 0, 0));
160 return gfx::ShadowValue(gfx::Vector2d(0, 8), 12,
161 SkColorSetARGB(0x3F, 0, 0, 0));
165 } // namespace app_list