X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a5001e9361fe01a134b45fa5caf55477e8368d26..bfdaa9173ed5b20dd5a9cd83241ce44fc0eff960:/src/dfb/nonownedwnd.cpp diff --git a/src/dfb/nonownedwnd.cpp b/src/dfb/nonownedwnd.cpp index 3652a13ba4..e54333c68f 100644 --- a/src/dfb/nonownedwnd.cpp +++ b/src/dfb/nonownedwnd.cpp @@ -3,7 +3,6 @@ // Purpose: implementation of wxNonOwnedWindow // Author: Vaclav Slavik // Created: 2006-12-24 -// RCS-ID: $Id$ // Copyright: (c) 2006 REA Elektronik GmbH // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -153,7 +152,7 @@ bool wxNonOwnedWindow::Create(wxWindow *parent, wxNonOwnedWindow::~wxNonOwnedWindow() { - m_isBeingDeleted = true; + SendDestroyEvent(); // destroy all children before we destroy the underlying DirectFB window, // so that if any of them does something with the TLW, it will still work: @@ -228,7 +227,7 @@ bool wxNonOwnedWindow::Show(bool show) m_sizeSet = true; wxSizeEvent event(GetSize(), GetId()); event.SetEventObject(this); - GetEventHandler()->ProcessEvent(event); + HandleWindowEvent(event); } // make sure the window is fully painted, with all pending updates, before @@ -259,6 +258,16 @@ bool wxNonOwnedWindow::Show(bool show) return true; } +void wxNonOwnedWindow::Raise() +{ + m_dfbwin->RaiseToTop(); +} + +void wxNonOwnedWindow::Lower() +{ + m_dfbwin->LowerToBottom(); +} + // ---------------------------------------------------------------------------- // surfaces and painting // ---------------------------------------------------------------------------- @@ -291,16 +300,12 @@ void wxNonOwnedWindow::HandleQueuedPaintRequests() // blit the entire back buffer to front soon m_isPainting = true; -#ifdef __WXDEBUG__ int requestsCount = 0; -#endif wxRect request; while ( m_toPaint->GetNext(request) ) { -#ifdef __WXDEBUG__ requestsCount++; -#endif wxRect clipped(request); clipped.Intersect(winRect); if ( clipped.IsEmpty() )