]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/checklst.h
Applied Russel's changes to wxToolBarBase
[wxWidgets.git] / include / wx / gtk / checklst.h
CommitLineData
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"
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
28class wxCheckListBox;
29
30//-----------------------------------------------------------------------------
31// wxCheckListBox
32//-----------------------------------------------------------------------------
33
34class wxCheckListBox : public wxListBox
35{
ff8bfdbb 36DECLARE_DYNAMIC_CLASS(wxCheckListBox)
caaa4cfd 37
ff8bfdbb
VZ
38public:
39 wxCheckListBox();
40 wxCheckListBox(wxWindow *parent, wxWindowID id,
41 const wxPoint& pos = wxDefaultPosition,
42 const wxSize& size = wxDefaultSize,
43 int nStrings = 0,
3f263f45 44 const wxString choices[] = (const wxString *) NULL,
ff8bfdbb
VZ
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;
caaa4cfd
RR
53};
54
ff8bfdbb 55#endif
caaa4cfd 56 //__GTKCHECKLISTH__