switched hide and show calls to using transition window calls, this supports animation and sound support
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17302 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -322,7 +322,11 @@ void wxTopLevelWindowMac::MacCreateRealWindow( const wxString& title,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
#if TARGET_CARBON
|
||||||
wclass = kPlainWindowClass ;
|
wclass = kPlainWindowClass ;
|
||||||
|
#else
|
||||||
|
wclass = kFloatingWindowClass ;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if ( HasFlag( wxCAPTION ) )
|
else if ( HasFlag( wxCAPTION ) )
|
||||||
@@ -345,7 +349,11 @@ void wxTopLevelWindowMac::MacCreateRealWindow( const wxString& title,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
#if TARGET_CARBON
|
||||||
wclass = kPlainWindowClass ;
|
wclass = kPlainWindowClass ;
|
||||||
|
#else
|
||||||
|
wclass = kModalWindowClass ;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -604,8 +612,8 @@ bool wxTopLevelWindowMac::Show(bool show)
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
if (show)
|
if (show)
|
||||||
{
|
{
|
||||||
::ShowWindow( (WindowRef)m_macWindow ) ;
|
::TransitionWindow((WindowRef)m_macWindow,kWindowZoomTransitionEffect,kWindowShowTransitionAction,nil);
|
||||||
::SelectWindow( (WindowRef)m_macWindow ) ;
|
::SelectWindow( (WindowRef)m_macWindow ) ;
|
||||||
// no need to generate events here, they will get them triggered by macos
|
// no need to generate events here, they will get them triggered by macos
|
||||||
// actually they should be , but apparently they are not
|
// actually they should be , but apparently they are not
|
||||||
@@ -616,7 +624,7 @@ bool wxTopLevelWindowMac::Show(bool show)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
::HideWindow( (WindowRef)m_macWindow ) ;
|
::TransitionWindow((WindowRef)m_macWindow,kWindowZoomTransitionEffect,kWindowHideTransitionAction,nil);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !show )
|
if ( !show )
|
||||||
|
@@ -322,7 +322,11 @@ void wxTopLevelWindowMac::MacCreateRealWindow( const wxString& title,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
#if TARGET_CARBON
|
||||||
wclass = kPlainWindowClass ;
|
wclass = kPlainWindowClass ;
|
||||||
|
#else
|
||||||
|
wclass = kFloatingWindowClass ;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if ( HasFlag( wxCAPTION ) )
|
else if ( HasFlag( wxCAPTION ) )
|
||||||
@@ -345,7 +349,11 @@ void wxTopLevelWindowMac::MacCreateRealWindow( const wxString& title,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
#if TARGET_CARBON
|
||||||
wclass = kPlainWindowClass ;
|
wclass = kPlainWindowClass ;
|
||||||
|
#else
|
||||||
|
wclass = kModalWindowClass ;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -604,8 +612,8 @@ bool wxTopLevelWindowMac::Show(bool show)
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
if (show)
|
if (show)
|
||||||
{
|
{
|
||||||
::ShowWindow( (WindowRef)m_macWindow ) ;
|
::TransitionWindow((WindowRef)m_macWindow,kWindowZoomTransitionEffect,kWindowShowTransitionAction,nil);
|
||||||
::SelectWindow( (WindowRef)m_macWindow ) ;
|
::SelectWindow( (WindowRef)m_macWindow ) ;
|
||||||
// no need to generate events here, they will get them triggered by macos
|
// no need to generate events here, they will get them triggered by macos
|
||||||
// actually they should be , but apparently they are not
|
// actually they should be , but apparently they are not
|
||||||
@@ -616,7 +624,7 @@ bool wxTopLevelWindowMac::Show(bool show)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
::HideWindow( (WindowRef)m_macWindow ) ;
|
::TransitionWindow((WindowRef)m_macWindow,kWindowZoomTransitionEffect,kWindowHideTransitionAction,nil);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( !show )
|
if ( !show )
|
||||||
|
Reference in New Issue
Block a user