1 class TreeMultiItemWindow
2 !!!167426.cpp!!! TreeMultiItemWindow(inout parent : TreeMultiItemNode, in name : wxString = wxEmptyString)
9 // TODO: Enter your constructor code here
11 !!!167554.cpp!!! ~TreeMultiItemWindow()
18 !!!167810.cpp!!! AssignWindow(inout wnd : wxWindow) : void
21 // delete previous, assign new (even if zero)
33 // recalculate the size
43 // resize the sized control by sizer or
45 // by single window. For a sizer handled window
47 // GetBestSize returns the optimal size
51 /// \todo This might need rivision for retaining the sizer size
53 /// maybe we need to check whether size is <> 0,0 before get best size
59 size = wnd->GetBestSize();
63 size = wnd->GetSize();
67 _height = size.GetHeight();
69 _width = size.GetWidth();
85 !!!168834.cpp!!! SetCheckboxState(in state : int) : void
88 TreeMultiItemBase::SetCheckboxState(state);
92 // enable or disable the window
94 if(GetCheckbox() && GetWindow() && state != 2)
96 GetWindow()->Enable(state == 1);