diff options
author | deva <deva> | 2011-03-25 14:54:32 +0000 |
---|---|---|
committer | deva <deva> | 2011-03-25 14:54:32 +0000 |
commit | 93de7f375842c0afb72db8796c45bfda5f1a6f13 (patch) | |
tree | f00bb8bab149e11b5fbb7208382b142d9fafc53e /client/widgets/listbox.h | |
parent | a3016fbf0d50bfe82e69a657328ef76370227979 (diff) |
Finished documenting the last widgets. Also some changes in the docgen app.
Diffstat (limited to 'client/widgets/listbox.h')
-rw-r--r-- | client/widgets/listbox.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/client/widgets/listbox.h b/client/widgets/listbox.h index d775655..fcfc1b0 100644 --- a/client/widgets/listbox.h +++ b/client/widgets/listbox.h @@ -31,6 +31,21 @@ #include <QDomNode> +/*** + * ListBox Widget + * @tag listbox + * @screenshot + * @extends widget + * This widget is a list of selectable items. + * @att value [item] The value of the item and the value of the widget if this + * item is selected. + * @att caption [item] The caption of the item. This is the text presented to + * the user. + * @att type [item] The item type. Can be either 'separator' which will show + * the item as a line or 'header' which will highlight its caption. Ommit this + * attribute if the item is selectable. + */ + class QListWidget; class ListBox : public Widget { |