VSF Documented
vsf_tgui_label.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/****************************************************************************
19* Copyright 2020 by Gorgon Meducer (Email:embedded_zhuoran@hotmail.com) *
20* *
21* Licensed under the Apache License, Version 2.0 (the "License"); *
22* you may not use this file except in compliance with the License. *
23* You may obtain a copy of the License at *
24* *
25* http://www.apache.org/licenses/LICENSE-2.0 *
26* *
27* Unless required by applicable law or agreed to in writing, software *
28* distributed under the License is distributed on an "AS IS" BASIS, *
29* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
30* See the License for the specific language governing permissions and *
31* limitations under the License. *
32* *
33****************************************************************************/
34
35#ifndef __VSF_TGUI_CONTROLS_LABEL_H__
36#define __VSF_TGUI_CONTROLS_LABEL_H__
37
38/*============================ INCLUDES ======================================*/
39
40#include "./vsf_tgui_control.h"
41
47#if defined(__VSF_TGUI_CONTROLS_LABEL_CLASS_IMPLEMENT)
48# define __PLOOC_CLASS_IMPLEMENT__
49# undef __VSF_TGUI_CONTROLS_LABEL_CLASS_IMPLEMENT
50#elif defined(__VSF_TGUI_CONTROLS_LABEL_CLASS_INHERIT)
51# define __PLOOC_CLASS_INHERIT__
52# undef __VSF_TGUI_CONTROLS_LABEL_CLASS_INHERIT
53#endif
54
55#include "utilities/ooc_class.h"
56
57#ifdef __cplusplus
58extern "C" {
59#endif
60
61/*============================ MACROS ========================================*/
62
63# define __VSF_TGUI_INTERFACE_CONTROLS_LABEL { \
64 .msg_handler = { \
65 VSF_MSGT_NODE_HANDLER_TYPE_FSM, \
66 (vsf_msgt_method_fsm_t *)&vsf_tgui_label_msg_handler, \
67 }, \
68 .Status = (vsf_msgt_method_status_t *) \
69 &vsf_tgui_control_status_get, \
70 .Shoot = (vsf_msgt_method_shoot_t *)&vsf_tgui_control_shoot, \
71 }
72
73/*============================ MACROFIED FUNCTIONS ===========================*/
74
75#define __tgui_label(__NAME, __PARENT_ADDR, __PREVIOUS, __NEXT, ...) \
76 tgui_control_base( __NAME, \
77 VSF_TGUI_COMPONENT_ID_LABEL, \
78 vsf_tgui_label_t, \
79 (__PARENT_ADDR), \
80 __PREVIOUS, \
81 __NEXT, \
82 VSF_TGUI_V_LABEL_STATIC_INIT_DEFAULT \
83 __VA_ARGS__ \
84 VSF_TGUI_V_LABEL_STATIC_INIT_OVERRIDE)
85
86#define tgui_label(__NAME, __PARENT_ADDR, __PREVIOUS, __NEXT, ...) \
87 __tgui_label( __NAME, \
88 (__PARENT_ADDR), \
89 __PREVIOUS, \
90 __NEXT, \
91 __VA_ARGS__)
92
93#define __tgui_label_const(__NAME, __PARENT_ADDR, __PREVIOUS, __NEXT, ...) \
94 tgui_control_base_const(__NAME, \
95 VSF_TGUI_COMPONENT_ID_LABEL, \
96 vsf_tgui_label_t, \
97 (__PARENT_ADDR), \
98 __PREVIOUS, \
99 __NEXT, \
100 VSF_TGUI_V_LABEL_STATIC_INIT_DEFAULT \
101 __VA_ARGS__ \
102 VSF_TGUI_V_LABEL_STATIC_INIT_OVERRIDE)
103
104#define tgui_label_const(__NAME, __PARENT_ADDR, __PREVIOUS, __NEXT, ...) \
105 __tgui_label_const( __NAME, \
106 (__PARENT_ADDR), \
107 __PREVIOUS, \
108 __NEXT, \
109 __VA_ARGS__)
110
111
112#define __tgui_set_internal_label( __OWNER_ADDR, \
113 __MEMBER, \
114 __PREVIOUS, \
115 __NEXT, ...) \
116 (*__OWNER_ADDR) tgui_label_const ( \
117 __MEMBER, \
118 (__OWNER_ADDR), \
119 __PREVIOUS, \
120 __NEXT, \
121 __VA_ARGS__)
122
123#define tgui_set_internal_label( __OWNER_ADDR, \
124 __MEMBER, \
125 __PREVIOUS, \
126 __NEXT, ...) \
127 __tgui_set_internal_label( (__OWNER_ADDR), \
128 __MEMBER, \
129 __PREVIOUS, \
130 __NEXT, \
131 __VA_ARGS__)
132
133
134#define tgui_set_priv_label( __OWNER_ADDR , \
135 __MEMBER, \
136 ...) \
137 __tgui_set_internal_label( (__OWNER_ADDR), \
138 __MEMBER, \
139 __MEMBER, __MEMBER, \
140 __VA_ARGS__)
141
142/*============================ TYPES =========================================*/
143declare_class(vsf_tgui_label_t)
144
145def_class(vsf_tgui_label_t,
146 which(
147 implement(vsf_tgui_control_t)
148 implement(vsf_tgui_v_label_t)
149 )
150
151 public_member(
152 implement_ex(vsf_tgui_text_info_t, tLabel);
153 )
154)
155end_def_class(vsf_tgui_label_t)
156
157/*============================ GLOBAL VARIABLES ==============================*/
158/*============================ PROTOTYPES ====================================*/
159extern
162extern
163fsm_rt_t vk_tgui_label_init(vsf_tgui_label_t* ptLabel);
164
165extern
166fsm_rt_t vk_tgui_label_update(vsf_tgui_label_t* ptLabel);
167
168extern
169void vsf_tgui_label_set_text( vsf_tgui_label_t* ptLabel,
170 VSF_TGUI_CFG_STRING_TYPE *pstrText);
171
172#ifdef __cplusplus
173}
174#endif
175
176#endif
177/* EOF */
178
Definition vsf_tgui_common.h:558
Definition vsf_tgui_common.h:371
fsm_rt_t
Definition vsf_fsm.h:315
def_class(vsf_stream_fifo_t, which(vsf_stream_tx_t TX;vsf_stream_rx_t RX;), private:vsf_slist_queue_t union { vsf_stream_fifo_cfg_t cfg;struct { vsf_stream_dat_rdy_evt_t tDataReadyEventHandling;vsf_stream_dat_drn_evt_t tDataDrainEventHandling;vsf_stream_status_t Status;#if !defined(VSF_PBUF_QUEUE_CFG_ATOM_ACCESS) vsf_protect_region_t *pregion;#endif };};) end_def_class(vsf_stream_fifo_t) extern vsf_err_t vsf_stream_fifo_init(vsf_stream_fifo_t *obj_ptr
struct vsf_tgui_control_t vsf_tgui_control_t
Definition vsf_tgui_common.h:555
which(union { inherit(vsf_msgt_container_t) vsf_tgui_control_t };vsf_tgui_v_container_t) implement_ex(struct
Definition vsf_tgui_control.h:566
fsm_rt_t vsf_tgui_label_msg_handler(vsf_tgui_label_t *control_ptr, vsf_tgui_msg_t *ptMSG)
Definition vsf_tgui_label.c:69
fsm_rt_t vk_tgui_label_update(vsf_tgui_label_t *ptLabel)
Definition vsf_tgui_label.c:103
which(vsf_tgui_control_t vsf_tgui_v_label_t) public vsf_tgui_msg_t * ptMSG
Definition vsf_tgui_label.h:161
declare_class(vsf_tgui_label_t) def_class(vsf_tgui_label_t
void vsf_tgui_label_set_text(vsf_tgui_label_t *ptLabel, VSF_TGUI_CFG_STRING_TYPE *pstrText)
Definition vsf_tgui_label.c:138
which(vsf_tgui_control_t vsf_tgui_v_label_t) public end_def_class(vsf_tgui_label_t) extern fsm_rt_t vsf_tgui_label_msg_handler(vsf_tgui_label_t *control_ptr
fsm_rt_t vk_tgui_label_init(vsf_tgui_label_t *ptLabel)
Definition vsf_tgui_label.c:133
const vsf_tgui_control_t * control_ptr
Definition vsf_tgui_scguiv_port.h:91