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