def demo_02(): "empty text" app = wx.App(redirect = True) frame = wx.Frame(None) win = wx.Panel(frame) view = WXTextView(win) box = wx.BoxSizer(wx.VERTICAL) box.Add(view, 1, wx.ALL|wx.GROW, 1) win.SetSizer(box) win.SetAutoLayout(True) model = TextModel(u'') view.set_model(model) frame.Show() import testing testing.pyshell(locals()) app.MainLoop()
def demo_03(): "line break" ns = test_09() import testing testing.pyshell(ns) ns['app'].MainLoop()
def demo_00(): "simple demo" ns = test_02() import testing testing.pyshell(ns) ns['app'].MainLoop()