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 // The mouse hover colour (3% black).
29 const SkColor kHighlightedColor
= SkColorSetARGB(8, 0, 0, 0);
30 // The keyboard select colour (6% black).
31 const SkColor kSelectedColor
= SkColorSetARGB(15, 0, 0, 0);
33 const SkColor kPagerHoverColor
= SkColorSetRGB(0xB4, 0xB4, 0xB4);
34 const SkColor kPagerNormalColor
= SkColorSetRGB(0xE2, 0xE2, 0xE2);
35 const SkColor kPagerSelectedColor
= SkColorSetRGB(0x46, 0x8F, 0xFC);
37 const SkColor kResultBorderColor
= SkColorSetRGB(0xE5, 0xE5, 0xE5);
38 const SkColor kResultDefaultTextColor
= SkColorSetRGB(0x33, 0x33, 0x33);
39 const SkColor kResultDimmedTextColor
= SkColorSetRGB(0x84, 0x84, 0x84);
40 const SkColor kResultURLTextColor
= SkColorSetRGB(0x00, 0x99, 0x33);
42 const SkColor kGridTitleColor
= SkColorSetRGB(0x33, 0x33, 0x33);
44 const SkColor kFolderTitleColor
= SkColorSetRGB(0x33, 0x33, 0x33);
45 const SkColor kFolderTitleHintTextColor
= SkColorSetRGB(0xA0, 0xA0, 0xA0);
46 // Color of the folder ink bubble.
47 const SkColor kFolderBubbleColor
= SK_ColorWHITE
;
48 // Color of the folder bubble shadow.
49 const SkColor kFolderShadowColor
= SkColorSetRGB(0xBF, 0xBF, 0xBF);
50 const float kFolderBubbleRadius
= 23;
51 const float kFolderShadowRadius
= 23.5;
52 const float kFolderShadowOffsetY
= 1;
54 const SkColor kCardBackgroundColor
= SK_ColorWHITE
;
56 // Duration in milliseconds for page transition.
57 const int kPageTransitionDurationInMs
= 180;
59 // Duration in milliseconds for over scroll page transition.
60 const int kOverscrollPageTransitionDurationMs
= 50;
62 // Duration in milliseconds for fading in the target page when opening
63 // or closing a folder, and the duration for the top folder icon animation
64 // for flying in or out the folder.
65 const int kFolderTransitionInDurationMs
= 400;
67 // Duration in milliseconds for fading out the old page when opening or closing
69 const int kFolderTransitionOutDurationMs
= 30;
71 // The height of the custom page widget when collapsed on the start page.
72 const int kCustomPageCollapsedHeight
= 78;
74 // Animation curve used for fading in the target page when opening or closing
76 const gfx::Tween::Type kFolderFadeInTweenType
= gfx::Tween::EASE_IN_2
;
78 // Animation curve used for fading out the target page when opening or closing
80 const gfx::Tween::Type kFolderFadeOutTweenType
= gfx::Tween::FAST_OUT_LINEAR_IN
;
82 // Preferred number of columns and rows in apps grid.
83 const int kPreferredCols
= 4;
84 const int kPreferredRows
= 4;
85 const int kGridIconDimension
= 48;
87 // Preferred search result icon sizes.
88 const int kListIconSize
= 24;
89 const int kTileIconSize
= 48;
91 // Preferred number of columns and rows in the centered app list apps grid.
92 const int kCenteredPreferredCols
= 6;
93 const int kCenteredPreferredRows
= 3;
95 // Preferred number of columns and rows in the experimental app list apps grid.
96 const int kExperimentalPreferredCols
= 6;
97 const int kExperimentalPreferredRows
= 4;
99 // Radius of the circle, in which if entered, show re-order preview.
100 const int kReorderDroppingCircleRadius
= 35;
102 // The padding around the outside of the experimental app list apps grid
104 const int kExperimentalAppsGridPadding
= 24;
106 // The padding around the outside of the experimental app list search box (top
108 const int kExperimentalSearchBoxPadding
= 16;
110 // Max items allowed in a folder.
111 size_t kMaxFolderItems
= 16;
113 // Number of the top items in a folder, which are shown inside the folder icon
114 // and animated when opening and closing a folder.
115 const size_t kNumFolderTopItems
= 4;
117 // Maximum length of the folder name in chars.
118 const size_t kMaxFolderNameChars
= 40;
120 // Font style for app item labels.
121 const ui::ResourceBundle::FontStyle kItemTextFontStyle
=
122 ui::ResourceBundle::SmallFont
;
124 // The UMA histogram that logs which page gets opened by the user.
125 const char kPageOpenedHistogram
[] = "Apps.AppListPageOpened";
127 // The UMA histogram that logs the type of search result opened.
128 const char kSearchResultOpenDisplayTypeHistogram
[] =
129 "Apps.AppListSearchResultOpenDisplayType";
131 // The UMA histogram that logs how long the search query was when a result was
133 const char kSearchQueryLength
[] = "Apps.AppListSearchQueryLength";
135 // The UMA histogram that logs the Manhattan distance from the origin of the
136 // search results to the selected result.
137 const char kSearchResultDistanceFromOrigin
[] =
138 "Apps.AppListSearchResultDistanceFromOrigin";
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