]> git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/SplitterWindow.py
7d2ab65be0cbd48523718f0c4688d747e7830fbb
[wxWidgets.git] / wxPython / demo / SplitterWindow.py
1
2 import wx
3
4 #---------------------------------------------------------------------------
5
6 class MySplitter(wx.SplitterWindow):
7 def __init__(self, parent, ID, log):
8 wx.SplitterWindow.__init__(self, parent, ID,
9 style = wx.SP_LIVE_UPDATE
10 )
11 self.log = log
12
13 self.Bind(wx.EVT_SPLITTER_SASH_POS_CHANGED, self.OnSashChanged)
14 self.Bind(wx.EVT_SPLITTER_SASH_POS_CHANGING, self.OnSashChanging)
15
16 def OnSashChanged(self, evt):
17 self.log.WriteText("sash changed to %s\n" % str(evt.GetSashPosition()))
18
19 def OnSashChanging(self, evt):
20 self.log.WriteText("sash changing to %s\n" % str(evt.GetSashPosition()))
21 # uncomment this to not allow the change
22 #evt.SetSashPosition(-1)
23
24
25 #---------------------------------------------------------------------------
26
27 def runTest(frame, nb, log):
28 splitter = MySplitter(nb, -1, log)
29
30 p1 = wx.Window(splitter)#, style=wx.BORDER_SIMPLE)
31 p1.SetBackgroundColour("pink")
32 wx.StaticText(p1, -1, "Panel One", (5,5))
33
34 p2 = wx.Window(splitter)#, style=wx.BORDER_SIMPLE)
35 p2.SetBackgroundColour("sky blue")
36 wx.StaticText(p2, -1, "Panel Two", (5,5))
37
38 splitter.SetMinimumPaneSize(20)
39 splitter.SplitVertically(p1, p2, -100)
40
41 return splitter
42
43
44 #---------------------------------------------------------------------------
45
46
47 overview = """\
48 This class manages up to two subwindows. The current view can be split
49 into two programmatically (perhaps from a menu command), and unsplit
50 either programmatically or via the wx.SplitterWindow user interface.
51 """
52
53 if __name__ == '__main__':
54 import sys,os
55 import run
56 run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])
57