]> git.saurik.com Git - wxWidgets.git/blame - src/generic/busyinfo.cpp
fix crash when the user code refuses to validate the new text when editing the item...
[wxWidgets.git] / src / generic / busyinfo.cpp
CommitLineData
5526e819
VS
1/////////////////////////////////////////////////////////////////////////////
2// Name: busyinfo.cpp
3// Purpose: Information window when app is busy
4// Author: Vaclav Slavik
5// Copyright: (c) 1999 Vaclav Slavik
6// Licence: wxWindows Licence
7/////////////////////////////////////////////////////////////////////////////
8
9#ifdef __GNUG__
d1af991f 10#pragma implementation "busyinfo.h"
5526e819
VS
11#endif
12
d1af991f 13#include "wx/wxprec.h"
5526e819
VS
14
15#ifdef __BORDLANDC__
16#pragma hdrstop
17#endif
18
d78b3d64
VS
19#if wxUSE_BUSYINFO
20
5526e819 21#include "wx/busyinfo.h"
d1af991f
RR
22#include "wx/stattext.h"
23#include "wx/panel.h"
24#include "wx/utils.h"
5526e819
VS
25
26
27wxInfoFrame::wxInfoFrame(wxWindow *parent, const wxString& message)
868741e9 28 : wxFrame(parent, -1, wxT("Busy"),
21977bac 29 wxDefaultPosition, wxDefaultSize,
868741e9
JS
30#if defined(__WXX11__)
31 wxTHICK_FRAME | wxFRAME_TOOL_WINDOW)
32#else
21977bac 33 wxSIMPLE_BORDER | wxFRAME_TOOL_WINDOW)
868741e9 34#endif
5526e819 35{
21977bac
VZ
36 wxPanel *panel = new wxPanel( this );
37 wxStaticText *text = new wxStaticText(panel, -1, message);
38
39 panel->SetCursor(*wxHOURGLASS_CURSOR);
40 text->SetCursor(*wxHOURGLASS_CURSOR);
41
42 // make the frame of at least the standard size (400*80) but big enough
43 // for the text we show
44 wxSize sizeText = text->GetBestSize();
45 SetClientSize(wxMax(sizeText.x, 340) + 60, wxMax(sizeText.y, 40) + 40);
46
47 // need to size the panel correctly first so that text->Centre() works
48 panel->SetSize(GetClientSize());
49
50 text->Centre(wxBOTH);
5526e819 51 Centre(wxBOTH);
5526e819
VS
52}
53
21977bac 54wxBusyInfo::wxBusyInfo(const wxString& message, wxWindow *parent)
5526e819 55{
21977bac 56 m_InfoFrame = new wxInfoFrame( parent, message);
d1af991f 57 m_InfoFrame->Show(TRUE);
5526e819 58 wxYield();
d1af991f 59 m_InfoFrame->Refresh();
5526e819
VS
60 wxYield();
61}
62
5526e819
VS
63wxBusyInfo::~wxBusyInfo()
64{
d1af991f
RR
65 m_InfoFrame->Show(FALSE);
66 m_InfoFrame->Close();
5526e819
VS
67 wxYield();
68}
69
d78b3d64 70#endif
2996bcde
PA
71 // wxUSE_BUSYINFO
72