// Purpose: Information window when app is busy
// Author: Vaclav Slavik
// Copyright: (c) 1999 Vaclav Slavik
-// Licence: wxWidgets Licence
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "busyinfo.h"
-#endif
-
#include "wx/wxprec.h"
#ifdef __BORLANDC__
wxInfoFrame::wxInfoFrame(wxWindow *parent, const wxString& message)
- : wxFrame(parent, -1, wxT("Busy"),
+ : wxFrame(parent, wxID_ANY, wxT("Busy"),
wxDefaultPosition, wxDefaultSize,
#if defined(__WXX11__)
wxTHICK_FRAME
| wxFRAME_TOOL_WINDOW)
{
wxPanel *panel = new wxPanel( this );
- wxStaticText *text = new wxStaticText(panel, -1, message);
+ wxStaticText *text = new wxStaticText(panel, wxID_ANY, message);
panel->SetCursor(*wxHOURGLASS_CURSOR);
text->SetCursor(*wxHOURGLASS_CURSOR);
int nParentWidth = parent->GetClientSize().x;
int nColor;
- SetBackgroundColour("WHITE");
+ SetBackgroundColour(wxT("WHITE"));
nColor = (LONG)GetBackgroundColour().GetPixel();
::WinSetPresParam( GetHwnd()
,sizeof(LONG)
,(PVOID)&nColor
);
- panel->SetBackgroundColour("WHITE");
+ panel->SetBackgroundColour(wxT("WHITE"));
nColor = (LONG)panel->GetBackgroundColour().GetPixel();
::WinSetPresParam( GetHwndOf(panel)
,nHeight
,SWP_SIZE | SWP_MOVE | SWP_ACTIVATE
);
- text->SetBackgroundColour("WHITE");
+ text->SetBackgroundColour(wxT("WHITE"));
nColor = (LONG)text->GetBackgroundColour().GetPixel();
::WinSetPresParam( GetHwndOf(text)
wxBusyInfo::wxBusyInfo(const wxString& message, wxWindow *parent)
{
m_InfoFrame = new wxInfoFrame( parent, message);
- m_InfoFrame->Show(TRUE);
-#ifdef __WXMAC__
- m_InfoFrame->Update() ;
-#else
- wxYield();
+ m_InfoFrame->Show(true);
m_InfoFrame->Refresh();
- wxYield();
-#endif
+ m_InfoFrame->Update();
}
wxBusyInfo::~wxBusyInfo()
{
- m_InfoFrame->Show(FALSE);
+ m_InfoFrame->Show(false);
m_InfoFrame->Close();
- wxYield();
}
#endif