wxApp::Yield for more details). The simplest way to do it is to use
wxWindowDisabler class as illustrated in the above example.
+ Note that a wxBusyInfo is always built with the @c wxSTAY_ON_TOP window style
+ (see wxFrame window styles for more info).
+
@library{wxcore}
@category{cmndlg}
*/
#else
wxSIMPLE_BORDER
#endif
- | wxFRAME_TOOL_WINDOW)
+ | wxFRAME_TOOL_WINDOW | wxSTAY_ON_TOP)
{
wxPanel *panel = new wxPanel( this );
wxStaticText *text = new wxStaticText(panel, wxID_ANY, message);
wxBusyInfo::wxBusyInfo(const wxString& message, wxWindow *parent)
{
- m_InfoFrame = new wxInfoFrame( parent, message);
- if ( parent && parent->HasFlag(wxSTAY_ON_TOP) )
- {
- // we must have this flag to be in front of our parent if it has it
- m_InfoFrame->SetWindowStyleFlag(wxSTAY_ON_TOP);
- }
-
+ m_InfoFrame = new wxInfoFrame(parent, message);
m_InfoFrame->Show(true);
m_InfoFrame->Refresh();
m_InfoFrame->Update();