| 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 | // ---------------------------------------------------------------------------- |
| 19 | // macros |
| 20 | // ---------------------------------------------------------------------------- |
| 21 | |
| 22 | // there is no "right" choice of the checkbox indicators, so allow the user to |
| 23 | // define them himself if he wants |
| 24 | #ifndef wxCHECKLBOX_CHECKED |
| 25 | #define wxCHECKLBOX_CHECKED _T('x') |
| 26 | #define wxCHECKLBOX_UNCHECKED _T(' ') |
| 27 | |
| 28 | #define wxCHECKLBOX_STRING _T("[ ] ") |
| 29 | #endif |
| 30 | |
| 31 | //----------------------------------------------------------------------------- |
| 32 | // wxCheckListBox |
| 33 | // ---------------------------------------------------------------------------- |
| 34 | |
| 35 | class wxCheckListBox : public wxListBox |
| 36 | { |
| 37 | public: |
| 38 | wxCheckListBox(); |
| 39 | wxCheckListBox(wxWindow *parent, wxWindowID id, |
| 40 | const wxPoint& pos = wxDefaultPosition, |
| 41 | const wxSize& size = wxDefaultSize, |
| 42 | int nStrings = 0, |
| 43 | const wxString *choices = (const wxString *)NULL, |
| 44 | long style = 0, |
| 45 | const wxValidator& validator = wxDefaultValidator, |
| 46 | const wxString& name = wxListBoxNameStr); |
| 47 | |
| 48 | bool IsChecked( int index ) const; |
| 49 | void Check( int index, bool check = TRUE ); |
| 50 | |
| 51 | int GetItemHeight() const; |
| 52 | |
| 53 | private: |
| 54 | DECLARE_DYNAMIC_CLASS(wxCheckListBox) |
| 55 | }; |
| 56 | |
| 57 | #endif //__GTKCHECKLISTH__ |