b8a4283421
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26564 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
22 lines
724 B
Python
22 lines
724 B
Python
import wx
|
|
from wx.py import shell, version
|
|
|
|
class MyPanel(wx.Panel):
|
|
def __init__(self, parent):
|
|
wx.Panel.__init__(self, parent, -1)
|
|
|
|
text = wx.StaticText(self, -1,
|
|
"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
|
|
pycrust = shell.Shell(self, -1, introText=intro)
|
|
#pycrust = wxTextCtrl(self, -1, intro)
|
|
|
|
sizer = wx.BoxSizer(wx.VERTICAL)
|
|
sizer.Add(text, 0, wx.EXPAND|wx.ALL, 10)
|
|
sizer.Add(pycrust, 1, wx.EXPAND|wx.BOTTOM|wx.LEFT|wx.RIGHT, 10)
|
|
|
|
self.SetSizer(sizer)
|
|
|