]>
git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/tests/test1.py
2 #----------------------------------------------------------------------------
4 # Purpose: A minimal wxPython program
10 # Copyright: (c) 1998 by Total Control Software
11 # Licence: wxWindows license
12 #----------------------------------------------------------------------------
15 from wxPython
import *
18 #---------------------------------------------------------------------------
20 class MyFrame(wxFrame
):
21 def __init__(self
, parent
, id, title
):
22 wxFrame
.__init
__(self
, parent
, id, title
, wxPoint(100, 100), wxSize(160, 100))
23 self
.Connect(-1, -1, wxEVT_MOVE
, self
.OnMove
)
25 def OnCloseWindow(self
, event
):
28 def OnSize(self
, event
):
29 size
= event
.GetSize()
30 print "size:", size
.width
, size
.height
32 def OnMove(self
, event
):
33 # Hmmm... Doesn't seem to be implmented in wxWin yet...
34 pos
= event
.GetPosition()
35 print "pos:", pos
.x
, pos
.y
39 #---------------------------------------------------------------------------
44 frame
= MyFrame(NULL
, -1, "This is a test")
46 self
.SetTopWindow(frame
)
49 #---------------------------------------------------------------------------
61 if __name__
== '__main__':
66 #----------------------------------------------------------------------------
69 # Revision 1.1 1998/08/09 08:28:05 RD