]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/checklst.h
wxMotif::wxFont supports encodings too (and shares 99% of font code with wxGTK)
[wxWidgets.git] / include / wx / msw / checklst.h
... / ...
CommitLineData
1///////////////////////////////////////////////////////////////////////////////
2// Name: checklst.h
3// Purpose: wxCheckListBox class - a listbox with checkable items
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 16.11.97
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef __CHECKLST__H_
13#define __CHECKLST__H_
14
15#ifdef __GNUG__
16#pragma interface "checklst.h"
17#endif
18
19// No!
20// typedef unsigned int size_t;
21#include <stddef.h>
22
23#include "wx/setup.h"
24
25#if !wxUSE_OWNER_DRAWN
26 #error "wxCheckListBox class requires owner-drawn functionality."
27#endif
28
29class wxCheckListBoxItem; // fwd decl, define in checklst.cpp
30
31class WXDLLEXPORT wxCheckListBox : public wxListBox
32{
33 DECLARE_DYNAMIC_CLASS(wxCheckListBox)
34public:
35 // ctors
36 wxCheckListBox();
37 wxCheckListBox(wxWindow *parent, wxWindowID id,
38 const wxPoint& pos = wxDefaultPosition,
39 const wxSize& size = wxDefaultSize,
40 int nStrings = 0,
41 const wxString choices[] = NULL,
42 long style = 0,
43 const wxValidator& validator = wxDefaultValidator,
44 const wxString& name = wxListBoxNameStr);
45
46 // override base class virtuals
47 virtual void Delete(int n);
48 virtual void InsertItems(int nItems, const wxString items[], int pos);
49
50 virtual bool SetFont( const wxFont &font );
51
52 // items may be checked
53 bool IsChecked(size_t uiIndex) const;
54 void Check(size_t uiIndex, bool bCheck = TRUE);
55
56 // accessors
57 size_t GetItemHeight() const { return m_nItemHeight; }
58
59protected:
60 // we create our items ourselves and they have non-standard size,
61 // so we need to override these functions
62 virtual wxOwnerDrawn *CreateItem(size_t n);
63 virtual bool MSWOnMeasure(WXMEASUREITEMSTRUCT *item);
64
65 // pressing space or clicking the check box toggles the item
66 void OnChar(wxKeyEvent& event);
67 void OnLeftClick(wxMouseEvent& event);
68
69private:
70 size_t m_nItemHeight; // height of checklistbox items (the same for all)
71
72 DECLARE_EVENT_TABLE()
73};
74
75#endif //_CHECKLST_H