Raise and Lower implemented

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10640 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2001-06-22 12:34:18 +00:00
parent 5da2c444ef
commit f32e5dc5ca
2 changed files with 16 additions and 4 deletions

View File

@ -1515,13 +1515,19 @@ void wxWindow::OnIdle(wxIdleEvent& event)
// Raise the window to the top of the Z order
void wxWindow::Raise()
{
// TODO
if ( m_macWindowData )
{
UMABringToFront( m_macWindowData->m_macWindow ) ;
}
}
// Lower the window to the bottom of the Z order
void wxWindow::Lower()
{
// TODO
if ( m_macWindowData )
{
UMASendBehind( m_macWindowData->m_macWindow , NULL ) ;
}
}
void wxWindow::DoSetClientSize(int width, int height)

View File

@ -1515,13 +1515,19 @@ void wxWindow::OnIdle(wxIdleEvent& event)
// Raise the window to the top of the Z order
void wxWindow::Raise()
{
// TODO
if ( m_macWindowData )
{
UMABringToFront( m_macWindowData->m_macWindow ) ;
}
}
// Lower the window to the bottom of the Z order
void wxWindow::Lower()
{
// TODO
if ( m_macWindowData )
{
UMASendBehind( m_macWindowData->m_macWindow , NULL ) ;
}
}
void wxWindow::DoSetClientSize(int width, int height)