1998-12-15 09:14:51 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2006-03-23 17:05:23 -05:00
|
|
|
// Name: wx/gtk/checklst.h
|
1998-12-15 09:14:51 -05:00
|
|
|
// Purpose: wxCheckListBox class
|
|
|
|
// Author: Robert Roebling
|
1999-02-01 09:40:53 -05:00
|
|
|
// Modified by:
|
1998-12-15 09:14:51 -05:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-12-15 09:14:51 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2013-08-03 00:48:46 -04:00
|
|
|
#ifndef _WX_GTKCHECKLIST_H_
|
|
|
|
#define _WX_GTKCHECKLIST_H_
|
2000-12-28 09:07:00 -05:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
1998-12-15 09:14:51 -05:00
|
|
|
// wxCheckListBox
|
2000-12-28 09:07:00 -05:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-12-15 09:14:51 -05:00
|
|
|
|
2013-01-21 06:18:50 -05:00
|
|
|
class WXDLLIMPEXP_CORE wxCheckListBox : public wxCheckListBoxBase
|
1998-12-15 09:14:51 -05:00
|
|
|
{
|
1999-02-01 09:40:53 -05:00
|
|
|
public:
|
|
|
|
wxCheckListBox();
|
|
|
|
wxCheckListBox(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
int nStrings = 0,
|
2013-08-03 00:48:46 -04:00
|
|
|
const wxString *choices = NULL,
|
1999-02-01 09:40:53 -05:00
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr);
|
2004-01-31 13:21:45 -05:00
|
|
|
wxCheckListBox(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
const wxArrayString& choices,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr);
|
1999-02-01 09:40:53 -05:00
|
|
|
|
2014-03-29 20:02:23 -04:00
|
|
|
virtual bool IsChecked(unsigned int index) const wxOVERRIDE;
|
|
|
|
virtual void Check(unsigned int index, bool check = true) wxOVERRIDE;
|
1999-02-01 09:40:53 -05:00
|
|
|
|
|
|
|
int GetItemHeight() const;
|
2006-03-23 17:05:23 -05:00
|
|
|
|
2006-03-01 16:51:42 -05:00
|
|
|
void DoCreateCheckList();
|
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
private:
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxCheckListBox);
|
1998-12-15 09:14:51 -05:00
|
|
|
};
|
|
|
|
|
2013-08-03 00:48:46 -04:00
|
|
|
#endif // _WX_GTKCHECKLIST_H_
|