Fix wxOSX compilation without PCH.

Explicitly include wx/nonownedwnd.h as we use wxNonOwnedWindow in this file.

Closes #11833.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63737 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2010-03-22 11:40:40 +00:00
parent 9b7e022676
commit 976e63a7a8

View File

@@ -39,6 +39,10 @@
#include "wx/osx/private.h" #include "wx/osx/private.h"
#include "wx/osx/core/cfref.h" #include "wx/osx/core/cfref.h"
#if wxUSE_GUI
#include "wx/nonownedwnd.h"
#endif
// ============================================================================ // ============================================================================
// wxCFEventLoopSource and wxCFEventLoop implementation // wxCFEventLoopSource and wxCFEventLoop implementation
// ============================================================================ // ============================================================================
@@ -147,7 +151,7 @@ void wxObserverCallBack(CFRunLoopObserverRef observer, CFRunLoopActivity activit
wxCFEventLoop * eventloop = static_cast<wxCFEventLoop *>(info); wxCFEventLoop * eventloop = static_cast<wxCFEventLoop *>(info);
if ( eventloop ) if ( eventloop )
eventloop->ObserverCallBack(observer, activity); eventloop->ObserverCallBack(observer, activity);
} }
void wxCFEventLoop::ObserverCallBack(CFRunLoopObserverRef observer, int activity) void wxCFEventLoop::ObserverCallBack(CFRunLoopObserverRef observer, int activity)
{ {
@@ -164,7 +168,7 @@ void wxCFEventLoop::ObserverCallBack(CFRunLoopObserverRef observer, int activity
if ( wxTheApp ) if ( wxTheApp )
wxTheApp->ProcessPendingEvents(); wxTheApp->ProcessPendingEvents();
} }
if ( activity & kCFRunLoopBeforeWaiting ) if ( activity & kCFRunLoopBeforeWaiting )
{ {
if ( ProcessIdle() ) if ( ProcessIdle() )
@@ -185,13 +189,13 @@ void wxCFEventLoop::ObserverCallBack(CFRunLoopObserverRef observer, int activity
wxCFEventLoop::wxCFEventLoop() wxCFEventLoop::wxCFEventLoop()
{ {
m_shouldExit = false; m_shouldExit = false;
m_runLoop = CFGetCurrentRunLoop(); m_runLoop = CFGetCurrentRunLoop();
CFRunLoopObserverContext ctxt; CFRunLoopObserverContext ctxt;
bzero( &ctxt, sizeof(ctxt) ); bzero( &ctxt, sizeof(ctxt) );
ctxt.info = this; ctxt.info = this;
m_runLoopObserver = CFRunLoopObserverCreate( kCFAllocatorDefault, kCFRunLoopBeforeTimers | kCFRunLoopBeforeWaiting , true /* repeats */, 0, m_runLoopObserver = CFRunLoopObserverCreate( kCFAllocatorDefault, kCFRunLoopBeforeTimers | kCFRunLoopBeforeWaiting , true /* repeats */, 0,
wxObserverCallBack, &ctxt ); wxObserverCallBack, &ctxt );
CFRunLoopAddObserver(m_runLoop, m_runLoopObserver, kCFRunLoopDefaultMode); CFRunLoopAddObserver(m_runLoop, m_runLoopObserver, kCFRunLoopDefaultMode);
} }
@@ -200,7 +204,7 @@ wxCFEventLoop::~wxCFEventLoop()
{ {
CFRunLoopRemoveObserver(m_runLoop, m_runLoopObserver, kCFRunLoopDefaultMode); CFRunLoopRemoveObserver(m_runLoop, m_runLoopObserver, kCFRunLoopDefaultMode);
} }
CFRunLoopRef wxCFEventLoop::CFGetCurrentRunLoop() const CFRunLoopRef wxCFEventLoop::CFGetCurrentRunLoop() const
{ {
@@ -210,7 +214,7 @@ CFRunLoopRef wxCFEventLoop::CFGetCurrentRunLoop() const
void wxCFEventLoop::WakeUp() void wxCFEventLoop::WakeUp()
{ {
extern void wxMacWakeUp(); extern void wxMacWakeUp();
wxMacWakeUp(); wxMacWakeUp();
} }
@@ -224,34 +228,34 @@ bool wxCFEventLoop::YieldFor(long eventsToProcess)
return true; return true;
} }
#endif // wxUSE_THREADS #endif // wxUSE_THREADS
m_isInsideYield = true; m_isInsideYield = true;
m_eventsToProcessInsideYield = eventsToProcess; m_eventsToProcessInsideYield = eventsToProcess;
#if wxUSE_LOG #if wxUSE_LOG
// disable log flushing from here because a call to wxYield() shouldn't // disable log flushing from here because a call to wxYield() shouldn't
// normally result in message boxes popping up &c // normally result in message boxes popping up &c
wxLog::Suspend(); wxLog::Suspend();
#endif // wxUSE_LOG #endif // wxUSE_LOG
// process all pending events: // process all pending events:
while ( DoProcessEvents() == 1 ) while ( DoProcessEvents() == 1 )
; ;
// it's necessary to call ProcessIdle() to update the frames sizes which // it's necessary to call ProcessIdle() to update the frames sizes which
// might have been changed (it also will update other things set from // might have been changed (it also will update other things set from
// OnUpdateUI() which is a nice (and desired) side effect) // OnUpdateUI() which is a nice (and desired) side effect)
while ( ProcessIdle() ) {} while ( ProcessIdle() ) {}
// if there are pending events, we must process them. // if there are pending events, we must process them.
if (wxTheApp) if (wxTheApp)
wxTheApp->ProcessPendingEvents(); wxTheApp->ProcessPendingEvents();
#if wxUSE_LOG #if wxUSE_LOG
wxLog::Resume(); wxLog::Resume();
#endif // wxUSE_LOG #endif // wxUSE_LOG
m_isInsideYield = false; m_isInsideYield = false;
return true; return true;
} }
@@ -277,7 +281,7 @@ int wxCFEventLoop::DispatchTimeout(unsigned long timeout)
return 0; return 0;
int status = DoDispatchTimeout(timeout); int status = DoDispatchTimeout(timeout);
switch( status ) switch( status )
{ {
case 0: case 0:
@@ -285,17 +289,17 @@ int wxCFEventLoop::DispatchTimeout(unsigned long timeout)
case -1: case -1:
if ( m_shouldExit ) if ( m_shouldExit )
return 0; return 0;
break; break;
case 1: case 1:
break; break;
} }
return status; return status;
} }
int wxCFEventLoop::DoDispatchTimeout(unsigned long timeout) int wxCFEventLoop::DoDispatchTimeout(unsigned long timeout)
{ {
SInt32 status = CFRunLoopRunInMode(kCFRunLoopDefaultMode, timeout / 1000.0 , true); SInt32 status = CFRunLoopRunInMode(kCFRunLoopDefaultMode, timeout / 1000.0 , true);
switch( status ) switch( status )
{ {
@@ -322,7 +326,7 @@ void wxCFEventLoop::DoRun()
// generate and process idle events for as long as we don't // generate and process idle events for as long as we don't
// have anything else to do // have anything else to do
DoProcessEvents(); DoProcessEvents();
// if the "should exit" flag is set, the loop should terminate // if the "should exit" flag is set, the loop should terminate
// but not before processing any remaining messages so while // but not before processing any remaining messages so while
// Pending() returns true, do process them // Pending() returns true, do process them
@@ -330,7 +334,7 @@ void wxCFEventLoop::DoRun()
{ {
while ( DoProcessEvents() == 1 ) while ( DoProcessEvents() == 1 )
; ;
break; break;
} }
} }
@@ -347,12 +351,12 @@ int wxCFEventLoop::Run()
{ {
// event loops are not recursive, you need to create another loop! // event loops are not recursive, you need to create another loop!
wxCHECK_MSG( !IsRunning(), -1, wxT("can't reenter a message loop") ); wxCHECK_MSG( !IsRunning(), -1, wxT("can't reenter a message loop") );
// ProcessIdle() and ProcessEvents() below may throw so the code here should // ProcessIdle() and ProcessEvents() below may throw so the code here should
// be exception-safe, hence we must use local objects for all actions we // be exception-safe, hence we must use local objects for all actions we
// should undo // should undo
wxEventLoopActivator activate(this); wxEventLoopActivator activate(this);
// we must ensure that OnExit() is called even if an exception is thrown // we must ensure that OnExit() is called even if an exception is thrown
// from inside ProcessEvents() but we must call it from Exit() in normal // from inside ProcessEvents() but we must call it from Exit() in normal
// situations because it is supposed to be called synchronously, // situations because it is supposed to be called synchronously,
@@ -364,9 +368,9 @@ int wxCFEventLoop::Run()
try try
{ {
#endif // wxUSE_EXCEPTIONS #endif // wxUSE_EXCEPTIONS
DoRun(); DoRun();
#if wxUSE_EXCEPTIONS #if wxUSE_EXCEPTIONS
// exit the outer loop as well // exit the outer loop as well
break; break;
@@ -393,7 +397,7 @@ int wxCFEventLoop::Run()
} }
} }
#endif // wxUSE_EXCEPTIONS #endif // wxUSE_EXCEPTIONS
return m_exitcode; return m_exitcode;
} }