]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_wave.i
New wxDesigner-less version of the MimeTypesManager demo
[wxWidgets.git] / wxPython / src / _wave.i
index 48def62312d91d09559aa43b0d76f3cc971c2b84..a55857dc3b2d4a66c5975f10d6ced07ee2157fba 100644 (file)
 class wxWave : public wxObject
 {
 public:
-    wxWave(const wxString& fileName, bool isResource = FALSE) {
+    wxWave(const wxString& fileName, bool isResource = False) {
         wxPyBeginBlockThreads();
-        PyErr_SetString(PyExc_NotImplementedError, "wxWave is not available on this platform.");
+        PyErr_SetString(PyExc_NotImplementedError,
+                        "wxWave is not available on this platform.");
         wxPyEndBlockThreads();
     }
     wxWave(int size, const wxByte* data) {
         wxPyBeginBlockThreads();
-        PyErr_SetString(PyExc_NotImplementedError, "wxWave is not available on this platform.");
+        PyErr_SetString(PyExc_NotImplementedError,
+                        "wxWave is not available on this platform.");
         wxPyEndBlockThreads();
     }
 
     ~wxWave() {}
 
-    bool  IsOk() const { return FALSE; }
-    bool  Play(bool async = TRUE, bool looped = FALSE) const { return FALSE; }
+    bool  IsOk() const { return False; }
+    bool  Play(bool async = True, bool looped = False) const { return False; }
 };
 
 #endif
@@ -53,7 +55,7 @@ public:
 class wxWave /*: public wxObject*/
 {
 public:
-    wxWave(const wxString& fileName, bool isResource = FALSE);
+    wxWave(const wxString& fileName, bool isResource = False);
     %extend {
         %name(WaveData) wxWave(const wxString& data) {
             return new wxWave(data.Len(), (wxByte*)data.c_str());
@@ -63,7 +65,7 @@ public:
     ~wxWave();
 
     bool  IsOk() const;
-    bool  Play(bool async = TRUE, bool looped = FALSE) const;
+    bool  Play(bool async = True, bool looped = False);
 
     %pythoncode { def __nonzero__(self): return self.IsOk() }
 };