Make castv2 performance test work.
[chromium-blink-merge.git] / ui / app_list / app_list_constants.h
blobeee4272b3be04c09b6f86496cf12e47aec535670
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 #ifndef UI_APP_LIST_APP_LIST_CONSTANTS_H_
6 #define UI_APP_LIST_APP_LIST_CONSTANTS_H_
8 #include "third_party/skia/include/core/SkColor.h"
9 #include "ui/app_list/app_list_export.h"
10 #include "ui/base/resource/resource_bundle.h"
11 #include "ui/gfx/animation/tween.h"
12 #include "ui/gfx/shadow_value.h"
14 namespace app_list {
16 APP_LIST_EXPORT extern const SkColor kContentsBackgroundColor;
17 APP_LIST_EXPORT extern const SkColor kSearchBoxBackground;
19 APP_LIST_EXPORT extern const SkColor kSearchTextColor;
21 APP_LIST_EXPORT extern const SkColor kLabelBackgroundColor;
22 APP_LIST_EXPORT extern const SkColor kTopSeparatorColor;
23 APP_LIST_EXPORT extern const SkColor kBottomSeparatorColor;
25 APP_LIST_EXPORT extern const SkColor kDialogSeparatorColor;
27 APP_LIST_EXPORT extern const SkColor kHighlightedColor;
28 APP_LIST_EXPORT extern const SkColor kSelectedColor;
30 APP_LIST_EXPORT extern const SkColor kPagerHoverColor;
31 APP_LIST_EXPORT extern const SkColor kPagerNormalColor;
32 APP_LIST_EXPORT extern const SkColor kPagerSelectedColor;
34 APP_LIST_EXPORT extern const SkColor kResultBorderColor;
35 APP_LIST_EXPORT extern const SkColor kResultDefaultTextColor;
36 APP_LIST_EXPORT extern const SkColor kResultDimmedTextColor;
37 APP_LIST_EXPORT extern const SkColor kResultURLTextColor;
39 APP_LIST_EXPORT extern const SkColor kGridTitleColor;
40 APP_LIST_EXPORT extern const SkColor kGridTitleHoverColor;
42 APP_LIST_EXPORT extern const SkColor kFolderTitleColor;
43 APP_LIST_EXPORT extern const SkColor kFolderTitleHintTextColor;
44 APP_LIST_EXPORT extern const SkColor kFolderBubbleColor;
45 APP_LIST_EXPORT extern const SkColor kFolderShadowColor;
46 APP_LIST_EXPORT extern const float kFolderBubbleRadius;
47 APP_LIST_EXPORT extern const float kFolderShadowRadius;
48 APP_LIST_EXPORT extern const float kFolderShadowOffsetY;
50 APP_LIST_EXPORT extern const SkColor kCardBackgroundColor;
52 APP_LIST_EXPORT extern const int kPageTransitionDurationInMs;
53 APP_LIST_EXPORT extern const int kOverscrollPageTransitionDurationMs;
54 APP_LIST_EXPORT extern const int kFolderTransitionInDurationMs;
55 APP_LIST_EXPORT extern const int kFolderTransitionOutDurationMs;
56 APP_LIST_EXPORT extern const int kCustomPageCollapsedHeight;
57 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeInTweenType;
58 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeOutTweenType;
60 APP_LIST_EXPORT extern const int kPreferredCols;
61 APP_LIST_EXPORT extern const int kPreferredRows;
62 APP_LIST_EXPORT extern const int kGridIconDimension;
64 APP_LIST_EXPORT extern const int kListIconSize;
65 APP_LIST_EXPORT extern const int kTileIconSize;
67 APP_LIST_EXPORT extern const int kCenteredPreferredCols;
68 APP_LIST_EXPORT extern const int kCenteredPreferredRows;
70 APP_LIST_EXPORT extern const int kExperimentalPreferredCols;
71 APP_LIST_EXPORT extern const int kExperimentalPreferredRows;
73 APP_LIST_EXPORT extern const int kReorderDroppingCircleRadius;
75 APP_LIST_EXPORT extern const int kExperimentalAppsGridPadding;
76 APP_LIST_EXPORT extern const int kExperimentalSearchBoxPadding;
78 APP_LIST_EXPORT extern size_t kMaxFolderItems;
79 APP_LIST_EXPORT extern const size_t kNumFolderTopItems;
80 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars;
82 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle;
84 APP_LIST_EXPORT extern const char kPageOpenedHistogram[];
85 APP_LIST_EXPORT extern const char kSearchResultOpenDisplayTypeHistogram[];
87 #if defined(OS_LINUX)
88 // The WM_CLASS name for the app launcher window on Linux.
89 APP_LIST_EXPORT extern const char kAppListWMClass[];
90 #endif
92 // Returns the shadow values for a view at |z_height|.
93 gfx::ShadowValue APP_LIST_EXPORT GetShadowForZHeight(int z_height);
95 } // namespace app_list
97 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_