X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8fa876ca9ec87e90605808bfcab4d4226965dbad..0a5bb138a71dfc1c706fc0858fb2801500e2c2e8:/wxPython/demo/GridStdEdRend.py diff --git a/wxPython/demo/GridStdEdRend.py b/wxPython/demo/GridStdEdRend.py index ea84545ce8..6a89c3e122 100644 --- a/wxPython/demo/GridStdEdRend.py +++ b/wxPython/demo/GridStdEdRend.py @@ -1,8 +1,3 @@ -# 11/25/2003 - Jeff Grimmett (grimmtooth@softhome.net) -# -# o Updated for V2.5 -# o There is one wx.Size() I haven't figured out how to get rid of yet. -# import random @@ -16,9 +11,9 @@ class MyCustomRenderer(gridlib.PyGridCellRenderer): gridlib.PyGridCellRenderer.__init__(self) def Draw(self, grid, attr, dc, rect, row, col, isSelected): - dc.SetBackgroundMode(wxSOLID) - dc.SetBrush(wxBrush(wxBLACK, wxSOLID)) - dc.SetPen(wxTRANSPARENT_PEN) + dc.SetBackgroundMode(wx.SOLID) + dc.SetBrush(wx.Brush(wx.BLACK, wx.SOLID)) + dc.SetPen(wx.TRANSPARENT_PEN) dc.DrawRectangleRect(rect) dc.SetBackgroundMode(wx.TRANSPARENT) @@ -31,7 +26,7 @@ class MyCustomRenderer(gridlib.PyGridCellRenderer): for ch in text: dc.SetTextForeground(random.choice(colors)) - dc.DrawText(ch, (x, y)) + dc.DrawText(ch, x, y) w, h = dc.GetTextExtent(ch) x = x + w if x > rect.right - 5: