diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 4b6f5f510df..9400d7de034 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -17670,8 +17670,13 @@ + Control that provides a list of selectable items (and/or icons) in a single column, or optionally in multiple columns. + This control provides a selectable list of items that may be in a single (or multiple columns) with option of text, icons, + or both text and icon. Tooltips are supported and may be different for every item in the list. Selectable items in the list + may be selected or deselected and multiple selection may be enabled. Selection with right mouse button may also be enabled + to allow use of popup context menus. Items may also be 'activated' with a double click (or Enter key). @@ -17680,6 +17685,7 @@ + Adds an item to the item list with no text, only an icon. @@ -17690,26 +17696,32 @@ + Adds an item to the item list with specified text. Specify an icon of null for a list item with no icon. + If selectable is true the list item will be selectable. + Remove all items from the list. + Ensure selection is visible, adjusting the scroll position as necessary. + Return whether or not items may be selected via right mouse clicking. + If column size has been fixed to a value, return that value. @@ -17738,12 +17750,14 @@ + Given a position within the control return the item (if any) at that point. + Return count of items currently in the item list. @@ -17782,6 +17796,7 @@ + Return the text for specified item index. @@ -17790,18 +17805,21 @@ + Return tooltip hint for specified item index. + Return total number of columns in use by the list. + Return total number of lines currently in use by the list. @@ -17814,7 +17832,7 @@ - Returns a list of selected indexes. + Returns the list of selected indexes. @@ -17823,6 +17841,7 @@ + Returns whether or not the item at the specified index is disabled @@ -17831,12 +17850,14 @@ + Returns whether or not the item at the specified index is selectable. + Returns whether or not all columns of the list are of the same size. @@ -17845,12 +17866,14 @@ + Returns whether or not item at the specified index is currently selected. + Remove item at specified index from the list. @@ -17859,18 +17882,22 @@ + Select the item at the specified index. + Note: This method does not trigger the item selection signal. + Allow (or disallow) selection of (selectable) items in the list using right mouse button. + Set the size (width) all columns in the list are to use. @@ -17905,6 +17932,8 @@ + Disable (or enable) item at specified index. + Disabled items are not be selectable and do not fire activation (Enter or double-click) signals. @@ -17913,6 +17942,7 @@ + Set (or replace) icon of the item at the specified index. @@ -17929,6 +17959,7 @@ + Sets a value (of any type) to be stored with the item at the specified index. @@ -17937,6 +17968,7 @@ + Allow or disallow selection of the item at the specified index. @@ -17945,6 +17977,7 @@ + Sets text of item at specified index. @@ -17953,24 +17986,28 @@ + Sets tooltip hint for item at specified index. + Set maximum number of columns to use for the list. + Set maximum number of lines to use for the list. + Sets a fixed size (width) to use for all columns of the list. @@ -17981,12 +18018,14 @@ + Sorts items in the list by their text. + Ensure item at specified index is not selected. @@ -17995,6 +18034,7 @@ + Fired when specified list item is activated via double click or Enter. @@ -18003,12 +18043,16 @@ + Fired when specified list item has been selected via right mouse clicking. + The click position is also provided to allow appropriate popup of context menus + at the correct location. + Fired when specified item has been selected. @@ -18017,6 +18061,7 @@ + Fired when a multiple selection is altered on a list allowing mutliple selection.