1998-05-20 14:12:05 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2006-03-23 22:05:23 +00:00
|
|
|
// Name: wx/msw/checklst.h
|
1998-05-20 14:12:05 +00:00
|
|
|
// Purpose: wxCheckListBox class - a listbox with checkable items
|
|
|
|
// Author: Vadim Zeitlin
|
1999-05-28 17:27:55 +00:00
|
|
|
// Modified by:
|
1998-05-20 14:12:05 +00:00
|
|
|
// Created: 16.11.97
|
|
|
|
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:12:05 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-07 23:52:45 +00:00
|
|
|
#ifndef __CHECKLST__H_
|
|
|
|
#define __CHECKLST__H_
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1998-09-28 15:42:54 +00:00
|
|
|
#if !wxUSE_OWNER_DRAWN
|
1998-05-20 14:12:05 +00:00
|
|
|
#error "wxCheckListBox class requires owner-drawn functionality."
|
|
|
|
#endif
|
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxOwnerDrawn;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxCheckListBoxItem; // fwd decl, defined in checklst.cpp
|
1998-05-20 14:12:05 +00:00
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxCheckListBox : public wxCheckListBoxBase
|
1998-05-20 14:12:05 +00:00
|
|
|
{
|
|
|
|
public:
|
2010-01-23 13:22:00 +00:00
|
|
|
// ctors
|
|
|
|
wxCheckListBox();
|
|
|
|
wxCheckListBox(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
int nStrings = 0,
|
|
|
|
const wxString choices[] = NULL,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr);
|
|
|
|
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-28 15:35:51 +00:00
|
|
|
|
2010-01-23 13:22:00 +00:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
2002-09-15 18:07:32 +00:00
|
|
|
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);
|
2010-01-23 13:22:00 +00:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
2004-01-31 18:21:45 +00:00
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
const wxArrayString& choices,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr);
|
2002-09-15 18:07:32 +00:00
|
|
|
|
2010-01-23 13:22:00 +00:00
|
|
|
// items may be checked
|
2016-09-23 14:59:11 +00:00
|
|
|
virtual bool IsChecked(unsigned int uiIndex) const wxOVERRIDE;
|
|
|
|
virtual void Check(unsigned int uiIndex, bool bCheck = true) wxOVERRIDE;
|
2010-01-23 13:22:00 +00:00
|
|
|
virtual void Toggle(unsigned int uiIndex);
|
1998-05-20 14:12:05 +00:00
|
|
|
|
2010-01-23 13:22:00 +00:00
|
|
|
// we create our items ourselves and they have non-standard size,
|
|
|
|
// so we need to override these functions
|
2016-09-23 14:59:11 +00:00
|
|
|
virtual wxOwnerDrawn *CreateLboxItem(size_t n) wxOVERRIDE;
|
|
|
|
virtual bool MSWOnMeasure(WXMEASUREITEMSTRUCT *item) wxOVERRIDE;
|
1998-05-20 14:12:05 +00:00
|
|
|
|
2006-02-08 21:47:09 +00:00
|
|
|
protected:
|
2010-01-23 13:22:00 +00:00
|
|
|
// pressing space or clicking the check box toggles the item
|
|
|
|
void OnKeyDown(wxKeyEvent& event);
|
|
|
|
void OnLeftClick(wxMouseEvent& event);
|
1998-05-20 14:12:05 +00:00
|
|
|
|
2010-01-23 13:22:00 +00:00
|
|
|
// send an "item checked" event
|
|
|
|
void SendEvent(unsigned int uiIndex)
|
|
|
|
{
|
2013-04-25 10:11:03 +00:00
|
|
|
wxCommandEvent event(wxEVT_CHECKLISTBOX, GetId());
|
2010-01-23 13:22:00 +00:00
|
|
|
event.SetInt(uiIndex);
|
|
|
|
event.SetEventObject(this);
|
|
|
|
event.SetString(GetString(uiIndex));
|
|
|
|
ProcessCommand(event);
|
|
|
|
}
|
2004-06-15 03:23:05 +00:00
|
|
|
|
2016-09-23 14:59:11 +00:00
|
|
|
wxSize DoGetBestClientSize() const wxOVERRIDE;
|
1998-05-20 14:12:05 +00:00
|
|
|
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_EVENT_TABLE();
|
|
|
|
wxDECLARE_DYNAMIC_CLASS_NO_COPY(wxCheckListBox);
|
1998-05-20 14:12:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //_CHECKLST_H
|