]>
Commit | Line | Data |
---|---|---|
caaa4cfd RR |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: checklst.h | |
3 | // Purpose: wxCheckListBox class | |
4 | // Author: Robert Roebling | |
ff8bfdbb | 5 | // Modified by: |
caaa4cfd RR |
6 | // RCS-ID: $Id$ |
7 | // Copyright: (c) 1998 Robert Roebling | |
8 | // Licence: wxWindows licence | |
9 | /////////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | #ifndef __GTKCHECKLISTH__ | |
12 | #define __GTKCHECKLISTH__ | |
13 | ||
14 | #ifdef __GNUG__ | |
15 | #pragma interface | |
16 | #endif | |
17 | ||
18 | #include "wx/defs.h" | |
dcf924a3 RR |
19 | |
20 | #if wxUSE_CHECKLISTBOX | |
21 | ||
caaa4cfd RR |
22 | #include "wx/object.h" |
23 | #include "wx/list.h" | |
24 | #include "wx/control.h" | |
25 | #include "wx/listbox.h" | |
26 | ||
27 | //----------------------------------------------------------------------------- | |
28 | // classes | |
29 | //----------------------------------------------------------------------------- | |
30 | ||
31 | class wxCheckListBox; | |
32 | ||
33 | //----------------------------------------------------------------------------- | |
34 | // wxCheckListBox | |
35 | //----------------------------------------------------------------------------- | |
36 | ||
37 | class wxCheckListBox : public wxListBox | |
38 | { | |
ff8bfdbb | 39 | DECLARE_DYNAMIC_CLASS(wxCheckListBox) |
caaa4cfd | 40 | |
ff8bfdbb VZ |
41 | public: |
42 | wxCheckListBox(); | |
43 | wxCheckListBox(wxWindow *parent, wxWindowID id, | |
44 | const wxPoint& pos = wxDefaultPosition, | |
45 | const wxSize& size = wxDefaultSize, | |
46 | int nStrings = 0, | |
64716cd7 | 47 | const wxString *choices = (const wxString *)NULL, |
ff8bfdbb VZ |
48 | long style = 0, |
49 | const wxValidator& validator = wxDefaultValidator, | |
50 | const wxString& name = wxListBoxNameStr); | |
51 | ||
52 | bool IsChecked( int index ) const; | |
53 | void Check( int index, bool check = TRUE ); | |
54 | ||
55 | int GetItemHeight() const; | |
caaa4cfd RR |
56 | }; |
57 | ||
ff8bfdbb | 58 | #endif |
dcf924a3 RR |
59 | |
60 | #endif //__GTKCHECKLISTH__ |