]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/checklst.h
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxCheckListBox class
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef __GTKCHECKLISTH__
12 #define __GTKCHECKLISTH__
20 #if wxUSE_CHECKLISTBOX
22 #include "wx/object.h"
24 #include "wx/control.h"
25 #include "wx/listbox.h"
27 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
33 //-----------------------------------------------------------------------------
35 //-----------------------------------------------------------------------------
37 class wxCheckListBox
: public wxListBox
41 wxCheckListBox(wxWindow
*parent
, wxWindowID id
,
42 const wxPoint
& pos
= wxDefaultPosition
,
43 const wxSize
& size
= wxDefaultSize
,
45 const wxString
*choices
= (const wxString
*)NULL
,
47 const wxValidator
& validator
= wxDefaultValidator
,
48 const wxString
& name
= wxListBoxNameStr
);
50 bool IsChecked( int index
) const;
51 void Check( int index
, bool check
= TRUE
);
53 int GetItemHeight() const;
56 DECLARE_DYNAMIC_CLASS(wxCheckListBox
)
61 #endif //__GTKCHECKLISTH__