VSF Documented
vsf_tgui_v_type.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Copyright(C)2009-2022 by VSF Team *
3 * *
4 * Licensed under the Apache License, Version 2.0 (the "License"); *
5 * you may not use this file except in compliance with the License. *
6 * You may obtain a copy of the License at *
7 * *
8 * http://www.apache.org/licenses/LICENSE-2.0 *
9 * *
10 * Unless required by applicable law or agreed to in writing, software *
11 * distributed under the License is distributed on an "AS IS" BASIS, *
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
13 * See the License for the specific language governing permissions and *
14 * limitations under the License. *
15 * *
16 ****************************************************************************/
17
18#ifndef __VSF_TINY_GUI_V_TMPLATE_TYPE_H__
19#define __VSF_TINY_GUI_V_TMPLATE_TYPE_H__
20
21/*============================ INCLUDES ======================================*/
22
23#include "../../vsf_tgui_cfg.h"
24
25#if VSF_USE_TINY_GUI == ENABLED \
26 && VSF_TGUI_CFG_RENDERING_TEMPLATE_SEL == VSF_TGUI_V_TEMPLATE_SIMPLE_VIEW
27
28#include "./vsf_tgui_sv_color.h"
29
30#include "../../port/view/vsf_tgui_sv_port.h"
31
32#ifdef __cplusplus
33extern "C" {
34#endif
35
36/*============================ MACROS ========================================*/
37
38#ifndef VSF_TGUI_CFG_V_SUPPORT_FLUXIBLE_BACKGROUND_COLOR
39# define VSF_TGUI_CFG_V_SUPPORT_FLUXIBLE_BACKGROUND_COLOR ENABLED
40#endif
41
42#if VSF_TGUI_CFG_V_SUPPORT_FLUXIBLE_BACKGROUND_COLOR == DISLABED
43#ifndef VSF_TGUI_CFG_V_SUPPORT_FIXED_BACKGROUND_COLOR
44# define VSF_TGUI_CFG_V_SUPPORT_FIXED_BACKGROUND_COLOR ENABLED
45#endif
46#endif
47
48#ifndef VSF_TGUI_CFG_V_SUPPORT_TILE_TRANSPARENCY
49# define VSF_TGUI_CFG_V_SUPPORT_TILE_TRANSPARENCY ENABLED
50#endif
51
52#ifndef VSF_TGUI_CFG_V_SUPPORT_CORNER_TILE
53# define VSF_TGUI_CFG_V_SUPPORT_CORNER_TILE ENABLED
54#endif
55
56#ifndef VSF_TGUI_CFG_V_LABLE_SUPPORT_TEXT_COLOR
57# define VSF_TGUI_CFG_V_LABLE_SUPPORT_TEXT_COLOR ENABLED
58#endif
59
60#ifndef VSF_TGUI_CFG_V_CONTROL_BACKGROUND_COLOR
61# define VSF_TGUI_CFG_V_CONTROL_BACKGROUND_COLOR VSF_TGUI_COLOR_RGB(0xB4, 0xC7, 0xE7)
62#endif
63
64#ifndef VSF_TGUI_CFG_V_LABEL_BACKGROUND_COLOR
65# define VSF_TGUI_CFG_V_LABEL_BACKGROUND_COLOR VSF_TGUI_COLOR_RGB(0xB4, 0xC7, 0xE7)
66#endif
67
68#ifndef VSF_TGUI_CFG_V_LABEL_TEXT_COLOR
69# define VSF_TGUI_CFG_V_LABEL_TEXT_COLOR VSF_TGUI_COLOR_BLACK
70#endif
71
72#ifndef VSF_TGUI_CFG_V_LABEL_DISABLED_TEXT_MIX_COLOR
73# define VSF_TGUI_CFG_V_LABEL_DISABLED_TEXT_MIX_COLOR VSF_TGUI_COLOR_WHITE
74#endif
75
76#ifndef VSF_TGUI_CFG_V_LABEL_DISABLED_TEXT_MIX_VALUE
77# define VSF_TGUI_CFG_V_LABEL_DISABLED_TEXT_MIX_VALUE 128
78#endif
79
80#ifndef VSF_TGUI_CFG_V_BUTTON_BACKGROUND_COLOR
81# define VSF_TGUI_CFG_V_BUTTON_BACKGROUND_COLOR VSF_TGUI_COLOR_RGB(0xB4, 0xC7, 0xE7)
82#endif
83
84#ifndef VSF_TGUI_CFG_V_BUTTON_CLICKED_BACKGROUND_COLOR
85# define VSF_TGUI_CFG_V_BUTTON_CLICKED_BACKGROUND_COLOR VSF_TGUI_COLOR_BLUE
86#endif
87
88#ifndef VSF_TGUI_CFG_V_BUTTON_CLICKED_MIX_COLOR
89# define VSF_TGUI_CFG_V_BUTTON_CLICKED_MIX_COLOR VSF_TGUI_COLOR_BLUE
90#endif
91
92#ifndef VSF_TGUI_CFG_V_BUTTON_CLICKED_MIX_VALUE
93# define VSF_TGUI_CFG_V_BUTTON_CLICKED_MIX_VALUE 128
94#endif
95
96#ifndef VSF_TGUI_CFG_V_BUTTON_TEXT_COLOR
97# define VSF_TGUI_CFG_V_BUTTON_TEXT_COLOR VSF_TGUI_COLOR_BLACK
98#endif
99
100#ifndef VSF_TGUI_CFG_V_CONTAINER_BACKGROUND_COLOR
101# define VSF_TGUI_CFG_V_CONTAINER_BACKGROUND_COLOR VSF_TGUI_COLOR_RGB(0x44, 0x72, 0xC4)
102#endif
103
104#ifndef VSF_TGUI_CFG_V_PANEL_BACKGROUND_COLOR
105# define VSF_TGUI_CFG_V_PANEL_BACKGROUND_COLOR VSF_TGUI_COLOR_RGB(0x44, 0x72, 0xC4)
106#endif
107
108#ifndef VSF_TGUI_CFG_V_LIST_BACKGROUND_COLOR
109# define VSF_TGUI_CFG_V_LIST_BACKGROUND_COLOR VSF_TGUI_COLOR_RGBA(0xB4, 0xC7, 0xE7, 0x00)
110#endif
111
112#ifndef VSF_TGUI_CFG_V_TEXT_LIST_BACKGROUND_COLOR
113# define VSF_TGUI_CFG_V_TEXT_LIST_BACKGROUND_COLOR VSF_TGUI_COLOR_RGB(0xB4, 0xC7, 0xE7)
114#endif
115
116#ifndef VSF_TGUI_CFG_V_TEXT_LIST_INDICATOR_COLOR
117# define VSF_TGUI_CFG_V_TEXT_LIST_INDICATOR_COLOR VSF_TGUI_COLOR_RGB(0x44, 0x72, 0xC4)
118#endif
119
120#if VSF_TGUI_CFG_V_SUPPORT_FLUXIBLE_BACKGROUND_COLOR == ENABLED
121# define __SV_BACKGROUND_COLOR(__COLOR) .background_color = __COLOR,
122#else
123# define __SV_BACKGROUND_COLOR(__COLOR)
124#endif
125
126#if VSF_TGUI_CFG_V_SUPPORT_TILE_TRANSPARENCY == ENABLED
127# define __SV_TILE_TRANS_RATE(__COLOR) .tile_trans_rate = __COLOR,
128#else
129# define __SV_TILE_TRANS_RATE(__COLOR)
130#endif
131
132#if VSF_TGUI_CFG_V_SUPPORT_CORNER_TILE == ENABLED
133# define __SV_SHOW_CORNER_TILE(__VALUE) .show_corner_tile = __VALUE,
134#else
135# define __SV_SHOW_CORNER_TILE(__VALUE)
136#endif
137
138#if VSF_TGUI_CFG_V_LABLE_SUPPORT_TEXT_COLOR == ENABLED
139# define __SV_TEXT_COLOR(__COLOR) .text_color = __COLOR,
140#else
141# define __SV_TEXT_COLOR(__COLOR)
142#endif
143
144#define VSF_TGUI_V_CONTROL_STATIC_INIT_DEFAULT \
145 __SV_SHOW_CORNER_TILE(false) \
146 __SV_TILE_TRANS_RATE(0xFF) \
147 __SV_BACKGROUND_COLOR(VSF_TGUI_CFG_V_CONTROL_BACKGROUND_COLOR)
148
149#define VSF_TGUI_V_LABEL_STATIC_INIT_DEFAULT \
150 __SV_SHOW_CORNER_TILE(true) \
151 __SV_TILE_TRANS_RATE(0xFF) \
152 __SV_BACKGROUND_COLOR(VSF_TGUI_CFG_V_LABEL_BACKGROUND_COLOR) \
153 __SV_TEXT_COLOR(VSF_TGUI_CFG_V_LABEL_TEXT_COLOR)
154
155#define VSF_TGUI_V_BUTTON_STATIC_INIT_DEFAULT \
156 __SV_SHOW_CORNER_TILE(true) \
157 __SV_TILE_TRANS_RATE(0xFF) \
158 __SV_BACKGROUND_COLOR(VSF_TGUI_CFG_V_BUTTON_BACKGROUND_COLOR) \
159 __SV_TEXT_COLOR(VSF_TGUI_CFG_V_BUTTON_TEXT_COLOR)
160
161#define VSF_TGUI_V_CONTAINER_STATIC_INIT_DEFAULT \
162 __SV_SHOW_CORNER_TILE(true) \
163 __SV_TILE_TRANS_RATE(0xFF) \
164 __SV_BACKGROUND_COLOR(VSF_TGUI_CFG_V_CONTAINER_BACKGROUND_COLOR)
165
166#define VSF_TGUI_V_TEXT_LIST_STATIC_INIT_DEFAULT \
167 __SV_SHOW_CORNER_TILE(true) \
168 __SV_TILE_TRANS_RATE(0xFF) \
169 __SV_BACKGROUND_COLOR(VSF_TGUI_CFG_V_TEXT_LIST_BACKGROUND_COLOR)
170
171#define VSF_TGUI_V_LIST_STATIC_INIT_DEFAULT \
172 __SV_SHOW_CORNER_TILE(true) \
173 __SV_TILE_TRANS_RATE(0xFF)
174
175#define VSF_TGUI_V_PANEL_STATIC_INIT_DEFAULT \
176 __SV_SHOW_CORNER_TILE(true) \
177 __SV_TILE_TRANS_RATE(0xFF)
178
179#define VSF_TGUI_V_CONTROL_STATIC_INIT_OVERRIDE
180#define VSF_TGUI_V_LABEL_STATIC_INIT_OVERRIDE
181#define VSF_TGUI_V_BUTTON_STATIC_INIT_OVERRIDE
182#define VSF_TGUI_V_CONTAINER_STATIC_INIT_OVERRIDE
183#define VSF_TGUI_V_LIST_STATIC_INIT_OVERRIDE
184
185#if VSF_TGUI_CFG_V_SUPPORT_FLUXIBLE_BACKGROUND_COLOR == ENABLED
186#define VSF_TGUI_V_TEXT_LIST_STATIC_INIT_BACKGROUND_CLOLOR_OVERRIDE \
187 .tList.background_color = VSF_TGUI_COLOR_RGBA(0x00, 0x00, 0x00, 0x00),
188#else
189#define VSF_TGUI_V_TEXT_LIST_STATIC_INIT_BACKGROUND_CLOLOR_OVERRIDE
190#endif
191
192#if VSF_TGUI_CFG_V_SUPPORT_CORNER_TILE == ENABLED
193#define VSF_TGUI_V_TEXT_LIST_STATIC_INIT_TILE_OVERRIDE \
194 .show_corner_tile = true,
195#else
196#define VSF_TGUI_V_TEXT_LIST_STATIC_INIT_TILE_OVERRIDE
197#endif
198
199#define VSF_TGUI_V_TEXT_LIST_STATIC_INIT_OVERRIDE \
200 VSF_TGUI_V_TEXT_LIST_STATIC_INIT_BACKGROUND_CLOLOR_OVERRIDE
201
202#if VSF_TGUI_CFG_V_SUPPORT_FLUXIBLE_BACKGROUND_COLOR == ENABLED
203# define VSF_TGUI_V_TEXT_LIST_CONTENT_INIT_OVERRIDE \
204 .background_color = VSF_TGUI_COLOR_RGBA(0x00, 0x00, 0x00, 0x00), \
205 VSF_TGUI_V_TEXT_LIST_STATIC_INIT_TILE_OVERRIDE
206#else
207# define VSF_TGUI_V_TEXT_LIST_CONTENT_INIT_OVERRIDE
208#endif
209
210#define VSF_TGUI_V_TEXT_LIST_CONTENT_INIT_DEFAULT
211
212#define VSF_TGUI_V_PANEL_STATIC_INIT_OVERRIDE
213
214#define tgui_v_font(...) \
215 __tgui_attribute(font_index, __VA_ARGS__)
216
217#if VSF_TGUI_CFG_V_SUPPORT_CORNER_TILE == ENABLED
218#define tgui_v_show_corner_tile(...) \
219 __tgui_attribute(show_corner_tile, __VA_ARGS__)
220#endif
221
222#if VSF_TGUI_CFG_V_SUPPORT_TILE_TRANSPARENCY == ENABLED
223#define tgui_v_tile_trans_rate(...) \
224 __tgui_attribute(tile_trans_rate, __VA_ARGS__)
225#endif
226
227#if VSF_TGUI_CFG_V_SUPPORT_FLUXIBLE_BACKGROUND_COLOR == ENABLED
228#define tgui_v_background_color(...) \
229 __tgui_attribute(background_color, __VA_ARGS__)
230#endif
231
232#if VSF_TGUI_CFG_V_LABLE_SUPPORT_TEXT_COLOR == ENABLED
233#define tgui_v_text_color(...) \
234 __tgui_attribute(text_color, __VA_ARGS__)
235#endif
236
237/*============================ MACROFIED FUNCTIONS ===========================*/
238/*============================ TYPES =========================================*/
239
240declare_structure(vsf_tgui_v_control_t)
241def_structure(vsf_tgui_v_control_t)
244#if VSF_TGUI_CFG_V_SUPPORT_CORNER_TILE == ENABLED
246#endif
247#if VSF_TGUI_CFG_V_SUPPORT_TILE_TRANSPARENCY == ENABLED
249#endif
250#if VSF_TGUI_CFG_V_SUPPORT_FLUXIBLE_BACKGROUND_COLOR == ENABLED
252#endif
253end_def_structure(vsf_tgui_v_control_t)
254
255declare_structure(vsf_tgui_v_container_t)
256def_structure(vsf_tgui_v_container_t)
257#if __IS_COMPILER_IAR__ || (!defined( __STDC_VERSION__ ) || __STDC_VERSION__ < 199901L)
258 //please remove this if your structure is not emplty
260#endif
261end_def_structure(vsf_tgui_v_container_t)
262
263declare_structure(vsf_tgui_v_label_t)
264def_structure(vsf_tgui_v_label_t)
265#if VSF_TGUI_CFG_V_LABLE_SUPPORT_TEXT_COLOR == ENABLED
266 vsf_tgui_v_color_t text_color;
267#endif
268end_def_structure(vsf_tgui_v_label_t)
269
270declare_structure(vsf_tgui_v_button_t)
271def_structure(vsf_tgui_v_button_t)
272#if __IS_COMPILER_IAR__ || (!defined( __STDC_VERSION__ ) || __STDC_VERSION__ < 199901L)
273 //please remove this if your structure is not emplty
275#endif
276end_def_structure(vsf_tgui_v_button_t)
277
278declare_structure(vsf_tgui_v_panel_t)
279def_structure(vsf_tgui_v_panel_t)
280#if __IS_COMPILER_IAR__ || (!defined( __STDC_VERSION__ ) || __STDC_VERSION__ < 199901L)
281 //please remove this if your structure is not emplty
283#endif
284end_def_structure(vsf_tgui_v_panel_t)
285
286declare_structure(vsf_tgui_v_list_t)
287def_structure(vsf_tgui_v_list_t)
288#if __IS_COMPILER_IAR__ || (!defined( __STDC_VERSION__ ) || __STDC_VERSION__ < 199901L)
289 //please remove this if your structure is not emplty
291#endif
292end_def_structure(vsf_tgui_v_list_t)
293
294declare_structure(vsf_tgui_v_text_list_t)
295def_structure(vsf_tgui_v_text_list_t)
296#if __IS_COMPILER_IAR__ || (!defined( __STDC_VERSION__ ) || __STDC_VERSION__ < 199901L)
297 //please remove this if your structure is not emplty
299#endif
300end_def_structure(vsf_tgui_v_text_list_t)
301
302/*============================ GLOBAL VARIABLES ==============================*/
303/*============================ PROTOTYPES ====================================*/
304
305#ifdef __cplusplus
306}
307#endif
308
309#endif
310#endif
311/* EOF */
#define REG_RSVD_U8
Definition i_io_systick.h:136
def_structure(vsf_tgui_v_control_t) vsf_tgui_v_color_t background_color
uint8_t font_index
Definition vsf_tgui_v_type.h:231
end_def_structure(vsf_tgui_v_control_t) def_structure(vsf_tgui_v_container_t) uint8_t end_def_structure(vsf_tgui_v_container_t) def_structure(vsf_tgui_v_label_t) vsf_tgui_v_color_t text_color
vsf_tgui_v_color_t background_color
Definition vsf_tgui_v_type.h:251
declare_structure(vsf_tgui_v_control_t) def_structure(vsf_tgui_v_control_t) uint8_t font_index uint8_t __skip_frame
Definition vsf_tgui_v_type.h:240
uint8_t tile_trans_rate
Definition vsf_tgui_v_type.h:248
uint8_t show_corner_tile
Definition vsf_tgui_v_type.h:245
unsigned char uint8_t
Definition stdint.h:5
Definition vsf_tgui_sv_color.h:93
vsf_tgui_evt_t declare_structure(__vk_tgui_focus_t) def_structure(__vk_tgui_focus_t) const vsf_tgui_control_t *current_ptr