]> git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/MDIWindows.py
Improved support for system colours and scrollbar widths/heights
[wxWidgets.git] / wxPython / demo / MDIWindows.py
1
2 import wx
3 import os
4 import sys
5
6 #----------------------------------------------------------------------
7
8 class TestPanel(wx.Panel):
9 def __init__(self, parent, log):
10 self.log = log
11 wx.Panel.__init__(self, parent, -1)
12
13 b1 = wx.Button(self, -1, "MDI demo")
14 self.Bind(wx.EVT_BUTTON, self.ShowMDIDemo, b1)
15
16 b2 = wx.Button(self, -1, "MDI with SashWindows demo")
17 self.Bind(wx.EVT_BUTTON, self.ShowMDISashDemo, b2)
18
19 box = wx.BoxSizer(wx.VERTICAL)
20 box.Add((20, 30))
21 box.Add(b1, 0, wx.ALIGN_CENTER|wx.ALL, 15)
22 box.Add(b2, 0, wx.ALIGN_CENTER|wx.ALL, 15)
23 self.SetAutoLayout(True)
24 self.SetSizer(box)
25
26
27 # These are spawned as new processes because on Mac there can be
28 # some problems related to having regular frames and MDI frames in
29 # the same app.
30 def ShowMDIDemo(self, evt):
31 os.spawnl(os.P_NOWAIT, sys.executable, sys.executable, "MDIDemo.py")
32
33 def ShowMDISashDemo(self, evt):
34 os.spawnl(os.P_NOWAIT, sys.executable, sys.executable, "MDISashDemo.py")
35
36
37 #----------------------------------------------------------------------
38
39 def runTest(frame, nb, log):
40 win = TestPanel(nb, log)
41 return win
42
43 #----------------------------------------------------------------------
44
45
46
47 overview = """<html><body>
48 <h2><center>Multiple Document Interface</center></h2>
49
50 Although Microsoft has deprecated the MDI model, wxWindows still supports
51 it. Here are a couple samples of how to use it - one straightforward, the other
52 showing how the MDI interface can be integrated into a SashWindow interface.
53
54 </body></html>
55 """
56
57
58 if __name__ == '__main__':
59 import sys,os
60 import run
61 run.main(['', os.path.basename(sys.argv[0])] + sys.argv[1:])