mirror of
https://github.com/wxWidgets/wxWidgets.git
synced 2026-09-21 21:47:55 +08:00
reSWIGged
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31099 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2744,7 +2744,7 @@ class EvtHandler(Object):
|
||||
return _core_.EvtHandler_Disconnect(*args, **kwargs)
|
||||
|
||||
def _setOORInfo(*args, **kwargs):
|
||||
"""_setOORInfo(self, PyObject _self)"""
|
||||
"""_setOORInfo(self, PyObject _self, bool incref=True)"""
|
||||
return _core_.EvtHandler__setOORInfo(*args, **kwargs)
|
||||
|
||||
def Bind(self, event, handler, source=None, id=wx.ID_ANY, id2=wx.ID_ANY):
|
||||
|
||||
@@ -1438,9 +1438,9 @@ bool wxEvtHandler_Disconnect(wxEvtHandler *self,int id,int lastId,wxEventType ev
|
||||
(wxObjectEventFunction)
|
||||
&wxPyCallback::EventThunker);
|
||||
}
|
||||
void wxEvtHandler__setOORInfo(wxEvtHandler *self,PyObject *_self){
|
||||
void wxEvtHandler__setOORInfo(wxEvtHandler *self,PyObject *_self,bool incref){
|
||||
if (_self && _self != Py_None) {
|
||||
self->SetClientObject(new wxPyOORClientData(_self));
|
||||
self->SetClientObject(new wxPyOORClientData(_self, incref));
|
||||
}
|
||||
else {
|
||||
wxPyOORClientData* data = (wxPyOORClientData*)self->GetClientObject();
|
||||
@@ -12721,19 +12721,25 @@ static PyObject *_wrap_EvtHandler__setOORInfo(PyObject *, PyObject *args, PyObje
|
||||
PyObject *resultobj;
|
||||
wxEvtHandler *arg1 = (wxEvtHandler *) 0 ;
|
||||
PyObject *arg2 = (PyObject *) 0 ;
|
||||
bool arg3 = (bool) true ;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
PyObject * obj2 = 0 ;
|
||||
char *kwnames[] = {
|
||||
(char *) "self",(char *) "_self", NULL
|
||||
(char *) "self",(char *) "_self",(char *) "incref", NULL
|
||||
};
|
||||
|
||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:EvtHandler__setOORInfo",kwnames,&obj0,&obj1)) goto fail;
|
||||
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:EvtHandler__setOORInfo",kwnames,&obj0,&obj1,&obj2)) goto fail;
|
||||
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxEvtHandler,
|
||||
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
||||
arg2 = obj1;
|
||||
if (obj2) {
|
||||
arg3 = (bool)SWIG_As_bool(obj2);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
{
|
||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||
wxEvtHandler__setOORInfo(arg1,arg2);
|
||||
wxEvtHandler__setOORInfo(arg1,arg2,arg3);
|
||||
|
||||
wxPyEndAllowThreads(__tstate);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
|
||||
@@ -975,7 +975,7 @@ class Timer(_core.EvtHandler):
|
||||
self.this = newobj.this
|
||||
self.thisown = 1
|
||||
del newobj.thisown
|
||||
self._setCallbackInfo(self, Timer, 0); self._setOORInfo(self)
|
||||
self._setCallbackInfo(self, Timer, 0); self._setOORInfo(self, 0)
|
||||
|
||||
def __del__(self, destroy=_misc_.delete_Timer):
|
||||
"""__del__(self)"""
|
||||
@@ -1019,6 +1019,10 @@ class Timer(_core.EvtHandler):
|
||||
"""GetId(self) -> int"""
|
||||
return _misc_.Timer_GetId(*args, **kwargs)
|
||||
|
||||
def Destroy():
|
||||
"""NO-OP: Timers must be destroyed by normal refrence counting"""
|
||||
pass
|
||||
|
||||
|
||||
class TimerPtr(Timer):
|
||||
def __init__(self, this):
|
||||
@@ -1733,6 +1737,7 @@ EXEC_ASYNC = _misc_.EXEC_ASYNC
|
||||
EXEC_SYNC = _misc_.EXEC_SYNC
|
||||
EXEC_NOHIDE = _misc_.EXEC_NOHIDE
|
||||
EXEC_MAKE_GROUP_LEADER = _misc_.EXEC_MAKE_GROUP_LEADER
|
||||
EXEC_NODISABLE = _misc_.EXEC_NODISABLE
|
||||
|
||||
def Execute(*args, **kwargs):
|
||||
"""Execute(String command, int flags=EXEC_ASYNC, Process process=None) -> long"""
|
||||
|
||||
@@ -754,7 +754,14 @@ IMP_PYCALLBACK_STRING_STRING(wxPyTipProvider, wxTipProvider, PreprocessTip);
|
||||
//IMP_PYCALLBACK__(wxPyTimer, wxTimer, Notify);
|
||||
|
||||
IMPLEMENT_ABSTRACT_CLASS(wxPyTimer, wxTimer);
|
||||
|
||||
|
||||
wxPyTimer::wxPyTimer(wxEvtHandler *owner, int id)
|
||||
: wxTimer(owner, id)
|
||||
{
|
||||
if (owner == NULL) SetOwner(this);
|
||||
}
|
||||
|
||||
|
||||
void wxPyTimer::Notify() {
|
||||
bool found;
|
||||
bool blocked = wxPyBeginBlockThreads();
|
||||
@@ -30806,6 +30813,7 @@ SWIGEXPORT(void) SWIG_init(void) {
|
||||
PyDict_SetItemString(d,"EXEC_SYNC", SWIG_From_int((int)wxEXEC_SYNC));
|
||||
PyDict_SetItemString(d,"EXEC_NOHIDE", SWIG_From_int((int)wxEXEC_NOHIDE));
|
||||
PyDict_SetItemString(d,"EXEC_MAKE_GROUP_LEADER", SWIG_From_int((int)wxEXEC_MAKE_GROUP_LEADER));
|
||||
PyDict_SetItemString(d,"EXEC_NODISABLE", SWIG_From_int((int)wxEXEC_NODISABLE));
|
||||
|
||||
wxPyPtrTypeMap_Add("wxProcess", "wxPyProcess");
|
||||
|
||||
|
||||
+10
-38
@@ -2,7 +2,7 @@
|
||||
# Don't modify this file, modify the SWIG interface instead.
|
||||
|
||||
"""
|
||||
Classes for a medai player control
|
||||
Classes for a media player control
|
||||
"""
|
||||
|
||||
import _media
|
||||
@@ -13,7 +13,6 @@ __docfilter__ = wx.__DocFilter(globals())
|
||||
MEDIASTATE_STOPPED = _media.MEDIASTATE_STOPPED
|
||||
MEDIASTATE_PAUSED = _media.MEDIASTATE_PAUSED
|
||||
MEDIASTATE_PLAYING = _media.MEDIASTATE_PLAYING
|
||||
MEDIATIMEFORMAT_TIME = _media.MEDIATIMEFORMAT_TIME
|
||||
class MediaEvent(_core.NotifyEvent):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxMediaEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
@@ -48,16 +47,6 @@ class MediaCtrl(_core.Control):
|
||||
del newobj.thisown
|
||||
self._setOORInfo(self)
|
||||
|
||||
def CreateFromURI(*args, **kwargs):
|
||||
"""
|
||||
CreateFromURI(self, Window parent, int id=-1, String location=EmptyString,
|
||||
Point pos=DefaultPosition, Size size=DefaultSize,
|
||||
long style=0, String szBackend=EmptyString,
|
||||
Validator validator=DefaultValidator,
|
||||
String name=MediaCtrlNameStr) -> bool
|
||||
"""
|
||||
return _media.MediaCtrl_CreateFromURI(*args, **kwargs)
|
||||
|
||||
def Create(*args, **kwargs):
|
||||
"""
|
||||
Create(self, Window parent, int id=-1, String fileName=EmptyString,
|
||||
@@ -108,21 +97,17 @@ class MediaCtrl(_core.Control):
|
||||
"""SetPlaybackRate(self, double dRate) -> bool"""
|
||||
return _media.MediaCtrl_SetPlaybackRate(*args, **kwargs)
|
||||
|
||||
def SetMediaPosition(*args, **kwargs):
|
||||
"""SetMediaPosition(self, wxLongLong where) -> bool"""
|
||||
return _media.MediaCtrl_SetMediaPosition(*args, **kwargs)
|
||||
def Seek(*args, **kwargs):
|
||||
"""Seek(self, wxFileOffset where, int mode=FromStart) -> wxFileOffset"""
|
||||
return _media.MediaCtrl_Seek(*args, **kwargs)
|
||||
|
||||
def GetMediaPosition(*args, **kwargs):
|
||||
"""
|
||||
GetMediaPosition(self) -> wxLongLong
|
||||
def Tell(*args, **kwargs):
|
||||
"""Tell(self) -> wxFileOffset"""
|
||||
return _media.MediaCtrl_Tell(*args, **kwargs)
|
||||
|
||||
Get the window's position.
|
||||
"""
|
||||
return _media.MediaCtrl_GetMediaPosition(*args, **kwargs)
|
||||
|
||||
def GetMediaDuration(*args, **kwargs):
|
||||
"""GetMediaDuration(self) -> wxLongLong"""
|
||||
return _media.MediaCtrl_GetMediaDuration(*args, **kwargs)
|
||||
def Length(*args, **kwargs):
|
||||
"""Length(self) -> wxFileOffset"""
|
||||
return _media.MediaCtrl_Length(*args, **kwargs)
|
||||
|
||||
|
||||
class MediaCtrlPtr(MediaCtrl):
|
||||
@@ -140,19 +125,6 @@ def PreMediaCtrl(*args, **kwargs):
|
||||
val.thisown = 1
|
||||
return val
|
||||
|
||||
def MediaCtrlFromURI(*args, **kwargs):
|
||||
"""
|
||||
MediaCtrlFromURI(Window parent, int id=-1, String location=EmptyString,
|
||||
Point pos=DefaultPosition, Size size=DefaultSize,
|
||||
long style=0, String szBackend=EmptyString,
|
||||
Validator validator=DefaultValidator,
|
||||
String name=MediaCtrlNameStr) -> MediaCtrl
|
||||
"""
|
||||
val = _media.new_MediaCtrlFromURI(*args, **kwargs)
|
||||
val.thisown = 1
|
||||
self._setOORInfo(self)
|
||||
return val
|
||||
|
||||
wxEVT_MEDIA_FINISHED = _media.wxEVT_MEDIA_FINISHED
|
||||
wxEVT_MEDIA_STOP = _media.wxEVT_MEDIA_STOP
|
||||
EVT_MEDIA_FINISHED = wx.PyEventBinder( wxEVT_MEDIA_FINISHED, 1)
|
||||
|
||||
+72
-328
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user