platformKeys: Add per-extension sign permissions.
[chromium-blink-merge.git] / ui / app_list / app_list_constants.h
blobf3b4f33d11f4c8b893204f5c4be22f25b3ead7bf
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;
18 APP_LIST_EXPORT extern const SkColor kLabelBackgroundColor;
19 APP_LIST_EXPORT extern const SkColor kTopSeparatorColor;
20 APP_LIST_EXPORT extern const SkColor kBottomSeparatorColor;
22 APP_LIST_EXPORT extern const SkColor kDialogSeparatorColor;
24 APP_LIST_EXPORT extern const SkColor kHighlightedColor;
25 APP_LIST_EXPORT extern const SkColor kSelectedColor;
27 APP_LIST_EXPORT extern const SkColor kPagerHoverColor;
28 APP_LIST_EXPORT extern const SkColor kPagerNormalColor;
29 APP_LIST_EXPORT extern const SkColor kPagerSelectedColor;
31 APP_LIST_EXPORT extern const SkColor kResultBorderColor;
32 APP_LIST_EXPORT extern const SkColor kResultDefaultTextColor;
33 APP_LIST_EXPORT extern const SkColor kResultDimmedTextColor;
34 APP_LIST_EXPORT extern const SkColor kResultURLTextColor;
36 APP_LIST_EXPORT extern const SkColor kGridTitleColor;
37 APP_LIST_EXPORT extern const SkColor kGridTitleHoverColor;
39 APP_LIST_EXPORT extern const SkColor kFolderTitleColor;
40 APP_LIST_EXPORT extern const SkColor kFolderTitleHintTextColor;
41 APP_LIST_EXPORT extern const SkColor kFolderBubbleColor;
42 APP_LIST_EXPORT extern const SkColor kFolderShadowColor;
43 APP_LIST_EXPORT extern const float kFolderBubbleRadius;
44 APP_LIST_EXPORT extern const float kFolderShadowRadius;
45 APP_LIST_EXPORT extern const float kFolderShadowOffsetY;
47 APP_LIST_EXPORT extern const SkColor kCardBackgroundColor;
49 APP_LIST_EXPORT extern const int kPageTransitionDurationInMs;
50 APP_LIST_EXPORT extern const int kOverscrollPageTransitionDurationMs;
51 APP_LIST_EXPORT extern const int kFolderTransitionInDurationMs;
52 APP_LIST_EXPORT extern const int kFolderTransitionOutDurationMs;
53 APP_LIST_EXPORT extern const int kCustomPageCollapsedHeight;
54 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeInTweenType;
55 APP_LIST_EXPORT extern const gfx::Tween::Type kFolderFadeOutTweenType;
57 APP_LIST_EXPORT extern const int kPreferredCols;
58 APP_LIST_EXPORT extern const int kPreferredRows;
59 APP_LIST_EXPORT extern const int kGridIconDimension;
61 APP_LIST_EXPORT extern const int kListIconSize;
62 APP_LIST_EXPORT extern const int kTileIconSize;
64 APP_LIST_EXPORT extern const int kCenteredPreferredCols;
65 APP_LIST_EXPORT extern const int kCenteredPreferredRows;
67 APP_LIST_EXPORT extern const int kExperimentalPreferredCols;
68 APP_LIST_EXPORT extern const int kExperimentalPreferredRows;
70 APP_LIST_EXPORT extern const int kReorderDroppingCircleRadius;
72 APP_LIST_EXPORT extern const int kExperimentalAppsGridPadding;
73 APP_LIST_EXPORT extern const int kExperimentalSearchBoxPadding;
75 APP_LIST_EXPORT extern size_t kMaxFolderItems;
76 APP_LIST_EXPORT extern const size_t kNumFolderTopItems;
77 APP_LIST_EXPORT extern const size_t kMaxFolderNameChars;
79 APP_LIST_EXPORT extern const ui::ResourceBundle::FontStyle kItemTextFontStyle;
81 #if defined(OS_LINUX)
82 // The WM_CLASS name for the app launcher window on Linux.
83 APP_LIST_EXPORT extern const char kAppListWMClass[];
84 #endif
86 // Returns the shadow values for a view at |z_height|.
87 gfx::ShadowValue APP_LIST_EXPORT GetShadowForZHeight(int z_height);
89 } // namespace app_list
91 #endif // UI_APP_LIST_APP_LIST_CONSTANTS_H_