]> git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/wxMiniFrame.py
added some test code
[wxWidgets.git] / wxPython / demo / wxMiniFrame.py
1
2 from wxPython.wx import *
3
4 #---------------------------------------------------------------------------
5 class MyMiniFrame(wxMiniFrame):
6 def __init__(self, parent, ID, title, pos, size, style):
7 wxMiniFrame.__init__(self, parent, ID, title, pos, size, style)
8 panel = wxPanel(self, -1)
9
10 button = wxButton(panel, 1003, "Close Me")
11 button.SetPosition(wxPoint(15, 15))
12 EVT_BUTTON(self, 1003, self.OnCloseMe)
13 EVT_CLOSE(self, self.OnCloseWindow)
14
15 def OnCloseMe(self, event):
16 self.Close(true)
17
18 def OnCloseWindow(self, event):
19 self.Destroy()
20
21 #---------------------------------------------------------------------------
22
23 def runTest(frame, nb, log):
24 win = MyMiniFrame(frame, -1, "This is a wxMiniFrame",
25 (250, 250), (200, 200),
26 wxDEFAULT_FRAME_STYLE | wxTINY_CAPTION_HORIZ)
27 frame.otherWin = win
28 win.Show(true)
29
30
31 #---------------------------------------------------------------------------
32
33
34
35
36
37
38
39
40
41
42 overview = """\
43 """