]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/checklst.h
Compile improvemnts for strict compilers and the like
[wxWidgets.git] / include / wx / gtk1 / checklst.h
CommitLineData
caaa4cfd
RR
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
28class wxCheckListBox;
29
30//-----------------------------------------------------------------------------
31// wxCheckListBox
32//-----------------------------------------------------------------------------
33
34class wxCheckListBox : public wxListBox
35{
36 DECLARE_DYNAMIC_CLASS(wxCheckListBox)
37public:
38
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[] = 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 );
4f22cf8d
RR
51
52 int GetItemHeight();
caaa4cfd
RR
53
54};
55
56#endif
57 //__GTKCHECKLISTH__