1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/message_center/message_center_style.h"
namespace message_center {
// Exported values /////////////////////////////////////////////////////////////
// Square image sizes in pixels.
const int kNotificationButtonIconSize = 16;
const int kNotificationIconSize = 80;
// Same as kNotificationWidth.
const int kNotificationPreferredImageSize = 360;
const float kNotificationPreferredImageRatio = 1.5;
const int kSettingsIconSize = 16;
// Limits.
const size_t kMaxVisibleMessageCenterNotifications = 100;
const size_t kMaxVisiblePopupNotifications = 3;
// Within a notification ///////////////////////////////////////////////////////
// Pixel dimensions.
const int kControlButtonSize = 29;
const int kNotificationWidth = 360;
const int kIconToTextPadding = 16;
const int kTextTopPadding = 12;
// Text sizes.
const int kTitleFontSize = 14;
const int kTitleLineHeight = 20;
const int kMessageFontSize = 12;
const int kMessageLineHeight = 18;
// Colors.
const SkColor kNotificationBackgroundColor = SkColorSetRGB(255, 255, 255);
const SkColor kLegacyIconBackgroundColor = SkColorSetRGB(0xf5, 0xf5, 0xf5);
const SkColor kRegularTextColor = SkColorSetRGB(34, 34, 34);
const SkColor kDimTextColor = SkColorSetRGB(102, 102, 102);
const SkColor kFocusBorderColor = SkColorSetRGB(64, 128, 250);
// Limits.
gfx::Size GetImageSizeForWidth(int width, const gfx::Size& image_size) {
const int kNotificationMaximumImageHeight =
kNotificationWidth * kNotificationPreferredImageRatio;
gfx::Size size = image_size;
if (width > 0 && !size.IsEmpty()) {
double proportion = size.height() / static_cast<double>(size.width());
size.SetSize(width, std::max(0.5 + width * proportion, 1.0));
if (size.height() > kNotificationMaximumImageHeight) {
int height = kNotificationMaximumImageHeight;
size.SetSize(std::max(0.5 + height / proportion, 1.0), height);
}
}
return size;
}
const size_t kNotificationMaximumItems = 5;
// Timing.
const int kAutocloseDefaultDelaySeconds = 8;
const int kAutocloseHighPriorityDelaySeconds = 25;
// Around notifications ////////////////////////////////////////////////////////
// Pixel dimensions.
const int kMarginBetweenItems = 10;
// Colors.
const SkColor kBackgroundLightColor = SkColorSetRGB(0xf1, 0xf1, 0xf1);
const SkColor kBackgroundDarkColor = SkColorSetRGB(0xe7, 0xe7, 0xe7);
const SkColor kShadowColor = SkColorSetARGB(0.3 * 255, 0, 0, 0);
const SkColor kMessageCenterBackgroundColor = SkColorSetRGB(0xee, 0xee, 0xee);
const SkColor kFooterDelimiterColor = SkColorSetRGB(0xcc, 0xcc, 0xcc);
const SkColor kFooterTextColor = SkColorSetRGB(0x7b, 0x7b, 0x7b);
} // namespace message_center
|