added wxGridCellEditor::StartingClick(), used by BoolEditor

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6124 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-02-17 20:03:01 +00:00
parent 297da4bad9
commit e195a54c31
2 changed files with 16 additions and 7 deletions

View File

@@ -167,6 +167,10 @@ public:
// that first key if desired.
virtual void StartingKey(wxKeyEvent& event);
// if the editor is enabled by clicking on the cell, this method will be
// called
virtual void StartingClick();
// Some types of controls on some platforms may need some help
// with the Return key.
virtual void HandleReturn(wxKeyEvent& event);
@@ -227,7 +231,7 @@ public:
virtual bool EndEdit(int row, int col, bool saveValue, wxGrid* grid);
virtual void Reset();
virtual void StartingKey(wxKeyEvent& event);
virtual void StartingClick();
protected:
wxCheckBox *CBox() const { return (wxCheckBox *)m_control; }