Go to the source code of this file.
|
| #define | VSF_TGUI_HEAP_HEADER "service/heap/vsf_heap.h" |
| |
| #define | vsf_tgui_malloc(__size) |
| |
| #define | vsf_tgui_free(__ptr) |
| |
| #define | vsf_tgui_control_set_width(__control, __w) |
| |
| #define | vsf_tgui_control_set_height(__control, __h) |
| |
| #define | vsf_tui_control_set_size(__control, __w, __h) |
| |
| #define | vsf_tgui_control_set_margin(__control, __left, __top, __right, __bottom) |
| |
| #define | vsf_control_set_msghandler(__control, __handler, __num) |
| |
| #define | vsf_tgui_container_set_type2(__container, __type, __autosize) |
| |
| #define | vsf_tgui_container_set_type1(__container, __type) |
| |
| #define | vsf_tgui_container_set_type(__container, ...) |
| |
| #define | vsf_tgui_button_set_text_static(__button, __text) |
| |
| #define | vsf_tgui_list_get_child(__list) |
| |
◆ VSF_TGUI_HEAP_HEADER
| #define VSF_TGUI_HEAP_HEADER "service/heap/vsf_heap.h" |
◆ vsf_tgui_malloc
| #define vsf_tgui_malloc |
( |
| __size | ) |
|
Value:
#define vsf_heap_malloc(__size)
Definition vsf_heap.h:86
◆ vsf_tgui_free
| #define vsf_tgui_free |
( |
| __ptr | ) |
|
Value:
#define vsf_heap_free(__ptr)
Definition vsf_heap.h:104
◆ vsf_tgui_control_set_width
| #define vsf_tgui_control_set_width |
( |
| __control, |
|
|
| __w ) |
Value: do { \
(__control)->tSize.iWidth = (__w); \
} while(0)
◆ vsf_tgui_control_set_height
| #define vsf_tgui_control_set_height |
( |
| __control, |
|
|
| __h ) |
Value: do { \
(__control)->tSize.iHeight = (__h); \
} while(0)
◆ vsf_tui_control_set_size
| #define vsf_tui_control_set_size |
( |
| __control, |
|
|
| __w, |
|
|
| __h ) |
Value: do { \
(__control)->tSize.iWidth = (__w); \
(__control)->tSize.iHeight = (__h); \
} while(0)
◆ vsf_tgui_control_set_margin
| #define vsf_tgui_control_set_margin |
( |
| __control, |
|
|
| __left, |
|
|
| __top, |
|
|
| __right, |
|
|
| __bottom ) |
Value: do { \
(__control)->tMargin.chLeft = (__left); \
(__control)->tMargin.chTop = (__top); \
(__control)->tMargin.chRight = (__right); \
(__control)->tMargin.chBottom = (__bottom); \
} while(0)
◆ vsf_control_set_msghandler
| #define vsf_control_set_msghandler |
( |
| __control, |
|
|
| __handler, |
|
|
| __num ) |
Value: do { \
(__control)->tMSGMap.ptItems = (__handler); \
(__control)->tMSGMap.chCount = (__num); \
} while (0)
◆ vsf_tgui_container_set_type2
| #define vsf_tgui_container_set_type2 |
( |
| __container, |
|
|
| __type, |
|
|
| __autosize ) |
Value: do { \
(__container)->ContainerAttribute.u5Type = (
__type), \
(__container)->ContainerAttribute.bIsAutoSize = (__autosize); \
} while(0)
#define __type
Definition hci_transport_aic8800.c:556
◆ vsf_tgui_container_set_type1
| #define vsf_tgui_container_set_type1 |
( |
| __container, |
|
|
| __type ) |
Value:
#define vsf_tgui_container_set_type2(__container, __type, __autosize)
Definition vsf_tgui_dynamic.h:74
◆ vsf_tgui_container_set_type
| #define vsf_tgui_container_set_type |
( |
| __container, |
|
|
| ... ) |
Value:
#define vsf_tgui_container_set_type(__container,...)
Definition vsf_tgui_dynamic.h:82
◆ vsf_tgui_button_set_text_static
| #define vsf_tgui_button_set_text_static |
( |
| __button, |
|
|
| __text ) |
Value:
void vsf_tgui_label_set_text_static(vsf_tgui_label_t *label, const char *text)
Definition vsf_tgui_dynamic.c:200
◆ vsf_tgui_list_get_child
| #define vsf_tgui_list_get_child |
( |
| __list | ) |
|
Value:
struct vsf_tgui_control_t vsf_tgui_control_t
Definition vsf_tgui_common.h:555
◆ vsf_tgui_control_new()
◆ vsf_tgui_control_destroy()
◆ vsf_tgui_control_add()
◆ vsf_tgui_control_remove()
| void vsf_tgui_control_remove |
( |
vsf_tgui_container_t * | parent, |
|
|
vsf_tgui_control_t * | control ) |
|
extern |
◆ vsf_tgui_control_sync()
| void vsf_tgui_control_sync |
( |
vsf_tgui_container_t * | parent, |
|
|
vsf_tgui_control_t * | control ) |
|
extern |
◆ vsf_tgui_container_new()
| vsf_tgui_container_t * vsf_tgui_container_new |
( |
char * | name | ) |
|
|
extern |
◆ vsf_tgui_label_new()
| vsf_tgui_label_t * vsf_tgui_label_new |
( |
char * | name | ) |
|
|
extern |
◆ vsf_tgui_label_set_text_static()
| void vsf_tgui_label_set_text_static |
( |
vsf_tgui_label_t * | label, |
|
|
const char * | text ) |
|
extern |
◆ vsf_tgui_label_get_text()
| const char * vsf_tgui_label_get_text |
( |
vsf_tgui_label_t * | label | ) |
|
|
extern |
◆ vsf_tgui_button_new()
| vsf_tgui_button_t * vsf_tgui_button_new |
( |
char * | name | ) |
|
|
extern |