forked from HaikuArchives/Weather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLabelView.cpp
38 lines (31 loc) · 924 Bytes
/
LabelView.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
/*
* Copyright 2015 Adrián Arroyo Calle <[email protected]>
* Copyright 2015 Przemysław Buczkowski <[email protected]>
* Copyright 2014 George White
* All rights reserved. Distributed under the terms of the MIT license.
*/
#include <Screen.h>
#include "LabelView.h"
LabelView::LabelView(const char* name, const char* text, uint32 flags)
:
BStringView(name, text, flags)
{
}
void
LabelView::Draw(BRect updateRect)
{
rgb_color color = HighColor();
if (ViewColor() == B_TRANSPARENT_COLOR) {
rgb_color low = BScreen(Window()).DesktopColor();
if (low.red + low.green + low.blue > 128 * 3) {
color = tint_color(low, B_DARKEN_MAX_TINT);
} else {
color = tint_color(low, B_LIGHTEN_MAX_TINT);
}
}
SetHighColor(color);
drawing_mode oldMode = DrawingMode();
SetDrawingMode(B_OP_OVER);
BStringView::Draw(updateRect);
SetDrawingMode(oldMode);
}