static Point gs_lastWhere;
static long gs_lastWhen = 0;
-// cursor stuff
-extern int wxBusyCursorCount;
-
-
// ============================================================================
// wxTopLevelWindowMac implementation
// ============================================================================
wxNode *node = wxWinMacWindowList->Find((long)inWindowRef);
if (!node)
return NULL;
- return (wxTopLevelWindowMac *)node->Data();
+ return (wxTopLevelWindowMac *)node->GetData();
}
void wxAssociateWinWithMacWindow(WXWindow inWindowRef, wxTopLevelWindowMac *win)
{
wxTheApp->m_macCurrentEvent = &rec ;
wxWindow* focus = wxWindow::FindFocus() ;
- if ( (focus != NULL) && wxTheApp->MacSendKeyDownEvent( focus , rec.message , rec.modifiers , rec.when , rec.where.h , rec.where.v ) )
+ if ( (focus != NULL) && !UMAMenuEvent(&rec) && wxTheApp->MacSendKeyDownEvent( focus , rec.message , rec.modifiers , rec.when , rec.where.h , rec.where.v ) )
{
// was handled internally
result = noErr ;
}
else
{
+#if TARGET_CARBON
wclass = kPlainWindowClass ;
+#else
+ wclass = kFloatingWindowClass ;
+#endif
}
}
else if ( HasFlag( wxCAPTION ) )
}
else
{
+#if TARGET_CARBON
wclass = kPlainWindowClass ;
+#else
+ wclass = kModalWindowClass ;
+#endif
}
}
if ( ev->what == mouseUp )
{
wxTheApp->s_captureWindow = NULL ;
- if ( wxBusyCursorCount == 0 )
+ if ( !wxIsBusy() )
{
m_cursor.MacInstall() ;
}
UMAHighlightAndActivateWindow( (WindowRef)m_macWindow , inIsActivating ) ;
- MacSuperEnabled( inIsActivating ) ;
+ // Early versions of MacOS X don't refresh backgrounds properly,
+ // so refresh the whole window on activation and deactivation.
+ long osVersion = UMAGetSystemVersion();
+ if (osVersion >= 0x1000 && osVersion < 0x1020)
+ Refresh(TRUE);
+ else
+ MacSuperEnabled( inIsActivating ) ;
}
void wxTopLevelWindowMac::MacKeyDown( WXEVENTREF ev )
return FALSE;
if (show)
- {
- ::ShowWindow( (WindowRef)m_macWindow ) ;
+ {
+ ::TransitionWindow((WindowRef)m_macWindow,kWindowZoomTransitionEffect,kWindowShowTransitionAction,nil);
::SelectWindow( (WindowRef)m_macWindow ) ;
// no need to generate events here, they will get them triggered by macos
// actually they should be , but apparently they are not
}
else
{
- ::HideWindow( (WindowRef)m_macWindow ) ;
+ ::TransitionWindow((WindowRef)m_macWindow,kWindowZoomTransitionEffect,kWindowHideTransitionAction,nil);
}
if ( !show )
if ( doResize )
::SizeWindow((WindowRef)m_macWindow, m_width, m_height , true);
+
+ // the OS takes care of invalidating and erasing the new area so we only have to
+ // take care of refreshing for full repaints
+
+ if ( doResize && !HasFlag(wxNO_FULL_REPAINT_ON_RESIZE) )
+ Refresh() ;
- // the OS takes care of invalidating and erasing the new area
- // we have erased the old one
if ( IsKindOf( CLASSINFO( wxFrame ) ) )
{