]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/univ/checklst.h
Improved handling of column widths, removed need for hidden column for sorting, and...
[wxWidgets.git] / include / wx / univ / checklst.h
index 619ab94038f1adfea26f178ae4a522b0e9423223..e6afd10a16e3894176837433133f09ea767e01a2 100644 (file)
@@ -78,6 +78,12 @@ public:
                                long numArg = -1l,
                                const wxString& strArg = wxEmptyString);
 
+    static wxInputHandler *GetStdInputHandler(wxInputHandler *handlerDef);
+    virtual wxInputHandler *DoGetStdInputHandler(wxInputHandler *handlerDef)
+    {
+        return GetStdInputHandler(handlerDef);
+    }
+
     // override all methods which add/delete items to update m_checks array as
     // well
     virtual void Delete(unsigned int n);
@@ -105,20 +111,4 @@ private:
     DECLARE_DYNAMIC_CLASS(wxCheckListBox)
 };
 
-// ----------------------------------------------------------------------------
-// wxStdCheckListBoxInputHandler
-// ----------------------------------------------------------------------------
-
-class WXDLLEXPORT wxStdCheckListboxInputHandler : public wxStdListboxInputHandler
-{
-public:
-    wxStdCheckListboxInputHandler(wxInputHandler *inphand);
-
-    virtual bool HandleKey(wxInputConsumer *consumer,
-                           const wxKeyEvent& event,
-                           bool pressed);
-    virtual bool HandleMouse(wxInputConsumer *consumer,
-                             const wxMouseEvent& event);
-};
-
 #endif // _WX_UNIV_CHECKLST_H_