X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c7ea279bf63e607f471e2f3ac77f047ad5efd619..75d9e502238df95fa53c0030b1fac0d4f43e4025:/wxPython/demo/GridSimple.py diff --git a/wxPython/demo/GridSimple.py b/wxPython/demo/GridSimple.py index 9a0d25bde2..26a19c59e4 100644 --- a/wxPython/demo/GridSimple.py +++ b/wxPython/demo/GridSimple.py @@ -57,7 +57,7 @@ class SimpleGrid(gridlib.Grid): ##, mixins.GridAutoEditMixin): self.SetColLabelAlignment(wx.ALIGN_LEFT, wx.ALIGN_BOTTOM) #self.SetDefaultCellOverflow(False) - #r = wxGridCellAutoWrapStringRenderer() + #r = gridlib.GridCellAutoWrapStringRenderer() #self.SetCellRenderer(9, 1, r) # overflow cells @@ -72,7 +72,11 @@ class SimpleGrid(gridlib.Grid): ##, mixins.GridAutoEditMixin): self.SetCellEditor(0, 4, editor) self.SetCellValue(0, 4, "Limited text") + renderer = gridlib.GridCellAutoWrapStringRenderer() + self.SetCellRenderer(15,0, renderer) + self.SetCellValue(15,0, "The text in this cell will be rendered with word-wrapping") + # test all the events self.Bind(gridlib.EVT_GRID_CELL_LEFT_CLICK, self.OnCellLeftClick) self.Bind(gridlib.EVT_GRID_CELL_RIGHT_CLICK, self.OnCellRightClick) @@ -230,7 +234,7 @@ class SimpleGrid(gridlib.Grid): ##, mixins.GridAutoEditMixin): class TestFrame(wx.Frame): def __init__(self, parent, log): wx.Frame.__init__(self, parent, -1, "Simple Grid Demo", size=(640,480)) - grid = SimpleGrid(self, log) + self.grid = SimpleGrid(self, log) @@ -238,9 +242,13 @@ class TestFrame(wx.Frame): if __name__ == '__main__': import sys - app = wx.PySimpleApp() + from wx.lib.mixins.inspection import InspectableApp + app = InspectableApp(False) frame = TestFrame(None, sys.stdout) frame.Show(True) + #import wx.py + #shell = wx.py.shell.ShellFrame(frame, locals={'wx':wx, 'frame':frame}) + #shell.Show() app.MainLoop()