Select one of the symbols to view example projects that use it.
 
Outline
#define FRAMEWIN_H
#include "WM.h"
#include "WIDGET.h"
#include "DIALOG_Intern.h"
#define FRAMEWIN_ALLOW_DRAG_ON_FRAME
#define FRAMEWIN_CI_INACTIVE
#define FRAMEWIN_CI_ACTIVE
#define FRAMEWIN_CF_ACTIVE
#define FRAMEWIN_CF_MOVEABLE
#define FRAMEWIN_CF_TITLEVIS
#define FRAMEWIN_CF_MINIMIZED
#define FRAMEWIN_CF_MAXIMIZED
#define FRAMEWIN_CF_DRAGGING
#define FRAMEWIN_SF_ACTIVE
#define FRAMEWIN_SF_MOVEABLE
#define FRAMEWIN_SF_TITLEVIS
#define FRAMEWIN_SF_MINIMIZED
#define FRAMEWIN_SF_MAXIMIZED
#define FRAMEWIN_SF_DRAGGING
#define FRAMEWIN_BUTTON_RIGHT
#define FRAMEWIN_BUTTON_LEFT
#define FRAMEWIN_SKINFLEX_PI_ACTIVE
#define FRAMEWIN_SKINFLEX_PI_INACTIVE
#define FRAMEWIN_BORDERSIZE_T
#define FRAMEWIN_BORDERSIZE_L
#define FRAMEWIN_BORDERSIZE_B
#define FRAMEWIN_BORDERSIZE_R
FRAMEWIN_Handle
FRAMEWIN_SKINFLEX_PROPS
FRAMEWIN_Create(const char *, WM_CALLBACK *, int, int, int, int, int);
FRAMEWIN_CreateAsChild(int, int, int, int, GUI_HWIN, const char *, WM_CALLBACK *, int);
FRAMEWIN_CreateEx(int, int, int, int, GUI_HWIN, int, int, int, const char *, WM_CALLBACK *);
FRAMEWIN_CreateUser(int, int, int, int, GUI_HWIN, int, int, int, const char *, WM_CALLBACK *, int);
FRAMEWIN_CreateIndirect(const GUI_WIDGET_CREATE_INFO *, GUI_HWIN, int, int, WM_CALLBACK *);
FRAMEWIN_Callback(WM_MESSAGE *);
FRAMEWIN_AddButton(FRAMEWIN_Handle, int, int, int);
FRAMEWIN_AddCloseButton(FRAMEWIN_Handle, int, int);
FRAMEWIN_AddMaxButton(FRAMEWIN_Handle, int, int);
FRAMEWIN_AddMenu(FRAMEWIN_Handle, GUI_HWIN);
FRAMEWIN_AddMinButton(FRAMEWIN_Handle, int, int);
FRAMEWIN_Minimize(FRAMEWIN_Handle);
FRAMEWIN_Maximize(FRAMEWIN_Handle);
FRAMEWIN_Restore(FRAMEWIN_Handle);
FRAMEWIN_SetActive(FRAMEWIN_Handle, int);
FRAMEWIN_SetBarColor(FRAMEWIN_Handle, unsigned int, GUI_COLOR);
FRAMEWIN_SetBorderSize(FRAMEWIN_Handle, unsigned int);
FRAMEWIN_SetClientColor(FRAMEWIN_Handle, GUI_COLOR);
FRAMEWIN_SetFont(FRAMEWIN_Handle, const GUI_FONT *);
FRAMEWIN_SetMoveable(FRAMEWIN_Handle, int);
FRAMEWIN_SetOwnerDraw(FRAMEWIN_Handle, WIDGET_DRAW_ITEM_FUNC *);
FRAMEWIN_SetResizeable(FRAMEWIN_Handle, int);
FRAMEWIN_SetText(FRAMEWIN_Handle, const char *);
FRAMEWIN_SetTextAlign(FRAMEWIN_Handle, int);
FRAMEWIN_SetTextColor(FRAMEWIN_Handle, GUI_COLOR);
FRAMEWIN_SetTextColorEx(FRAMEWIN_Handle, unsigned int, GUI_COLOR);
FRAMEWIN_SetTitleVis(FRAMEWIN_Handle, int);
FRAMEWIN_SetTitleHeight(FRAMEWIN_Handle, int);
FRAMEWIN_SetUserData(FRAMEWIN_Handle, const void *, int);
FRAMEWIN_GetSkinFlexProps(FRAMEWIN_SKINFLEX_PROPS *, int);
FRAMEWIN_SetSkinClassic(FRAMEWIN_Handle);
FRAMEWIN_SetSkin(FRAMEWIN_Handle, WIDGET_DRAW_ITEM_FUNC *);
FRAMEWIN_DrawSkinFlex(const WIDGET_ITEM_DRAW_INFO *);
FRAMEWIN_SetSkinFlexProps(const FRAMEWIN_SKINFLEX_PROPS *, int);
FRAMEWIN_SetDefaultSkinClassic();
FRAMEWIN_SetDefaultSkin(WIDGET_DRAW_ITEM_FUNC *);
#define FRAMEWIN_SKIN_FLEX
FRAMEWIN_GetFont(FRAMEWIN_Handle);
FRAMEWIN_GetActive(FRAMEWIN_Handle);
FRAMEWIN_GetTitleHeight(FRAMEWIN_Handle);
FRAMEWIN_GetBarColor(FRAMEWIN_Handle, unsigned int);
FRAMEWIN_GetBorderSize(FRAMEWIN_Handle);
FRAMEWIN_GetBorderSizeEx(FRAMEWIN_Handle, unsigned int);
FRAMEWIN_GetText(FRAMEWIN_Handle, char *, int);
FRAMEWIN_GetTextAlign(FRAMEWIN_Handle);
FRAMEWIN_GetUserData(FRAMEWIN_Handle, void *, int);
FRAMEWIN_IsMinimized(FRAMEWIN_Handle);
FRAMEWIN_IsMaximized(FRAMEWIN_Handle);
FRAMEWIN_GetDefaultBarColor(unsigned int);
FRAMEWIN_GetDefaultBorderSize();
FRAMEWIN_GetDefaultTitleHeight();
FRAMEWIN_GetDefaultClientColor();
FRAMEWIN_GetDefaultFont();
FRAMEWIN_GetDefaultTextColor(unsigned int);
FRAMEWIN_OwnerDraw(const WIDGET_ITEM_DRAW_INFO *);
FRAMEWIN_SetDefaultBarColor(unsigned int, GUI_COLOR);
FRAMEWIN_SetDefaultBorderSize(int);
FRAMEWIN_SetDefaultTitleHeight(int);
FRAMEWIN_SetDefaultClientColor(GUI_COLOR);
FRAMEWIN_SetDefaultFont(const GUI_FONT *);
FRAMEWIN_SetDefaultTextAlign(int);
FRAMEWIN_SetDefaultTextColor(unsigned int, GUI_COLOR);
#define FRAMEWIN_SetDefaultCaptionSize
#define FRAMEWIN_GetDefaultCaptionSize
#define FRAMEWIN_CreateButton
#define FRAMEWIN_CreateCloseButton
#define FRAMEWIN_CreateMaxButton
#define FRAMEWIN_CreateMinButton
Files
loading...
SourceVuSTM32 Libraries and SamplesSTemWininc/FRAMEWIN.h
 
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/********************************************************************* * SEGGER Microcontroller GmbH & Co. KG * * Solutions for real time microcontroller applications * ********************************************************************** * * * (c) 1996 - 2017 SEGGER Microcontroller GmbH & Co. KG * * * * Internet: www.segger.com Support: support@segger.com * * * ********************************************************************** ** emWin V5.44 - Graphical user interface for embedded applications ** All Intellectual Property rights in the Software belongs to SEGGER. emWin is protected by international copyright laws. Knowledge of the source code may not be used to write a similar product. This file may only be used in accordance with the following terms: The software has been licensed to STMicroelectronics International N.V. a Dutch company with a Swiss branch and its headquarters in Plan- les-Ouates, Geneva, 39 Chemin du Champ des Filles, Switzerland for the purposes of creating libraries for ARM Cortex-M-based 32-bit microcon_ troller products commercialized by Licensee only, sublicensed and dis_ tributed under the terms and conditions of the End User License Agree_ ment supplied by STMicroelectronics International N.V. Full source code is available at: www.segger.com We appreciate your understanding and fairness. ---------------------------------------------------------------------- ****************************************************************************** * @attention * * <h2><center>&copy; Copyright (c) 2018 STMicroelectronics. * All rights reserved.</center></h2> * * This software component is licensed by ST under Ultimate Liberty license SLA0044, * the "License"; You may not use this file except in compliance with the License. * You may obtain a copy of the License at: * http://www.st.com/SLA0044 * ****************************************************************************** ---------------------------------------------------------------------- File : FRAMEWIN.h Purpose : Frame window include --------------------END-OF-HEADER------------------------------------- *//* ... */ #ifndef FRAMEWIN_H #define FRAMEWIN_H #include "WM.h" #include "WIDGET.h" /* Req. for WIDGET_DRAW_ITEM_FUNC */ #if GUI_WINSUPPORT #include "DIALOG_Intern.h" /* Req. for Create indirect data structure */ #if defined(__cplusplus) extern "C" { /* Make sure we have C-declarations in C++ programs */ #endif /********************************************************************* * * Defines * ********************************************************************** *//* ... */ /********************************************************************* * * Configuration *//* ... */ #ifndef FRAMEWIN_ALLOW_DRAG_ON_FRAME #define FRAMEWIN_ALLOW_DRAG_ON_FRAME 1 #endif /********************************************************************* * * Color indices *//* ... */ #define FRAMEWIN_CI_INACTIVE 0 #define FRAMEWIN_CI_ACTIVE 1 /********************************************************************* * * Create / Status flags *//* ... */ #define FRAMEWIN_CF_ACTIVE (1<<3) #define FRAMEWIN_CF_MOVEABLE (1<<4) #define FRAMEWIN_CF_TITLEVIS (1<<5) #define FRAMEWIN_CF_MINIMIZED (1<<6) #define FRAMEWIN_CF_MAXIMIZED (1<<7) #define FRAMEWIN_CF_DRAGGING (1<<8) #define FRAMEWIN_SF_ACTIVE FRAMEWIN_CF_ACTIVE #define FRAMEWIN_SF_MOVEABLE FRAMEWIN_CF_MOVEABLE #define FRAMEWIN_SF_TITLEVIS FRAMEWIN_CF_TITLEVIS #define FRAMEWIN_SF_MINIMIZED FRAMEWIN_CF_MINIMIZED #define FRAMEWIN_SF_MAXIMIZED FRAMEWIN_CF_MAXIMIZED #define FRAMEWIN_SF_DRAGGING FRAMEWIN_CF_DRAGGING /********************************************************************* * * BUTTON Flags *//* ... */ #define FRAMEWIN_BUTTON_RIGHT (1<<0) #define FRAMEWIN_BUTTON_LEFT (1<<1) /********************************************************************* * * Skinning property indices *//* ... */ #define FRAMEWIN_SKINFLEX_PI_ACTIVE 0 #define FRAMEWIN_SKINFLEX_PI_INACTIVE 1 /********************************************************************* * * Getting border size *//* ... */ #define FRAMEWIN_BORDERSIZE_T 0 #define FRAMEWIN_BORDERSIZE_L 1 #define FRAMEWIN_BORDERSIZE_B 2 #define FRAMEWIN_BORDERSIZE_R 3 22 defines /********************************************************************* * * Types * ********************************************************************** *//* ... */ typedef WM_HMEM FRAMEWIN_Handle; typedef struct { GUI_COLOR aColorFrame[3]; GUI_COLOR aColorTitle[2]; int Radius; int SpaceX; int BorderSizeL; int BorderSizeR; int BorderSizeT; int BorderSizeB; ...} FRAMEWIN_SKINFLEX_PROPS; /********************************************************************* * * Create functions * ********************************************************************** *//* ... */ FRAMEWIN_Handle FRAMEWIN_Create (const char * pTitle, WM_CALLBACK * cb, int Flags, int x0, int y0, int xSize, int ySize); FRAMEWIN_Handle FRAMEWIN_CreateAsChild (int x0, int y0, int xSize, int ySize, WM_HWIN hParent, const char * pText, WM_CALLBACK * cb, int Flags); FRAMEWIN_Handle FRAMEWIN_CreateEx (int x0, int y0, int xSize, int ySize, WM_HWIN hParent, int WinFlags, int ExFlags, int Id, const char * pTitle, WM_CALLBACK * cb); FRAMEWIN_Handle FRAMEWIN_CreateUser (int x0, int y0, int xSize, int ySize, WM_HWIN hParent, int WinFlags, int ExFlags, int Id, const char * pTitle, WM_CALLBACK * cb, int NumExtraBytes); FRAMEWIN_Handle FRAMEWIN_CreateIndirect(const GUI_WIDGET_CREATE_INFO * pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK * cb); /********************************************************************* * * The callback ... * * Do not call it directly ! It is only to be used from within an * overwritten callback. *//* ... */ void FRAMEWIN_Callback(WM_MESSAGE * pMsg); /********************************************************************* * * Member functions: Set Properties * ********************************************************************** *//* ... */ WM_HWIN FRAMEWIN_AddButton (FRAMEWIN_Handle hObj, int Flags, int Off, int Id); WM_HWIN FRAMEWIN_AddCloseButton(FRAMEWIN_Handle hObj, int Flags, int Off); WM_HWIN FRAMEWIN_AddMaxButton (FRAMEWIN_Handle hObj, int Flags, int Off); void FRAMEWIN_AddMenu (FRAMEWIN_Handle hObj, WM_HWIN hMenu); WM_HWIN FRAMEWIN_AddMinButton (FRAMEWIN_Handle hObj, int Flags, int Off); void FRAMEWIN_Minimize (FRAMEWIN_Handle hObj); void FRAMEWIN_Maximize (FRAMEWIN_Handle hObj); void FRAMEWIN_Restore (FRAMEWIN_Handle hObj); void FRAMEWIN_SetActive (FRAMEWIN_Handle hObj, int State); void FRAMEWIN_SetBarColor (FRAMEWIN_Handle hObj, unsigned Index, GUI_COLOR Color); void FRAMEWIN_SetBorderSize (FRAMEWIN_Handle hObj, unsigned Size); void FRAMEWIN_SetClientColor(FRAMEWIN_Handle hObj, GUI_COLOR Color); void FRAMEWIN_SetFont (FRAMEWIN_Handle hObj, const GUI_FONT * pFont); void FRAMEWIN_SetMoveable (FRAMEWIN_Handle hObj, int State); void FRAMEWIN_SetOwnerDraw (FRAMEWIN_Handle hObj, WIDGET_DRAW_ITEM_FUNC * pfDrawItem); void FRAMEWIN_SetResizeable (FRAMEWIN_Handle hObj, int State); void FRAMEWIN_SetText (FRAMEWIN_Handle hObj, const char* s); void FRAMEWIN_SetTextAlign (FRAMEWIN_Handle hObj, int Align); void FRAMEWIN_SetTextColor (FRAMEWIN_Handle hObj, GUI_COLOR Color); void FRAMEWIN_SetTextColorEx(FRAMEWIN_Handle hObj, unsigned Index, GUI_COLOR Color); void FRAMEWIN_SetTitleVis (FRAMEWIN_Handle hObj, int Show); int FRAMEWIN_SetTitleHeight(FRAMEWIN_Handle hObj, int Height); int FRAMEWIN_SetUserData (FRAMEWIN_Handle hObj, const void * pSrc, int NumBytes); /********************************************************************* * * Member functions: Skinning * ********************************************************************** *//* ... */ void FRAMEWIN_GetSkinFlexProps (FRAMEWIN_SKINFLEX_PROPS * pProps, int Index); void FRAMEWIN_SetSkinClassic (FRAMEWIN_Handle hObj); void FRAMEWIN_SetSkin (FRAMEWIN_Handle hObj, WIDGET_DRAW_ITEM_FUNC * pfDrawSkin); int FRAMEWIN_DrawSkinFlex (const WIDGET_ITEM_DRAW_INFO * pDrawItemInfo); void FRAMEWIN_SetSkinFlexProps (const FRAMEWIN_SKINFLEX_PROPS * pProps, int Index); void FRAMEWIN_SetDefaultSkinClassic(void); WIDGET_DRAW_ITEM_FUNC * FRAMEWIN_SetDefaultSkin(WIDGET_DRAW_ITEM_FUNC * pfDrawSkin); #define FRAMEWIN_SKIN_FLEX FRAMEWIN_DrawSkinFlex /********************************************************************* * * Member functions: Get Properties * ********************************************************************** *//* ... */ const GUI_FONT * FRAMEWIN_GetFont(FRAMEWIN_Handle hObj); int FRAMEWIN_GetActive (FRAMEWIN_Handle hObj); int FRAMEWIN_GetTitleHeight (FRAMEWIN_Handle hObj); GUI_COLOR FRAMEWIN_GetBarColor (FRAMEWIN_Handle hObj, unsigned Index); int FRAMEWIN_GetBorderSize (FRAMEWIN_Handle hObj); int FRAMEWIN_GetBorderSizeEx(FRAMEWIN_Handle hObj, unsigned Edge); void FRAMEWIN_GetText (FRAMEWIN_Handle hObj, char * pBuffer, int MaxLen); int FRAMEWIN_GetTextAlign (FRAMEWIN_Handle hObj); int FRAMEWIN_GetUserData (FRAMEWIN_Handle hObj, void * pDest, int NumBytes); int FRAMEWIN_IsMinimized (FRAMEWIN_Handle hObj); int FRAMEWIN_IsMaximized (FRAMEWIN_Handle hObj); /********************************************************************* * * Managing default values * ********************************************************************** *//* ... */ GUI_COLOR FRAMEWIN_GetDefaultBarColor (unsigned Index); int FRAMEWIN_GetDefaultBorderSize (void); int FRAMEWIN_GetDefaultTitleHeight(void); GUI_COLOR FRAMEWIN_GetDefaultClientColor(void); const GUI_FONT * FRAMEWIN_GetDefaultFont (void); GUI_COLOR FRAMEWIN_GetDefaultTextColor (unsigned Index); int FRAMEWIN_OwnerDraw (const WIDGET_ITEM_DRAW_INFO * pDrawItemInfo); void FRAMEWIN_SetDefaultBarColor (unsigned Index, GUI_COLOR Color); void FRAMEWIN_SetDefaultBorderSize (int DefaultBorderSize); void FRAMEWIN_SetDefaultTitleHeight(int DefaultTitleHeight); void FRAMEWIN_SetDefaultClientColor(GUI_COLOR Color); void FRAMEWIN_SetDefaultFont (const GUI_FONT * pFont); int FRAMEWIN_SetDefaultTextAlign (int TextAlign); void FRAMEWIN_SetDefaultTextColor (unsigned Index, GUI_COLOR Color); /********************************************************************* * * Macros for compatibility * ********************************************************************** *//* ... */ #define FRAMEWIN_SetDefaultCaptionSize(Height) FRAMEWIN_SetDefaultTitleHeight(Height) #define FRAMEWIN_GetDefaultCaptionSize() FRAMEWIN_GetDefaultTitleHeight() #define FRAMEWIN_CreateButton(hObj, Flags, Off, Id) FRAMEWIN_AddButton(hObj, Flags, Off, Id) #define FRAMEWIN_CreateCloseButton(hObj, Flags, Off) FRAMEWIN_AddCloseButton(hObj, Flags, Off) #define FRAMEWIN_CreateMaxButton(hObj, Flags, Off) FRAMEWIN_AddMaxButton(hObj, Flags, Off) #define FRAMEWIN_CreateMinButton(hObj, Flags, Off) FRAMEWIN_AddMinButton(hObj, Flags, Off) 6 defines #if defined(__cplusplus) }extern "C" { ... } #endif /* ... */ #endif // GUI_WINSUPPORT/* ... */ #endif // FRAMEWIN_H /*************************** End of file ****************************/
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.