summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
5da2c44)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10640
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// Raise the window to the top of the Z order
void wxWindow::Raise()
{
// Raise the window to the top of the Z order
void wxWindow::Raise()
{
+ if ( m_macWindowData )
+ {
+ UMABringToFront( m_macWindowData->m_macWindow ) ;
+ }
}
// Lower the window to the bottom of the Z order
void wxWindow::Lower()
{
}
// Lower the window to the bottom of the Z order
void wxWindow::Lower()
{
+ if ( m_macWindowData )
+ {
+ UMASendBehind( m_macWindowData->m_macWindow , NULL ) ;
+ }
}
void wxWindow::DoSetClientSize(int width, int height)
}
void wxWindow::DoSetClientSize(int width, int height)
// Raise the window to the top of the Z order
void wxWindow::Raise()
{
// Raise the window to the top of the Z order
void wxWindow::Raise()
{
+ if ( m_macWindowData )
+ {
+ UMABringToFront( m_macWindowData->m_macWindow ) ;
+ }
}
// Lower the window to the bottom of the Z order
void wxWindow::Lower()
{
}
// Lower the window to the bottom of the Z order
void wxWindow::Lower()
{
+ if ( m_macWindowData )
+ {
+ UMASendBehind( m_macWindowData->m_macWindow , NULL ) ;
+ }
}
void wxWindow::DoSetClientSize(int width, int height)
}
void wxWindow::DoSetClientSize(int width, int height)