Files
wxWidgets/wxPython/src/_sound.i
Robin Dunn 1b8c7ba607 Updated to SWIG 1.3.24 (plus a patch that corrects a bug and adds back
some things that were changed/removed from my patch I submitted to
them.)

Since it is now possible easily and simply share the SWIG type tables
across modules I reverted to always using the stock SWIG runtime
instead of my slightly hacked up version of it exported via the
wxPython C API.

The %name directive is now deprecated so replaced most uses of it with
a custom %Rename macro that uses %rename internally.  These will
evetually need to be replaced with a DocDecl macro when docstrings are
added.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31128 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2004-12-23 20:44:09 +00:00

157 lines
4.0 KiB
OpenEdge ABL

/////////////////////////////////////////////////////////////////////////////
// Name: _sound.i
// Purpose: SWIG interface stuff for wxSound
//
// Author: Robin Dunn
//
// Created: 18-June-1999
// RCS-ID: $Id$
// Copyright: (c) 2003 by Total Control Software
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
// Not a %module
//---------------------------------------------------------------------------
%newgroup
%{
#include <wx/sound.h>
%}
//---------------------------------------------------------------------------
enum wxSoundFlags
{
wxSOUND_SYNC,
wxSOUND_ASYNC,
wxSOUND_LOOP
};
%{
#if !wxUSE_SOUND
// A C++ stub class for wxWave for platforms that don't have it.
class wxSound : public wxObject
{
public:
wxSound() {
bool blocked = wxPyBeginBlockThreads();
PyErr_SetString(PyExc_NotImplementedError,
"wxSound is not available on this platform.");
wxPyEndBlockThreads(blocked);
}
wxSound(const wxString&/*, bool*/) {
bool blocked = wxPyBeginBlockThreads();
PyErr_SetString(PyExc_NotImplementedError,
"wxSound is not available on this platform.");
wxPyEndBlockThreads(blocked);
}
wxSound(int, const wxByte*) {
bool blocked = wxPyBeginBlockThreads();
PyErr_SetString(PyExc_NotImplementedError,
"wxSound is not available on this platform.");
wxPyEndBlockThreads(blocked);
}
~wxSound() {};
bool Create(const wxString&/*, bool*/) { return false; }
bool Create(int, const wxByte*) { return false; };
bool IsOk() { return false; };
bool Play(unsigned) const { return false; }
static bool Play(const wxString&, unsigned) { return false; }
static void Stop() {}
};
#endif
%}
MustHaveApp(wxSound);
MustHaveApp(wxSound::Play);
MustHaveApp(wxSound::Stop);
class wxSound /*: public wxObject*/
{
public:
%extend {
wxSound(const wxString& fileName = wxPyEmptyString /*, bool isResource = false*/) {
if (fileName.Length() == 0)
return new wxSound;
else
return new wxSound(fileName);
}
%RenameCtor(SoundFromData, wxSound(PyObject* data))
{
unsigned char* buffer; int size;
wxSound *sound = NULL;
bool blocked = wxPyBeginBlockThreads();
if (!PyArg_Parse(data, "t#", &buffer, &size))
goto done;
sound = new wxSound(size, buffer);
done:
wxPyEndBlockThreads(blocked);
return sound;
}
}
~wxSound();
// Create from resource or file
bool Create(const wxString& fileName/*, bool isResource = false*/);
%extend {
bool CreateFromData(PyObject* data) {
%#ifndef __WXMAC__
unsigned char* buffer;
int size;
bool rv = false;
bool blocked = wxPyBeginBlockThreads();
if (!PyArg_Parse(data, "t#", &buffer, &size))
goto done;
rv = self->Create(size, buffer);
done:
wxPyEndBlockThreads(blocked);
return rv;
%#else
bool blocked = wxPyBeginBlockThreads();
PyErr_SetString(PyExc_NotImplementedError,
"Create from data is not available on this platform.");
wxPyEndBlockThreads(blocked);
return false;
%#endif
}
}
bool IsOk();
// Play the sound:
bool Play(unsigned flags = wxSOUND_ASYNC) const;
// Plays sound from filename:
%Rename(PlaySound, static bool, Play(const wxString& filename, unsigned flags = wxSOUND_ASYNC));
#ifndef __WXMAC__
static void Stop();
#else
%extend {
static void Stop()
{ wxPyRaiseNotImplemented(); }
}
#endif
%pythoncode { def __nonzero__(self): return self.IsOk() }
};
//---------------------------------------------------------------------------