1998-05-20 14:12:05 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: checklst.h
|
|
|
|
// Purpose: wxCheckListBox class - a listbox with checkable items
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 16.11.97
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
|
1998-08-07 23:52:45 +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-07-03 16:36:10 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "checklst.h"
|
|
|
|
#endif
|
|
|
|
|
1998-08-18 20:15:51 +00:00
|
|
|
typedef unsigned int size_t;
|
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
|
|
|
|
|
|
|
|
class wxCheckListBoxItem; // fwd decl, define in checklst.cpp
|
|
|
|
|
|
|
|
class wxCheckListBox : public wxListBox
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxCheckListBox)
|
|
|
|
public:
|
|
|
|
// ctors
|
|
|
|
wxCheckListBox();
|
1998-07-04 15:17:59 +00:00
|
|
|
wxCheckListBox(wxWindow *parent, wxWindowID id,
|
1998-05-20 14:12:05 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
1998-07-04 15:17:59 +00:00
|
|
|
int nStrings = 0,
|
1998-05-20 14:12:05 +00:00
|
|
|
const wxString choices[] = NULL,
|
1998-07-04 15:17:59 +00:00
|
|
|
long style = 0,
|
1998-05-20 14:12:05 +00:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr);
|
|
|
|
// const wxFont& font = wxNullFont);
|
|
|
|
|
|
|
|
// items may be checked
|
1998-08-18 20:15:51 +00:00
|
|
|
bool IsChecked(size_t uiIndex) const;
|
|
|
|
void Check(size_t uiIndex, bool bCheck = TRUE);
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
// accessors
|
1998-08-18 20:15:51 +00:00
|
|
|
size_t GetItemHeight() const { return m_nItemHeight; }
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// we create our items ourselves and they have non-standard size,
|
|
|
|
// so we need to override these functions
|
1998-08-18 20:15:51 +00:00
|
|
|
virtual wxOwnerDrawn *CreateItem(size_t n);
|
1998-05-20 14:12:05 +00:00
|
|
|
virtual bool MSWOnMeasure(WXMEASUREITEMSTRUCT *item);
|
|
|
|
|
|
|
|
// pressing space or clicking the check box toggles the item
|
|
|
|
void OnChar(wxKeyEvent& event);
|
|
|
|
void OnLeftClick(wxMouseEvent& event);
|
|
|
|
|
|
|
|
private:
|
1998-08-18 20:15:51 +00:00
|
|
|
size_t m_nItemHeight; // height of checklistbox items (the same for all)
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //_CHECKLST_H
|