STM32F769IDiscovery  1.00
uDANTE Audio Networking with STM32F7 DISCO board
DIALOG.h
Go to the documentation of this file.
1 /*********************************************************************
2 * SEGGER Microcontroller GmbH & Co. KG *
3 * Solutions for real time microcontroller applications *
4 **********************************************************************
5 * *
6 * (c) 1996 - 2015 SEGGER Microcontroller GmbH & Co. KG *
7 * *
8 * Internet: www.segger.com Support: support@segger.com *
9 * *
10 **********************************************************************
11 
12 ** emWin V5.28 - Graphical user interface for embedded applications **
13 All Intellectual Property rights in the Software belongs to SEGGER.
14 emWin is protected by international copyright laws. Knowledge of the
15 source code may not be used to write a similar product. This file may
16 only be used in accordance with the following terms:
17 
18 The software has been licensed to STMicroelectronics International
19 N.V. a Dutch company with a Swiss branch and its headquarters in Plan-
20 les-Ouates, Geneva, 39 Chemin du Champ des Filles, Switzerland for the
21 purposes of creating libraries for ARM Cortex-M-based 32-bit microcon_
22 troller products commercialized by Licensee only, sublicensed and dis_
23 tributed under the terms and conditions of the End User License Agree_
24 ment supplied by STMicroelectronics International N.V.
25 Full source code is available at: www.segger.com
26 
27 We appreciate your understanding and fairness.
28 ----------------------------------------------------------------------
29 File : Dialog.h
30 Purpose : Dialog box include
31 --------------------END-OF-HEADER-------------------------------------
32 */
33 
34 #ifndef DIALOG_H
35 #define DIALOG_H
36 
37 #include "WM.h"
38 #include "BUTTON.h"
39 #include "CALENDAR.h"
40 #include "CHECKBOX.h"
41 #include "CHOOSECOLOR.h"
42 #include "CHOOSEFILE.h"
43 #include "DROPDOWN.h"
44 #include "EDIT.h"
45 #include "FRAMEWIN.h"
46 #include "GRAPH.h"
47 #include "HEADER.h"
48 #include "ICONVIEW.h"
49 #include "IMAGE.h"
50 #include "LISTBOX.h"
51 #include "LISTVIEW.h"
52 #include "LISTWHEEL.h"
53 #include "MENU.h"
54 #include "MULTIEDIT.h"
55 #include "MULTIPAGE.h"
56 #include "PROGBAR.h"
57 #include "RADIO.h"
58 #include "SCROLLBAR.h"
59 #include "SLIDER.h"
60 #include "SPINBOX.h"
61 #include "TEXT.h"
62 #include "TREEVIEW.h"
63 #include "KNOB.h"
64 
65 #if GUI_WINSUPPORT
66 
67 #if defined(__cplusplus)
68  extern "C" { /* Make sure we have C-declarations in C++ programs */
69 #endif
70 
71 /*********************************************************************
72 *
73 * WINDOW API
74 */
75 WM_HWIN WINDOW_CreateEx (int x0, int y0, int xSize, int ySize, WM_HWIN hParent, int WinFlags, int ExFlags, int Id, WM_CALLBACK * cb);
76 WM_HWIN WINDOW_CreateUser (int x0, int y0, int xSize, int ySize, WM_HWIN hParent, int WinFlags, int ExFlags, int Id, WM_CALLBACK * cb, int NumExtraBytes);
77 WM_HWIN WINDOW_CreateIndirect (const GUI_WIDGET_CREATE_INFO * pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK * cb);
78 GUI_COLOR WINDOW_GetDefaultBkColor(void);
79 int WINDOW_GetUserData (WM_HWIN hObj, void * pDest, int NumBytes);
80 void WINDOW_SetBkColor (WM_HWIN hObj, GUI_COLOR Color);
81 void WINDOW_SetDefaultBkColor(GUI_COLOR Color);
82 int WINDOW_SetUserData (WM_HWIN hObj, const void * pSrc, int NumBytes);
83 
84 void WINDOW_Callback(WM_MESSAGE * pMsg);
85 
86 #if defined(__cplusplus)
87  }
88 #endif
89 
90 #endif // GUI_WINSUPPORT
91 #endif // DIALOG_H
92 
93 /*************************** End of file ****************************/
LCD_COLOR GUI_COLOR
Definition: GUI_Type.h:50