Headers for emWin lib

Dependents:   DISCO-F746NG_rtos_test

Committer:
redbird
Date:
Sat Mar 26 22:49:50 2016 +0000
Revision:
0:1bf8f02b0770
new code integration

Who changed what in which revision?

UserRevisionLine numberNew contents of line
redbird 0:1bf8f02b0770 1 /*********************************************************************
redbird 0:1bf8f02b0770 2 * SEGGER Microcontroller GmbH & Co. KG *
redbird 0:1bf8f02b0770 3 * Solutions for real time microcontroller applications *
redbird 0:1bf8f02b0770 4 **********************************************************************
redbird 0:1bf8f02b0770 5 * *
redbird 0:1bf8f02b0770 6 * (c) 1996 - 2014 SEGGER Microcontroller GmbH & Co. KG *
redbird 0:1bf8f02b0770 7 * *
redbird 0:1bf8f02b0770 8 * Internet: www.segger.com Support: support@segger.com *
redbird 0:1bf8f02b0770 9 * *
redbird 0:1bf8f02b0770 10 **********************************************************************
redbird 0:1bf8f02b0770 11
redbird 0:1bf8f02b0770 12 ** emWin V5.24 - Graphical user interface for embedded applications **
redbird 0:1bf8f02b0770 13 All Intellectual Property rights in the Software belongs to SEGGER.
redbird 0:1bf8f02b0770 14 emWin is protected by international copyright laws. Knowledge of the
redbird 0:1bf8f02b0770 15 source code may not be used to write a similar product. This file may
redbird 0:1bf8f02b0770 16 only be used in accordance with the following terms:
redbird 0:1bf8f02b0770 17
redbird 0:1bf8f02b0770 18 The software has been licensed to NXP Semiconductors USA, Inc. whose
redbird 0:1bf8f02b0770 19 registered office is situated at 411 E. Plumeria Drive, San Jose,
redbird 0:1bf8f02b0770 20 CA 95134, USA solely for the purposes of creating libraries for
redbird 0:1bf8f02b0770 21 NXPs M0, M3/M4 and ARM7/9 processor-based devices, sublicensed and
redbird 0:1bf8f02b0770 22 distributed under the terms and conditions of the NXP End User License
redbird 0:1bf8f02b0770 23 Agreement.
redbird 0:1bf8f02b0770 24 Full source code is available at: www.segger.com
redbird 0:1bf8f02b0770 25
redbird 0:1bf8f02b0770 26 We appreciate your understanding and fairness.
redbird 0:1bf8f02b0770 27 ----------------------------------------------------------------------
redbird 0:1bf8f02b0770 28 File : PROGBAR.h
redbird 0:1bf8f02b0770 29 Purpose : Progressbar include
redbird 0:1bf8f02b0770 30 --------------------END-OF-HEADER-------------------------------------
redbird 0:1bf8f02b0770 31 */
redbird 0:1bf8f02b0770 32
redbird 0:1bf8f02b0770 33 #ifndef PROGBAR_H /* Avoid multiple inclusion */
redbird 0:1bf8f02b0770 34 #define PROGBAR_H
redbird 0:1bf8f02b0770 35
redbird 0:1bf8f02b0770 36 #include "WM.h"
redbird 0:1bf8f02b0770 37 #include "DIALOG_Intern.h" /* Req. for Create indirect data structure */
redbird 0:1bf8f02b0770 38 #include "WIDGET.h"
redbird 0:1bf8f02b0770 39
redbird 0:1bf8f02b0770 40 #if GUI_WINSUPPORT
redbird 0:1bf8f02b0770 41
redbird 0:1bf8f02b0770 42 #if defined(__cplusplus)
redbird 0:1bf8f02b0770 43 extern "C" { /* Make sure we have C-declarations in C++ programs */
redbird 0:1bf8f02b0770 44 #endif
redbird 0:1bf8f02b0770 45
redbird 0:1bf8f02b0770 46 /*********************************************************************
redbird 0:1bf8f02b0770 47 *
redbird 0:1bf8f02b0770 48 * Defines
redbird 0:1bf8f02b0770 49 *
redbird 0:1bf8f02b0770 50 **********************************************************************
redbird 0:1bf8f02b0770 51 */
redbird 0:1bf8f02b0770 52 /*********************************************************************
redbird 0:1bf8f02b0770 53 *
redbird 0:1bf8f02b0770 54 * Create flags
redbird 0:1bf8f02b0770 55 */
redbird 0:1bf8f02b0770 56 #define PROGBAR_CF_HORIZONTAL (0 << 0)
redbird 0:1bf8f02b0770 57 #define PROGBAR_CF_VERTICAL (1 << 0)
redbird 0:1bf8f02b0770 58 #define PROGBAR_CF_USER (1 << 1)
redbird 0:1bf8f02b0770 59
redbird 0:1bf8f02b0770 60 /*********************************************************************
redbird 0:1bf8f02b0770 61 *
redbird 0:1bf8f02b0770 62 * Skinning constants
redbird 0:1bf8f02b0770 63 */
redbird 0:1bf8f02b0770 64 #define PROGBAR_SKINFLEX_L 0
redbird 0:1bf8f02b0770 65 #define PROGBAR_SKINFLEX_R 1
redbird 0:1bf8f02b0770 66
redbird 0:1bf8f02b0770 67 /*********************************************************************
redbird 0:1bf8f02b0770 68 *
redbird 0:1bf8f02b0770 69 * Types
redbird 0:1bf8f02b0770 70 *
redbird 0:1bf8f02b0770 71 **********************************************************************
redbird 0:1bf8f02b0770 72 */
redbird 0:1bf8f02b0770 73 typedef WM_HMEM PROGBAR_Handle;
redbird 0:1bf8f02b0770 74
redbird 0:1bf8f02b0770 75 typedef struct {
redbird 0:1bf8f02b0770 76 GUI_COLOR aColorUpperL[2];
redbird 0:1bf8f02b0770 77 GUI_COLOR aColorLowerL[2];
redbird 0:1bf8f02b0770 78 GUI_COLOR aColorUpperR[2];
redbird 0:1bf8f02b0770 79 GUI_COLOR aColorLowerR[2];
redbird 0:1bf8f02b0770 80 GUI_COLOR ColorFrame;
redbird 0:1bf8f02b0770 81 GUI_COLOR ColorText;
redbird 0:1bf8f02b0770 82 } PROGBAR_SKINFLEX_PROPS;
redbird 0:1bf8f02b0770 83
redbird 0:1bf8f02b0770 84 typedef struct {
redbird 0:1bf8f02b0770 85 int IsVertical;
redbird 0:1bf8f02b0770 86 int Index;
redbird 0:1bf8f02b0770 87 const char * pText;
redbird 0:1bf8f02b0770 88 } PROGBAR_SKINFLEX_INFO;
redbird 0:1bf8f02b0770 89
redbird 0:1bf8f02b0770 90 /*********************************************************************
redbird 0:1bf8f02b0770 91 *
redbird 0:1bf8f02b0770 92 * Create functions
redbird 0:1bf8f02b0770 93 *
redbird 0:1bf8f02b0770 94 **********************************************************************
redbird 0:1bf8f02b0770 95 */
redbird 0:1bf8f02b0770 96
redbird 0:1bf8f02b0770 97 PROGBAR_Handle PROGBAR_Create (int x0, int y0, int xSize, int ySize, int Flags);
redbird 0:1bf8f02b0770 98 PROGBAR_Handle PROGBAR_CreateAsChild (int x0, int y0, int xSize, int ySize, WM_HWIN hParent, int Id, int Flags);
redbird 0:1bf8f02b0770 99 PROGBAR_Handle PROGBAR_CreateEx (int x0, int y0, int xSize, int ySize, WM_HWIN hParent, int WinFlags, int ExFlags, int Id);
redbird 0:1bf8f02b0770 100 PROGBAR_Handle PROGBAR_CreateUser (int x0, int y0, int xSize, int ySize, WM_HWIN hParent, int WinFlags, int ExFlags, int Id, int NumExtraBytes);
redbird 0:1bf8f02b0770 101 PROGBAR_Handle PROGBAR_CreateIndirect(const GUI_WIDGET_CREATE_INFO * pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK * cb);
redbird 0:1bf8f02b0770 102
redbird 0:1bf8f02b0770 103 /*********************************************************************
redbird 0:1bf8f02b0770 104 *
redbird 0:1bf8f02b0770 105 * The callback ...
redbird 0:1bf8f02b0770 106 *
redbird 0:1bf8f02b0770 107 * Do not call it directly ! It is only to be used from within an
redbird 0:1bf8f02b0770 108 * overwritten callback.
redbird 0:1bf8f02b0770 109 */
redbird 0:1bf8f02b0770 110 void PROGBAR_Callback(WM_MESSAGE * pMsg);
redbird 0:1bf8f02b0770 111
redbird 0:1bf8f02b0770 112 /*********************************************************************
redbird 0:1bf8f02b0770 113 *
redbird 0:1bf8f02b0770 114 * Standard member functions
redbird 0:1bf8f02b0770 115 *
redbird 0:1bf8f02b0770 116 **********************************************************************
redbird 0:1bf8f02b0770 117 */
redbird 0:1bf8f02b0770 118
redbird 0:1bf8f02b0770 119 #define PROGBAR_EnableMemdev(hObj) WM_EnableMemdev(hObj)
redbird 0:1bf8f02b0770 120 #define PROGBAR_DisableMemdev(hObj) WM_DisableMemdev(hObj)
redbird 0:1bf8f02b0770 121 #define PROGBAR_Delete(hObj) WM_DeleteWindow(hObj)
redbird 0:1bf8f02b0770 122 #define PROGBAR_Paint(hObj) WM_Paint(hObj)
redbird 0:1bf8f02b0770 123
redbird 0:1bf8f02b0770 124 /*********************************************************************
redbird 0:1bf8f02b0770 125 *
redbird 0:1bf8f02b0770 126 * Individual member functions
redbird 0:1bf8f02b0770 127 *
redbird 0:1bf8f02b0770 128 **********************************************************************
redbird 0:1bf8f02b0770 129 */
redbird 0:1bf8f02b0770 130
redbird 0:1bf8f02b0770 131 int PROGBAR_GetUserData (PROGBAR_Handle hObj, void * pDest, int NumBytes);
redbird 0:1bf8f02b0770 132 void PROGBAR_SetBarColor (PROGBAR_Handle hObj, unsigned int index, GUI_COLOR color);
redbird 0:1bf8f02b0770 133 void PROGBAR_SetFont (PROGBAR_Handle hObj, const GUI_FONT * pfont);
redbird 0:1bf8f02b0770 134 void PROGBAR_SetMinMax (PROGBAR_Handle hObj, int Min, int Max);
redbird 0:1bf8f02b0770 135 void PROGBAR_SetText (PROGBAR_Handle hObj, const char* s);
redbird 0:1bf8f02b0770 136 void PROGBAR_SetTextAlign(PROGBAR_Handle hObj, int Align);
redbird 0:1bf8f02b0770 137 void PROGBAR_SetTextColor(PROGBAR_Handle hObj, unsigned int index, GUI_COLOR color);
redbird 0:1bf8f02b0770 138 void PROGBAR_SetTextPos (PROGBAR_Handle hObj, int XOff, int YOff);
redbird 0:1bf8f02b0770 139 void PROGBAR_SetValue (PROGBAR_Handle hObj, int v);
redbird 0:1bf8f02b0770 140 int PROGBAR_SetUserData (PROGBAR_Handle hObj, const void * pSrc, int NumBytes);
redbird 0:1bf8f02b0770 141
redbird 0:1bf8f02b0770 142 /*********************************************************************
redbird 0:1bf8f02b0770 143 *
redbird 0:1bf8f02b0770 144 * Member functions: Skinning
redbird 0:1bf8f02b0770 145 *
redbird 0:1bf8f02b0770 146 **********************************************************************
redbird 0:1bf8f02b0770 147 */
redbird 0:1bf8f02b0770 148 void PROGBAR_GetSkinFlexProps (PROGBAR_SKINFLEX_PROPS * pProps, int Index);
redbird 0:1bf8f02b0770 149 void PROGBAR_SetSkinClassic (PROGBAR_Handle hObj);
redbird 0:1bf8f02b0770 150 void PROGBAR_SetSkin (PROGBAR_Handle hObj, WIDGET_DRAW_ITEM_FUNC * pfDrawSkin);
redbird 0:1bf8f02b0770 151 int PROGBAR_DrawSkinFlex (const WIDGET_ITEM_DRAW_INFO * pDrawItemInfo);
redbird 0:1bf8f02b0770 152 void PROGBAR_SetSkinFlexProps (const PROGBAR_SKINFLEX_PROPS * pProps, int Index);
redbird 0:1bf8f02b0770 153 void PROGBAR_SetDefaultSkinClassic(void);
redbird 0:1bf8f02b0770 154 WIDGET_DRAW_ITEM_FUNC * PROGBAR_SetDefaultSkin(WIDGET_DRAW_ITEM_FUNC * pfDrawSkin);
redbird 0:1bf8f02b0770 155
redbird 0:1bf8f02b0770 156 #define PROGBAR_SKIN_FLEX PROGBAR_DrawSkinFlex
redbird 0:1bf8f02b0770 157
redbird 0:1bf8f02b0770 158 #if defined(__cplusplus)
redbird 0:1bf8f02b0770 159 }
redbird 0:1bf8f02b0770 160 #endif
redbird 0:1bf8f02b0770 161
redbird 0:1bf8f02b0770 162 #endif // GUI_WINSUPPORT
redbird 0:1bf8f02b0770 163 #endif // PROGBAR_H
redbird 0:1bf8f02b0770 164
redbird 0:1bf8f02b0770 165 /*************************** End of file ****************************/