mGNCS API Reference
v1.5.0
A new control set and a new framework for MiniGUI apps
|
Go to the documentation of this file.
54 #ifndef _MGUI_WIDGET_LSTCLM_H
55 #define _MGUI_WIDGET_LSTCLM_H
98 typedef struct _NCS_LSTCLM_SORTDATA
126 #define NCSF_LSTCLM_LEFTALIGN (0x00<<NCSF_ITEM_SHIFT)
132 #define NCSF_LSTCLM_RIGHTALIGN (0x01<<NCSF_ITEM_SHIFT)
138 #define NCSF_LSTCLM_CENTERALIGN (0x02<<NCSF_ITEM_SHIFT)
144 #define NCSF_LSTCLM_TOPALIGN (0x00<<NCSF_ITEM_SHIFT)
150 #define NCSF_LSTCLM_BOTTOMALIGN (0x04<<NCSF_ITEM_SHIFT)
156 #define NCSF_LSTCLM_VCENTERALIGN (0x08<<NCSF_ITEM_SHIFT)
162 #define NCSF_LSTCLM_VALIGNMASK (0x0C<<NCSF_ITEM_SHIFT)
168 #define NCSF_LSTCLM_SHIFT (NCSF_ITEM_SHIFT+4)
170 #define mListColumnHeader(className)\
171 mItemHeader(className) \
174 ncsLstClmSortType sort; \
175 NCS_CB_LISTV_CMPCLM pfnCmp;
198 #define mListColumnClassHeader(clsName, superCls) \
199 mItemClassHeader(clsName, superCls)
206 struct _mListColumnClass
The structure of mListColumn. It's used as header by mListView.
The structure of mItem. It is the abstract superclass of all items occur within specific controls....
The virtual function table of mListColumn, which derived from mItemClass.