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(0xF5, 0xF5, 0xF5);
10 const SkColor kSearchBoxBackground
= SK_ColorWHITE
;
12 // In Windows, transparent background color will cause ugly text rendering,
13 // therefore kContentsBackgroundColor should be used. See crbug.com/406989
14 #if defined(OS_CHROMEOS)
15 const SkColor kLabelBackgroundColor
= SK_ColorTRANSPARENT
;
17 const SkColor kLabelBackgroundColor
= kContentsBackgroundColor
;
20 const SkColor kTopSeparatorColor
= SkColorSetRGB(0xC0, 0xC0, 0xC0);
21 const SkColor kBottomSeparatorColor
= SkColorSetRGB(0xC0, 0xC0, 0xC0);
23 // The color of the separator used inside dialogs in the app list.
24 const SkColor kDialogSeparatorColor
= SkColorSetRGB(0xD1, 0xD1, 0xD1);
26 // The mouse hover colour (3% black over kContentsBackgroundColor).
27 const SkColor kHighlightedColor
= SkColorSetRGB(0xEE, 0xEE, 0xEE);
28 // The keyboard select colour (6% black over kContentsBackgroundColor).
29 const SkColor kSelectedColor
= SkColorSetRGB(0xE6, 0xE6, 0xE6);
31 const SkColor kPagerHoverColor
= SkColorSetRGB(0xB4, 0xB4, 0xB4);
32 const SkColor kPagerNormalColor
= SkColorSetRGB(0xE2, 0xE2, 0xE2);
33 const SkColor kPagerSelectedColor
= SkColorSetRGB(0x46, 0x8F, 0xFC);
35 const SkColor kResultBorderColor
= SkColorSetRGB(0xE5, 0xE5, 0xE5);
36 const SkColor kResultDefaultTextColor
= SkColorSetRGB(0x33, 0x33, 0x33);
37 const SkColor kResultDimmedTextColor
= SkColorSetRGB(0x96, 0x96, 0x96);
38 const SkColor kResultURLTextColor
= SkColorSetRGB(0x00, 0x99, 0x33);
40 const SkColor kGridTitleColor
= SkColorSetRGB(0x33, 0x33, 0x33);
41 const SkColor kGridTitleHoverColor
= kGridTitleColor
;
43 const SkColor kFolderTitleColor
= SkColorSetRGB(0x33, 0x33, 0x33);
44 const SkColor kFolderTitleHintTextColor
= SkColorSetRGB(0xA0, 0xA0, 0xA0);
45 // Color of the folder ink bubble.
46 const SkColor kFolderBubbleColor
= SK_ColorWHITE
;
47 // Color of the folder bubble shadow.
48 const SkColor kFolderShadowColor
= SkColorSetRGB(0xBF, 0xBF, 0xBF);
49 const float kFolderBubbleRadius
= 23;
50 const float kFolderShadowRadius
= 23.5;
51 const float kFolderShadowOffsetY
= 1;
53 const int kCardShadowBlur
= 4;
54 const int kCardShadowYOffset
= 1;
55 const SkColor kCardShadowColor
= SkColorSetARGB(0x4C, 0, 0, 0);
56 const SkColor kCardBackgroundColor
= SK_ColorWHITE
;
58 // Duration in milliseconds for page transition.
59 const int kPageTransitionDurationInMs
= 180;
61 // Duration in milliseconds for over scroll page transition.
62 const int kOverscrollPageTransitionDurationMs
= 50;
64 // Duration in milliseconds for fading in the target page when opening
65 // or closing a folder, and the duration for the top folder icon animation
66 // for flying in or out the folder.
67 const int kFolderTransitionInDurationMs
= 400;
69 // Duration in milliseconds for fading out the old page when opening or closing
71 const int kFolderTransitionOutDurationMs
= 30;
73 // The height of the custom page widget when collapsed on the start page.
74 const int kCustomPageCollapsedHeight
= 78;
76 // Animation curve used for fading in the target page when opening or closing
78 const gfx::Tween::Type kFolderFadeInTweenType
= gfx::Tween::EASE_IN_2
;
80 // Animation curve used for fading out the target page when opening or closing
82 const gfx::Tween::Type kFolderFadeOutTweenType
= gfx::Tween::FAST_OUT_LINEAR_IN
;
84 // Preferred number of columns and rows in apps grid.
85 const int kPreferredCols
= 4;
86 const int kPreferredRows
= 4;
87 const int kGridIconDimension
= 48;
89 // Preferred search result icon sizes.
90 const int kListIconSize
= 32;
91 const int kTileIconSize
= 48;
93 // Preferred number of columns and rows in the centered app list apps grid.
94 const int kCenteredPreferredCols
= 6;
95 const int kCenteredPreferredRows
= 3;
97 // Preferred number of columns and rows in the experimental app list apps grid.
98 const int kExperimentalPreferredCols
= 6;
99 const int kExperimentalPreferredRows
= 4;
101 // Radius of the circle, in which if entered, show re-order preview.
102 const int kReorderDroppingCircleRadius
= 35;
104 // The padding around the outside of the experimental app list (top and sides).
105 const int kExperimentalWindowPadding
= 24;
107 // Max items allowed in a folder.
108 size_t kMaxFolderItems
= 16;
110 // Number of the top items in a folder, which are shown inside the folder icon
111 // and animated when opening and closing a folder.
112 const size_t kNumFolderTopItems
= 4;
114 // Maximum length of the folder name in chars.
115 const size_t kMaxFolderNameChars
= 40;
117 // Font style for app item labels.
118 const ui::ResourceBundle::FontStyle kItemTextFontStyle
=
119 ui::ResourceBundle::SmallBoldFont
;
121 #if defined(OS_LINUX)
122 #if defined(GOOGLE_CHROME_BUILD)
123 const char kAppListWMClass
[] = "chrome_app_list";
124 #else // CHROMIUM_BUILD
125 const char kAppListWMClass
[] = "chromium_app_list";
129 } // namespace app_list