implement ShowWithoutActivating for GTK+

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62510 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett 2009-10-30 07:39:58 +00:00
parent 335b5afa77
commit 52802b0727

View File

@ -889,6 +889,12 @@ bool wxTopLevelWindowGTK::Show( bool show )
return change;
}
void wxTopLevelWindowGTK::ShowWithoutActivating()
{
gtk_window_set_focus_on_map(GTK_WINDOW(m_widget), false);
Show(true);
}
void wxTopLevelWindowGTK::Raise()
{
gtk_window_present( GTK_WINDOW( m_widget ) );