NuMaker emWin HMI

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers MULTIPAGE_Private.h Source File

MULTIPAGE_Private.h

00001 /*********************************************************************
00002 *                 SEGGER Software GmbH                               *
00003 *        Solutions for real time microcontroller applications        *
00004 **********************************************************************
00005 *                                                                    *
00006 *        (c) 1996 - 2018  SEGGER Microcontroller GmbH                *
00007 *                                                                    *
00008 *        Internet: www.segger.com    Support:  support@segger.com    *
00009 *                                                                    *
00010 **********************************************************************
00011 
00012 ** emWin V5.48 - Graphical user interface for embedded applications **
00013 All  Intellectual Property rights in the Software belongs to  SEGGER.
00014 emWin is protected by  international copyright laws.  Knowledge of the
00015 source code may not be used to write a similar product. This file may
00016 only be used in accordance with the following terms:
00017 
00018 The  software has  been licensed by SEGGER Software GmbH to Nuvoton Technology Corporationat the address: No. 4, Creation Rd. III, Hsinchu Science Park, Taiwan
00019 for the purposes  of  creating  libraries  for its 
00020 Arm Cortex-M and  Arm9 32-bit microcontrollers, commercialized and distributed by Nuvoton Technology Corporation
00021 under  the terms and conditions  of  an  End  User  
00022 License  Agreement  supplied  with  the libraries.
00023 Full source code is available at: www.segger.com
00024 
00025 We appreciate your understanding and fairness.
00026 ----------------------------------------------------------------------
00027 Licensing information
00028 Licensor:                 SEGGER Software GmbH
00029 Licensed to:              Nuvoton Technology Corporation, No. 4, Creation Rd. III, Hsinchu Science Park, 30077 Hsinchu City, Taiwan
00030 Licensed SEGGER software: emWin
00031 License number:           GUI-00735
00032 License model:            emWin License Agreement, signed February 27, 2018
00033 Licensed platform:        Cortex-M and ARM9 32-bit series microcontroller designed and manufactured by or for Nuvoton Technology Corporation
00034 ----------------------------------------------------------------------
00035 Support and Update Agreement (SUA)
00036 SUA period:               2018-03-26 - 2019-03-27
00037 Contact to extend SUA:    sales@segger.com
00038 ----------------------------------------------------------------------
00039 File        : MULTIPAGE_Private.h
00040 Purpose     : Private MULTIPAGE include
00041 --------------------END-OF-HEADER-------------------------------------
00042 */
00043 
00044 #ifndef MULTIPAGE_PRIVATE_H
00045 #define MULTIPAGE_PRIVATE_H
00046 
00047 #include "GUI_Debug.h"
00048 #include "GUI_ARRAY.h"
00049 #include "MULTIPAGE.h"
00050 
00051 #if GUI_WINSUPPORT
00052 
00053 /*********************************************************************
00054 *
00055 *       Defines
00056 *
00057 **********************************************************************
00058 */
00059 #define MULTIPAGE_STATE_ENABLED     (1 << 0)
00060 #define MULTIPAGE_STATE_SCROLLMODE  WIDGET_STATE_USER0
00061 
00062 #define MULTIPAGE_NUMCOLORS         2
00063 
00064 /*********************************************************************
00065 *
00066 *       Object definition
00067 *
00068 **********************************************************************
00069 */
00070 //
00071 // MULTIPAGE_PAGE
00072 //
00073 typedef struct {
00074   WM_HWIN hWin;
00075   U8      Status;
00076   int     ItemWidth;
00077   WM_HMEM hDrawObj[3];
00078   char    acText;
00079 } MULTIPAGE_PAGE;
00080 
00081 //
00082 // MULTIPAGE_SKIN_PRIVATE
00083 //
00084 typedef struct {
00085   WIDGET_DRAW_ITEM_FUNC * pfDrawSkin;
00086 } MULTIPAGE_SKIN_PRIVATE;
00087 
00088 //
00089 // MULTIPAGE_PROPS
00090 //
00091 typedef struct {
00092   const GUI_FONT          * pFont;
00093   unsigned                  Align;
00094   GUI_COLOR                 aBkColor[MULTIPAGE_NUMCOLORS];
00095   GUI_COLOR                 aTextColor[MULTIPAGE_NUMCOLORS];
00096   MULTIPAGE_SKIN_PRIVATE    SkinPrivate;
00097   int                       BorderSize0;
00098   int                       BorderSize1;
00099   unsigned                  TextAlign;
00100   unsigned                  Scrollbar;
00101   int                    (* pfGetTouchedPage)(MULTIPAGE_Handle hObj, int x, int y);
00102   int                    (* pfGetTabBarWidth)(MULTIPAGE_Handle hObj);
00103 } MULTIPAGE_PROPS;
00104 
00105 //
00106 // MULTIPAGE_Obj
00107 //
00108 typedef struct MULTIPAGE_Obj MULTIPAGE_Obj;
00109 
00110 struct MULTIPAGE_Obj {
00111   WIDGET                 Widget;
00112   void                (* pfDrawTextItem)(MULTIPAGE_Obj * pObj, const char * pText, unsigned Index, const GUI_RECT * pRect, int x0, int xSize, int ColorIndex);
00113   WM_HWIN                hClient;
00114   GUI_ARRAY              hPageArray;
00115   unsigned               Selection;
00116   int                    ScrollState;
00117   MULTIPAGE_PROPS        Props;
00118   WIDGET_SKIN const    * pWidgetSkin;
00119   MULTIPAGE_SKIN_PROPS   SkinProps;
00120   int                    ItemHeight;
00121   int                    MaxHeight;
00122 };
00123 
00124 /*********************************************************************
00125 *
00126 *       Macros for internal use
00127 *
00128 **********************************************************************
00129 */
00130 #if GUI_DEBUG_LEVEL >= GUI_DEBUG_LEVEL_CHECK_ALL
00131   #define MULTIPAGE_INIT_ID(p) (p->Widget.DebugId = MULTIPAGE_ID)
00132 #else
00133   #define MULTIPAGE_INIT_ID(p)
00134 #endif
00135 
00136 #if GUI_DEBUG_LEVEL >= GUI_DEBUG_LEVEL_CHECK_ALL
00137   MULTIPAGE_Obj * MULTIPAGE_LockH(MULTIPAGE_Handle h);
00138   #define MULTIPAGE_LOCK_H(h)   MULTIPAGE_LockH(h)
00139 #else
00140   #define MULTIPAGE_LOCK_H(h)   (MULTIPAGE_Obj *)GUI_LOCK_H(h)
00141 #endif
00142 
00143 /*********************************************************************
00144 *
00145 *       Externals
00146 *
00147 **********************************************************************
00148 */
00149 extern GUI_COLOR           MULTIPAGE__aEffectColor[2];
00150 extern MULTIPAGE_PROPS     MULTIPAGE__DefaultProps;
00151 
00152 extern const WIDGET_SKIN   MULTIPAGE__SkinClassic;
00153 extern       WIDGET_SKIN   MULTIPAGE__Skin;
00154 
00155 extern WIDGET_SKIN const * MULTIPAGE__pSkinDefault;
00156 
00157 /*********************************************************************
00158 *
00159 *       Private functions
00160 *
00161 **********************************************************************
00162 */
00163 void MULTIPAGE__CalcBorderRect (MULTIPAGE_Obj * pObj, GUI_RECT * pRect);
00164 void MULTIPAGE__CalcClientRect (MULTIPAGE_Handle hObj, GUI_RECT * pRect);
00165 void MULTIPAGE__DeleteScrollbar(MULTIPAGE_Handle hObj);
00166 void MULTIPAGE__DrawTextItemH  (MULTIPAGE_Obj * pObj, const char * pText, unsigned Index, const GUI_RECT * pRect, int x0, int w, int ColorIndex);
00167 int  MULTIPAGE__GetPagePos     (MULTIPAGE_Handle hObj, unsigned Index);
00168 int  MULTIPAGE__GetPageWidth   (MULTIPAGE_Handle hObj, unsigned Index);
00169 void MULTIPAGE__GetTabBarRect  (MULTIPAGE_Handle hObj, GUI_RECT * pRect);
00170 void MULTIPAGE__UpdatePositions(MULTIPAGE_Handle hObj);
00171 
00172 /*********************************************************************
00173 *
00174 *       Private Skinning functions
00175 *
00176 **********************************************************************
00177 */
00178 int  MULTIPAGE_SKIN__GetPagePos    (MULTIPAGE_Handle hObj, unsigned Index);
00179 int  MULTIPAGE_SKIN__GetTabBarWidth(MULTIPAGE_Handle hObj);
00180 int  MULTIPAGE_SKIN__GetTouchedPage(MULTIPAGE_Handle hObj, int TouchX, int TouchY);
00181 
00182 #endif  // GUI_WINSUPPORT
00183 #endif  // MULTIPAGE_PRIVATE_H
00184 
00185 /*************************** End of file ****************************/