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/altcombobox.h | |
parent | a3016fbf0d50bfe82e69a657328ef76370227979 (diff) |
Finished documenting the last widgets. Also some changes in the docgen app.
Diffstat (limited to 'client/widgets/altcombobox.h')
-rw-r--r-- | client/widgets/altcombobox.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/client/widgets/altcombobox.h b/client/widgets/altcombobox.h index 9f90f8b..93ae124 100644 --- a/client/widgets/altcombobox.h +++ b/client/widgets/altcombobox.h @@ -34,6 +34,27 @@ #include <QDomNode> #include <QMap> +/*** + * ComboBox Widget with Alternate Value + * @tag altcombobox + * @extends combobox + * @container + * @screenshot + * The AltComboBox is used to make a normal selection with a ComboBox but with + * a special list item that shows an alternate widget and uses this widget for + * input. The AltComboBox contains <code>>item<</code> tags in the same + * way as the ComboBox, but may also contain an <code>>altitem<</code> tag + * which can again contain widgets. + * @att value [altitem] The value of the item. This will be the value of the + * AltComboBox if this item is selected. + * @att caption [altitem] The caption of this item. This is the text presented + * to the user in the ComboBox. + * @att layout [altitem] The layout of the altitem. Can be one of 'hbox' or + * 'vbox'. + * @att innerwidget [altitem] The name of the widget that will produce the + * AltComboBox value if the altitem is selected. + */ + class QFrame; class AltComboBox : public Widget { |