X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bca8c756a30d54ee4fade96a091d78ad8988fd23..d5b98eb928bfd29060cd5974d5346b1bfac34012:/interface/wx/mousemanager.h?ds=sidebyside diff --git a/interface/wx/mousemanager.h b/interface/wx/mousemanager.h index 2c8b05a1ae..154f390643 100644 --- a/interface/wx/mousemanager.h +++ b/interface/wx/mousemanager.h @@ -37,6 +37,15 @@ class wxMouseEventsManager : public wxEvtHandler { public: + /** + Default constructor. + + You must call Create() to finish initializing the mouse events manager. + If possible, avoid the use of this constructor in favour of the other + one which fully initializes the mouse events manager immediately. + */ + wxMouseEventsManager(); + /** Constructor creates the manager for the window. @@ -46,6 +55,14 @@ public: */ wxMouseEventsManager(wxWindow *win); + /** + Finishes initialization of the object created using default + constructor. + + Currently always returns @true. + */ + bool Create(wxWindow *win); + protected: /** Must be overridden to return the item at the given position.