-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhgui_gui_common.c
150 lines (140 loc) · 2.73 KB
/
hgui_gui_common.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
/***************************************************************
* Name: hgui_gui_common.c
* Purpose: 实现common接口
* Author: HYH (hyhsystem.cn)
* Created: 2024-11-24
* Copyright: HYH (hyhsystem.cn)
* License: MIT
**************************************************************/
#include "hgui_gui_common.h"
#include "hdefaults.h"
static hgui_gui_malloc_t malloc_hook=NULL;
void * hgui_gui_malloc(size_t nBytes)
{
if(malloc_hook!=NULL)
{
return malloc_hook(nBytes);
}
else
{
return hgui_gui_default_malloc(nBytes);
}
}
void hgui_gui_malloc_set(hgui_gui_malloc_t hook)
{
malloc_hook=hook;
}
void * hgui_gui_default_malloc(size_t nBytes)
{
if(nBytes==0)
{
return NULL;
}
return hdefaults_malloc(nBytes,NULL);
}
static hgui_gui_free_t free_hook=NULL;
void hgui_gui_free(void *ptr)
{
if(free_hook!=NULL)
{
free_hook(ptr);
}
else
{
hgui_gui_default_free(ptr);
}
}
void hgui_gui_free_set(hgui_gui_free_t hook)
{
free_hook=hook;
}
void hgui_gui_default_free(void *ptr)
{
if(ptr==NULL)
{
return;
}
hdefaults_free(ptr,NULL);
}
hgui_gui_common_rectangle_t hgui_gui_common_rectangle_absolute_convert(hgui_gui_common_rectangle_t rect,size_t x,size_t y,size_t w,size_t h)
{
if(rect.x < 0)
{
switch(rect.x)
{
case HGUI_GUI_COMMON_RECTANGLE_X_LEFT:
{
rect.x=x;
}
break;
case HGUI_GUI_COMMON_RECTANGLE_X_CENTER:
{
if(rect.w < w)
{
rect.x=x+(w-rect.w)/2;
}
else
{
rect.x=x;
}
}
break;
case HGUI_GUI_COMMON_RECTANGLE_X_RIGHT:
{
if(rect.w < w)
{
rect.x=x+(w-rect.w);
}
else
{
rect.x=x;
}
}
break;
default:
{
}
break;
}
}
if(rect.y < 0)
{
switch(rect.y)
{
case HGUI_GUI_COMMON_RECTANGLE_Y_TOP:
{
rect.y=y;
}
break;
case HGUI_GUI_COMMON_RECTANGLE_Y_CENTER:
{
if(rect.h<h)
{
rect.y=y+(h-rect.h)/2;
}
else
{
rect.y=y;
}
}
break;
case HGUI_GUI_COMMON_RECTANGLE_Y_BOTTOM:
{
if(rect.h<h)
{
rect.y=y+(h-rect.h);
}
else
{
rect.y=y;
}
}
break;
default:
{
}
break;
}
}
return rect;
}