]> git.saurik.com Git - wxWidgets.git/blame - wxPython/demo/wxSplitterWindow.py
Fixed a bunch of leaking references in how the callbacks deal with
[wxWidgets.git] / wxPython / demo / wxSplitterWindow.py
CommitLineData
cf694132
RD
1
2from wxPython.wx import *
3
4
6999b0d8
RD
5#---------------------------------------------------------------------------
6
7class MySplitter(wxSplitterWindow):
8 def __init__(self, parent, ID, log):
9 wxSplitterWindow.__init__(self, parent, ID)
10 self.log = log
11 EVT_SPLITTER_SASH_POS_CHANGED(self, self.GetId(), self.OnSashChanged)
c368d904 12 EVT_SPLITTER_SASH_POS_CHANGING(self, self.GetId(), self.OnSashChanging)
6999b0d8
RD
13
14 def OnSashChanged(self, evt):
c368d904
RD
15 self.log.WriteText("sash changed to %s\n" % str(evt.GetSashPosition()))
16 # uncomment this to not allow the change
17 #evt.SetSashPosition(-1)
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)
6999b0d8 23
cf694132
RD
24#---------------------------------------------------------------------------
25
26def runTest(frame, nb, log):
6999b0d8 27 splitter = MySplitter(nb, -1, log)
cf694132
RD
28
29 p1 = wxWindow(splitter, -1)
30 p1.SetBackgroundColour(wxRED)
31 wxStaticText(p1, -1, "Panel One", wxPoint(5,5)).SetBackgroundColour(wxRED)
32
33 p2 = wxWindow(splitter, -1)
34 p2.SetBackgroundColour(wxBLUE)
35 wxStaticText(p2, -1, "Panel Two", wxPoint(5,5)).SetBackgroundColour(wxBLUE)
36
2f90df85 37 splitter.SetMinimumPaneSize(20)
cf694132
RD
38 splitter.SplitVertically(p1, p2)
39 splitter.SetSashPosition(100)
cf694132
RD
40
41 return splitter
42
43
44#---------------------------------------------------------------------------
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60overview = """\
61This class manages up to two subwindows. The current view can be split into two programmatically (perhaps from a menu command), and unsplit either programmatically or via the wxSplitterWindow user interface.
62
63wxSplitterWindow()
64-----------------------------------
65
66Default constructor.
67
68wxSplitterWindow(wxWindow* parent, wxWindowID id, int x, const wxPoint& point = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style=wxSP_3D, const wxString& name = "splitterWindow")
69
70Constructor for creating the window.
71
72Parameters
73-------------------
74
75parent = The parent of the splitter window.
76
77id = The window identifier.
78
79pos = The window position.
80
81size = The window size.
82
83style = The window style. See wxSplitterWindow.
84
85name = The window name.
86"""