Headers for emWin lib
Dependents: DISCO-F746NG_rtos_test
emWin_header/LISTVIEW.h
- Committer:
- redbird
- Date:
- 2016-03-26
- Revision:
- 0:1bf8f02b0770
File content as of revision 0:1bf8f02b0770:
/********************************************************************* * SEGGER Microcontroller GmbH & Co. KG * * Solutions for real time microcontroller applications * ********************************************************************** * * * (c) 1996 - 2014 SEGGER Microcontroller GmbH & Co. KG * * * * Internet: www.segger.com Support: support@segger.com * * * ********************************************************************** ** emWin V5.24 - 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 NXP Semiconductors USA, Inc. whose registered office is situated at 411 E. Plumeria Drive, San Jose, CA 95134, USA solely for the purposes of creating libraries for NXPs M0, M3/M4 and ARM7/9 processor-based devices, sublicensed and distributed under the terms and conditions of the NXP End User License Agreement. Full source code is available at: www.segger.com We appreciate your understanding and fairness. ---------------------------------------------------------------------- File : LISTVIEW.h Purpose : LISTVIEW include --------------------END-OF-HEADER------------------------------------- */ #ifndef LISTVIEW_H #define LISTVIEW_H #include "WM.h" #include "DIALOG_Intern.h" // Req. for Create indirect data structure #include "ICONVIEW.h" #include "HEADER.h" #if GUI_WINSUPPORT #if defined(__cplusplus) extern "C" { /* Make sure we have C-declarations in C++ programs */ #endif /********************************************************************* * * Defines */ #define LISTVIEW_ALL_ITEMS -1 /********************************************************************* * * Color indices */ #define LISTVIEW_CI_UNSEL 0 #define LISTVIEW_CI_SEL 1 #define LISTVIEW_CI_SELFOCUS 2 #define LISTVIEW_CI_DISABLED 3 /************************************************************ * * Create / Status flags */ #define LISTVIEW_CF_AUTOSCROLLBAR_H (1 << 0) #define LISTVIEW_CF_AUTOSCROLLBAR_V (1 << 1) #define LISTVIEW_SF_AUTOSCROLLBAR_H LISTVIEW_CF_AUTOSCROLLBAR_H #define LISTVIEW_SF_AUTOSCROLLBAR_V LISTVIEW_CF_AUTOSCROLLBAR_V /********************************************************************* * * Public Types * ********************************************************************** */ typedef WM_HMEM LISTVIEW_Handle; /********************************************************************* * * Create functions * ********************************************************************** */ LISTVIEW_Handle LISTVIEW_Create (int x0, int y0, int xSize, int ySize, WM_HWIN hParent, int Id, int Flags, int SpecialFlags); LISTVIEW_Handle LISTVIEW_CreateEx (int x0, int y0, int xSize, int ySize, WM_HWIN hParent, int WinFlags, int ExFlags, int Id); LISTVIEW_Handle LISTVIEW_CreateUser (int x0, int y0, int xSize, int ySize, WM_HWIN hParent, int WinFlags, int ExFlags, int Id, int NumExtraBytes); LISTVIEW_Handle LISTVIEW_CreateAttached(WM_HWIN hParent, int Id, int SpecialFlags); LISTVIEW_Handle LISTVIEW_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 LISTVIEW_Callback(WM_MESSAGE * pMsg); /********************************************************************* * * Standard member functions * ********************************************************************** */ #define LISTVIEW_Delete(hObj) WM_DeleteWindow (hObj) #define LISTVIEW_DisableMemdev(hObj) WM_DisableMemdev (hObj) #define LISTVIEW_EnableMemdev(hObj) WM_EnableMemdev (hObj) #define LISTVIEW_Invalidate(hObj) WM_InvalidateWindow(hObj) #define LISTVIEW_Paint(hObj) WM_Paint (hObj) /********************************************************************* * * Member functions * ********************************************************************** */ int LISTVIEW_AddColumn (LISTVIEW_Handle hObj, int Width, const char * s, int Align); int LISTVIEW_AddRow (LISTVIEW_Handle hObj, const GUI_ConstString * ppText); int LISTVIEW_CompareText (const void * p0, const void * p1); int LISTVIEW_CompareDec (const void * p0, const void * p1); void LISTVIEW_DecSel (LISTVIEW_Handle hObj); void LISTVIEW_DeleteAllRows (LISTVIEW_Handle hObj); void LISTVIEW_DeleteColumn (LISTVIEW_Handle hObj, unsigned Index); void LISTVIEW_DeleteRow (LISTVIEW_Handle hObj, unsigned Index); void LISTVIEW_DeleteRowSorted (LISTVIEW_Handle hObj, int Row); void LISTVIEW_DisableRow (LISTVIEW_Handle hObj, unsigned Row); void LISTVIEW_DisableSort (LISTVIEW_Handle hObj); void LISTVIEW_EnableRow (LISTVIEW_Handle hObj, unsigned Row); void LISTVIEW_EnableSort (LISTVIEW_Handle hObj); GUI_COLOR LISTVIEW_GetBkColor (LISTVIEW_Handle hObj, unsigned Index); const GUI_FONT * LISTVIEW_GetFont(LISTVIEW_Handle hObj); HEADER_Handle LISTVIEW_GetHeader (LISTVIEW_Handle hObj); void LISTVIEW_GetItemText (LISTVIEW_Handle hObj, unsigned Column, unsigned Row, char * pBuffer, unsigned MaxSize); unsigned LISTVIEW_GetItemTextLen (LISTVIEW_Handle hObj, unsigned Column, unsigned Row); void LISTVIEW_GetItemTextSorted (LISTVIEW_Handle hObj, unsigned Column, unsigned Row, char * pBuffer, unsigned MaxSize); unsigned LISTVIEW_GetLBorder (LISTVIEW_Handle hObj); unsigned LISTVIEW_GetNumColumns (LISTVIEW_Handle hObj); unsigned LISTVIEW_GetNumRows (LISTVIEW_Handle hObj); unsigned LISTVIEW_GetRBorder (LISTVIEW_Handle hObj); int LISTVIEW_GetSel (LISTVIEW_Handle hObj); int LISTVIEW_GetSelUnsorted (LISTVIEW_Handle hObj); int LISTVIEW_GetTextAlign (LISTVIEW_Handle hObj, unsigned ColIndex); GUI_COLOR LISTVIEW_GetTextColor (LISTVIEW_Handle hObj, unsigned Index); int LISTVIEW_GetUserData (LISTVIEW_Handle hObj, void * pDest, int NumBytes); U32 LISTVIEW_GetUserDataRow (LISTVIEW_Handle hObj, unsigned Row); GUI_WRAPMODE LISTVIEW_GetWrapMode (LISTVIEW_Handle hObj); void LISTVIEW_IncSel (LISTVIEW_Handle hObj); int LISTVIEW_InsertRow (LISTVIEW_Handle hObj, unsigned Index, const GUI_ConstString * ppText); int LISTVIEW_OwnerDraw (const WIDGET_ITEM_DRAW_INFO * pDrawItemInfo); unsigned LISTVIEW_RowIsDisabled (LISTVIEW_Handle hObj, unsigned Row); void LISTVIEW_SetAutoScrollH (LISTVIEW_Handle hObj, int OnOff); void LISTVIEW_SetAutoScrollV (LISTVIEW_Handle hObj, int OnOff); void LISTVIEW_SetItemBitmap (LISTVIEW_Handle hObj, unsigned Column, unsigned Row, int xOff, int yOff, const GUI_BITMAP * pBitmap); void LISTVIEW_SetBkColor (LISTVIEW_Handle hObj, unsigned int Index, GUI_COLOR Color); void LISTVIEW_SetColumnWidth (LISTVIEW_Handle hObj, unsigned int Index, int Width); void LISTVIEW_SetCompareFunc (LISTVIEW_Handle hObj, unsigned Column, int (* fpCompare)(const void * p0, const void * p1)); unsigned LISTVIEW_SetFixed (LISTVIEW_Handle hObj, unsigned Fixed); void LISTVIEW_SetFont (LISTVIEW_Handle hObj, const GUI_FONT * pFont); int LISTVIEW_SetGridVis (LISTVIEW_Handle hObj, int Show); void LISTVIEW_SetHeaderHeight (LISTVIEW_Handle hObj, unsigned HeaderHeight); void LISTVIEW_SetItemBkColor (LISTVIEW_Handle hObj, unsigned Column, unsigned Row, unsigned int Index, GUI_COLOR Color); void LISTVIEW_SetItemText (LISTVIEW_Handle hObj, unsigned Column, unsigned Row, const char * s); void LISTVIEW_SetItemTextColor (LISTVIEW_Handle hObj, unsigned Column, unsigned Row, unsigned int Index, GUI_COLOR Color); void LISTVIEW_SetLBorder (LISTVIEW_Handle hObj, unsigned BorderSize); void LISTVIEW_SetOwnerDraw (LISTVIEW_Handle hObj, WIDGET_DRAW_ITEM_FUNC * pfDrawItem); void LISTVIEW_SetRBorder (LISTVIEW_Handle hObj, unsigned BorderSize); unsigned LISTVIEW_SetRowHeight (LISTVIEW_Handle hObj, unsigned RowHeight); void LISTVIEW_SetSel (LISTVIEW_Handle hObj, int Sel); void LISTVIEW_SetSelUnsorted (LISTVIEW_Handle hObj, int Sel); unsigned LISTVIEW_SetSort (LISTVIEW_Handle hObj, unsigned Column, unsigned Reverse); void LISTVIEW_SetTextAlign (LISTVIEW_Handle hObj, unsigned int Index, int Align); void LISTVIEW_SetTextColor (LISTVIEW_Handle hObj, unsigned int Index, GUI_COLOR Color); int LISTVIEW_SetUserData (LISTVIEW_Handle hObj, const void * pSrc, int NumBytes); void LISTVIEW_SetUserDataRow (LISTVIEW_Handle hObj, unsigned Row, U32 UserData); void LISTVIEW_SetWrapMode (LISTVIEW_Handle hObj, GUI_WRAPMODE WrapMode); /********************************************************************* * * Global functions * ********************************************************************** */ GUI_COLOR LISTVIEW_SetDefaultBkColor (unsigned Index, GUI_COLOR Color); const GUI_FONT * LISTVIEW_SetDefaultFont (const GUI_FONT * pFont); GUI_COLOR LISTVIEW_SetDefaultGridColor(GUI_COLOR Color); GUI_COLOR LISTVIEW_SetDefaultTextColor(unsigned Index, GUI_COLOR Color); #if defined(__cplusplus) } #endif #endif // GUI_WINSUPPORT #endif // LISTVIEW_H /*************************** End of file ****************************/