/////////////////////////////////////////////////////////////////////////////
// Name: checklst.h
-// Purpose: documentation for wxCheckListBox class
+// Purpose: interface of wxCheckListBox
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@category{ctrl}
@appearance{checklistbox.png}
- @seealso
- wxListBox, wxChoice, wxComboBox, wxListCtrl, wxCommandEvent
+ @see wxListBox, wxChoice, wxComboBox, wxListCtrl, wxCommandEvent
*/
class wxCheckListBox : public wxListBox
{
//@{
/**
Constructor, creating and showing a list box.
-
+
@param parent
Parent window. Must not be @NULL.
@param id
/**
Checks the given item. Note that calling this method doesn't result in
wxEVT_COMMAND_CHECKLISTBOX_TOGGLE being emitted.
-
+
@param item
Index of item to check.
@param check
*/
void Check(int item, bool check = true);
};
+