wxCheckListBox works

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/wxUNIVERSAL@8361 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-09-14 20:10:34 +00:00
parent 4c81b707a5
commit 07e9834fca
11 changed files with 447 additions and 208 deletions

View File

@@ -16,6 +16,16 @@
#pragma interface "univchecklst.h"
#endif
// ----------------------------------------------------------------------------
// actions
// ----------------------------------------------------------------------------
#define wxACTION_CHECKLISTBOX_TOGGLE _T("toggle")
// ----------------------------------------------------------------------------
// wxCheckListBox
// ----------------------------------------------------------------------------
class WXDLLEXPORT wxCheckListBox : public wxCheckListBoxBase
{
public:
@@ -43,6 +53,11 @@ public:
virtual bool IsChecked(size_t item) const;
virtual void Check(size_t item, bool check = TRUE);
// and input handling
virtual bool PerformAction(const wxControlAction& action,
long numArg = -1l,
const wxString& strArg = wxEmptyString);
// override all methods which add/delete items to update m_checks array as
// well
virtual void Delete(int n);
@@ -60,6 +75,9 @@ protected:
// take them also into account for size calculation
virtual wxSize DoGetBestClientSize() const;
// our input handler
virtual wxString GetInputHandlerType() const;
// common part of all ctors
void Init();