]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/grid.h
added dnd support to generic wxTreeCtrl
[wxWidgets.git] / include / wx / generic / grid.h
index 45c4400ae38fbb6dd04ca9a5f76f6e11a3151d85..9932513d4d9e80ebec886614af00d5a35db4127a 100644 (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; }