forked from lc-soft/LCUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_widget_flex_layout.c
182 lines (170 loc) · 4.67 KB
/
test_widget_flex_layout.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
177
178
179
180
181
182
#include <LCUI_Build.h>
#include <LCUI/LCUI.h>
#include <LCUI/timer.h>
#include <LCUI/display.h>
#include <LCUI/gui/widget.h>
#include <LCUI/gui/builder.h>
#include <stdio.h>
#include "test.h"
#define SCREEN_WIDTH 680
#define SCREEN_HEIGHT 480
#define BLOCK_SIZE 74
static int check_flex_box_1( void )
{
char str[256];
int ret = 0, i = 0;
LinkedListNode *node;
LCUI_Widget child, box;
float simples[][2] = {
{ 0, 0 },
{ BLOCK_SIZE, 0 },
{ BLOCK_SIZE * 2, 0 },
{ 0, BLOCK_SIZE },
{ 0, BLOCK_SIZE * 2 },
{ BLOCK_SIZE, BLOCK_SIZE * 2 }
};
box = LCUIWidget_GetById( "flex-box-1" );
CHECK( box->x == 0 && box->y == 0 );
CHECK( box->height == BLOCK_SIZE * 3 + 1 );
for( LinkedList_Each( node, &box->children ) ) {
child = node->data;
sprintf( str, "[%zu] (%g, %g) == (%g, %g)", child->index,
child->x, child->y, simples[i][0], simples[i][1] );
CHECK_WITH_TEXT( str, child->x == simples[i][0] &&
child->y == simples[i][1] );
i += 1;
}
return ret;
}
static int check_flex_box_2( void )
{
char str[256];
int ret = 0, i = 0;
LinkedListNode *node;
LCUI_Widget child, box;
const float offset_x1 = (SCREEN_WIDTH - BLOCK_SIZE * 3) / 2.0;
const float offset_x2 = (SCREEN_WIDTH - BLOCK_SIZE * 2) / 2.0;
float simples[][2] = {
{ offset_x1, 0 },
{ offset_x1 + BLOCK_SIZE, 0 },
{ offset_x1 + BLOCK_SIZE * 2, 0 },
{ 0, BLOCK_SIZE },
{ offset_x2, BLOCK_SIZE * 2 },
{ offset_x2 + BLOCK_SIZE, BLOCK_SIZE * 2 }
};
box = LCUIWidget_GetById( "flex-box-2" );
CHECK( box->x == 0 && box->y == BLOCK_SIZE * 3 + 1 );
CHECK( box->height == BLOCK_SIZE * 3 + 1 );
for( LinkedList_Each( node, &box->children ) ) {
child = node->data;
sprintf( str, "[%zu] (%g, %g) == (%g, %g)", child->index,
child->x, child->y, simples[i][0], simples[i][1] );
CHECK_WITH_TEXT( str, child->x == simples[i][0] &&
child->y == simples[i][1] );
i += 1;
}
return ret;
}
static int check_flex_box_3( void )
{
char str[256];
int ret = 0, i = 0;
LinkedListNode *node;
LCUI_Widget child, box;
const float offset_x1 = SCREEN_WIDTH - BLOCK_SIZE * 3;
const float offset_x2 = SCREEN_WIDTH - BLOCK_SIZE * 2;
float simples[][2] = {
{ offset_x1, 0 },
{ offset_x1 + BLOCK_SIZE, 0 },
{ offset_x1 + BLOCK_SIZE * 2, 0 },
{ 0, BLOCK_SIZE },
{ offset_x2, BLOCK_SIZE * 2 },
{ offset_x2 + BLOCK_SIZE, BLOCK_SIZE * 2 }
};
box = LCUIWidget_GetById( "flex-box-3" );
CHECK( box->x == 0 && box->y == BLOCK_SIZE * 3 * 2 + 2 );
CHECK( box->height == BLOCK_SIZE * 3 + 1 );
for( LinkedList_Each( node, &box->children ) ) {
child = node->data;
sprintf( str, "[%zu] (%g, %g) == (%g, %g)", child->index,
child->x, child->y, simples[i][0], simples[i][1] );
CHECK_WITH_TEXT( str, child->x == simples[i][0] &&
child->y == simples[i][1] );
i += 1;
}
return ret;
}
static int check_flex_box_4( void )
{
char str[256];
int ret = 0, i = 0;
LinkedListNode *node;
LCUI_Widget child, box;
const float offset_x = 480 - BLOCK_SIZE * 3;
float simples[][2] = {
{ 0, 0 },
{ offset_x, BLOCK_SIZE },
{ offset_x + BLOCK_SIZE, BLOCK_SIZE },
{ offset_x + BLOCK_SIZE * 2, BLOCK_SIZE }
};
box = LCUIWidget_GetById( "flex-box-4" );
CHECK( box->height == BLOCK_SIZE * 2 );
for( LinkedList_Each( node, &box->children ) ) {
child = node->data;
sprintf( str, "[%zu] (%g, %g) == (%g, %g)", child->index,
child->x, child->y, simples[i][0], simples[i][1] );
CHECK_WITH_TEXT( str, child->x == simples[i][0] &&
child->y == simples[i][1] );
i += 1;
}
return ret;
}
static int check_layout( void )
{
int ret = 0;
ret += check_flex_box_1();
ret += check_flex_box_2();
ret += check_flex_box_3();
ret += check_flex_box_4();
return ret;
}
int test_widget_flex_layout( void )
{
int ret = 0;
LCUI_Widget root, pack;
LCUI_Init();
TEST_LOG( "test widget flex layout\n" );
LCUIDisplay_SetSize( SCREEN_WIDTH, SCREEN_HEIGHT );
root = LCUIWidget_GetRoot();
CHECK( pack = LCUIBuilder_LoadFile( "test_widget_flex_layout.xml" ) );
if( !pack ) {
LCUI_Destroy();
return ret;
}
Widget_UpdateStyle( root, TRUE );
Widget_Append( root, pack );
Widget_Unwrap( pack );
LCUIWidget_Update();
ret += check_layout();
LCUI_Destroy();
return ret;
}
#ifdef PREVIEW_MODE
#include <errno.h>
int tests_count = 0;
int main( void )
{
LCUI_Widget root, pack;
LCUI_Init();
LCUIDisplay_SetSize( SCREEN_WIDTH, SCREEN_HEIGHT );
root = LCUIWidget_GetRoot();
pack = LCUIBuilder_LoadFile( "test_widget_flex_layout.xml" );
if( !pack ) {
LCUI_Destroy();
return -ENOENT;
}
Widget_Append( root, pack );
Widget_Unwrap( pack );
return LCUI_Main();
}
#endif