1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxCheckListBox class - a listbox with checkable items
4 // Note: this is an optional class.
5 // Author: David Webster
9 // Copyright: (c) David Webster
10 // Licence: wxWindows licence
11 ///////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_CHECKLST_H_
14 #define _WX_CHECKLST_H_
20 class wxCheckListBoxItem
; // fwd decl, define in checklst.cpp
22 class WXDLLEXPORT wxCheckListBox
: public wxListBox
24 DECLARE_DYNAMIC_CLASS(wxCheckListBox
)
28 wxCheckListBox(wxWindow
*parent
, wxWindowID id
,
29 const wxPoint
& pos
= wxDefaultPosition
,
30 const wxSize
& size
= wxDefaultSize
,
32 const wxString choices
[] = NULL
,
35 const wxValidator
& validator
= wxDefaultValidator
,
37 const wxString
& name
= wxListBoxNameStr
);
39 // override base class virtuals
40 virtual void Delete(int n
);
41 virtual void InsertItems(int nItems
, const wxString items
[], int pos
);
43 virtual bool SetFont( const wxFont
&font
);
45 // items may be checked
46 bool IsChecked(size_t uiIndex
) const;
47 void Check(size_t uiIndex
, bool bCheck
= TRUE
);
50 size_t GetItemHeight() const { return m_nItemHeight
; }
53 // we create our items ourselves and they have non-standard size,
54 // so we need to override these functions
55 virtual wxOwnerDrawn
*CreateItem(size_t n
);
56 // virtual bool OS2OnMeasure(WXMEASUREITEMSTRUCT *item);
58 // pressing space or clicking the check box toggles the item
59 void OnChar(wxKeyEvent
& event
);
60 void OnLeftClick(wxMouseEvent
& event
);
63 size_t m_nItemHeight
; // height of checklistbox items (the same for all)
65 //Virtual function hiding suppression, do not use
66 virtual wxControl
*CreateItem(const wxItemResource
* childResource
,
67 const wxItemResource
* parentResource
,
68 const wxResourceTable
*table
= (const wxResourceTable
*) NULL
)
69 { return(wxWindowBase::CreateItem(childResource
, parentResource
, table
));};