diff options
author | inmarket <andrewh@inmarket.com.au> | 2013-08-01 15:58:46 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2013-08-01 15:58:46 +1000 |
commit | 312e759124098da0d6e2223698d39cb21bf9d5ae (patch) | |
tree | bad577f503957aad1718e202747dcd498e9f720e /include/gwin | |
parent | b0b35396395c3eadc5a656df995a17b266c4b374 (diff) | |
download | uGFX-312e759124098da0d6e2223698d39cb21bf9d5ae.tar.gz uGFX-312e759124098da0d6e2223698d39cb21bf9d5ae.tar.bz2 uGFX-312e759124098da0d6e2223698d39cb21bf9d5ae.zip |
Add GWIN List multi-select support
Diffstat (limited to 'include/gwin')
-rw-r--r-- | include/gwin/list.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/gwin/list.h b/include/gwin/list.h index 99f5f532..fa4c43c5 100644 --- a/include/gwin/list.h +++ b/include/gwin/list.h @@ -79,12 +79,13 @@ extern "C" { * * @param[in] widget The GListObject structure to initialize. If this is NULL, the structure is dynamically allocated. * @param[in] pInit The initialization parameters to use + * @param[in] multiselect If TRUE the list is multi-select instead of single-select. * * @return NULL if there is no resulting drawing area, otherwise a window handle. * * @api */ -GHandle gwinListCreate(GListObject *widget, GWidgetInit *pInit); +GHandle gwinListCreate(GListObject *widget, GWidgetInit *pInit, bool_t multiselect); /** * @brief Add an item to the list |