]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/checklst.h
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxCheckListBox class - a listbox with checkable items
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef __CHECKLST__H_
13 #define __CHECKLST__H_
16 #pragma interface "checklst.h"
19 typedef unsigned int size_t;
22 #error "wxCheckListBox class requires owner-drawn functionality."
25 class wxCheckListBoxItem
; // fwd decl, define in checklst.cpp
27 class wxCheckListBox
: public wxListBox
29 DECLARE_DYNAMIC_CLASS(wxCheckListBox
)
33 wxCheckListBox(wxWindow
*parent
, wxWindowID id
,
34 const wxPoint
& pos
= wxDefaultPosition
,
35 const wxSize
& size
= wxDefaultSize
,
37 const wxString choices
[] = NULL
,
39 const wxValidator
& validator
= wxDefaultValidator
,
40 const wxString
& name
= wxListBoxNameStr
);
41 // const wxFont& font = wxNullFont);
43 // items may be checked
44 bool IsChecked(size_t uiIndex
) const;
45 void Check(size_t uiIndex
, bool bCheck
= TRUE
);
48 size_t GetItemHeight() const { return m_nItemHeight
; }
51 // we create our items ourselves and they have non-standard size,
52 // so we need to override these functions
53 virtual wxOwnerDrawn
*CreateItem(size_t n
);
54 virtual bool MSWOnMeasure(WXMEASUREITEMSTRUCT
*item
);
56 // pressing space or clicking the check box toggles the item
57 void OnChar(wxKeyEvent
& event
);
58 void OnLeftClick(wxMouseEvent
& event
);
61 size_t m_nItemHeight
; // height of checklistbox items (the same for all)