1998-09-18 10:19:10 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2005-09-27 16:54:43 +00:00
|
|
|
// Name: wx/motif/checklst.h
|
1998-09-18 10:19:10 +00:00
|
|
|
// Purpose: wxCheckListBox class - a listbox with checkable items
|
|
|
|
// Note: this is an optional class.
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 17/09/98
|
|
|
|
// Copyright: (c) Julian Smart
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-09-18 10:19:10 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_CHECKLST_H_
|
|
|
|
#define _WX_CHECKLST_H_
|
|
|
|
|
|
|
|
#include "wx/listbox.h"
|
|
|
|
|
2005-08-03 00:53:09 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxCheckListBox : public wxCheckListBoxBase
|
1998-09-18 10:19:10 +00:00
|
|
|
{
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxCheckListBox);
|
2005-09-27 16:54:43 +00:00
|
|
|
|
1998-09-18 10:19:10 +00:00
|
|
|
public:
|
1999-03-12 15:23:00 +00:00
|
|
|
// ctors
|
|
|
|
wxCheckListBox();
|
|
|
|
wxCheckListBox(wxWindow *parent, wxWindowID id,
|
2002-02-05 16:34:33 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
2005-09-27 16:54:43 +00:00
|
|
|
int nStrings = 0,
|
2002-02-05 16:34:33 +00:00
|
|
|
const wxString choices[] = NULL,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr);
|
2002-07-31 20:35:41 +00:00
|
|
|
|
2004-01-31 18:21:45 +00: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);
|
|
|
|
|
2002-07-31 20:35:41 +00:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
int n = 0, const wxString choices[] = NULL,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr);
|
2005-09-27 16:54:43 +00:00
|
|
|
|
2004-01-31 18:21:45 +00:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
const wxArrayString& choices,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr);
|
2005-09-27 16:54:43 +00:00
|
|
|
|
1999-03-12 15:23:00 +00:00
|
|
|
// items may be checked
|
2006-03-23 22:05:23 +00:00
|
|
|
bool IsChecked(unsigned int uiIndex) const;
|
|
|
|
void Check(unsigned int uiIndex, bool bCheck = true);
|
2002-07-31 20:35:41 +00:00
|
|
|
|
|
|
|
// override base class functions
|
2007-07-26 13:54:14 +00:00
|
|
|
virtual int DoInsertItems(const wxArrayStringsAdapter& items,
|
|
|
|
unsigned int pos,
|
|
|
|
void **clientData, wxClientDataType type);
|
2005-09-27 16:54:43 +00:00
|
|
|
virtual int FindString(const wxString& s, bool bCase = false) const;
|
2006-03-23 22:05:23 +00:00
|
|
|
virtual void SetString(unsigned int n, const wxString& s);
|
|
|
|
virtual wxString GetString(unsigned int n) const;
|
2002-07-31 20:35:41 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void DoToggleItem( int item, int x );
|
1999-03-12 15:23:00 +00:00
|
|
|
private:
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_EVENT_TABLE();
|
1998-09-18 10:19:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
2002-02-05 16:34:33 +00:00
|
|
|
// _WX_CHECKLST_H_
|