]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxWave.py
reSWIGged
[wxWidgets.git] / wxPython / demo / wxWave.py
index 1ea3c4998b37f507cf087604ee31012f96d3d938..b84e62148bd784d2d71032ffe5c2f20b5df5e787 100644 (file)
@@ -1,35 +1,39 @@
+# 11/22/2003 - Jeff Grimmett (grimmtooth@softhome.net)
+#
+# o Updated for wx namespace
+# 
+
+import  wx
 
 
-from wxPython.wx import *
 from Main import opj
 
 #----------------------------------------------------------------------
 
 from Main import opj
 
 #----------------------------------------------------------------------
 
-class TestPanel(wxPanel):
+class TestPanel(wx.Panel):
     def __init__(self, parent):
     def __init__(self, parent):
-        wxPanel.__init__(self, parent, -1)
+        wx.Panel.__init__(self, parent, -1)
 
 
-        b = wxButton(self, -1, "Play Sound 1", (25, 25))
-        EVT_BUTTON(self, b.GetId(), self.OnButton1)
+        b = wx.Button(self, -1, "Play Sound 1", (25, 25))
+        self.Bind(wx.EVT_BUTTON, self.OnButton1, b)
 
 
-        b = wxButton(self, -1, "Play Sound 2", (25, 65))
-        EVT_BUTTON(self, b.GetId(), self.OnButton2)
+        b = wx.Button(self, -1, "Play Sound 2", (25, 65))
+        self.Bind(wx.EVT_BUTTON, self.OnButton2, b)
 
 
     def OnButton1(self, evt):
         try:
 
 
     def OnButton1(self, evt):
         try:
-            wave = wxWave(opj('data/anykey.wav'))
+            wave = wx.Wave(opj('data/anykey.wav'))
             wave.Play()
         except NotImplementedError, v:
             wave.Play()
         except NotImplementedError, v:
-            wxMessageBox(str(v), "Exception Message")
+            wx.MessageBox(str(v), "Exception Message")
 
 
     def OnButton2(self, evt):
         try:
 
 
     def OnButton2(self, evt):
         try:
-            wave = wxWave(opj('data/plan.wav'))
+            wave = wx.Wave(opj('data/plan.wav'))
             wave.Play()
         except NotImplementedError, v:
             wave.Play()
         except NotImplementedError, v:
-            wxMessageBox(str(v), "Exception Message")
-
+            wx.MessageBox(str(v), "Exception Message")
 
 #----------------------------------------------------------------------
 
 
 #----------------------------------------------------------------------
 
@@ -41,10 +45,14 @@ def runTest(frame, nb, log):
 
 
 overview = """\
 
 
 overview = """\
-"""
-
+This class represents a short wave file, in Windows WAV format, that can 
+be stored in memory and played. Currently this class is implemented on Windows 
+and GTK (Linux) only.
 
 
+This demo offers two examples, both driven by buttons, but obviously the event
+that drives the playing of the sound can come from anywhere.
 
 
+"""
 
 
 if __name__ == '__main__':
 
 
 if __name__ == '__main__':