1//---------------------------------------------------------------------------
2// This file is generated by wxPython's SIP generator.  Do not edit by hand.
3//
4// Copyright: (c) 2018 by Total Control Software
5// License:   wxWindows License
6//
7// This file will be included by _core.sip
8//
9//---------------------------------------------------------------------------
10
11//---------------------------------------------------------------------------
12
13class wxBusyInfo
14{
15    %Docstring
16        BusyInfo(msg, parent=None)
17
18        This class makes it easy to tell your user that the program is
19        temporarily busy.
20    %End
21    %TypeHeaderCode
22        #include <wx/busyinfo.h>
23    %End
24
25public:
26    wxBusyInfo(
27        const wxString & msg,
28        wxWindow * parent = NULL
29    );
30    %PreMethodCode
31        if (!wxPyCheckForApp()) return NULL;
32    %End
33
34    virtual
35    ~wxBusyInfo();
36
37    private:
38        wxBusyInfo(const wxBusyInfo&);
39
40
41};  // end of class wxBusyInfo
42
43
44%Extract(id=pycode_core)
45def _BusyInfo___enter__(self):
46    return self
47BusyInfo.__enter__ = _BusyInfo___enter__
48del _BusyInfo___enter__
49%End
50
51%Extract(id=pycode_core)
52def _BusyInfo___exit__(self, exc_type, exc_val, exc_tb):
53    return False
54BusyInfo.__exit__ = _BusyInfo___exit__
55del _BusyInfo___exit__
56%End
57
58
59//---------------------------------------------------------------------------
60
61