forked from HaikuArchives/DeskNotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFontColourWindow.cpp
235 lines (193 loc) · 7.07 KB
/
FontColourWindow.cpp
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
// File: $RCSFile$
// Revision: $Revision: 1.1 $
// Date: $Date: 2011/03/20 21:57:39 $
#include "FontColourWindow.h"
// Bring the maths library in.
#include <math.h>
#include <MenuField.h>
#include <GroupLayoutBuilder.h>
#include <LayoutBuilder.h>
FontColourWindow::FontColourWindow(
BRect rect, BMessenger *msg, BMessage *initial)
:
BWindow (rect, "DeskNotes",
B_TITLED_WINDOW, B_NOT_RESIZABLE | B_NOT_ZOOMABLE | B_AUTO_UPDATE_SIZE_LIMITS | B_ASYNCHRONOUS_CONTROLS),
messenger(*msg)
{
ssize_t dataSize;
const void *dataPointer;
// Take a copy of the inital values to restore to if we cancel.
orginalSettings = new BMessage(*initial);
// Now find out what font we start with, and what colour we use.
initial -> FindData ("background_colour", B_RGB_COLOR_TYPE, &dataPointer, &dataSize);
background = (*(rgb_color *)dataPointer);
originalBackground = background;
initial -> FindData ("foreground_colour", B_RGB_COLOR_TYPE, &dataPointer, &dataSize);
foreground = (*(rgb_color *)dataPointer);
originalForeground = foreground;
initial -> FindData ("font_family_name", B_STRING_TYPE, &dataPointer, &dataSize);
strncpy(fontFamily, (const char*)dataPointer, dataSize);
initial -> FindData ("font_face", B_UINT16_TYPE, &dataPointer, &dataSize);
fontFace = (*(uint16 *)dataPointer);
colourPopupMenu = new BPopUpMenu ("Background Colour");
backgroundColourItem = new BMenuItem ("Background Colour", new BMessage (DN_COLOUR_MENU));
foregroundColourItem = new BMenuItem ("Foreground Colour", new BMessage (DN_COLOUR_MENU));
colourPopupMenu -> AddItem (backgroundColourItem);
colourPopupMenu -> AddItem (foregroundColourItem);
backgroundColourItem -> SetMarked(true);
colourMenu = new BMenuField(rect, "", "", colourPopupMenu);
colourMenu->SetDivider(0);
colourPopupMenu -> SetTargetForItems (this);
colourControl = new BColorControl (B_ORIGIN,
B_CELLS_32x8, 8.0, "Colour Selector", new BMessage (DN_COLOUR_CHANGE));
colourControl -> SetValue (background);
defaultsButton = new BButton ("Defaults", "Defaults", new BMessage (DN_PROPERTIES_DEFAULTS));
// Add the revert button, taking away the border added earlier.
revertButton = new BButton ("Revert", "Revert", new BMessage (DN_PROPERTIES_REVERT));
SetLayout(new BGroupLayout(B_VERTICAL));
AddChild(BLayoutBuilder::Group<>(B_VERTICAL)
.Add(colourMenu)
.Add(colourControl)
.AddGroup(B_HORIZONTAL)
.Add(defaultsButton)
.Add(revertButton)
.AddGlue()
.End()
.SetInsets(B_USE_DEFAULT_SPACING, B_USE_DEFAULT_SPACING,
B_USE_DEFAULT_SPACING, B_USE_DEFAULT_SPACING)
);
_CheckButtons();
}
bool FontColourWindow::IsDefaultsColor ()
{
return background == kDefaultBackgroundColor
&& foreground == kDefaultForegroundColor;
}
bool FontColourWindow::IsRevertableColor ()
{
return background != originalBackground
|| foreground != originalForeground;
}
void FontColourWindow::_CheckButtons()
{
defaultsButton->SetEnabled(!IsDefaultsColor());
revertButton->SetEnabled(IsRevertableColor());
}
void FontColourWindow::_UpdateColorControl()
{
if (colourPopupMenu->FindMarked() == backgroundColourItem)
colourControl -> SetValue (background);
if (colourPopupMenu->FindMarked() == foregroundColourItem)
colourControl -> SetValue (foreground);
}
void FontColourWindow::MessageReceived (BMessage *msg)
{
if (msg->WasDropped()) {
rgb_color* color = NULL;
ssize_t size = 0;
if (msg->FindData("RGBColor", (type_code)'RGBC', (const void**)&color,
&size) == B_OK) {
if (colourPopupMenu->FindMarked() == backgroundColourItem) {
background = *color;
colourControl -> SetValue (background);
}
if (colourPopupMenu->FindMarked() == foregroundColourItem) {
foreground = *color;
colourControl -> SetValue (foreground);
}
BMessage message(orginalSettings->what);
message.AddData ("background_colour",
B_RGB_COLOR_TYPE, &background, sizeof (rgb_color));
message.AddData ("foreground_colour",
B_RGB_COLOR_TYPE, &foreground, sizeof (rgb_color));
messenger.SendMessage (&message);
_CheckButtons();
return;
}
}
switch (msg -> what) {
case DN_COLOUR_MENU:
if (colourPopupMenu->FindMarked() == backgroundColourItem)
colourControl -> SetValue (background);
if (colourPopupMenu->FindMarked() == foregroundColourItem)
colourControl -> SetValue (foreground);
break;
case DN_COLOUR_CHANGE: {
BMessage message(orginalSettings->what);
if (colourPopupMenu->FindMarked() == backgroundColourItem)
background = colourControl -> ValueAsColor();
if (colourPopupMenu->FindMarked() == foregroundColourItem)
foreground = colourControl -> ValueAsColor();
message.AddData ("background_colour",
B_RGB_COLOR_TYPE, &background, sizeof (rgb_color));
message.AddData ("foreground_colour",
B_RGB_COLOR_TYPE, &foreground, sizeof (rgb_color));
messenger.SendMessage (&message);
_CheckButtons();
break;
}
case DN_PROPERTIES_REVERT:
// Restore the original settings.
messenger.SendMessage (orginalSettings);
background = originalBackground;
foreground = originalForeground;
_UpdateColorControl();
_CheckButtons();
break;
case DN_PROPERTIES_DEFAULTS: {
// Restore the default settings.
BMessage defaultSettings(*orginalSettings);
background = kDefaultBackgroundColor;
foreground = kDefaultForegroundColor;
defaultSettings.ReplaceData ("background_colour", B_RGB_COLOR_TYPE, &background, sizeof (rgb_color));
defaultSettings.ReplaceData ("foreground_colour", B_RGB_COLOR_TYPE, &foreground, sizeof (rgb_color));
messenger.SendMessage (&defaultSettings);
_UpdateColorControl();
_CheckButtons();
break;
}
case DN_PROPERTIES_URGENT_CLOSE:
// We need to close quickly - no messages should be sent back.
this -> Lock();
this -> Quit();
break;
default:
BWindow::MessageReceived (msg);
break;
}
}
FontColourWindow::~FontColourWindow ()
{
delete orginalSettings;
}
bool FontColourWindow::QuitRequested ()
{
BMessage message(DN_PROPERTIES_CLOSE);
messenger.SendMessage (&message);
return true;
}
void FontColourWindow::CalculateWindowFrame(BRect *windowFrame, BRect parentFrame)
{
BRect screenSize;
BScreen *currentScreen;
int width = 271;
int height = 115;
currentScreen = new BScreen();
screenSize = currentScreen -> Frame(); // Find out how big the screen is.
delete currentScreen; // Delete the object, unlock the screen.
windowFrame -> Set (parentFrame.left, parentFrame.top,
parentFrame.left + width, parentFrame.top + height);
// Ideal placing is just above and to the right of the replicant handle.
windowFrame -> OffsetBy (30, -30 + (parentFrame.bottom - parentFrame.top));
// If we are off the top of the screen we need to knock it down a bit.
if (windowFrame -> top < screenSize.top + 17) {
windowFrame -> OffsetBy (0, screenSize.top - windowFrame -> top + 17);
}
// If we are off the bottom of the screen we need to drag it back up.
if (windowFrame -> bottom + 5 > screenSize.bottom) {
windowFrame -> OffsetBy(0, (screenSize.bottom - windowFrame -> bottom) - 5);
}
if (windowFrame -> right > screenSize.right) {
windowFrame -> OffsetBy ((screenSize.right - windowFrame -> right) - 5, 0);
}
}