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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
// 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.
#ifndef CHROME_BROWSER_UI_PANELS_PANEL_CONSTANTS_H_
#define CHROME_BROWSER_UI_PANELS_PANEL_CONSTANTS_H_
namespace panel {
// The height in pixels of the titlebar.
static const int kTitlebarHeight = 36;
// Absolute minimum width and height for panels, including non-client area.
// Should only be big enough to accomodate a close button on the reasonably
// recognisable titlebar.
// These numbers are semi-arbitrary.
// Motivation for 'width' is to make main buttons on the titlebar functional.
// Motivation for height is to allow autosized tightly-wrapped panel with a
// single line of text - so the height is set to be likely less then a titlebar,
// to make sure even small content is tightly wrapped.
const int kPanelMinWidth = 80;
const int kPanelMinHeight = kTitlebarHeight + 10;
// The panel can be minimized to 4-pixel lines.
static const int kMinimizedPanelHeight = 4;
// The size (width or height) of the app icon (taskbar icon).
static const int kPanelAppIconSize = 32;
// The size (width or height) of the button, which is also the size of the
// hit target area.
static const int kPanelButtonSize = 24;
// The padding in pixeles between the icon and the left border.
const int kTitlebarLeftPadding = 10;
// The padding in pixeles between the close button and the right border.
const int kTitlebarRightPadding = 6;
// The padding in piexles between the icon and the title text.
const int kIconAndTitlePadding = 11;
// The padding in piexles between the title text and the button.
const int kTitleAndButtonPadding = 11;
// The padding in pixeles between buttons.
static const int kButtonPadding = 5;
// The number of times to flash the panel's taskbar icon in order to draw the
// user's attention (Windows only).
static const int kNumberOfTimesToFlashPanelForAttention = 30;
// Different types of buttons that can be shown on panel's titlebar.
enum TitlebarButtonType {
CLOSE_BUTTON,
MINIMIZE_BUTTON,
RESTORE_BUTTON
};
// Different platforms use different modifier keys to change the behavior
// of a mouse click. This enum captures the meaning of the modifier rather
// than the actual modifier key to generalize across platforms.
enum ClickModifier {
NO_MODIFIER,
APPLY_TO_ALL, // Apply the click behavior to all panels in the collection.
};
// Edge at which a panel is being resized using the mouse.
enum ResizingSides {
RESIZE_NONE = 0,
RESIZE_TOP,
RESIZE_TOP_RIGHT,
RESIZE_RIGHT,
RESIZE_BOTTOM_RIGHT,
RESIZE_BOTTOM,
RESIZE_BOTTOM_LEFT,
RESIZE_LEFT,
RESIZE_TOP_LEFT
};
// Ways a panel can be resized.
enum Resizability {
NOT_RESIZABLE = 0,
RESIZABLE_TOP = 0x1,
RESIZABLE_BOTTOM = 0x2,
RESIZABLE_LEFT = 0x4,
RESIZABLE_RIGHT = 0x8,
RESIZABLE_TOP_LEFT = 0x10,
RESIZABLE_TOP_RIGHT = 0x20,
RESIZABLE_BOTTOM_LEFT = 0x40,
RESIZABLE_BOTTOM_RIGHT = 0x80,
RESIZABLE_EXCEPT_BOTTOM = RESIZABLE_TOP | RESIZABLE_LEFT | RESIZABLE_RIGHT |
RESIZABLE_TOP_LEFT | RESIZABLE_TOP_RIGHT,
RESIZABLE_ALL = RESIZABLE_TOP | RESIZABLE_BOTTOM | RESIZABLE_LEFT |
RESIZABLE_RIGHT | RESIZABLE_TOP_LEFT | RESIZABLE_TOP_RIGHT |
RESIZABLE_BOTTOM_LEFT | RESIZABLE_BOTTOM_RIGHT
};
// Describes how 4 corners of a panel should be painted.
enum CornerStyle {
NOT_ROUNDED = 0,
TOP_ROUNDED = 0x1,
BOTTOM_ROUNDED = 0x2,
ALL_ROUNDED = TOP_ROUNDED | BOTTOM_ROUNDED
};
} // namespace panel
#endif // CHROME_BROWSER_UI_PANELS_PANEL_CONSTANTS_H_
|