#if __option(profile)
#include <profiler.h>
-#endif
+#endif
#include "apprsrc.h"
return wxTheApp->MacHandleAEQuit( event , reply) ;
}
-OSErr wxApp::MacHandleAEODoc(AppleEvent *event , AppleEvent *reply)
+OSErr wxApp::MacHandleAEODoc(AppleEvent *event , AppleEvent *reply)
{
ProcessSerialNumber PSN ;
PSN.highLongOfPSN = 0 ;
return noErr ;
}
-OSErr wxApp::MacHandleAEPDoc(AppleEvent *event , AppleEvent *reply)
+OSErr wxApp::MacHandleAEPDoc(AppleEvent *event , AppleEvent *reply)
{
return noErr ;
}
-OSErr wxApp::MacHandleAEOApp(AppleEvent *event , AppleEvent *reply)
+OSErr wxApp::MacHandleAEOApp(AppleEvent *event , AppleEvent *reply)
{
return noErr ;
}
-OSErr wxApp::MacHandleAEQuit(AppleEvent *event , AppleEvent *reply)
+OSErr wxApp::MacHandleAEQuit(AppleEvent *event , AppleEvent *reply)
{
wxWindow* win = GetTopWindow() ;
if ( win )
if ( c != NULL )
{
*to = StringMac[ c - StringANSI] ;
- }
+ }
++to ;
++from ;
}
if ( c != NULL )
{
*to = StringMac[ c - StringANSI] ;
- }
+ }
else
{
*to = *from ;
if ( c != NULL )
{
*to = StringANSI[ c - StringMac] ;
- }
+ }
++to ;
++from ;
}
if ( c != NULL )
{
*to = StringANSI[ c - StringMac] ;
- }
+ }
else
{
*to = *from ;
}
}
-void wxMacConvertFromPC( char * p )
+void wxMacConvertFromPC( char * p )
{
char *ptr = p ;
int len = strlen ( p ) ;
-
+
wxMacConvertFromPC( ptr , ptr , len ) ;
}
-void wxMacConvertFromPCForControls( char * p )
+void wxMacConvertFromPCForControls( char * p )
{
char *ptr = p ;
int len = strlen ( p ) ;
-
+
wxMacConvertFromPC( ptr , ptr , len ) ;
for ( int i = 0 ; i < strlen ( ptr ) ; i++ )
{
}
}
-void wxMacConvertFromPC( unsigned char *p )
+void wxMacConvertFromPC( unsigned char *p )
{
char *ptr = (char*) p + 1 ;
int len = p[0] ;
-
+
wxMacConvertFromPC( ptr , ptr , len ) ;
}
extern char *wxBuffer ;
-wxString wxMacMakeMacStringFromPC( const char * p )
+wxString wxMacMakeMacStringFromPC( const char * p )
{
const char *ptr = p ;
int len = strlen ( p ) ;
char *buf = wxBuffer ;
-
+
if ( len >= BUFSIZ + 512 )
{
buf = new char [len+1] ;
}
-void wxMacConvertToPC( char * p )
+void wxMacConvertToPC( char * p )
{
char *ptr = p ;
int len = strlen ( p ) ;
-
+
wxMacConvertToPC( ptr , ptr , len ) ;
}
-void wxMacConvertToPC( unsigned char *p )
+void wxMacConvertToPC( unsigned char *p )
{
char *ptr = (char*) p + 1 ;
int len = p[0] ;
-
+
wxMacConvertToPC( ptr , ptr , len ) ;
}
-wxString wxMacMakePCStringFromMac( const char * p )
+wxString wxMacMakePCStringFromMac( const char * p )
{
const char *ptr = p ;
int len = strlen ( p ) ;
char *buf = wxBuffer ;
-
+
if ( len >= BUFSIZ + 512 )
{
buf = new char [len+1] ;
wxMacConvertToPC( ptr , buf , len ) ;
buf[len] = 0 ;
-
+
wxString result( buf ) ;
if ( buf != wxBuffer )
delete buf ;
bool wxApp::Initialize()
{
int error = 0 ;
-
+
// Mac-specific
-
+
UMAInitToolbox( 4 ) ;
UMAShowWatchCursor() ;
GUSISetup(GUSIwithInternetSockets);
#endif
-
+
// test the minimal configuration necessary
long theSystem ;
else if (Gestalt(gestaltSystemVersion, &theSystem) != noErr )
{
error = kMacSTROldSystem ;
- }
+ }
else if ( theSystem < 0x0750 )
{
error = kMacSTROldSystem ;
*/
// if we encountered any problems so far, give the error code and exit immediately
-
+
if ( error )
- {
+ {
short itemHit;
Str255 message;
ParamText("\pFatal Error", message, (ConstStr255Param)"\p", (ConstStr255Param)"\p");
itemHit = Alert(128, nil);
return FALSE ;
- }
+ }
#if __option(profile)
ProfilerInit( collectDetailed, bestTimeBase , 20000 , 30 ) ;
-#endif
+#endif
// now avoid exceptions thrown for new (bad_alloc)
-
+
std::__throws_bad_alloc = FALSE ;
-
+
s_macCursorRgn = ::NewRgn() ;
#ifdef __WXMSW__
wxDebugContext::SetStream(oStr, sBuf);
#endif
*/
-
+
wxClassInfo::InitializeClasses();
wxTheColourDatabase = new wxColourDatabase(wxKEY_STRING);
wxWinMacControlList = new wxList(wxKEY_INTEGER);
UMAShowArrowCursor() ;
-
+
return TRUE;
}
#if __option(profile)
ProfilerDump( "\papp.prof" ) ;
ProfilerTerm() ;
-#endif
+#endif
delete wxTheApp;
wxTheApp = NULL;
-
+
#if (defined(__WXDEBUG__) && wxUSE_MEMORY_TRACING) || wxUSE_DEBUG_CONTEXT
// At this point we want to check if there are any memory
// blocks that aren't part of the wxDebugContext itself,
}
// wxDebugContext::SetStream(NULL, NULL);
#endif
-
+
// do it as the very last thing because everything else can log messages
wxLog::DontCreateOnDemand();
// do it as the very last thing because everything else can log messages
printf( "wxWindows error: No initializer - use IMPLEMENT_APP macro.\n" );
return 0;
};
-
+
wxTheApp = (wxApp*) (* wxApp::GetInitializerFunction()) ();
};
-
- if (!wxTheApp)
+
+ if (!wxTheApp)
{
printf( "wxWindows error: wxTheApp == NULL\n" );
return 0;
// GUI-specific initialization, such as creating an app context.
wxTheApp->OnInitGui();
-
+
// we could try to get the open apple events here to adjust argc and argv better
-
+
// Here frames insert themselves automatically
// into wxTopLevelWindows by getting created
// in OnInit().
-
+
if (!wxTheApp->OnInit()) return 0;
int retValue = 0;
-
+
if (wxTheApp->Initialized()) retValue = wxTheApp->OnRun();
if (wxTheApp->GetTopWindow())
delete wxTheApp->GetTopWindow();
wxTheApp->SetTopWindow(NULL);
}
-
- wxTheApp->DeletePendingObjects();
-
+
+ wxTheApp->DeletePendingObjects();
+
wxTheApp->OnExit();
-
+
wxApp::CleanUp();
return retValue;
inOnIdle = FALSE;
}
+void wxWakeUpIdle()
+{
+ // **** please implement me! ****
+ // Wake up the idle handler processor, even if it is in another thread...
+}
+
// Send idle event to all top-level windows
bool wxApp::SendIdleEvents()
{
while (node)
{
wxObject *obj = (wxObject *)node->Data();
-
+
delete obj;
if (wxPendingDelete.Member(obj))
return TRUE;
}
-// platform specifics
+// platform specifics
void wxApp::MacSuspend( bool convertClipboard )
{
s_lastMouseDown = 0 ;
- if( convertClipboard )
+ if( convertClipboard )
{
MacConvertPrivateToPublicScrap() ;
}
-
+
UMAHideFloatingWindows() ;
}
void wxApp::MacResume( bool convertClipboard )
{
s_lastMouseDown = 0 ;
- if( convertClipboard )
+ if( convertClipboard )
{
MacConvertPublicToPrivateScrap() ;
}
-
+
UMAShowFloatingWindows() ;
}
::TEFromScrap() ;
}
-void wxApp::MacDoOneEvent()
+void wxApp::MacDoOneEvent()
{
EventRecord event ;
WindowPtr window = UMAFrontWindow() ;
if ( window )
UMAIdleControls( window ) ;
-
+
wxTheApp->ProcessIdle() ;
}
if ( event.what != kHighLevelEvent )
// repeaters
#if 0
- wxMacProcessSocketEvents() ;
+ wxMacProcessSocketEvents() ;
#endif
}
-void wxApp::MacHandleOneEvent( EventRecord *ev )
+void wxApp::MacHandleOneEvent( EventRecord *ev )
{
m_macCurrentEvent = ev ;
-
+
wxApp::sm_lastMessageTime = ev->when ;
-
+
switch (ev->what)
{
case mouseDown:
else
{
ev->modifiers &= ~controlKey ;
- }
+ }
MacHandleMouseUpEvent( ev ) ;
s_lastMouseDown = 0;
break;
WindowAttributes frontWindowAttributes = NULL ;
if ( frontWindow )
UMAGetWindowAttributes( frontWindow , &frontWindowAttributes ) ;
-
+
short windowPart = ::FindWindow(ev->where, &window);
wxWindow* win = wxFindWinFromMacWindow( window ) ;
-
+
switch (windowPart)
{
case inMenuBar :
- if ( s_macIsInModalLoop )
+ if ( s_macIsInModalLoop )
{
SysBeep ( 30 ) ;
}
SetOrigin( 0 , 0 ) ;
LocalToGlobal( &pt ) ;
SetPort( port ) ;
- win->SetSize( pt.h , pt.v , -1 ,
+ win->SetSize( pt.h , pt.v , -1 ,
-1 , wxSIZE_USE_EXISTING);
}
s_lastMouseDown = 0;
int newWidth = LoWord(growResult);
int newHeight = HiWord(growResult);
int oldWidth, oldHeight;
-
+
win->GetSize(&oldWidth, &oldHeight);
- if (newWidth == 0)
+ if (newWidth == 0)
newWidth = oldWidth;
- if (newHeight == 0)
+ if (newHeight == 0)
newHeight = oldHeight;
-
+
if (win)
win->SetSize( -1, -1, newWidth, newHeight, wxSIZE_USE_EXISTING);
}
// TODO setup size event
ZoomWindow( window , windowPart , false ) ;
if (win)
- win->SetSize( -1, -1, window->portRect.right-window->portRect.left ,
+ win->SetSize( -1, -1, window->portRect.right-window->portRect.left ,
window->portRect.bottom-window->portRect.top, wxSIZE_USE_EXISTING);
}
s_lastMouseDown = 0;
case inContent :
if ( window != frontWindow )
{
- if ( s_macIsInModalLoop )
+ if ( s_macIsInModalLoop )
{
SysBeep ( 30 ) ;
}
win->MacMouseDown( ev , windowPart ) ;
}
break ;
-
+
default:
break;
}
void wxApp::MacHandleMouseUpEvent( EventRecord *ev )
{
WindowRef window;
-
+
short windowPart = ::FindWindow(ev->where, &window);
-
+
switch (windowPart)
{
case inMenuBar :
}
long wxMacTranslateKey(char key, char code)
-{
- switch (key)
+{
+ switch (key)
{
case 0x01 :
key = WXK_HOME;
default:
break ;
} // end switch
-
+
return key;
}
short keycode ;
short keychar ;
keychar = short(ev->message & charCodeMask);
- keycode = short(ev->message & keyCodeMask) >> 8 ;
-
+ keycode = short(ev->message & keyCodeMask) >> 8 ;
+
wxWindow* focus = wxWindow::FindFocus() ;
if ( focus )
{
OSErr err ;
Point point ;
SetPt( &point , 100 , 100 ) ;
-
+
err = DIBadMount( point , ev->message ) ;
wxASSERT( err == noErr ) ;
}
{
WindowRef oldFrontWindow = NULL ;
WindowRef newFrontWindow = NULL ;
-
+
// in case we don't take care of activating ourselves, we have to synchronize
// our idea of the active window with the process manager's - which it already activated
-
+
if ( !doesActivate )
oldFrontWindow = UMAFrontNonFloatingWindow() ;
-
+
MacResume( convertClipboard ) ;
-
+
newFrontWindow = UMAFrontNonFloatingWindow() ;
-
+
if ( oldFrontWindow )
{
wxWindow* win = wxFindWinFromMacWindow( oldFrontWindow ) ;
}
}
else
- {
+ {
MacSuspend( convertClipboard ) ;
-
- // in case this suspending did close an active window, another one might
+
+ // in case this suspending did close an active window, another one might
// have surfaced -> lets deactivate that one
-
+
WindowRef newActiveWindow = UMAGetActiveNonFloatingWindow() ;
if ( newActiveWindow )
{
case mouseMovedMessage :
{
WindowRef window;
-
+
wxWindow* currentMouseWindow = NULL ;
-
- MacGetWindowFromPoint( wxPoint( ev->where.h , ev->where.v ) , ¤tMouseWindow ) ;
-
+
+ MacGetWindowFromPoint( wxPoint( ev->where.h , ev->where.v ) , ¤tMouseWindow ) ;
+
if ( currentMouseWindow != wxWindow::s_lastMouseWindow )
{
wxMouseEvent event ;
-
+
bool isDown = !(ev->modifiers & btnState) ; // 1 is for up
bool controlDown = ev->modifiers & controlKey ; // for simulating right mouse
-
+
event.m_leftDown = isDown && !controlDown;
event.m_middleDown = FALSE;
- event.m_rightDown = isDown && controlDown;
+ event.m_rightDown = isDown && controlDown;
event.m_shiftDown = ev->modifiers & shiftKey;
event.m_controlDown = ev->modifiers & controlKey;
event.m_altDown = ev->modifiers & optionKey;
- event.m_metaDown = ev->modifiers & cmdKey;
+ event.m_metaDown = ev->modifiers & cmdKey;
event.m_x = ev->where.h;
- event.m_y = ev->where.v;
+ event.m_y = ev->where.v;
event.m_timeStamp = ev->when;
event.SetEventObject(this);
-
+
if ( wxWindow::s_lastMouseWindow )
{
wxMouseEvent eventleave(event ) ;
}
wxWindow::s_lastMouseWindow = currentMouseWindow ;
}
-
+
short windowPart = ::FindWindow(ev->where, &window);
-
+
switch (windowPart)
{
case inMenuBar :
case inSysWindow :
break ;
default:
- {
+ {
if ( s_lastMouseDown == 0 )
ev->modifiers |= btnState ;
}
}
break ;
-
+
}
}
void wxApp::MacHandleMenuSelect( int macMenuId , int macMenuItemNum )
{
- if (macMenuId == 0)
+ if (macMenuId == 0)
return; // no menu item selected
-
- if (macMenuId == kwxMacAppleMenuId && macMenuItemNum > 1)
+
+ if (macMenuId == kwxMacAppleMenuId && macMenuItemNum > 1)
{
#if ! TARGET_CARBON
Str255 deskAccessoryName ;
GrafPtr savedPort ;
-
+
GetMenuItemText(GetMenuHandle(kwxMacAppleMenuId), macMenuItemNum, deskAccessoryName);
GetPort(&savedPort);
OpenDeskAcc(deskAccessoryName);
wxWindow* frontwindow = wxFindWinFromMacWindow( ::FrontWindow() ) ;
if ( frontwindow && wxMenuBar::MacGetInstalledMenuBar() )
wxMenuBar::MacGetInstalledMenuBar()->MacMenuSelect( frontwindow->GetEventHandler() , 0 , macMenuId , macMenuItemNum ) ;
- }
- HiliteMenu(0);
+ }
+ HiliteMenu(0);
}
/*
}
}
}
-*/
\ No newline at end of file
+*/