minor layout tweak

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37257 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-02-02 01:47:16 +00:00
parent 6aabc8da32
commit e79c4165b4
4 changed files with 9 additions and 12 deletions

View File

@@ -62,17 +62,11 @@ class TestNB(wx.Notebook):
win = self.makeColorPanel(wx.CYAN)
self.AddPage(win, "Cyan")
# win = self.makeColorPanel(wxWHITE)
# self.AddPage(win, "White")
win = self.makeColorPanel(wx.NamedColour('Midnight Blue'))
self.AddPage(win, "Midnight Blue")
# win = self.makeColorPanel(wxBLACK)
# self.AddPage(win, "Black")
win = self.makeColorPanel(wx.NamedColour('MIDNIGHT BLUE'))
self.AddPage(win, "MIDNIGHT BLUE")
win = self.makeColorPanel(wx.NamedColour('INDIAN RED'))
self.AddPage(win, "INDIAN RED")
win = self.makeColorPanel(wx.NamedColour('Indian Red'))
self.AddPage(win, "Indian Red")
self.Bind(wx.EVT_NOTEBOOK_PAGE_CHANGED, self.OnPageChanged)
self.Bind(wx.EVT_NOTEBOOK_PAGE_CHANGING, self.OnPageChanging)
@@ -82,13 +76,13 @@ class TestNB(wx.Notebook):
p = wx.Panel(self, -1)
win = ColorPanel.ColoredPanel(p, color)
p.win = win
def OnCPSize(evt, win=win):
win.SetPosition((0,0))
win.SetSize(evt.GetSize())
p.Bind(wx.EVT_SIZE, OnCPSize)
return p
def OnPageChanged(self, event):
old = event.GetOldSelection()
new = event.GetSelection()