X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6954a1e2c983321297c11050d380485a8f3c724d..66f2aa61c3c7bc326f3287739eded70ca61f775d:/include/wx/dfb/nonownedwnd.h?ds=sidebyside diff --git a/include/wx/dfb/nonownedwnd.h b/include/wx/dfb/nonownedwnd.h index f657eb236f..66176215b0 100644 --- a/include/wx/dfb/nonownedwnd.h +++ b/include/wx/dfb/nonownedwnd.h @@ -1,6 +1,6 @@ /////////////////////////////////////////////////////////////////////////////// // Name: wx/dfb/nonownedwnd.h -// Purpose: declares wxNonTopLevelWindow class +// Purpose: declares wxNonOwnedWindow class // Author: Vaclav Slavik // Modified by: // Created: 2006-12-24 @@ -18,6 +18,7 @@ wxDFB_DECLARE_INTERFACE(IDirectFBWindow); class wxDfbQueuedPaintRequests; struct wxDFBWindowEvent; +class wxDFBEventsHandler; //----------------------------------------------------------------------------- // wxNonOwnedWindow @@ -59,6 +60,9 @@ public: virtual void Update(); + virtual void Raise(); + virtual void Lower(); + // implementation from now on // -------------------------- @@ -76,7 +80,7 @@ protected: virtual wxIDirectFBSurfacePtr ObtainDfbSurface() const; - // overriden wxWindow methods + // overridden wxWindow methods virtual void DoGetPosition(int *x, int *y) const; virtual void DoGetSize(int *width, int *height) const; virtual void DoMoveWindow(int x, int y, int width, int height); @@ -88,7 +92,7 @@ protected: // wxWindows as in wx void SetDfbFocus(); - // overriden in wxTopLevelWindowDFB, there's no common handling for wxTLW + // overridden in wxTopLevelWindowDFB, there's no common handling for wxTLW // and wxPopupWindow to be done here virtual void HandleFocusEvent(const wxDFBWindowEvent& WXUNUSED(event_)) {} @@ -115,8 +119,8 @@ private: // are we currently painting some area of this TLW? bool m_isPainting; - friend class wxGUIEventLoop; // for HandleDFBWindowEvent - friend class wxWindowDFB; // for SetDfbFocus + friend class wxDFBEventsHandler; // for HandleDFBWindowEvent + friend class wxWindowDFB; // for SetDfbFocus }; #endif // _WX_DFB_NONOWNEDWND_H_