git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30912 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2140 lines
79 KiB
C++
2140 lines
79 KiB
C++
/* ----------------------------------------------------------------------------
|
|
* This file was automatically generated by SWIG (http://www.swig.org).
|
|
* Version 1.3.22
|
|
*
|
|
* This file is not intended to be easily readable and contains a number of
|
|
* coding conventions designed to improve portability and efficiency. Do not make
|
|
* changes to this file unless you know what you are doing--modify the SWIG
|
|
* interface file instead.
|
|
* ----------------------------------------------------------------------------- */
|
|
|
|
#define SWIGPYTHON
|
|
#define SWIG_NOINCLUDE
|
|
|
|
#ifdef __cplusplus
|
|
template<class T> class SwigValueWrapper {
|
|
T *tt;
|
|
public:
|
|
SwigValueWrapper() : tt(0) { }
|
|
SwigValueWrapper(const SwigValueWrapper<T>& rhs) : tt(new T(*rhs.tt)) { }
|
|
SwigValueWrapper(const T& t) : tt(new T(t)) { }
|
|
~SwigValueWrapper() { delete tt; }
|
|
SwigValueWrapper& operator=(const T& t) { delete tt; tt = new T(t); return *this; }
|
|
operator T&() const { return *tt; }
|
|
T *operator&() { return tt; }
|
|
private:
|
|
SwigValueWrapper& operator=(const SwigValueWrapper<T>& rhs);
|
|
};
|
|
#endif
|
|
|
|
|
|
#include "Python.h"
|
|
|
|
/*************************************************************** -*- c -*-
|
|
* python/precommon.swg
|
|
*
|
|
* Rename all exported symbols from common.swg, to avoid symbol
|
|
* clashes if multiple interpreters are included
|
|
*
|
|
************************************************************************/
|
|
|
|
#define SWIG_TypeRegister SWIG_Python_TypeRegister
|
|
#define SWIG_TypeCheck SWIG_Python_TypeCheck
|
|
#define SWIG_TypeCast SWIG_Python_TypeCast
|
|
#define SWIG_TypeDynamicCast SWIG_Python_TypeDynamicCast
|
|
#define SWIG_TypeName SWIG_Python_TypeName
|
|
#define SWIG_TypePrettyName SWIG_Python_TypePrettyName
|
|
#define SWIG_TypeQuery SWIG_Python_TypeQuery
|
|
#define SWIG_TypeClientData SWIG_Python_TypeClientData
|
|
#define SWIG_PackData SWIG_Python_PackData
|
|
#define SWIG_UnpackData SWIG_Python_UnpackData
|
|
|
|
|
|
/***********************************************************************
|
|
* common.swg for wxPython
|
|
*
|
|
* Include only the function prototypes and such from SWIG's common.swg,
|
|
* but not the runtime functions themselves. This helps keep the
|
|
* wrapper files clean of unnecessary stuff that is in the libpy.c file
|
|
* anyway.
|
|
*
|
|
************************************************************************/
|
|
|
|
#include <string.h>
|
|
|
|
#if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
|
|
# if defined(_MSC_VER) || defined(__GNUC__)
|
|
# if defined(STATIC_LINKED)
|
|
# define SWIGEXPORT(a) a
|
|
# define SWIGIMPORT(a) extern a
|
|
# else
|
|
# define SWIGEXPORT(a) __declspec(dllexport) a
|
|
# define SWIGIMPORT(a) extern a
|
|
# endif
|
|
# else
|
|
# if defined(__BORLANDC__)
|
|
# define SWIGEXPORT(a) a _export
|
|
# define SWIGIMPORT(a) a _export
|
|
# else
|
|
# define SWIGEXPORT(a) a
|
|
# define SWIGIMPORT(a) a
|
|
# endif
|
|
# endif
|
|
#else
|
|
# define SWIGEXPORT(a) a
|
|
# define SWIGIMPORT(a) a
|
|
#endif
|
|
|
|
#ifdef SWIG_GLOBAL
|
|
# define SWIGRUNTIME(a) SWIGEXPORT(a)
|
|
#else
|
|
# define SWIGRUNTIME(a) static a
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void *(*swig_converter_func)(void *);
|
|
typedef struct swig_type_info *(*swig_dycast_func)(void **);
|
|
|
|
typedef struct swig_type_info {
|
|
const char *name;
|
|
swig_converter_func converter;
|
|
const char *str;
|
|
void *clientdata;
|
|
swig_dycast_func dcast;
|
|
struct swig_type_info *next;
|
|
struct swig_type_info *prev;
|
|
} swig_type_info;
|
|
|
|
|
|
SWIGIMPORT(swig_type_info *) SWIG_TypeRegister(swig_type_info *);
|
|
SWIGIMPORT(swig_type_info *) SWIG_TypeCheck(char *c, swig_type_info *);
|
|
SWIGIMPORT(void *) SWIG_TypeCast(swig_type_info *, void *);
|
|
SWIGIMPORT(swig_type_info *) SWIG_TypeDynamicCast(swig_type_info *, void **);
|
|
SWIGIMPORT(const char *) SWIG_TypeName(const swig_type_info *);
|
|
SWIGIMPORT(const char *) SWIG_TypePrettyName(const swig_type_info *);
|
|
SWIGIMPORT(swig_type_info *) SWIG_TypeQuery(const char *);
|
|
SWIGIMPORT(void) SWIG_TypeClientData(swig_type_info *, void *);
|
|
SWIGIMPORT(char *) SWIG_PackData(char *, void *, int);
|
|
SWIGIMPORT(char *) SWIG_UnpackData(char *, void *, int);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
/***********************************************************************
|
|
* pyrun.swg for wxPython
|
|
*
|
|
* Include only the function prototypes and such from SWIG's pyrun.swg,
|
|
* but not the runtime functions themselves. This helps keep the
|
|
* wrapper files clean of unnecessary stuff that is in the libpy.c file
|
|
* anyway.
|
|
*
|
|
************************************************************************/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define SWIG_PY_INT 1
|
|
#define SWIG_PY_FLOAT 2
|
|
#define SWIG_PY_STRING 3
|
|
#define SWIG_PY_POINTER 4
|
|
#define SWIG_PY_BINARY 5
|
|
|
|
/* Flags for pointer conversion */
|
|
|
|
#define SWIG_POINTER_EXCEPTION 0x1
|
|
#define SWIG_POINTER_DISOWN 0x2
|
|
|
|
/* Exception handling in wrappers */
|
|
#define SWIG_fail goto fail
|
|
|
|
/* Constant information structure */
|
|
typedef struct swig_const_info {
|
|
int type;
|
|
char *name;
|
|
long lvalue;
|
|
double dvalue;
|
|
void *pvalue;
|
|
swig_type_info **ptype;
|
|
} swig_const_info;
|
|
|
|
/* Common SWIG API */
|
|
#define SWIG_ConvertPtr(obj, pp, type, flags) \
|
|
SWIG_Python_ConvertPtr(obj, pp, type, flags)
|
|
#define SWIG_NewPointerObj(p, type, flags) \
|
|
SWIG_Python_NewPointerObj(p, type, flags)
|
|
#define SWIG_MustGetPtr(p, type, argnum, flags) \
|
|
SWIG_Python_MustGetPtr(p, type, argnum, flags)
|
|
|
|
/* Python-specific SWIG API */
|
|
#define SWIG_newvarlink() \
|
|
SWIG_Python_newvarlink()
|
|
#define SWIG_addvarlink(p, name, get_attr, set_attr) \
|
|
SWIG_Python_addvarlink(p, name, get_attr, set_attr)
|
|
#define SWIG_ConvertPacked(obj, ptr, sz, ty, flags) \
|
|
SWIG_Python_ConvertPacked(obj, ptr, sz, ty, flags)
|
|
#define SWIG_NewPackedObj(ptr, sz, type) \
|
|
SWIG_Python_NewPackedObj(ptr, sz, type)
|
|
#define SWIG_InstallConstants(d, constants) \
|
|
SWIG_Python_InstallConstants(d, constants)
|
|
|
|
typedef double (*py_objasdbl_conv)(PyObject *obj);
|
|
|
|
SWIGIMPORT(int) SWIG_Python_ConvertPtr(PyObject *, void **, swig_type_info *, int);
|
|
SWIGIMPORT(PyObject *) SWIG_Python_NewPointerObj(void *, swig_type_info *,int own);
|
|
SWIGIMPORT(void *) SWIG_Python_MustGetPtr(PyObject *, swig_type_info *, int, int);
|
|
SWIGIMPORT(PyObject *) SWIG_Python_newvarlink(void);
|
|
SWIGIMPORT(void) SWIG_Python_addvarlink(PyObject *, char *, PyObject *(*)(void), int (*)(PyObject *));
|
|
SWIGIMPORT(int) SWIG_Python_ConvertPacked(PyObject *, void *, int sz, swig_type_info *, int);
|
|
SWIGIMPORT(PyObject *) SWIG_Python_NewPackedObj(void *, int sz, swig_type_info *);
|
|
SWIGIMPORT(void) SWIG_Python_InstallConstants(PyObject *d, swig_const_info constants[]);
|
|
|
|
|
|
/* Contract support */
|
|
|
|
#define SWIG_contract_assert(expr, msg) if (!(expr)) { PyErr_SetString(PyExc_RuntimeError, (char *) msg ); goto fail; } else
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
|
|
/* -------- TYPES TABLE (BEGIN) -------- */
|
|
|
|
#define SWIGTYPE_p_wxLongLong swig_types[0]
|
|
#define SWIGTYPE_p_wxControl swig_types[1]
|
|
#define SWIGTYPE_p_wxWindow swig_types[2]
|
|
#define SWIGTYPE_p_wxEvent swig_types[3]
|
|
#define SWIGTYPE_p_wxObject swig_types[4]
|
|
#define SWIGTYPE_p_wxEvtHandler swig_types[5]
|
|
#define SWIGTYPE_p_char swig_types[6]
|
|
#define SWIGTYPE_p_wxMediaCtrl swig_types[7]
|
|
#define SWIGTYPE_p_wxValidator swig_types[8]
|
|
#define SWIGTYPE_p_wxNotifyEvent swig_types[9]
|
|
#define SWIGTYPE_p_wxCommandEvent swig_types[10]
|
|
#define SWIGTYPE_p_wxMediaEvent swig_types[11]
|
|
static swig_type_info *swig_types[13];
|
|
|
|
/* -------- TYPES TABLE (END) -------- */
|
|
|
|
|
|
/*-----------------------------------------------
|
|
@(target):= _media.so
|
|
------------------------------------------------*/
|
|
#define SWIG_init init_media
|
|
|
|
#define SWIG_name "_media"
|
|
|
|
/* Auxiliar swig macros that appear in the header */
|
|
|
|
#define SWIG_OLDOBJ 1
|
|
#define SWIG_NEWOBJ SWIG_OLDOBJ + 1
|
|
#define SWIG_PYSTR SWIG_NEWOBJ + 1
|
|
|
|
#ifdef __cplusplus
|
|
#define SWIGSTATICINLINE(a) static inline a
|
|
#define SWIGSTATIC(a) static a
|
|
#define swig_new_array(size,Type) (new Type[(size)])
|
|
#define swig_delete(cptr) delete cptr
|
|
#define swig_delete_array(cptr) delete[] cptr
|
|
#define swig_const_cast(a,Type) const_cast<Type >(a)
|
|
#define swig_static_cast(a,Type) static_cast<Type >(a)
|
|
#define swig_reinterpret_cast(a,Type) reinterpret_cast<Type >(a)
|
|
#define swig_new_copy(ptr,Type) (new Type(*ptr))
|
|
#define swig_numeric_cast(a,Type) static_cast<Type >(a)
|
|
|
|
#else /* C case */
|
|
|
|
#define SWIGSTATICINLINE(a) static a
|
|
#define SWIGSTATIC(a) static a
|
|
#define swig_new_array(size,Type) ((Type*) malloc((size)*sizeof(Type)))
|
|
#define swig_delete(cptr) free((char*)cptr)
|
|
#define swig_delete_array(cptr) free((char*)cptr)
|
|
#define swig_const_cast(a,Type) (Type)(a)
|
|
#define swig_static_cast(a,Type) (Type)(a)
|
|
#define swig_reinterpret_cast(a,Type) (Type)(a)
|
|
#define swig_numeric_cast(a,Type) (Type)(a)
|
|
#define swig_new_copy(ptr,Type) ((Type*)memcpy(malloc(sizeof(Type)),ptr,sizeof(Type)))
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
/*@c:\\PROJECTS\\SWIG-cvs\\Lib\\python\\pymacros.swg,63,SWIG_define@*/
|
|
#define SWIG_From_signed_SS_char PyInt_FromLong
|
|
/*@@*/
|
|
/*@c:\\PROJECTS\\SWIG-cvs\\Lib\\python\\pymacros.swg,63,SWIG_define@*/
|
|
#define SWIG_From_unsigned_SS_char PyInt_FromLong
|
|
/*@@*/
|
|
/*@c:\\PROJECTS\\SWIG-cvs\\Lib\\python\\pymacros.swg,63,SWIG_define@*/
|
|
#define SWIG_From_short PyInt_FromLong
|
|
/*@@*/
|
|
/*@c:\\PROJECTS\\SWIG-cvs\\Lib\\python\\pymacros.swg,63,SWIG_define@*/
|
|
#define SWIG_From_unsigned_SS_short PyInt_FromLong
|
|
/*@@*/
|
|
/*@c:\\PROJECTS\\SWIG-cvs\\Lib\\python\\pymacros.swg,63,SWIG_define@*/
|
|
#define SWIG_From_int PyInt_FromLong
|
|
/*@@*/
|
|
/*@c:\\PROJECTS\\SWIG-cvs\\Lib\\python\\pymacros.swg,63,SWIG_define@*/
|
|
#define SWIG_From_long PyInt_FromLong
|
|
/*@@*/
|
|
/*@c:\\PROJECTS\\SWIG-cvs\\Lib\\python\\pymacros.swg,63,SWIG_define@*/
|
|
#define SWIG_From_float PyFloat_FromDouble
|
|
/*@@*/
|
|
/*@c:\\PROJECTS\\SWIG-cvs\\Lib\\python\\pymacros.swg,63,SWIG_define@*/
|
|
#define SWIG_From_double PyFloat_FromDouble
|
|
/*@@*/
|
|
|
|
|
|
#include "wx/wxPython/wxPython.h"
|
|
#include "wx/wxPython/pyclasses.h"
|
|
|
|
#include <wx/mediactrl.h>
|
|
#include <wx/uri.h>
|
|
|
|
|
|
#if !wxUSE_MEDIACTRL
|
|
enum wxMediaState
|
|
{
|
|
wxMEDIASTATE_STOPPED=0,
|
|
wxMEDIASTATE_PAUSED=0,
|
|
wxMEDIASTATE_PLAYING=0
|
|
};
|
|
|
|
enum wxMediaTimeFormat
|
|
{
|
|
wxMEDIATIMEFORMAT_TIME=0
|
|
};
|
|
|
|
class WXDLLIMPEXP_MEDIA wxMediaEvent : public wxNotifyEvent
|
|
{
|
|
public:
|
|
wxMediaEvent(wxEventType, int ) { wxPyRaiseNotImplemented(); }
|
|
};
|
|
|
|
class wxMediaCtrl : public wxControl
|
|
{
|
|
public:
|
|
wxMediaCtrl() { wxPyRaiseNotImplemented(); }
|
|
|
|
wxMediaCtrl(wxWindow* , wxWindowID ,
|
|
const wxString& ,
|
|
const wxPoint& ,
|
|
const wxSize& ,
|
|
long style ,
|
|
const wxString& ,
|
|
const wxValidator& ,
|
|
const wxString& ) { wxPyRaiseNotImplemented(); }
|
|
|
|
wxMediaCtrl(wxWindow* ,
|
|
wxWindowID ,
|
|
const wxURI& ,
|
|
const wxPoint&,
|
|
const wxSize& ,
|
|
long style,
|
|
const wxString& ,
|
|
const wxValidator& ,
|
|
const wxString& ) { wxPyRaiseNotImplemented(); }
|
|
|
|
bool Create(wxWindow* , wxWindowID ,
|
|
const wxString& ,
|
|
const wxPoint& ,
|
|
const wxSize& ,
|
|
long style ,
|
|
const wxString& ,
|
|
const wxValidator& ,
|
|
const wxString& ) { return false; }
|
|
|
|
bool Create(wxWindow* ,
|
|
wxWindowID ,
|
|
const wxURI& ,
|
|
const wxPoint&,
|
|
const wxSize& ,
|
|
long style,
|
|
const wxString& ,
|
|
const wxValidator& ,
|
|
const wxString& ) { return false; }
|
|
|
|
bool Play() { return false; }
|
|
bool Pause() { return false; }
|
|
bool Stop() { return false; }
|
|
|
|
bool Load(const wxString& fileName) { return false; }
|
|
bool Load(const wxURI& location) { return false; }
|
|
|
|
void Loop(bool bLoop = true) {}
|
|
bool IsLooped() { return false; }
|
|
|
|
wxMediaState GetState() { return wxMEDIASTATE_STOPPED; }
|
|
|
|
double GetPlaybackRate() { return 0.0; };
|
|
bool SetPlaybackRate(double dRate) { return false; }
|
|
|
|
bool SetPosition(wxLongLong where) { return false; }
|
|
wxLongLong GetPosition() { return 0; }
|
|
wxLongLong GetDuration() { return 0; }
|
|
};
|
|
|
|
const wxEventType wxEVT_MEDIA_FINISHED = 0;
|
|
const wxEventType wxEVT_MEDIA_STOP = 0;
|
|
|
|
#endif
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
SWIGSTATICINLINE(int)
|
|
SWIG_CheckLongInRange(long value, long min_value, long max_value,
|
|
const char *errmsg)
|
|
{
|
|
if (value < min_value) {
|
|
if (errmsg) {
|
|
PyErr_Format(PyExc_OverflowError,
|
|
"value %ld is less than '%s' minimum %ld",
|
|
value, errmsg, min_value);
|
|
}
|
|
return 0;
|
|
} else if (value > max_value) {
|
|
if (errmsg) {
|
|
PyErr_Format(PyExc_OverflowError,
|
|
"value %ld is greater than '%s' maximum %ld",
|
|
value, errmsg, max_value);
|
|
}
|
|
return 0;
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
|
|
// See my_fragments.i
|
|
SWIGSTATICINLINE(int)
|
|
SWIG_AsVal_long(PyObject* obj, long* val)
|
|
{
|
|
if (PyNumber_Check(obj)) {
|
|
if (val) *val = PyInt_AsLong(obj);
|
|
return 1;
|
|
}
|
|
else {
|
|
PyObject* errmsg = PyString_FromFormat("Expected number, got %s",
|
|
obj->ob_type->tp_name);
|
|
PyErr_SetObject(PyExc_TypeError, errmsg);
|
|
Py_DECREF(errmsg);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
#if INT_MAX != LONG_MAX
|
|
SWIGSTATICINLINE(int)
|
|
SWIG_AsVal_int(PyObject *obj, int *val)
|
|
{
|
|
const char* errmsg = val ? "int" : 0;
|
|
long v;
|
|
if (SWIG_AsVal_long(obj, &v)) {
|
|
if (SWIG_CheckLongInRange(v, INT_MIN,INT_MAX, errmsg)) {
|
|
if (val) *val = swig_numeric_cast(v, int);
|
|
return 1;
|
|
} else {
|
|
return 0;
|
|
}
|
|
} else {
|
|
PyErr_Clear();
|
|
}
|
|
if (val) {
|
|
PyErr_SetString(PyExc_TypeError, "an int is expected");
|
|
}
|
|
return 0;
|
|
}
|
|
#else
|
|
SWIGSTATICINLINE(int)
|
|
SWIG_AsVal_int(PyObject *obj, int *val)
|
|
{
|
|
return SWIG_AsVal_long(obj,(long*)val);
|
|
}
|
|
#endif
|
|
|
|
|
|
SWIGSTATICINLINE(int)
|
|
SWIG_As_int(PyObject* obj)
|
|
{
|
|
int v;
|
|
if (!SWIG_AsVal_int(obj, &v)) {
|
|
/*
|
|
this is needed to make valgrind/purify happier. the other
|
|
solution is throw an exception, but since this code should work
|
|
with plain C ....
|
|
*/
|
|
memset((void*)&v, 0, sizeof(int));
|
|
}
|
|
return v;
|
|
}
|
|
|
|
|
|
SWIGSTATICINLINE(int)
|
|
SWIG_Check_int(PyObject* obj)
|
|
{
|
|
return SWIG_AsVal_int(obj, (int*)0);
|
|
}
|
|
|
|
static const wxString wxPyEmptyString(wxEmptyString);
|
|
static const wxString wxPyMediaCtrlNameStr(wxT("mediaCtrl"));
|
|
|
|
SWIGSTATICINLINE(long)
|
|
SWIG_As_long(PyObject* obj)
|
|
{
|
|
long v;
|
|
if (!SWIG_AsVal_long(obj, &v)) {
|
|
/*
|
|
this is needed to make valgrind/purify happier. the other
|
|
solution is throw an exception, but since this code should work
|
|
with plain C ....
|
|
*/
|
|
memset((void*)&v, 0, sizeof(long));
|
|
}
|
|
return v;
|
|
}
|
|
|
|
|
|
SWIGSTATICINLINE(int)
|
|
SWIG_Check_long(PyObject* obj)
|
|
{
|
|
return SWIG_AsVal_long(obj, (long*)0);
|
|
}
|
|
|
|
wxMediaCtrl *new_wxMediaCtrl(wxWindow *parent,int id,wxString const &location,wxPoint const &pos,wxSize const &size,long style,wxString const &szBackend,wxValidator const &validator,wxString const &name){
|
|
return new wxMediaCtrl(parent, id, wxURI(location),
|
|
pos, size, style, szBackend, validator, name);
|
|
}
|
|
bool wxMediaCtrl_CreateFromURI(wxMediaCtrl *self,wxWindow *parent,int id,wxString const &location,wxPoint const &pos,wxSize const &size,long style,wxString const &szBackend,wxValidator const &validator,wxString const &name){
|
|
return self->Create(parent, id, wxURI(location),
|
|
pos, size, style, szBackend, validator, name);
|
|
}
|
|
bool wxMediaCtrl_LoadFromURI(wxMediaCtrl *self,wxString const &location){
|
|
return self->Load(wxURI(location));
|
|
}
|
|
|
|
SWIGSTATICINLINE(int)
|
|
SWIG_AsVal_bool(PyObject *obj, bool *val)
|
|
{
|
|
/* if (val) *val = PyObject_IsTrue(obj); return 1; */
|
|
if (obj == Py_True) {
|
|
if (val) *val = true;
|
|
return 1;
|
|
}
|
|
if (obj == Py_False) {
|
|
if (val) *val = false;
|
|
return 1;
|
|
}
|
|
int res = 0;
|
|
if (SWIG_AsVal_int(obj, &res)) {
|
|
if (val) *val = (bool)res;
|
|
return 1;
|
|
}
|
|
if (val) {
|
|
PyErr_SetString(PyExc_TypeError, "a bool is expected");
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
SWIGSTATICINLINE(bool)
|
|
SWIG_As_bool(PyObject* obj)
|
|
{
|
|
bool v;
|
|
if (!SWIG_AsVal_bool(obj, &v)) {
|
|
/*
|
|
this is needed to make valgrind/purify happier. the other
|
|
solution is throw an exception, but since this code should work
|
|
with plain C ....
|
|
*/
|
|
memset((void*)&v, 0, sizeof(bool));
|
|
}
|
|
return v;
|
|
}
|
|
|
|
|
|
SWIGSTATICINLINE(int)
|
|
SWIG_Check_bool(PyObject* obj)
|
|
{
|
|
return SWIG_AsVal_bool(obj, (bool*)0);
|
|
}
|
|
|
|
|
|
// See my_fragments.i
|
|
SWIGSTATICINLINE(int)
|
|
SWIG_AsVal_double(PyObject *obj, double* val)
|
|
{
|
|
if (PyNumber_Check(obj)) {
|
|
if (val) *val = PyFloat_AsDouble(obj);
|
|
return 1;
|
|
}
|
|
else {
|
|
PyObject* errmsg = PyString_FromFormat("Expected number, got %s",
|
|
obj->ob_type->tp_name);
|
|
PyErr_SetObject(PyExc_TypeError, errmsg);
|
|
Py_DECREF(errmsg);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
SWIGSTATICINLINE(double)
|
|
SWIG_As_double(PyObject* obj)
|
|
{
|
|
double v;
|
|
if (!SWIG_AsVal_double(obj, &v)) {
|
|
/*
|
|
this is needed to make valgrind/purify happier. the other
|
|
solution is throw an exception, but since this code should work
|
|
with plain C ....
|
|
*/
|
|
memset((void*)&v, 0, sizeof(double));
|
|
}
|
|
return v;
|
|
}
|
|
|
|
|
|
SWIGSTATICINLINE(int)
|
|
SWIG_Check_double(PyObject* obj)
|
|
{
|
|
return SWIG_AsVal_double(obj, (double*)0);
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
static PyObject *_wrap_new_MediaEvent(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxEventType arg1 = (wxEventType) wxEVT_NULL ;
|
|
int arg2 = (int) 0 ;
|
|
wxMediaEvent *result;
|
|
PyObject * obj0 = 0 ;
|
|
PyObject * obj1 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "commandType",(char *) "id", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"|OO:new_MediaEvent",kwnames,&obj0,&obj1)) goto fail;
|
|
if (obj0) {
|
|
arg1 = (wxEventType)SWIG_As_int(obj0);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
if (obj1) {
|
|
arg2 = (int)SWIG_As_int(obj1);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (wxMediaEvent *)new wxMediaEvent(arg1,arg2);
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxMediaEvent, 1);
|
|
return resultobj;
|
|
fail:
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject * MediaEvent_swigregister(PyObject *, PyObject *args) {
|
|
PyObject *obj;
|
|
if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
|
|
SWIG_TypeClientData(SWIGTYPE_p_wxMediaEvent, obj);
|
|
Py_INCREF(obj);
|
|
return Py_BuildValue((char *)"");
|
|
}
|
|
static int _wrap_MediaCtrlNameStr_set(PyObject *) {
|
|
PyErr_SetString(PyExc_TypeError,"Variable MediaCtrlNameStr is read-only.");
|
|
return 1;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrlNameStr_get() {
|
|
PyObject *pyobj;
|
|
|
|
{
|
|
#if wxUSE_UNICODE
|
|
pyobj = PyUnicode_FromWideChar((&wxPyMediaCtrlNameStr)->c_str(), (&wxPyMediaCtrlNameStr)->Len());
|
|
#else
|
|
pyobj = PyString_FromStringAndSize((&wxPyMediaCtrlNameStr)->c_str(), (&wxPyMediaCtrlNameStr)->Len());
|
|
#endif
|
|
}
|
|
return pyobj;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_new_MediaCtrl(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxWindow *arg1 = (wxWindow *) 0 ;
|
|
int arg2 = (int) -1 ;
|
|
wxString const &arg3_defvalue = wxPyEmptyString ;
|
|
wxString *arg3 = (wxString *) &arg3_defvalue ;
|
|
wxPoint const &arg4_defvalue = wxDefaultPosition ;
|
|
wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
|
|
wxSize const &arg5_defvalue = wxDefaultSize ;
|
|
wxSize *arg5 = (wxSize *) &arg5_defvalue ;
|
|
long arg6 = (long) 0 ;
|
|
wxString const &arg7_defvalue = wxPyEmptyString ;
|
|
wxString *arg7 = (wxString *) &arg7_defvalue ;
|
|
wxValidator const &arg8_defvalue = wxDefaultValidator ;
|
|
wxValidator *arg8 = (wxValidator *) &arg8_defvalue ;
|
|
wxString const &arg9_defvalue = wxPyMediaCtrlNameStr ;
|
|
wxString *arg9 = (wxString *) &arg9_defvalue ;
|
|
wxMediaCtrl *result;
|
|
bool temp3 = false ;
|
|
wxPoint temp4 ;
|
|
wxSize temp5 ;
|
|
bool temp7 = false ;
|
|
bool temp9 = false ;
|
|
PyObject * obj0 = 0 ;
|
|
PyObject * obj1 = 0 ;
|
|
PyObject * obj2 = 0 ;
|
|
PyObject * obj3 = 0 ;
|
|
PyObject * obj4 = 0 ;
|
|
PyObject * obj5 = 0 ;
|
|
PyObject * obj6 = 0 ;
|
|
PyObject * obj7 = 0 ;
|
|
PyObject * obj8 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "parent",(char *) "id",(char *) "fileName",(char *) "pos",(char *) "size",(char *) "style",(char *) "szBackend",(char *) "validator",(char *) "name", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOOO:new_MediaCtrl",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
if (obj1) {
|
|
arg2 = (int)SWIG_As_int(obj1);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
if (obj2) {
|
|
{
|
|
arg3 = wxString_in_helper(obj2);
|
|
if (arg3 == NULL) SWIG_fail;
|
|
temp3 = true;
|
|
}
|
|
}
|
|
if (obj3) {
|
|
{
|
|
arg4 = &temp4;
|
|
if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
|
|
}
|
|
}
|
|
if (obj4) {
|
|
{
|
|
arg5 = &temp5;
|
|
if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
|
|
}
|
|
}
|
|
if (obj5) {
|
|
arg6 = (long)SWIG_As_long(obj5);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
if (obj6) {
|
|
{
|
|
arg7 = wxString_in_helper(obj6);
|
|
if (arg7 == NULL) SWIG_fail;
|
|
temp7 = true;
|
|
}
|
|
}
|
|
if (obj7) {
|
|
if ((SWIG_ConvertPtr(obj7,(void **)(&arg8),SWIGTYPE_p_wxValidator,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1)
|
|
SWIG_fail;
|
|
if (arg8 == NULL) {
|
|
PyErr_SetString(PyExc_TypeError,"null reference");
|
|
SWIG_fail;
|
|
}
|
|
}
|
|
if (obj8) {
|
|
{
|
|
arg9 = wxString_in_helper(obj8);
|
|
if (arg9 == NULL) SWIG_fail;
|
|
temp9 = true;
|
|
}
|
|
}
|
|
{
|
|
if (!wxPyCheckForApp()) SWIG_fail;
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (wxMediaCtrl *)new wxMediaCtrl(arg1,arg2,(wxString const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxString const &)*arg7,(wxValidator const &)*arg8,(wxString const &)*arg9);
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxMediaCtrl, 1);
|
|
{
|
|
if (temp3)
|
|
delete arg3;
|
|
}
|
|
{
|
|
if (temp7)
|
|
delete arg7;
|
|
}
|
|
{
|
|
if (temp9)
|
|
delete arg9;
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
{
|
|
if (temp3)
|
|
delete arg3;
|
|
}
|
|
{
|
|
if (temp7)
|
|
delete arg7;
|
|
}
|
|
{
|
|
if (temp9)
|
|
delete arg9;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_new_PreMediaCtrl(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *result;
|
|
char *kwnames[] = {
|
|
NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)":new_PreMediaCtrl",kwnames)) goto fail;
|
|
{
|
|
if (!wxPyCheckForApp()) SWIG_fail;
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (wxMediaCtrl *)new wxMediaCtrl();
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxMediaCtrl, 1);
|
|
return resultobj;
|
|
fail:
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_new_MediaCtrlFromURI(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxWindow *arg1 = (wxWindow *) 0 ;
|
|
int arg2 = (int) -1 ;
|
|
wxString const &arg3_defvalue = wxPyEmptyString ;
|
|
wxString *arg3 = (wxString *) &arg3_defvalue ;
|
|
wxPoint const &arg4_defvalue = wxDefaultPosition ;
|
|
wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
|
|
wxSize const &arg5_defvalue = wxDefaultSize ;
|
|
wxSize *arg5 = (wxSize *) &arg5_defvalue ;
|
|
long arg6 = (long) 0 ;
|
|
wxString const &arg7_defvalue = wxPyEmptyString ;
|
|
wxString *arg7 = (wxString *) &arg7_defvalue ;
|
|
wxValidator const &arg8_defvalue = wxDefaultValidator ;
|
|
wxValidator *arg8 = (wxValidator *) &arg8_defvalue ;
|
|
wxString const &arg9_defvalue = wxPyMediaCtrlNameStr ;
|
|
wxString *arg9 = (wxString *) &arg9_defvalue ;
|
|
wxMediaCtrl *result;
|
|
bool temp3 = false ;
|
|
wxPoint temp4 ;
|
|
wxSize temp5 ;
|
|
bool temp7 = false ;
|
|
bool temp9 = false ;
|
|
PyObject * obj0 = 0 ;
|
|
PyObject * obj1 = 0 ;
|
|
PyObject * obj2 = 0 ;
|
|
PyObject * obj3 = 0 ;
|
|
PyObject * obj4 = 0 ;
|
|
PyObject * obj5 = 0 ;
|
|
PyObject * obj6 = 0 ;
|
|
PyObject * obj7 = 0 ;
|
|
PyObject * obj8 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "parent",(char *) "id",(char *) "location",(char *) "pos",(char *) "size",(char *) "style",(char *) "szBackend",(char *) "validator",(char *) "name", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|OOOOOOOO:new_MediaCtrlFromURI",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
if (obj1) {
|
|
arg2 = (int)SWIG_As_int(obj1);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
if (obj2) {
|
|
{
|
|
arg3 = wxString_in_helper(obj2);
|
|
if (arg3 == NULL) SWIG_fail;
|
|
temp3 = true;
|
|
}
|
|
}
|
|
if (obj3) {
|
|
{
|
|
arg4 = &temp4;
|
|
if ( ! wxPoint_helper(obj3, &arg4)) SWIG_fail;
|
|
}
|
|
}
|
|
if (obj4) {
|
|
{
|
|
arg5 = &temp5;
|
|
if ( ! wxSize_helper(obj4, &arg5)) SWIG_fail;
|
|
}
|
|
}
|
|
if (obj5) {
|
|
arg6 = (long)SWIG_As_long(obj5);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
if (obj6) {
|
|
{
|
|
arg7 = wxString_in_helper(obj6);
|
|
if (arg7 == NULL) SWIG_fail;
|
|
temp7 = true;
|
|
}
|
|
}
|
|
if (obj7) {
|
|
if ((SWIG_ConvertPtr(obj7,(void **)(&arg8),SWIGTYPE_p_wxValidator,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1)
|
|
SWIG_fail;
|
|
if (arg8 == NULL) {
|
|
PyErr_SetString(PyExc_TypeError,"null reference");
|
|
SWIG_fail;
|
|
}
|
|
}
|
|
if (obj8) {
|
|
{
|
|
arg9 = wxString_in_helper(obj8);
|
|
if (arg9 == NULL) SWIG_fail;
|
|
temp9 = true;
|
|
}
|
|
}
|
|
{
|
|
if (!wxPyCheckForApp()) SWIG_fail;
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (wxMediaCtrl *)new_wxMediaCtrl(arg1,arg2,(wxString const &)*arg3,(wxPoint const &)*arg4,(wxSize const &)*arg5,arg6,(wxString const &)*arg7,(wxValidator const &)*arg8,(wxString const &)*arg9);
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
resultobj = SWIG_NewPointerObj((void*)(result), SWIGTYPE_p_wxMediaCtrl, 1);
|
|
{
|
|
if (temp3)
|
|
delete arg3;
|
|
}
|
|
{
|
|
if (temp7)
|
|
delete arg7;
|
|
}
|
|
{
|
|
if (temp9)
|
|
delete arg9;
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
{
|
|
if (temp3)
|
|
delete arg3;
|
|
}
|
|
{
|
|
if (temp7)
|
|
delete arg7;
|
|
}
|
|
{
|
|
if (temp9)
|
|
delete arg9;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_CreateFromURI(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
wxWindow *arg2 = (wxWindow *) 0 ;
|
|
int arg3 = (int) -1 ;
|
|
wxString const &arg4_defvalue = wxPyEmptyString ;
|
|
wxString *arg4 = (wxString *) &arg4_defvalue ;
|
|
wxPoint const &arg5_defvalue = wxDefaultPosition ;
|
|
wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
|
|
wxSize const &arg6_defvalue = wxDefaultSize ;
|
|
wxSize *arg6 = (wxSize *) &arg6_defvalue ;
|
|
long arg7 = (long) 0 ;
|
|
wxString const &arg8_defvalue = wxPyEmptyString ;
|
|
wxString *arg8 = (wxString *) &arg8_defvalue ;
|
|
wxValidator const &arg9_defvalue = wxDefaultValidator ;
|
|
wxValidator *arg9 = (wxValidator *) &arg9_defvalue ;
|
|
wxString const &arg10_defvalue = wxPyMediaCtrlNameStr ;
|
|
wxString *arg10 = (wxString *) &arg10_defvalue ;
|
|
bool result;
|
|
bool temp4 = false ;
|
|
wxPoint temp5 ;
|
|
wxSize temp6 ;
|
|
bool temp8 = false ;
|
|
bool temp10 = false ;
|
|
PyObject * obj0 = 0 ;
|
|
PyObject * obj1 = 0 ;
|
|
PyObject * obj2 = 0 ;
|
|
PyObject * obj3 = 0 ;
|
|
PyObject * obj4 = 0 ;
|
|
PyObject * obj5 = 0 ;
|
|
PyObject * obj6 = 0 ;
|
|
PyObject * obj7 = 0 ;
|
|
PyObject * obj8 = 0 ;
|
|
PyObject * obj9 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self",(char *) "parent",(char *) "id",(char *) "location",(char *) "pos",(char *) "size",(char *) "style",(char *) "szBackend",(char *) "validator",(char *) "name", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOOO:MediaCtrl_CreateFromURI",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
if (obj2) {
|
|
arg3 = (int)SWIG_As_int(obj2);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
if (obj3) {
|
|
{
|
|
arg4 = wxString_in_helper(obj3);
|
|
if (arg4 == NULL) SWIG_fail;
|
|
temp4 = true;
|
|
}
|
|
}
|
|
if (obj4) {
|
|
{
|
|
arg5 = &temp5;
|
|
if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
|
|
}
|
|
}
|
|
if (obj5) {
|
|
{
|
|
arg6 = &temp6;
|
|
if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
|
|
}
|
|
}
|
|
if (obj6) {
|
|
arg7 = (long)SWIG_As_long(obj6);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
if (obj7) {
|
|
{
|
|
arg8 = wxString_in_helper(obj7);
|
|
if (arg8 == NULL) SWIG_fail;
|
|
temp8 = true;
|
|
}
|
|
}
|
|
if (obj8) {
|
|
if ((SWIG_ConvertPtr(obj8,(void **)(&arg9),SWIGTYPE_p_wxValidator,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1)
|
|
SWIG_fail;
|
|
if (arg9 == NULL) {
|
|
PyErr_SetString(PyExc_TypeError,"null reference");
|
|
SWIG_fail;
|
|
}
|
|
}
|
|
if (obj9) {
|
|
{
|
|
arg10 = wxString_in_helper(obj9);
|
|
if (arg10 == NULL) SWIG_fail;
|
|
temp10 = true;
|
|
}
|
|
}
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (bool)wxMediaCtrl_CreateFromURI(arg1,arg2,arg3,(wxString const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,(wxString const &)*arg8,(wxValidator const &)*arg9,(wxString const &)*arg10);
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
|
}
|
|
{
|
|
if (temp4)
|
|
delete arg4;
|
|
}
|
|
{
|
|
if (temp8)
|
|
delete arg8;
|
|
}
|
|
{
|
|
if (temp10)
|
|
delete arg10;
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
{
|
|
if (temp4)
|
|
delete arg4;
|
|
}
|
|
{
|
|
if (temp8)
|
|
delete arg8;
|
|
}
|
|
{
|
|
if (temp10)
|
|
delete arg10;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_Create(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
wxWindow *arg2 = (wxWindow *) 0 ;
|
|
int arg3 = (int) -1 ;
|
|
wxString const &arg4_defvalue = wxPyEmptyString ;
|
|
wxString *arg4 = (wxString *) &arg4_defvalue ;
|
|
wxPoint const &arg5_defvalue = wxDefaultPosition ;
|
|
wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
|
|
wxSize const &arg6_defvalue = wxDefaultSize ;
|
|
wxSize *arg6 = (wxSize *) &arg6_defvalue ;
|
|
long arg7 = (long) 0 ;
|
|
wxString const &arg8_defvalue = wxPyEmptyString ;
|
|
wxString *arg8 = (wxString *) &arg8_defvalue ;
|
|
wxValidator const &arg9_defvalue = wxDefaultValidator ;
|
|
wxValidator *arg9 = (wxValidator *) &arg9_defvalue ;
|
|
wxString const &arg10_defvalue = wxPyMediaCtrlNameStr ;
|
|
wxString *arg10 = (wxString *) &arg10_defvalue ;
|
|
bool result;
|
|
bool temp4 = false ;
|
|
wxPoint temp5 ;
|
|
wxSize temp6 ;
|
|
bool temp8 = false ;
|
|
bool temp10 = false ;
|
|
PyObject * obj0 = 0 ;
|
|
PyObject * obj1 = 0 ;
|
|
PyObject * obj2 = 0 ;
|
|
PyObject * obj3 = 0 ;
|
|
PyObject * obj4 = 0 ;
|
|
PyObject * obj5 = 0 ;
|
|
PyObject * obj6 = 0 ;
|
|
PyObject * obj7 = 0 ;
|
|
PyObject * obj8 = 0 ;
|
|
PyObject * obj9 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self",(char *) "parent",(char *) "id",(char *) "fileName",(char *) "pos",(char *) "size",(char *) "style",(char *) "szBackend",(char *) "validator",(char *) "name", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OOOOOOOO:MediaCtrl_Create",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
if ((SWIG_ConvertPtr(obj1,(void **)(&arg2),SWIGTYPE_p_wxWindow,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
if (obj2) {
|
|
arg3 = (int)SWIG_As_int(obj2);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
if (obj3) {
|
|
{
|
|
arg4 = wxString_in_helper(obj3);
|
|
if (arg4 == NULL) SWIG_fail;
|
|
temp4 = true;
|
|
}
|
|
}
|
|
if (obj4) {
|
|
{
|
|
arg5 = &temp5;
|
|
if ( ! wxPoint_helper(obj4, &arg5)) SWIG_fail;
|
|
}
|
|
}
|
|
if (obj5) {
|
|
{
|
|
arg6 = &temp6;
|
|
if ( ! wxSize_helper(obj5, &arg6)) SWIG_fail;
|
|
}
|
|
}
|
|
if (obj6) {
|
|
arg7 = (long)SWIG_As_long(obj6);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
if (obj7) {
|
|
{
|
|
arg8 = wxString_in_helper(obj7);
|
|
if (arg8 == NULL) SWIG_fail;
|
|
temp8 = true;
|
|
}
|
|
}
|
|
if (obj8) {
|
|
if ((SWIG_ConvertPtr(obj8,(void **)(&arg9),SWIGTYPE_p_wxValidator,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1)
|
|
SWIG_fail;
|
|
if (arg9 == NULL) {
|
|
PyErr_SetString(PyExc_TypeError,"null reference");
|
|
SWIG_fail;
|
|
}
|
|
}
|
|
if (obj9) {
|
|
{
|
|
arg10 = wxString_in_helper(obj9);
|
|
if (arg10 == NULL) SWIG_fail;
|
|
temp10 = true;
|
|
}
|
|
}
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (bool)(arg1)->Create(arg2,arg3,(wxString const &)*arg4,(wxPoint const &)*arg5,(wxSize const &)*arg6,arg7,(wxString const &)*arg8,(wxValidator const &)*arg9,(wxString const &)*arg10);
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
|
}
|
|
{
|
|
if (temp4)
|
|
delete arg4;
|
|
}
|
|
{
|
|
if (temp8)
|
|
delete arg8;
|
|
}
|
|
{
|
|
if (temp10)
|
|
delete arg10;
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
{
|
|
if (temp4)
|
|
delete arg4;
|
|
}
|
|
{
|
|
if (temp8)
|
|
delete arg8;
|
|
}
|
|
{
|
|
if (temp10)
|
|
delete arg10;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_Play(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
bool result;
|
|
PyObject * obj0 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:MediaCtrl_Play",kwnames,&obj0)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (bool)(arg1)->Play();
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_Pause(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
bool result;
|
|
PyObject * obj0 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:MediaCtrl_Pause",kwnames,&obj0)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (bool)(arg1)->Pause();
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_Stop(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
bool result;
|
|
PyObject * obj0 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:MediaCtrl_Stop",kwnames,&obj0)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (bool)(arg1)->Stop();
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_Load(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
wxString *arg2 = 0 ;
|
|
bool result;
|
|
bool temp2 = false ;
|
|
PyObject * obj0 = 0 ;
|
|
PyObject * obj1 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self",(char *) "fileName", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:MediaCtrl_Load",kwnames,&obj0,&obj1)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
{
|
|
arg2 = wxString_in_helper(obj1);
|
|
if (arg2 == NULL) SWIG_fail;
|
|
temp2 = true;
|
|
}
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (bool)(arg1)->Load((wxString const &)*arg2);
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
|
}
|
|
{
|
|
if (temp2)
|
|
delete arg2;
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
{
|
|
if (temp2)
|
|
delete arg2;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_LoadFromURI(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
wxString *arg2 = 0 ;
|
|
bool result;
|
|
bool temp2 = false ;
|
|
PyObject * obj0 = 0 ;
|
|
PyObject * obj1 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self",(char *) "location", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:MediaCtrl_LoadFromURI",kwnames,&obj0,&obj1)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
{
|
|
arg2 = wxString_in_helper(obj1);
|
|
if (arg2 == NULL) SWIG_fail;
|
|
temp2 = true;
|
|
}
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (bool)wxMediaCtrl_LoadFromURI(arg1,(wxString const &)*arg2);
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
|
}
|
|
{
|
|
if (temp2)
|
|
delete arg2;
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
{
|
|
if (temp2)
|
|
delete arg2;
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_Loop(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
bool arg2 = (bool) true ;
|
|
PyObject * obj0 = 0 ;
|
|
PyObject * obj1 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self",(char *) "bLoop", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:MediaCtrl_Loop",kwnames,&obj0,&obj1)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
if (obj1) {
|
|
arg2 = (bool)SWIG_As_bool(obj1);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
(arg1)->Loop(arg2);
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
Py_INCREF(Py_None); resultobj = Py_None;
|
|
return resultobj;
|
|
fail:
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_IsLooped(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
bool result;
|
|
PyObject * obj0 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:MediaCtrl_IsLooped",kwnames,&obj0)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (bool)(arg1)->IsLooped();
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_GetState(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
int result;
|
|
PyObject * obj0 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:MediaCtrl_GetState",kwnames,&obj0)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (int)(arg1)->GetState();
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
resultobj = SWIG_From_int((int)result);
|
|
return resultobj;
|
|
fail:
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_GetPlaybackRate(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
double result;
|
|
PyObject * obj0 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:MediaCtrl_GetPlaybackRate",kwnames,&obj0)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (double)(arg1)->GetPlaybackRate();
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
resultobj = SWIG_From_double((double)result);
|
|
return resultobj;
|
|
fail:
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_SetPlaybackRate(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
double arg2 ;
|
|
bool result;
|
|
PyObject * obj0 = 0 ;
|
|
PyObject * obj1 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self",(char *) "dRate", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:MediaCtrl_SetPlaybackRate",kwnames,&obj0,&obj1)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
arg2 = (double)SWIG_As_double(obj1);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (bool)(arg1)->SetPlaybackRate(arg2);
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_SetMediaPosition(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
wxLongLong arg2 ;
|
|
bool result;
|
|
PyObject * obj0 = 0 ;
|
|
PyObject * obj1 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self",(char *) "where", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:MediaCtrl_SetMediaPosition",kwnames,&obj0,&obj1)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
{
|
|
arg2 = PyLong_AsLongLong(obj1);
|
|
}
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (bool)(arg1)->SetPosition(arg2);
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_GetMediaPosition(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
wxLongLong result;
|
|
PyObject * obj0 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:MediaCtrl_GetMediaPosition",kwnames,&obj0)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (arg1)->GetPosition();
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
resultobj = PyLong_FromLongLong((&result)->GetValue());
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject *_wrap_MediaCtrl_GetMediaDuration(PyObject *, PyObject *args, PyObject *kwargs) {
|
|
PyObject *resultobj;
|
|
wxMediaCtrl *arg1 = (wxMediaCtrl *) 0 ;
|
|
wxLongLong result;
|
|
PyObject * obj0 = 0 ;
|
|
char *kwnames[] = {
|
|
(char *) "self", NULL
|
|
};
|
|
|
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O:MediaCtrl_GetMediaDuration",kwnames,&obj0)) goto fail;
|
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxMediaCtrl,
|
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
{
|
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
result = (arg1)->GetDuration();
|
|
|
|
wxPyEndAllowThreads(__tstate);
|
|
if (PyErr_Occurred()) SWIG_fail;
|
|
}
|
|
{
|
|
resultobj = PyLong_FromLongLong((&result)->GetValue());
|
|
}
|
|
return resultobj;
|
|
fail:
|
|
return NULL;
|
|
}
|
|
|
|
|
|
static PyObject * MediaCtrl_swigregister(PyObject *, PyObject *args) {
|
|
PyObject *obj;
|
|
if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
|
|
SWIG_TypeClientData(SWIGTYPE_p_wxMediaCtrl, obj);
|
|
Py_INCREF(obj);
|
|
return Py_BuildValue((char *)"");
|
|
}
|
|
static PyMethodDef SwigMethods[] = {
|
|
{ (char *)"new_MediaEvent", (PyCFunction) _wrap_new_MediaEvent, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaEvent_swigregister", MediaEvent_swigregister, METH_VARARGS, NULL },
|
|
{ (char *)"new_MediaCtrl", (PyCFunction) _wrap_new_MediaCtrl, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"new_PreMediaCtrl", (PyCFunction) _wrap_new_PreMediaCtrl, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"new_MediaCtrlFromURI", (PyCFunction) _wrap_new_MediaCtrlFromURI, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_CreateFromURI", (PyCFunction) _wrap_MediaCtrl_CreateFromURI, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_Create", (PyCFunction) _wrap_MediaCtrl_Create, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_Play", (PyCFunction) _wrap_MediaCtrl_Play, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_Pause", (PyCFunction) _wrap_MediaCtrl_Pause, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_Stop", (PyCFunction) _wrap_MediaCtrl_Stop, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_Load", (PyCFunction) _wrap_MediaCtrl_Load, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_LoadFromURI", (PyCFunction) _wrap_MediaCtrl_LoadFromURI, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_Loop", (PyCFunction) _wrap_MediaCtrl_Loop, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_IsLooped", (PyCFunction) _wrap_MediaCtrl_IsLooped, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_GetState", (PyCFunction) _wrap_MediaCtrl_GetState, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_GetPlaybackRate", (PyCFunction) _wrap_MediaCtrl_GetPlaybackRate, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_SetPlaybackRate", (PyCFunction) _wrap_MediaCtrl_SetPlaybackRate, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_SetMediaPosition", (PyCFunction) _wrap_MediaCtrl_SetMediaPosition, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_GetMediaPosition", (PyCFunction) _wrap_MediaCtrl_GetMediaPosition, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_GetMediaDuration", (PyCFunction) _wrap_MediaCtrl_GetMediaDuration, METH_VARARGS | METH_KEYWORDS, NULL },
|
|
{ (char *)"MediaCtrl_swigregister", MediaCtrl_swigregister, METH_VARARGS, NULL },
|
|
{ NULL, NULL, 0, NULL }
|
|
};
|
|
|
|
|
|
/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
|
|
|
|
static void *_p_wxControlWithItemsTo_p_wxControl(void *x) {
|
|
return (void *)((wxControl *) ((wxControlWithItems *) x));
|
|
}
|
|
static void *_p_wxMediaCtrlTo_p_wxControl(void *x) {
|
|
return (void *)((wxControl *) ((wxMediaCtrl *) x));
|
|
}
|
|
static void *_p_wxControlTo_p_wxWindow(void *x) {
|
|
return (void *)((wxWindow *) ((wxControl *) x));
|
|
}
|
|
static void *_p_wxControlWithItemsTo_p_wxWindow(void *x) {
|
|
return (void *)((wxWindow *) (wxControl *) ((wxControlWithItems *) x));
|
|
}
|
|
static void *_p_wxMediaCtrlTo_p_wxWindow(void *x) {
|
|
return (void *)((wxWindow *) (wxControl *) ((wxMediaCtrl *) x));
|
|
}
|
|
static void *_p_wxMenuBarTo_p_wxWindow(void *x) {
|
|
return (void *)((wxWindow *) ((wxMenuBar *) x));
|
|
}
|
|
static void *_p_wxContextMenuEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) (wxCommandEvent *) ((wxContextMenuEvent *) x));
|
|
}
|
|
static void *_p_wxMenuEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxMenuEvent *) x));
|
|
}
|
|
static void *_p_wxCloseEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxCloseEvent *) x));
|
|
}
|
|
static void *_p_wxMouseEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxMouseEvent *) x));
|
|
}
|
|
static void *_p_wxEraseEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxEraseEvent *) x));
|
|
}
|
|
static void *_p_wxSetCursorEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxSetCursorEvent *) x));
|
|
}
|
|
static void *_p_wxInitDialogEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxInitDialogEvent *) x));
|
|
}
|
|
static void *_p_wxScrollEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) (wxCommandEvent *) ((wxScrollEvent *) x));
|
|
}
|
|
static void *_p_wxPyEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxPyEvent *) x));
|
|
}
|
|
static void *_p_wxNotifyEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) (wxCommandEvent *) ((wxNotifyEvent *) x));
|
|
}
|
|
static void *_p_wxIdleEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxIdleEvent *) x));
|
|
}
|
|
static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) (wxCommandEvent *) ((wxWindowCreateEvent *) x));
|
|
}
|
|
static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxQueryNewPaletteEvent *) x));
|
|
}
|
|
static void *_p_wxMaximizeEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxMaximizeEvent *) x));
|
|
}
|
|
static void *_p_wxIconizeEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxIconizeEvent *) x));
|
|
}
|
|
static void *_p_wxActivateEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxActivateEvent *) x));
|
|
}
|
|
static void *_p_wxSizeEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxSizeEvent *) x));
|
|
}
|
|
static void *_p_wxMoveEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxMoveEvent *) x));
|
|
}
|
|
static void *_p_wxPaintEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxPaintEvent *) x));
|
|
}
|
|
static void *_p_wxNcPaintEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxNcPaintEvent *) x));
|
|
}
|
|
static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) (wxCommandEvent *) ((wxUpdateUIEvent *) x));
|
|
}
|
|
static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxPaletteChangedEvent *) x));
|
|
}
|
|
static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxDisplayChangedEvent *) x));
|
|
}
|
|
static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxMouseCaptureChangedEvent *) x));
|
|
}
|
|
static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxSysColourChangedEvent *) x));
|
|
}
|
|
static void *_p_wxDropFilesEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxDropFilesEvent *) x));
|
|
}
|
|
static void *_p_wxFocusEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxFocusEvent *) x));
|
|
}
|
|
static void *_p_wxChildFocusEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) (wxCommandEvent *) ((wxChildFocusEvent *) x));
|
|
}
|
|
static void *_p_wxShowEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxShowEvent *) x));
|
|
}
|
|
static void *_p_wxCommandEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxCommandEvent *) x));
|
|
}
|
|
static void *_p_wxPyCommandEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) (wxCommandEvent *) ((wxPyCommandEvent *) x));
|
|
}
|
|
static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) (wxCommandEvent *) ((wxWindowDestroyEvent *) x));
|
|
}
|
|
static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxNavigationKeyEvent *) x));
|
|
}
|
|
static void *_p_wxKeyEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxKeyEvent *) x));
|
|
}
|
|
static void *_p_wxMediaEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) (wxCommandEvent *)(wxNotifyEvent *) ((wxMediaEvent *) x));
|
|
}
|
|
static void *_p_wxScrollWinEventTo_p_wxEvent(void *x) {
|
|
return (void *)((wxEvent *) ((wxScrollWinEvent *) x));
|
|
}
|
|
static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) ((wxLayoutConstraints *) x));
|
|
}
|
|
static void *_p_wxGBSizerItemTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxSizerItem *) ((wxGBSizerItem *) x));
|
|
}
|
|
static void *_p_wxSizerItemTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) ((wxSizerItem *) x));
|
|
}
|
|
static void *_p_wxScrollEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxScrollEvent *) x));
|
|
}
|
|
static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) ((wxIndividualLayoutConstraint *) x));
|
|
}
|
|
static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxSizer *)(wxBoxSizer *) ((wxStaticBoxSizer *) x));
|
|
}
|
|
static void *_p_wxBoxSizerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxSizer *) ((wxBoxSizer *) x));
|
|
}
|
|
static void *_p_wxSizerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) ((wxSizer *) x));
|
|
}
|
|
static void *_p_wxGridBagSizerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxSizer *)(wxGridSizer *)(wxFlexGridSizer *) ((wxGridBagSizer *) x));
|
|
}
|
|
static void *_p_wxUpdateUIEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxUpdateUIEvent *) x));
|
|
}
|
|
static void *_p_wxEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) ((wxEvent *) x));
|
|
}
|
|
static void *_p_wxFlexGridSizerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxSizer *)(wxGridSizer *) ((wxFlexGridSizer *) x));
|
|
}
|
|
static void *_p_wxGridSizerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxSizer *) ((wxGridSizer *) x));
|
|
}
|
|
static void *_p_wxInitDialogEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxInitDialogEvent *) x));
|
|
}
|
|
static void *_p_wxPaintEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxPaintEvent *) x));
|
|
}
|
|
static void *_p_wxNcPaintEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxNcPaintEvent *) x));
|
|
}
|
|
static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxPaletteChangedEvent *) x));
|
|
}
|
|
static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxDisplayChangedEvent *) x));
|
|
}
|
|
static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxMouseCaptureChangedEvent *) x));
|
|
}
|
|
static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxSysColourChangedEvent *) x));
|
|
}
|
|
static void *_p_wxMediaCtrlTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxMediaCtrl *) x));
|
|
}
|
|
static void *_p_wxControlTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxControl *) x));
|
|
}
|
|
static void *_p_wxSetCursorEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxSetCursorEvent *) x));
|
|
}
|
|
static void *_p_wxMediaEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *)(wxNotifyEvent *) ((wxMediaEvent *) x));
|
|
}
|
|
static void *_p_wxFSFileTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) ((wxFSFile *) x));
|
|
}
|
|
static void *_p_wxPySizerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxSizer *) ((wxPySizer *) x));
|
|
}
|
|
static void *_p_wxPyEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxPyEvent *) x));
|
|
}
|
|
static void *_p_wxNotifyEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxNotifyEvent *) x));
|
|
}
|
|
static void *_p_wxShowEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxShowEvent *) x));
|
|
}
|
|
static void *_p_wxMenuItemTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) ((wxMenuItem *) x));
|
|
}
|
|
static void *_p_wxIdleEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxIdleEvent *) x));
|
|
}
|
|
static void *_p_wxWindowCreateEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxWindowCreateEvent *) x));
|
|
}
|
|
static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxQueryNewPaletteEvent *) x));
|
|
}
|
|
static void *_p_wxMaximizeEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxMaximizeEvent *) x));
|
|
}
|
|
static void *_p_wxIconizeEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxIconizeEvent *) x));
|
|
}
|
|
static void *_p_wxSizeEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxSizeEvent *) x));
|
|
}
|
|
static void *_p_wxMoveEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxMoveEvent *) x));
|
|
}
|
|
static void *_p_wxActivateEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxActivateEvent *) x));
|
|
}
|
|
static void *_p_wxXPMHandlerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxImageHandler *) ((wxXPMHandler *) x));
|
|
}
|
|
static void *_p_wxPNMHandlerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxImageHandler *) ((wxPNMHandler *) x));
|
|
}
|
|
static void *_p_wxJPEGHandlerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxImageHandler *) ((wxJPEGHandler *) x));
|
|
}
|
|
static void *_p_wxPCXHandlerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxImageHandler *) ((wxPCXHandler *) x));
|
|
}
|
|
static void *_p_wxGIFHandlerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxImageHandler *) ((wxGIFHandler *) x));
|
|
}
|
|
static void *_p_wxPNGHandlerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxImageHandler *) ((wxPNGHandler *) x));
|
|
}
|
|
static void *_p_wxANIHandlerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxImageHandler *)(wxBMPHandler *)(wxICOHandler *)(wxCURHandler *) ((wxANIHandler *) x));
|
|
}
|
|
static void *_p_wxCURHandlerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxImageHandler *)(wxBMPHandler *)(wxICOHandler *) ((wxCURHandler *) x));
|
|
}
|
|
static void *_p_wxICOHandlerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxImageHandler *)(wxBMPHandler *) ((wxICOHandler *) x));
|
|
}
|
|
static void *_p_wxBMPHandlerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxImageHandler *) ((wxBMPHandler *) x));
|
|
}
|
|
static void *_p_wxImageHandlerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) ((wxImageHandler *) x));
|
|
}
|
|
static void *_p_wxTIFFHandlerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxImageHandler *) ((wxTIFFHandler *) x));
|
|
}
|
|
static void *_p_wxEvtHandlerTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) ((wxEvtHandler *) x));
|
|
}
|
|
static void *_p_wxAcceleratorTableTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) ((wxAcceleratorTable *) x));
|
|
}
|
|
static void *_p_wxImageTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) ((wxImage *) x));
|
|
}
|
|
static void *_p_wxScrollWinEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxScrollWinEvent *) x));
|
|
}
|
|
static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxWindowDestroyEvent *) x));
|
|
}
|
|
static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxNavigationKeyEvent *) x));
|
|
}
|
|
static void *_p_wxKeyEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxKeyEvent *) x));
|
|
}
|
|
static void *_p_wxWindowTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvtHandler *) ((wxWindow *) x));
|
|
}
|
|
static void *_p_wxMenuTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvtHandler *) ((wxMenu *) x));
|
|
}
|
|
static void *_p_wxMenuBarTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *) ((wxMenuBar *) x));
|
|
}
|
|
static void *_p_wxFileSystemTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) ((wxFileSystem *) x));
|
|
}
|
|
static void *_p_wxContextMenuEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxContextMenuEvent *) x));
|
|
}
|
|
static void *_p_wxMenuEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxMenuEvent *) x));
|
|
}
|
|
static void *_p_wxPyAppTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvtHandler *) ((wxPyApp *) x));
|
|
}
|
|
static void *_p_wxCloseEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxCloseEvent *) x));
|
|
}
|
|
static void *_p_wxMouseEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxMouseEvent *) x));
|
|
}
|
|
static void *_p_wxEraseEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxEraseEvent *) x));
|
|
}
|
|
static void *_p_wxPyCommandEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxPyCommandEvent *) x));
|
|
}
|
|
static void *_p_wxCommandEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxCommandEvent *) x));
|
|
}
|
|
static void *_p_wxDropFilesEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxDropFilesEvent *) x));
|
|
}
|
|
static void *_p_wxFocusEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *) ((wxFocusEvent *) x));
|
|
}
|
|
static void *_p_wxChildFocusEventTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvent *)(wxCommandEvent *) ((wxChildFocusEvent *) x));
|
|
}
|
|
static void *_p_wxControlWithItemsTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvtHandler *)(wxWindow *)(wxControl *) ((wxControlWithItems *) x));
|
|
}
|
|
static void *_p_wxPyValidatorTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvtHandler *)(wxValidator *) ((wxPyValidator *) x));
|
|
}
|
|
static void *_p_wxValidatorTo_p_wxObject(void *x) {
|
|
return (void *)((wxObject *) (wxEvtHandler *) ((wxValidator *) x));
|
|
}
|
|
static void *_p_wxControlTo_p_wxEvtHandler(void *x) {
|
|
return (void *)((wxEvtHandler *) (wxWindow *) ((wxControl *) x));
|
|
}
|
|
static void *_p_wxWindowTo_p_wxEvtHandler(void *x) {
|
|
return (void *)((wxEvtHandler *) ((wxWindow *) x));
|
|
}
|
|
static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x) {
|
|
return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxControlWithItems *) x));
|
|
}
|
|
static void *_p_wxPyAppTo_p_wxEvtHandler(void *x) {
|
|
return (void *)((wxEvtHandler *) ((wxPyApp *) x));
|
|
}
|
|
static void *_p_wxMediaCtrlTo_p_wxEvtHandler(void *x) {
|
|
return (void *)((wxEvtHandler *) (wxWindow *)(wxControl *) ((wxMediaCtrl *) x));
|
|
}
|
|
static void *_p_wxValidatorTo_p_wxEvtHandler(void *x) {
|
|
return (void *)((wxEvtHandler *) ((wxValidator *) x));
|
|
}
|
|
static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x) {
|
|
return (void *)((wxEvtHandler *) (wxValidator *) ((wxPyValidator *) x));
|
|
}
|
|
static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x) {
|
|
return (void *)((wxEvtHandler *) (wxWindow *) ((wxMenuBar *) x));
|
|
}
|
|
static void *_p_wxMenuTo_p_wxEvtHandler(void *x) {
|
|
return (void *)((wxEvtHandler *) ((wxMenu *) x));
|
|
}
|
|
static void *_p_wxPyValidatorTo_p_wxValidator(void *x) {
|
|
return (void *)((wxValidator *) ((wxPyValidator *) x));
|
|
}
|
|
static void *_p_wxMediaEventTo_p_wxNotifyEvent(void *x) {
|
|
return (void *)((wxNotifyEvent *) ((wxMediaEvent *) x));
|
|
}
|
|
static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x) {
|
|
return (void *)((wxCommandEvent *) ((wxChildFocusEvent *) x));
|
|
}
|
|
static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x) {
|
|
return (void *)((wxCommandEvent *) ((wxScrollEvent *) x));
|
|
}
|
|
static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x) {
|
|
return (void *)((wxCommandEvent *) ((wxWindowCreateEvent *) x));
|
|
}
|
|
static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x) {
|
|
return (void *)((wxCommandEvent *) ((wxUpdateUIEvent *) x));
|
|
}
|
|
static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x) {
|
|
return (void *)((wxCommandEvent *) ((wxWindowDestroyEvent *) x));
|
|
}
|
|
static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x) {
|
|
return (void *)((wxCommandEvent *) ((wxContextMenuEvent *) x));
|
|
}
|
|
static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x) {
|
|
return (void *)((wxCommandEvent *) ((wxNotifyEvent *) x));
|
|
}
|
|
static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x) {
|
|
return (void *)((wxCommandEvent *) ((wxPyCommandEvent *) x));
|
|
}
|
|
static void *_p_wxMediaEventTo_p_wxCommandEvent(void *x) {
|
|
return (void *)((wxCommandEvent *) (wxNotifyEvent *) ((wxMediaEvent *) x));
|
|
}
|
|
static swig_type_info _swigt__p_wxLongLong[] = {{"_p_wxLongLong", 0, "wxLongLong *", 0, 0, 0, 0},{"_p_wxLongLong", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
static swig_type_info _swigt__p_wxControl[] = {{"_p_wxControl", 0, "wxControl *", 0, 0, 0, 0},{"_p_wxControl", 0, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxControl, 0, 0, 0, 0, 0},{"_p_wxMediaCtrl", _p_wxMediaCtrlTo_p_wxControl, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
static swig_type_info _swigt__p_wxWindow[] = {{"_p_wxWindow", 0, "wxWindow *", 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxWindow", 0, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxMediaCtrl", _p_wxMediaCtrlTo_p_wxWindow, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxWindow, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
static swig_type_info _swigt__p_wxEvent[] = {{"_p_wxEvent", 0, "wxEvent *", 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMenuEvent", _p_wxMenuEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxCloseEvent", _p_wxCloseEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMouseEvent", _p_wxMouseEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxEraseEvent", _p_wxEraseEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxSetCursorEvent", _p_wxSetCursorEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxInitDialogEvent", _p_wxInitDialogEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxPyEvent", _p_wxPyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxEvent", 0, 0, 0, 0, 0, 0},{"_p_wxQueryNewPaletteEvent", _p_wxQueryNewPaletteEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxIdleEvent", _p_wxIdleEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMaximizeEvent", _p_wxMaximizeEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxIconizeEvent", _p_wxIconizeEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxActivateEvent", _p_wxActivateEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMoveEvent", _p_wxMoveEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxSizeEvent", _p_wxSizeEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxPaintEvent", _p_wxPaintEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxNcPaintEvent", _p_wxNcPaintEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxPaletteChangedEvent", _p_wxPaletteChangedEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxDisplayChangedEvent", _p_wxDisplayChangedEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMouseCaptureChangedEvent", _p_wxMouseCaptureChangedEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxSysColourChangedEvent", _p_wxSysColourChangedEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxDropFilesEvent", _p_wxDropFilesEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxFocusEvent", _p_wxFocusEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxShowEvent", _p_wxShowEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", _p_wxCommandEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxNavigationKeyEvent", _p_wxNavigationKeyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxKeyEvent", _p_wxKeyEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxMediaEvent", _p_wxMediaEventTo_p_wxEvent, 0, 0, 0, 0, 0},{"_p_wxScrollWinEvent", _p_wxScrollWinEventTo_p_wxEvent, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
static swig_type_info _swigt__p_wxObject[] = {{"_p_wxObject", 0, "wxObject *", 0, 0, 0, 0},{"_p_wxLayoutConstraints", _p_wxLayoutConstraintsTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGBSizerItem", _p_wxGBSizerItemTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSizerItem", _p_wxSizerItemTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxIndividualLayoutConstraint", _p_wxIndividualLayoutConstraintTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxStaticBoxSizer", _p_wxStaticBoxSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxBoxSizer", _p_wxBoxSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSizer", _p_wxSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGridBagSizer", _p_wxGridBagSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMenu", _p_wxMenuTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxEvent", _p_wxEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFlexGridSizer", _p_wxFlexGridSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGridSizer", _p_wxGridSizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxInitDialogEvent", _p_wxInitDialogEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxNcPaintEvent", _p_wxNcPaintEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPaintEvent", _p_wxPaintEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPaletteChangedEvent", _p_wxPaletteChangedEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxDisplayChangedEvent", _p_wxDisplayChangedEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMouseCaptureChangedEvent", _p_wxMouseCaptureChangedEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSysColourChangedEvent", _p_wxSysColourChangedEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMediaCtrl", _p_wxMediaCtrlTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSetCursorEvent", _p_wxSetCursorEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMediaEvent", _p_wxMediaEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFSFile", _p_wxFSFileTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPySizer", _p_wxPySizerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyEvent", _p_wxPyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxShowEvent", _p_wxShowEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMenuItem", _p_wxMenuItemTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMoveEvent", _p_wxMoveEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxSizeEvent", _p_wxSizeEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxActivateEvent", _p_wxActivateEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxIconizeEvent", _p_wxIconizeEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMaximizeEvent", _p_wxMaximizeEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxIdleEvent", _p_wxIdleEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxQueryNewPaletteEvent", _p_wxQueryNewPaletteEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxXPMHandler", _p_wxXPMHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPNMHandler", _p_wxPNMHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxJPEGHandler", _p_wxJPEGHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPCXHandler", _p_wxPCXHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxGIFHandler", _p_wxGIFHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPNGHandler", _p_wxPNGHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxANIHandler", _p_wxANIHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxCURHandler", _p_wxCURHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxICOHandler", _p_wxICOHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxBMPHandler", _p_wxBMPHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxImageHandler", _p_wxImageHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxTIFFHandler", _p_wxTIFFHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxEvtHandler", _p_wxEvtHandlerTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxAcceleratorTable", _p_wxAcceleratorTableTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxImage", _p_wxImageTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxScrollWinEvent", _p_wxScrollWinEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxObject", 0, 0, 0, 0, 0, 0},{"_p_wxKeyEvent", _p_wxKeyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxNavigationKeyEvent", _p_wxNavigationKeyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxWindow", _p_wxWindowTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFileSystem", _p_wxFileSystemTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMenuEvent", _p_wxMenuEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyApp", _p_wxPyAppTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxCloseEvent", _p_wxCloseEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxMouseEvent", _p_wxMouseEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxEraseEvent", _p_wxEraseEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", _p_wxCommandEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxDropFilesEvent", _p_wxDropFilesEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxFocusEvent", _p_wxFocusEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxObject, 0, 0, 0, 0, 0},{"_p_wxValidator", _p_wxValidatorTo_p_wxObject, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
static swig_type_info _swigt__p_wxEvtHandler[] = {{"_p_wxEvtHandler", 0, "wxEvtHandler *", 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxWindow", _p_wxWindowTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxEvtHandler", 0, 0, 0, 0, 0, 0},{"_p_wxMediaCtrl", _p_wxMediaCtrlTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyApp", _p_wxPyAppTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxValidator", _p_wxValidatorTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{"_p_wxMenu", _p_wxMenuTo_p_wxEvtHandler, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
static swig_type_info _swigt__p_char[] = {{"_p_char", 0, "char *", 0, 0, 0, 0},{"_p_char", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
static swig_type_info _swigt__p_wxMediaCtrl[] = {{"_p_wxMediaCtrl", 0, "wxMediaCtrl *", 0, 0, 0, 0},{"_p_wxMediaCtrl", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
static swig_type_info _swigt__p_wxValidator[] = {{"_p_wxValidator", 0, "wxValidator *", 0, 0, 0, 0},{"_p_wxValidator", 0, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxValidator, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
static swig_type_info _swigt__p_wxNotifyEvent[] = {{"_p_wxNotifyEvent", 0, "wxNotifyEvent *", 0, 0, 0, 0},{"_p_wxNotifyEvent", 0, 0, 0, 0, 0, 0},{"_p_wxMediaEvent", _p_wxMediaEventTo_p_wxNotifyEvent, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
static swig_type_info _swigt__p_wxCommandEvent[] = {{"_p_wxCommandEvent", 0, "wxCommandEvent *", 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", 0, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxMediaEvent", _p_wxMediaEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxCommandEvent, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
static swig_type_info _swigt__p_wxMediaEvent[] = {{"_p_wxMediaEvent", 0, "wxMediaEvent *", 0, 0, 0, 0},{"_p_wxMediaEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}};
|
|
|
|
static swig_type_info *swig_types_initial[] = {
|
|
_swigt__p_wxLongLong,
|
|
_swigt__p_wxControl,
|
|
_swigt__p_wxWindow,
|
|
_swigt__p_wxEvent,
|
|
_swigt__p_wxObject,
|
|
_swigt__p_wxEvtHandler,
|
|
_swigt__p_char,
|
|
_swigt__p_wxMediaCtrl,
|
|
_swigt__p_wxValidator,
|
|
_swigt__p_wxNotifyEvent,
|
|
_swigt__p_wxCommandEvent,
|
|
_swigt__p_wxMediaEvent,
|
|
0
|
|
};
|
|
|
|
|
|
/* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
|
|
|
|
static swig_const_info swig_const_table[] = {
|
|
{0, 0, 0, 0.0, 0, 0}};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
#endif
|
|
SWIGEXPORT(void) SWIG_init(void) {
|
|
static PyObject *SWIG_globals = 0;
|
|
static int typeinit = 0;
|
|
PyObject *m, *d;
|
|
int i;
|
|
if (!SWIG_globals) SWIG_globals = SWIG_newvarlink();
|
|
m = Py_InitModule((char *) SWIG_name, SwigMethods);
|
|
d = PyModule_GetDict(m);
|
|
|
|
if (!typeinit) {
|
|
for (i = 0; swig_types_initial[i]; i++) {
|
|
swig_types[i] = SWIG_TypeRegister(swig_types_initial[i]);
|
|
}
|
|
typeinit = 1;
|
|
}
|
|
SWIG_InstallConstants(d,swig_const_table);
|
|
|
|
PyDict_SetItemString(d,"MEDIASTATE_STOPPED", SWIG_From_int((int)wxMEDIASTATE_STOPPED));
|
|
PyDict_SetItemString(d,"MEDIASTATE_PAUSED", SWIG_From_int((int)wxMEDIASTATE_PAUSED));
|
|
PyDict_SetItemString(d,"MEDIASTATE_PLAYING", SWIG_From_int((int)wxMEDIASTATE_PLAYING));
|
|
PyDict_SetItemString(d,"MEDIATIMEFORMAT_TIME", SWIG_From_int((int)wxMEDIATIMEFORMAT_TIME));
|
|
PyDict_SetItemString(d,(char*)"cvar", SWIG_globals);
|
|
SWIG_addvarlink(SWIG_globals,(char*)"MediaCtrlNameStr",_wrap_MediaCtrlNameStr_get, _wrap_MediaCtrlNameStr_set);
|
|
PyDict_SetItemString(d, "wxEVT_MEDIA_FINISHED", PyInt_FromLong(wxEVT_MEDIA_FINISHED));
|
|
PyDict_SetItemString(d, "wxEVT_MEDIA_STOP", PyInt_FromLong(wxEVT_MEDIA_STOP));
|
|
|
|
|
|
}
|
|
|