text = text + tree.GetItemText(itemId)
pen = wx.Pen(
- wx.SystemSettings_GetSystemColour(wx.SYS_COLOUR_3DLIGHT),
+ wx.SystemSettings_GetColour(wx.SYS_COLOUR_3DLIGHT),
1, wx.SOLID
)
dc.SetPen(pen)
dc.SetBrush(wx.Brush(self.GetBackgroundColour(), wx.SOLID))
- dc.DrawRectangle((rect.x, rect.y), (rect.width+1, rect.height+1))
+ dc.DrawRectangle(rect.x, rect.y, rect.width+1, rect.height+1)
dc.SetTextForeground("BLACK")
dc.SetBackgroundMode(wx.TRANSPARENT)
tw, th = dc.GetTextExtent(text)
x = 5
y = rect.y + max(0, (rect.height - th) / 2)
- dc.DrawText(text, (x, y))
+ dc.DrawText(text, x, y)
)
splitter.SetSashSize(2)
- tree = TestTree(splitter, -1, style = wx.TR_HAS_BUTTONS |
- wx.TR_NO_LINES |
- wx.TR_ROW_LINES |
- #wx.TR_HIDE_ROOT |
- wx.NO_BORDER )
+ tree = TestTree(splitter, style = wx.TR_HAS_BUTTONS |
+ wx.TR_NO_LINES |
+ wx.TR_ROW_LINES |
+ #wx.TR_HIDE_ROOT |
+ wx.NO_BORDER )
valueWindow = TestValueWindow(splitter, style=wx.NO_BORDER)
if __name__ == '__main__':
import sys,os
import run
- run.main(['', os.path.basename(sys.argv[0])])
+ run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])