From 1adbd752e12d7949835c8690655dcf3a6088fa92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Thu, 17 Oct 2002 22:07:44 +0000 Subject: [PATCH] wxCheckBox and wxCheckList docs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17565 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/tech/tn0014.txt | 42 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/docs/tech/tn0014.txt b/docs/tech/tn0014.txt index fa6c05add7..1b38bb8bdf 100644 --- a/docs/tech/tn0014.txt +++ b/docs/tech/tn0014.txt @@ -213,6 +213,11 @@ determines the bitmap to use according to this algorithm: 2. Load the bitmap from the file in attribute value. +Boolean +------- +Boolean value, either "0" (false) or "1" (true). + + 4. Supported classes ==================== @@ -241,7 +246,7 @@ wxButton -------- position Position -1,-1 size Size -1,-1 -style Style[wxButton] +style Style[wxButton] label I18nString default Boolean false @@ -252,7 +257,40 @@ wxCalendarCtrl -------------- position Position -1,-1 size Size -1,-1 -style Style[wxButton] +style Style[wxCalendarCtrl] + + +wxCheckBox +---------- +position Position -1,-1 +size Size -1,-1 +style Style[wxCheckBox] +checked Boolean false + + +wxCheckList +----------- +position Position -1,-1 +size Size -1,-1 +style Style[wxCheckList] +content (see bellow) (empty) + +Optional "content" attribute does not have attribute value. Instead, +arbitrary number of nodes may be rooted under it (the control +is filled with strings contained in these nodes). Each +node must contain I18nString value and may have "checked" property +with possible values "0" or "1" indicating the the item is initially +checked. + +Example: + + + One + Two + Three + Four + +