Moved and reorganized wxPython directories

Now builds into an intermediate wxPython package directory before
installing


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7403 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2000-05-16 02:07:32 +00:00
parent e0c1bcc8f4
commit 015e85cdf7
399 changed files with 306892 additions and 0 deletions

45
wxPython/tests/hook.py Normal file
View File

@@ -0,0 +1,45 @@
from wxPython.wx import *
class MyFrame(wxFrame):
def __init__(self, parent, id, title):
wxFrame.__init__(self, parent, id, title,
wxDefaultPosition, wxSize(400, 400))
self.panel = wxPanel(self, -1)
wxStaticText(self.panel, -1, "wxTextCtrl", wxPoint(5, 25),
wxSize(75, 20))
self.tc = wxTextCtrl(self.panel, 10, "", wxPoint(80, 25),
wxSize(200, 30))
EVT_CHAR_HOOK(self, self.OnCharHook)
#EVT_CHAR_HOOK(self.tc, self.OnCharHook)
EVT_CHAR(self, self.OnChar)
self.panel.Layout()
return
def OnCloseWindow(self, event):
self.Destroy()
return
def OnChar(self, event):
print "OnChar: %d '%c'" % (event.KeyCode(), chr(event.KeyCode()))
event.Skip()
return
def OnCharHook(self, event):
print "OnCharHook: %d" % event.KeyCode()
event.Skip()
return
class MyApp(wxApp):
def OnInit(self):
frame = MyFrame(None, -1, 'CharHook Test')
frame.Show(1)
self.SetTopWindow(frame)
return 1
app = MyApp(0)
app.MainLoop()