Some error recovery and other tweaks
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27490 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -42,8 +42,8 @@ class MyApp : public wxApp
|
|||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual bool OnInit();
|
virtual bool OnInit();
|
||||||
virtual ~MyApp();
|
virtual int OnExit();
|
||||||
void Init_wxPython();
|
bool Init_wxPython();
|
||||||
private:
|
private:
|
||||||
PyThreadState* m_mainTState;
|
PyThreadState* m_mainTState;
|
||||||
};
|
};
|
||||||
@@ -68,36 +68,51 @@ private:
|
|||||||
|
|
||||||
bool MyApp::OnInit()
|
bool MyApp::OnInit()
|
||||||
{
|
{
|
||||||
Init_wxPython();
|
if ( !Init_wxPython() )
|
||||||
|
// don't start the app if we can't initialize wxPython.
|
||||||
|
return false;
|
||||||
|
|
||||||
MyFrame *frame = new MyFrame(_T("Embedded wxPython Test"),
|
MyFrame *frame = new MyFrame(_T("Embedded wxPython Test"),
|
||||||
wxPoint(50, 50), wxSize(700, 600));
|
wxDefaultPosition, wxSize(700, 600));
|
||||||
frame->Show(TRUE);
|
frame->Show(true);
|
||||||
return TRUE;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void MyApp::Init_wxPython()
|
|
||||||
|
bool MyApp::Init_wxPython()
|
||||||
{
|
{
|
||||||
// Initialize Python
|
// Initialize Python
|
||||||
Py_Initialize();
|
Py_Initialize();
|
||||||
PyEval_InitThreads();
|
PyEval_InitThreads();
|
||||||
|
|
||||||
// Load the wxPython core API. Imports the wx._core module and sets a
|
// Load the wxPython core API. Imports the wx._core_ module and sets a
|
||||||
// local pointer to a function table located there.
|
// local pointer to a function table located there. The pointer is used
|
||||||
wxPyCoreAPI_IMPORT();
|
// internally by the rest of the API functions.
|
||||||
|
if ( ! wxPyCoreAPI_IMPORT() ) {
|
||||||
|
wxLogError(wxT("***** Error importing the wxPython API! *****"));
|
||||||
|
PyErr_Print();
|
||||||
|
Py_Finalize();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// Save the current Python thread state and release the
|
// Save the current Python thread state and release the
|
||||||
// Global Interpreter Lock.
|
// Global Interpreter Lock.
|
||||||
m_mainTState = wxPyBeginAllowThreads();
|
m_mainTState = wxPyBeginAllowThreads();
|
||||||
|
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
MyApp::~MyApp()
|
int MyApp::OnExit()
|
||||||
{
|
{
|
||||||
// Restore the thread state and tell Python to cleanup after itself.
|
// Restore the thread state and tell Python to cleanup after itself.
|
||||||
// wxPython will do its own cleanup as part of that process.
|
// wxPython will do its own cleanup as part of that process. This is done
|
||||||
|
// in OnExit instead of ~MyApp because OnExit is only called if OnInit is
|
||||||
|
// successful.
|
||||||
wxPyEndAllowThreads(m_mainTState);
|
wxPyEndAllowThreads(m_mainTState);
|
||||||
Py_Finalize();
|
Py_Finalize();
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -138,8 +153,8 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
|
|||||||
|
|
||||||
// Make some child windows from C++
|
// Make some child windows from C++
|
||||||
wxSplitterWindow* sp = new wxSplitterWindow(this, -1);
|
wxSplitterWindow* sp = new wxSplitterWindow(this, -1);
|
||||||
wxPanel* p1 = new wxPanel(sp, -1);
|
wxPanel* p1 = new wxPanel(sp, -1, wxDefaultPosition, wxDefaultSize, wxSUNKEN_BORDER);
|
||||||
p1->SetFont(wxFont(12, wxSWISS, wxNORMAL, wxBOLD));
|
|
||||||
new wxStaticText(p1, -1,
|
new wxStaticText(p1, -1,
|
||||||
_T("The frame, menu, splitter, this panel and this text were created in C++..."),
|
_T("The frame, menu, splitter, this panel and this text were created in C++..."),
|
||||||
wxPoint(10,10));
|
wxPoint(10,10));
|
||||||
@@ -172,7 +187,7 @@ void MyFrame::OnPyFrame(wxCommandEvent& event)
|
|||||||
// C++ code in any way, you can execute it with PyRun_SimpleString.
|
// C++ code in any way, you can execute it with PyRun_SimpleString.
|
||||||
|
|
||||||
|
|
||||||
// First, whenever you do anyting with Python objects or code, you
|
// First, whenever you do anything with Python objects or code, you
|
||||||
// *MUST* aquire the Global Interpreter Lock and block other
|
// *MUST* aquire the Global Interpreter Lock and block other
|
||||||
// Python threads from running.
|
// Python threads from running.
|
||||||
bool blocked = wxPyBeginBlockThreads();
|
bool blocked = wxPyBeginBlockThreads();
|
||||||
|
@@ -3,11 +3,10 @@ from wx.py import shell, version
|
|||||||
|
|
||||||
class MyPanel(wx.Panel):
|
class MyPanel(wx.Panel):
|
||||||
def __init__(self, parent):
|
def __init__(self, parent):
|
||||||
wx.Panel.__init__(self, parent, -1)
|
wx.Panel.__init__(self, parent, -1, style=wx.SUNKEN_BORDER)
|
||||||
|
|
||||||
text = wx.StaticText(self, -1,
|
text = wx.StaticText(self, -1,
|
||||||
"Everything on this side of the splitter comes from Python.")
|
"Everything on this side of the splitter comes from Python.")
|
||||||
text.SetFont(wx.Font(12, wx.SWISS, wx.NORMAL, wx.BOLD))
|
|
||||||
|
|
||||||
intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % version.VERSION
|
intro = 'Welcome To PyCrust %s - The Flakiest Python Shell' % version.VERSION
|
||||||
pycrust = shell.Shell(self, -1, introText=intro)
|
pycrust = shell.Shell(self, -1, introText=intro)
|
||||||
|
Reference in New Issue
Block a user