X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ebf4302cbe16578f60e51dca83e3defaebb6db28..af2309c0fb59458b70a9645b140fbd1d7a4b801c:/wxPython/src/events.i?ds=inline diff --git a/wxPython/src/events.i b/wxPython/src/events.i index 8e4190a2cc..1b348b9dd9 100644 --- a/wxPython/src/events.i +++ b/wxPython/src/events.i @@ -269,6 +269,18 @@ public: wxFocusEvent(WXTYPE eventType = 0, int id = 0); }; +//--------------------------------------------------------------------------- + +// wxChildFocusEvent notifies the parent that a child has got the focus: unlike +// wxFocusEvent it is propgated upwards the window chain +class wxChildFocusEvent : public wxCommandEvent +{ +public: + wxChildFocusEvent(wxWindow *win = NULL); + wxWindow *GetWindow() const; +}; + + //--------------------------------------------------------------------------- class wxActivateEvent: public wxEvent{ @@ -413,6 +425,15 @@ public: }; +//--------------------------------------------------------------------------- + +class wxDisplayChangedEvent : public wxEvent +{ +public: + wxDisplayChangedEvent(); +}; + + //--------------------------------------------------------------------------- class wxPaletteChangedEvent : public wxEvent {