forked from lc-soft/LCUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_widget_opacity.c
176 lines (143 loc) · 4.61 KB
/
test_widget_opacity.c
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
#include <stdio.h>
#include <stdlib.h>
#include <LCUI_Build.h>
#include <LCUI/LCUI.h>
#include <LCUI/gui/widget.h>
#include <LCUI/gui/widget/textview.h>
#include <LCUI/gui/css_parser.h>
#include <LCUI/gui/builder.h>
#include "test.h"
#define PARENT_OPACITY 0.8f
#define CHILD_OPACITY 0.5f
static struct {
LCUI_Widget parent;
LCUI_Widget child;
LCUI_Widget text;
} self;
static void build(void)
{
LCUI_Widget pack, root;
pack = LCUIBuilder_LoadFile("test_widget_opacity.xml");
root = LCUIWidget_GetRoot();
Widget_Append(root, pack);
Widget_Unwrap(pack);
self.parent = LCUIWidget_GetById("parent");
self.child = LCUIWidget_GetById("child");
self.text = LCUIWidget_GetById("current-opacity");
}
static int check_color(LCUI_Color a, LCUI_Color b)
{
return abs(a.r - b.r) < 2 && abs(a.g - b.g) < 2 && abs(a.b - b.b) < 2;
}
static int check_widget_opactiy(void)
{
int ret = 0;
LCUI_Graph canvas;
LCUI_Color color;
LCUI_Color tmp;
LCUI_Color expected_color;
LCUI_Color child_bgcolor = RGB(0, 255, 0);
LCUI_Color child_footer_bgcolor = RGB(255, 255, 255);
LCUI_Color parent_bgcolor = RGB(255, 0, 0);
LCUI_Color parent_bcolor = RGB(0, 0, 0);
LCUI_Color bgcolor = RGB(255, 255, 255);
LCUI_Rect rect = { 0, 0, 400, 256 };
LCUI_PaintContextRec paint;
Graph_Init(&canvas);
Graph_Create(&canvas, rect.width, rect.height);
Graph_FillRect(&canvas, bgcolor, NULL, FALSE);
paint.with_alpha = FALSE;
paint.rect.width = 400;
paint.rect.height = 256;
paint.rect.x = paint.rect.y = 0;
Graph_Quote(&paint.canvas, &canvas, &rect);
Widget_SetOpacity(self.parent, 0.8f);
Widget_Resize(self.parent, 512, 256);
Widget_UpdateStyle(self.child, TRUE);
Widget_UpdateStyle(self.parent, TRUE);
Widget_Update(self.child);
Widget_Update(self.parent);
Widget_Update(self.parent);
Widget_Render(self.parent, &paint);
expected_color = bgcolor;
Graph_GetPixel(&canvas, 10, 10, color);
PIXEL_BLEND(&expected_color, &parent_bcolor, (int)(PARENT_OPACITY * 255));
CHECK_WITH_TEXT("check parent border color",
check_color(expected_color, color));
expected_color = bgcolor;
Graph_GetPixel(&canvas, 30, 30, color);
PIXEL_BLEND(&expected_color, &parent_bgcolor, (int)(PARENT_OPACITY * 255));
CHECK_WITH_TEXT("check parent background color",
check_color(expected_color, color));
tmp = parent_bgcolor;
expected_color = bgcolor;
Graph_GetPixel(&canvas, 60, 90, color);
PIXEL_BLEND(&tmp, &child_bgcolor, (int)(CHILD_OPACITY * 255));
PIXEL_BLEND(&expected_color, &tmp, (int)(PARENT_OPACITY * 255));
CHECK_WITH_TEXT("check child 1 background color",
check_color(expected_color, color));
tmp = parent_bgcolor;
expected_color = bgcolor;
Graph_GetPixel(&canvas, 60, 120, color);
PIXEL_BLEND(&tmp, &child_footer_bgcolor, (int)(CHILD_OPACITY * 255));
PIXEL_BLEND(&expected_color, &tmp, (int)(PARENT_OPACITY * 255));
CHECK_WITH_TEXT("check child 1 footer background color",
check_color(expected_color, color));
expected_color = bgcolor;
Graph_GetPixel(&canvas, 220, 90, color);
PIXEL_BLEND(&expected_color, &child_bgcolor,
(int)(PARENT_OPACITY * 255));
CHECK_WITH_TEXT("check child 2 background color",
check_color(expected_color, color));
expected_color = child_footer_bgcolor;
Graph_GetPixel(&canvas, 220, 120, color);
CHECK_WITH_TEXT("check child 2 footer background color",
check_color(expected_color, color));
Graph_Free(&canvas);
return ret;
}
int test_widget_opacity(void)
{
int ret;
LCUI_Init();
build();
ret = check_widget_opactiy();
LCUI_Destroy();
return ret;
}
#ifdef PREVIEW_MODE
int tests_count = 0;
static void OnOpacityPlus(LCUI_Widget w, LCUI_WidgetEvent e, void *arg)
{
wchar_t str[32];
float opacity = self.parent->computed_style.opacity - 0.1f;
if (opacity < 0.1f) {
opacity = 0.1f;
}
swprintf(str, 32, L"%.1f", opacity);
Widget_SetOpacity(self.parent, opacity);
TextView_SetTextW(self.text, str);
}
static void OnOpacityMinus(LCUI_Widget w, LCUI_WidgetEvent e, void *arg)
{
wchar_t str[32];
float opacity = self.parent->computed_style.opacity + 0.1f;
if (opacity > 1.0f) {
opacity = 1.0f;
}
swprintf(str, 32, L"%.1f", opacity);
Widget_SetOpacity(self.parent, opacity);
TextView_SetTextW(self.text, str);
}
int main(void)
{
LCUI_Widget btn_plus, btn_minus;
LCUI_Init();
build();
btn_plus = LCUIWidget_GetById("btn-plus");
btn_minus = LCUIWidget_GetById("btn-minus");
Widget_BindEvent(btn_plus, "click", OnOpacityPlus, NULL, NULL);
Widget_BindEvent(btn_minus, "click", OnOpacityMinus, NULL, NULL);
return LCUI_Main();
}
#endif