| 1 | /////////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: checklst.h |
| 3 | // Purpose: wxCheckListBox class |
| 4 | // Author: Robert Roebling |
| 5 | // Modified by: |
| 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" |
| 19 | #include "wx/object.h" |
| 20 | #include "wx/list.h" |
| 21 | #include "wx/control.h" |
| 22 | #include "wx/listbox.h" |
| 23 | |
| 24 | //----------------------------------------------------------------------------- |
| 25 | // classes |
| 26 | //----------------------------------------------------------------------------- |
| 27 | |
| 28 | class wxCheckListBox; |
| 29 | |
| 30 | //----------------------------------------------------------------------------- |
| 31 | // wxCheckListBox |
| 32 | //----------------------------------------------------------------------------- |
| 33 | |
| 34 | class wxCheckListBox : public wxListBox |
| 35 | { |
| 36 | DECLARE_DYNAMIC_CLASS(wxCheckListBox) |
| 37 | |
| 38 | public: |
| 39 | wxCheckListBox(); |
| 40 | wxCheckListBox(wxWindow *parent, wxWindowID id, |
| 41 | const wxPoint& pos = wxDefaultPosition, |
| 42 | const wxSize& size = wxDefaultSize, |
| 43 | int nStrings = 0, |
| 44 | const wxString *choices = (const wxString *)NULL, |
| 45 | long style = 0, |
| 46 | const wxValidator& validator = wxDefaultValidator, |
| 47 | const wxString& name = wxListBoxNameStr); |
| 48 | |
| 49 | bool IsChecked( int index ) const; |
| 50 | void Check( int index, bool check = TRUE ); |
| 51 | |
| 52 | int GetItemHeight() const; |
| 53 | }; |
| 54 | |
| 55 | #endif |
| 56 | //__GTKCHECKLISTH__ |