diff options
author | Joel Bodenmann <joel@unormal.org> | 2013-07-27 22:55:32 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2013-07-27 22:55:32 +0200 |
commit | 40611e264d9fc8b05db05ec4dc410e919af7f98d (patch) | |
tree | 2e89adb3353c2a3d5fbf8e399915150fa4ed045c /include/gwin | |
parent | 984e14efb7ad257577db85fcdbed6c60618c1175 (diff) | |
download | uGFX-40611e264d9fc8b05db05ec4dc410e919af7f98d.tar.gz uGFX-40611e264d9fc8b05db05ec4dc410e919af7f98d.tar.bz2 uGFX-40611e264d9fc8b05db05ec4dc410e919af7f98d.zip |
some more list work
Diffstat (limited to 'include/gwin')
-rw-r--r-- | include/gwin/list.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/gwin/list.h b/include/gwin/list.h index 46e32d5c..307226c9 100644 --- a/include/gwin/list.h +++ b/include/gwin/list.h @@ -57,6 +57,24 @@ GHandle gwinListCreate(GListObject *widget, GWidgetInit *pInit); int gwinListAddItem(GHandle gh, const char* item, bool_t useAlloc); +char* gwinListItemGetText(GHandle gh, int item); + +int gwinListFindText(GHandle gh, const char* text); + +void gwinListItemSetParam(GHandle gh, int item, uint16_t param); + +uint16_t gwinListItemGetParam(GHandle gh, int item); + +void nListDeleteAll(GHandle gh); + +void gwinListItemDelete(GHandle gh, int item); + +int gwinListItemCount(GHandle gh); + +bool_t gwinListItemIsSelected(GHandle gh, int item); + +int gwinListGetSelected(GHandle gh); + #ifdef __cplusplus } #endif |