A couple new simple tests
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43714 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
17
wxPython/tests/test_appleevents.py
Normal file
17
wxPython/tests/test_appleevents.py
Normal file
@@ -0,0 +1,17 @@
|
||||
import sys, os
|
||||
import wx
|
||||
|
||||
class MyApp(wx.App):
|
||||
def OnInit(self):
|
||||
f = wx.Frame(None, title="Hello World")
|
||||
f.Show()
|
||||
return True
|
||||
|
||||
def MacOpenFile(self, filename):
|
||||
# code to load filename goes here.
|
||||
wx.MessageBox(
|
||||
"You requested to open this file:\n\"%s\"" % filename)
|
||||
|
||||
app = MyApp()
|
||||
app.MainLoop()
|
||||
|
Reference in New Issue
Block a user