reSWIGged
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43093 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -6946,7 +6946,7 @@ class FontPickerCtrl(PickerBase):
|
||||
__repr__ = _swig_repr
|
||||
def __init__(self, *args, **kwargs):
|
||||
"""
|
||||
__init__(self, Window parent, int id=-1, Font initial=*wxNORMAL_FONT,
|
||||
__init__(self, Window parent, int id=-1, Font initial=wxNullFont,
|
||||
Point pos=DefaultPosition, Size size=DefaultSize,
|
||||
long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
|
||||
String name=FontPickerCtrlNameStr) -> FontPickerCtrl
|
||||
@@ -6956,7 +6956,7 @@ class FontPickerCtrl(PickerBase):
|
||||
|
||||
def Create(*args, **kwargs):
|
||||
"""
|
||||
Create(self, Window parent, int id=-1, Font initial=*wxNORMAL_FONT,
|
||||
Create(self, Window parent, int id=-1, Font initial=wxNullFont,
|
||||
Point pos=DefaultPosition, Size size=DefaultSize,
|
||||
long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
|
||||
String name=FontPickerCtrlNameStr) -> bool
|
||||
|
@@ -44856,7 +44856,7 @@ SWIGINTERN PyObject *_wrap_new_FontPickerCtrl(PyObject *SWIGUNUSEDPARM(self), Py
|
||||
PyObject *resultobj = 0;
|
||||
wxWindow *arg1 = (wxWindow *) 0 ;
|
||||
int arg2 = (int) -1 ;
|
||||
wxFont const &arg3_defvalue = *wxNORMAL_FONT ;
|
||||
wxFont const &arg3_defvalue = wxNullFont ;
|
||||
wxFont *arg3 = (wxFont *) &arg3_defvalue ;
|
||||
wxPoint const &arg4_defvalue = wxDefaultPosition ;
|
||||
wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
|
||||
@@ -44998,7 +44998,7 @@ SWIGINTERN PyObject *_wrap_FontPickerCtrl_Create(PyObject *SWIGUNUSEDPARM(self),
|
||||
wxFontPickerCtrl *arg1 = (wxFontPickerCtrl *) 0 ;
|
||||
wxWindow *arg2 = (wxWindow *) 0 ;
|
||||
int arg3 = (int) -1 ;
|
||||
wxFont const &arg4_defvalue = *wxNORMAL_FONT ;
|
||||
wxFont const &arg4_defvalue = wxNullFont ;
|
||||
wxFont *arg4 = (wxFont *) &arg4_defvalue ;
|
||||
wxPoint const &arg5_defvalue = wxDefaultPosition ;
|
||||
wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
|
||||
|
@@ -3758,18 +3758,6 @@ class EvtHandler(Object):
|
||||
"""ProcessPendingEvents(self)"""
|
||||
return _core_.EvtHandler_ProcessPendingEvents(*args, **kwargs)
|
||||
|
||||
def AllowReentrance(*args, **kwargs):
|
||||
"""AllowReentrance(self, bool allow=True)"""
|
||||
return _core_.EvtHandler_AllowReentrance(*args, **kwargs)
|
||||
|
||||
def IsReentranceAllowed(*args, **kwargs):
|
||||
"""IsReentranceAllowed(self) -> bool"""
|
||||
return _core_.EvtHandler_IsReentranceAllowed(*args, **kwargs)
|
||||
|
||||
def IsEventHandlingInProgress(*args, **kwargs):
|
||||
"""IsEventHandlingInProgress(self) -> bool"""
|
||||
return _core_.EvtHandler_IsEventHandlingInProgress(*args, **kwargs)
|
||||
|
||||
def Connect(*args, **kwargs):
|
||||
"""Connect(self, int id, int lastId, int eventType, PyObject func)"""
|
||||
return _core_.EvtHandler_Connect(*args, **kwargs)
|
||||
|
@@ -20884,106 +20884,6 @@ fail:
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_EvtHandler_AllowReentrance(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj = 0;
|
||||
wxEvtHandler *arg1 = (wxEvtHandler *) 0 ;
|
||||
bool arg2 = (bool) true ;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
bool val2 ;
|
||||
int ecode2 = 0 ;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
char * kwnames[] = {
|
||||
(char *) "self",(char *) "allow", NULL
|
||||
};
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:EvtHandler_AllowReentrance",kwnames,&obj0,&obj1)) SWIG_fail;
|
||||
res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_wxEvtHandler, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "EvtHandler_AllowReentrance" "', expected argument " "1"" of type '" "wxEvtHandler *""'");
|
||||
}
|
||||
arg1 = reinterpret_cast< wxEvtHandler * >(argp1);
|
||||
if (obj1) {
|
||||
ecode2 = SWIG_AsVal_bool(obj1, &val2);
|
||||
if (!SWIG_IsOK(ecode2)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "EvtHandler_AllowReentrance" "', expected argument " "2"" of type '" "bool""'");
|
||||
}
|
||||
arg2 = static_cast< bool >(val2);
|
||||
}
|
||||
{
|
||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||
(arg1)->AllowReentrance(arg2);
|
||||
wxPyEndAllowThreads(__tstate);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_Py_Void();
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_EvtHandler_IsReentranceAllowed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||
PyObject *resultobj = 0;
|
||||
wxEvtHandler *arg1 = (wxEvtHandler *) 0 ;
|
||||
bool result;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
PyObject *swig_obj[1] ;
|
||||
|
||||
if (!args) SWIG_fail;
|
||||
swig_obj[0] = args;
|
||||
res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_wxEvtHandler, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "EvtHandler_IsReentranceAllowed" "', expected argument " "1"" of type '" "wxEvtHandler *""'");
|
||||
}
|
||||
arg1 = reinterpret_cast< wxEvtHandler * >(argp1);
|
||||
{
|
||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||
result = (bool)(arg1)->IsReentranceAllowed();
|
||||
wxPyEndAllowThreads(__tstate);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
{
|
||||
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
||||
}
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_EvtHandler_IsEventHandlingInProgress(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||
PyObject *resultobj = 0;
|
||||
wxEvtHandler *arg1 = (wxEvtHandler *) 0 ;
|
||||
bool result;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
PyObject *swig_obj[1] ;
|
||||
|
||||
if (!args) SWIG_fail;
|
||||
swig_obj[0] = args;
|
||||
res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_wxEvtHandler, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "EvtHandler_IsEventHandlingInProgress" "', expected argument " "1"" of type '" "wxEvtHandler *""'");
|
||||
}
|
||||
arg1 = reinterpret_cast< wxEvtHandler * >(argp1);
|
||||
{
|
||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||
result = (bool)(arg1)->IsEventHandlingInProgress();
|
||||
wxPyEndAllowThreads(__tstate);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
{
|
||||
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
||||
}
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_EvtHandler_Connect(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj = 0;
|
||||
wxEvtHandler *arg1 = (wxEvtHandler *) 0 ;
|
||||
@@ -56916,9 +56816,6 @@ static PyMethodDef SwigMethods[] = {
|
||||
{ (char *)"EvtHandler_ProcessEvent", (PyCFunction) _wrap_EvtHandler_ProcessEvent, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler_AddPendingEvent", (PyCFunction) _wrap_EvtHandler_AddPendingEvent, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler_ProcessPendingEvents", (PyCFunction)_wrap_EvtHandler_ProcessPendingEvents, METH_O, NULL},
|
||||
{ (char *)"EvtHandler_AllowReentrance", (PyCFunction) _wrap_EvtHandler_AllowReentrance, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler_IsReentranceAllowed", (PyCFunction)_wrap_EvtHandler_IsReentranceAllowed, METH_O, NULL},
|
||||
{ (char *)"EvtHandler_IsEventHandlingInProgress", (PyCFunction)_wrap_EvtHandler_IsEventHandlingInProgress, METH_O, NULL},
|
||||
{ (char *)"EvtHandler_Connect", (PyCFunction) _wrap_EvtHandler_Connect, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler_Disconnect", (PyCFunction) _wrap_EvtHandler_Disconnect, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler__setOORInfo", (PyCFunction) _wrap_EvtHandler__setOORInfo, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
|
@@ -5369,6 +5369,17 @@ class GraphicsContext(GraphicsObject):
|
||||
return val
|
||||
|
||||
Create = staticmethod(Create)
|
||||
def CreateMeasuringContext(*args):
|
||||
"""
|
||||
CreateMeasuringContext() -> GraphicsContext
|
||||
|
||||
Create a lightwieght context that can be used for measuring text only.
|
||||
"""
|
||||
val = _gdi_.GraphicsContext_CreateMeasuringContext(*args)
|
||||
val.__dc = args[0] # save a ref so the dc will not be deleted before self
|
||||
return val
|
||||
|
||||
CreateMeasuringContext = staticmethod(CreateMeasuringContext)
|
||||
def CreateFromNative(*args, **kwargs):
|
||||
"""
|
||||
CreateFromNative(void context) -> GraphicsContext
|
||||
@@ -5604,18 +5615,14 @@ class GraphicsContext(GraphicsObject):
|
||||
|
||||
def DrawText(*args, **kwargs):
|
||||
"""
|
||||
DrawText(self, String str, Double x, Double y)
|
||||
DrawText(self, String str, Double x, Double y, GraphicsBrush backgroundBrush=NullGraphicsBrush)
|
||||
|
||||
Draws a text at the defined position.
|
||||
Draws a text string at the defined position.
|
||||
"""
|
||||
return _gdi_.GraphicsContext_DrawText(*args, **kwargs)
|
||||
|
||||
def DrawRotatedText(*args, **kwargs):
|
||||
"""
|
||||
DrawRotatedText(self, String str, Double x, Double y, Double angle)
|
||||
|
||||
Draws a text at the defined position, at the given angle.
|
||||
"""
|
||||
"""DrawRotatedText(self, String str, Double x, Double y, Double angle, GraphicsBrush backgroundBrush=NullGraphicsBrush)"""
|
||||
return _gdi_.GraphicsContext_DrawRotatedText(*args, **kwargs)
|
||||
|
||||
def GetFullTextExtent(*args, **kwargs):
|
||||
@@ -5750,6 +5757,16 @@ def GraphicsContext_Create(*args):
|
||||
val.__dc = args[0] # save a ref so the dc will not be deleted before self
|
||||
return val
|
||||
|
||||
def GraphicsContext_CreateMeasuringContext(*args):
|
||||
"""
|
||||
GraphicsContext_CreateMeasuringContext() -> GraphicsContext
|
||||
|
||||
Create a lightwieght context that can be used for measuring text only.
|
||||
"""
|
||||
val = _gdi_.GraphicsContext_CreateMeasuringContext(*args)
|
||||
val.__dc = args[0] # save a ref so the dc will not be deleted before self
|
||||
return val
|
||||
|
||||
def GraphicsContext_CreateFromNative(*args, **kwargs):
|
||||
"""
|
||||
GraphicsContext_CreateFromNative(void context) -> GraphicsContext
|
||||
@@ -5787,6 +5804,10 @@ class GraphicsRenderer(_core.Object):
|
||||
"""
|
||||
return _gdi_.GraphicsRenderer_CreateContext(*args)
|
||||
|
||||
def CreateMeasuringContext(*args, **kwargs):
|
||||
"""CreateMeasuringContext(self) -> GraphicsContext"""
|
||||
return _gdi_.GraphicsRenderer_CreateMeasuringContext(*args, **kwargs)
|
||||
|
||||
def CreateContextFromNativeContext(*args, **kwargs):
|
||||
"""CreateContextFromNativeContext(self, void context) -> GraphicsContext"""
|
||||
return _gdi_.GraphicsRenderer_CreateContextFromNativeContext(*args, **kwargs)
|
||||
|
@@ -3901,6 +3901,18 @@ public:
|
||||
|
||||
#endif
|
||||
|
||||
SWIGINTERN void wxGraphicsContext_DrawText(wxGraphicsContext *self,wxString const &str,wxDouble x,wxDouble y,wxGraphicsBrush const &backgroundBrush=wxNullGraphicsBrush){
|
||||
if ( !backgroundBrush.IsNull() )
|
||||
self->DrawText(str, x, y, backgroundBrush);
|
||||
else
|
||||
self->DrawText(str, x, y);
|
||||
}
|
||||
SWIGINTERN void wxGraphicsContext_DrawRotatedText(wxGraphicsContext *self,wxString const &str,wxDouble x,wxDouble y,wxDouble angle,wxGraphicsBrush const &backgroundBrush=wxNullGraphicsBrush){
|
||||
if ( !backgroundBrush.IsNull() )
|
||||
self->DrawText(str, x, y, angle, backgroundBrush);
|
||||
else
|
||||
self->DrawText(str, x, y, angle);
|
||||
}
|
||||
SWIGINTERN PyObject *wxGraphicsContext_GetTextExtent(wxGraphicsContext *self,wxString const &text){
|
||||
wxDouble width = 0.0,
|
||||
height = 0.0;
|
||||
@@ -27416,6 +27428,22 @@ fail:
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_GraphicsContext_CreateMeasuringContext(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||
PyObject *resultobj = 0;
|
||||
wxGraphicsContext *result = 0 ;
|
||||
|
||||
if (!SWIG_Python_UnpackTuple(args,"GraphicsContext_CreateMeasuringContext",0,0,0)) SWIG_fail;
|
||||
{
|
||||
result = (wxGraphicsContext *)wxGraphicsContext::Create();
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_wxGraphicsContext, SWIG_POINTER_OWN | 0 );
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_GraphicsContext_CreateFromNative(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj = 0;
|
||||
void *arg1 = (void *) 0 ;
|
||||
@@ -28755,6 +28783,8 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawText(PyObject *SWIGUNUSEDPARM(sel
|
||||
wxString *arg2 = 0 ;
|
||||
wxDouble arg3 ;
|
||||
wxDouble arg4 ;
|
||||
wxGraphicsBrush const &arg5_defvalue = wxNullGraphicsBrush ;
|
||||
wxGraphicsBrush *arg5 = (wxGraphicsBrush *) &arg5_defvalue ;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
bool temp2 = false ;
|
||||
@@ -28762,15 +28792,18 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawText(PyObject *SWIGUNUSEDPARM(sel
|
||||
int ecode3 = 0 ;
|
||||
double val4 ;
|
||||
int ecode4 = 0 ;
|
||||
void *argp5 = 0 ;
|
||||
int res5 = 0 ;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
PyObject * obj2 = 0 ;
|
||||
PyObject * obj3 = 0 ;
|
||||
PyObject * obj4 = 0 ;
|
||||
char * kwnames[] = {
|
||||
(char *) "self",(char *) "str",(char *) "x",(char *) "y", NULL
|
||||
(char *) "self",(char *) "str",(char *) "x",(char *) "y",(char *) "backgroundBrush", NULL
|
||||
};
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO:GraphicsContext_DrawText",kwnames,&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO|O:GraphicsContext_DrawText",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
|
||||
res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_wxGraphicsContext, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GraphicsContext_DrawText" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
|
||||
@@ -28791,8 +28824,18 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawText(PyObject *SWIGUNUSEDPARM(sel
|
||||
SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "GraphicsContext_DrawText" "', expected argument " "4"" of type '" "wxDouble""'");
|
||||
}
|
||||
arg4 = static_cast< wxDouble >(val4);
|
||||
if (obj4) {
|
||||
res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_wxGraphicsBrush, 0 | 0);
|
||||
if (!SWIG_IsOK(res5)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "GraphicsContext_DrawText" "', expected argument " "5"" of type '" "wxGraphicsBrush const &""'");
|
||||
}
|
||||
if (!argp5) {
|
||||
SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GraphicsContext_DrawText" "', expected argument " "5"" of type '" "wxGraphicsBrush const &""'");
|
||||
}
|
||||
arg5 = reinterpret_cast< wxGraphicsBrush * >(argp5);
|
||||
}
|
||||
{
|
||||
(arg1)->DrawText((wxString const &)*arg2,arg3,arg4);
|
||||
wxGraphicsContext_DrawText(arg1,(wxString const &)*arg2,arg3,arg4,(wxGraphicsBrush const &)*arg5);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_Py_Void();
|
||||
@@ -28817,6 +28860,8 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawRotatedText(PyObject *SWIGUNUSEDP
|
||||
wxDouble arg3 ;
|
||||
wxDouble arg4 ;
|
||||
wxDouble arg5 ;
|
||||
wxGraphicsBrush const &arg6_defvalue = wxNullGraphicsBrush ;
|
||||
wxGraphicsBrush *arg6 = (wxGraphicsBrush *) &arg6_defvalue ;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
bool temp2 = false ;
|
||||
@@ -28826,16 +28871,19 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawRotatedText(PyObject *SWIGUNUSEDP
|
||||
int ecode4 = 0 ;
|
||||
double val5 ;
|
||||
int ecode5 = 0 ;
|
||||
void *argp6 = 0 ;
|
||||
int res6 = 0 ;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
PyObject * obj2 = 0 ;
|
||||
PyObject * obj3 = 0 ;
|
||||
PyObject * obj4 = 0 ;
|
||||
PyObject * obj5 = 0 ;
|
||||
char * kwnames[] = {
|
||||
(char *) "self",(char *) "str",(char *) "x",(char *) "y",(char *) "angle", NULL
|
||||
(char *) "self",(char *) "str",(char *) "x",(char *) "y",(char *) "angle",(char *) "backgroundBrush", NULL
|
||||
};
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO:GraphicsContext_DrawRotatedText",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO|O:GraphicsContext_DrawRotatedText",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail;
|
||||
res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_wxGraphicsContext, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
|
||||
@@ -28861,8 +28909,18 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawRotatedText(PyObject *SWIGUNUSEDP
|
||||
SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "5"" of type '" "wxDouble""'");
|
||||
}
|
||||
arg5 = static_cast< wxDouble >(val5);
|
||||
if (obj5) {
|
||||
res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_wxGraphicsBrush, 0 | 0);
|
||||
if (!SWIG_IsOK(res6)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "6"" of type '" "wxGraphicsBrush const &""'");
|
||||
}
|
||||
if (!argp6) {
|
||||
SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "6"" of type '" "wxGraphicsBrush const &""'");
|
||||
}
|
||||
arg6 = reinterpret_cast< wxGraphicsBrush * >(argp6);
|
||||
}
|
||||
{
|
||||
(arg1)->DrawText((wxString const &)*arg2,arg3,arg4,arg5);
|
||||
wxGraphicsContext_DrawRotatedText(arg1,(wxString const &)*arg2,arg3,arg4,arg5,(wxGraphicsBrush const &)*arg6);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_Py_Void();
|
||||
@@ -29759,6 +29817,32 @@ fail:
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_GraphicsRenderer_CreateMeasuringContext(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||
PyObject *resultobj = 0;
|
||||
wxGraphicsRenderer *arg1 = (wxGraphicsRenderer *) 0 ;
|
||||
wxGraphicsContext *result = 0 ;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
PyObject *swig_obj[1] ;
|
||||
|
||||
if (!args) SWIG_fail;
|
||||
swig_obj[0] = args;
|
||||
res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_wxGraphicsRenderer, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GraphicsRenderer_CreateMeasuringContext" "', expected argument " "1"" of type '" "wxGraphicsRenderer *""'");
|
||||
}
|
||||
arg1 = reinterpret_cast< wxGraphicsRenderer * >(argp1);
|
||||
{
|
||||
result = (wxGraphicsContext *)(arg1)->CreateMeasuringContext();
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_wxGraphicsContext, 0 | 0 );
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_GraphicsRenderer_CreateContextFromNativeContext(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj = 0;
|
||||
wxGraphicsRenderer *arg1 = (wxGraphicsRenderer *) 0 ;
|
||||
@@ -38765,6 +38849,7 @@ static PyMethodDef SwigMethods[] = {
|
||||
{ (char *)"GraphicsPath_swiginit", GraphicsPath_swiginit, METH_VARARGS, NULL},
|
||||
{ (char *)"delete_GraphicsContext", (PyCFunction)_wrap_delete_GraphicsContext, METH_O, NULL},
|
||||
{ (char *)"GraphicsContext_Create", _wrap_GraphicsContext_Create, METH_VARARGS, NULL},
|
||||
{ (char *)"GraphicsContext_CreateMeasuringContext", (PyCFunction)_wrap_GraphicsContext_CreateMeasuringContext, METH_NOARGS, NULL},
|
||||
{ (char *)"GraphicsContext_CreateFromNative", (PyCFunction) _wrap_GraphicsContext_CreateFromNative, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"GraphicsContext_CreateFromNativeWindow", (PyCFunction) _wrap_GraphicsContext_CreateFromNativeWindow, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"GraphicsContext_CreatePath", (PyCFunction)_wrap_GraphicsContext_CreatePath, METH_O, NULL},
|
||||
@@ -38811,6 +38896,7 @@ static PyMethodDef SwigMethods[] = {
|
||||
{ (char *)"delete_GraphicsRenderer", (PyCFunction)_wrap_delete_GraphicsRenderer, METH_O, NULL},
|
||||
{ (char *)"GraphicsRenderer_GetDefaultRenderer", (PyCFunction)_wrap_GraphicsRenderer_GetDefaultRenderer, METH_NOARGS, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreateContext", _wrap_GraphicsRenderer_CreateContext, METH_VARARGS, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreateMeasuringContext", (PyCFunction)_wrap_GraphicsRenderer_CreateMeasuringContext, METH_O, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreateContextFromNativeContext", (PyCFunction) _wrap_GraphicsRenderer_CreateContextFromNativeContext, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreateContextFromNativeWindow", (PyCFunction) _wrap_GraphicsRenderer_CreateContextFromNativeWindow, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreatePath", (PyCFunction)_wrap_GraphicsRenderer_CreatePath, METH_O, NULL},
|
||||
|
@@ -6939,7 +6939,7 @@ class FontPickerCtrl(PickerBase):
|
||||
__repr__ = _swig_repr
|
||||
def __init__(self, *args, **kwargs):
|
||||
"""
|
||||
__init__(self, Window parent, int id=-1, Font initial=*wxNORMAL_FONT,
|
||||
__init__(self, Window parent, int id=-1, Font initial=wxNullFont,
|
||||
Point pos=DefaultPosition, Size size=DefaultSize,
|
||||
long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
|
||||
String name=FontPickerCtrlNameStr) -> FontPickerCtrl
|
||||
@@ -6949,7 +6949,7 @@ class FontPickerCtrl(PickerBase):
|
||||
|
||||
def Create(*args, **kwargs):
|
||||
"""
|
||||
Create(self, Window parent, int id=-1, Font initial=*wxNORMAL_FONT,
|
||||
Create(self, Window parent, int id=-1, Font initial=wxNullFont,
|
||||
Point pos=DefaultPosition, Size size=DefaultSize,
|
||||
long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
|
||||
String name=FontPickerCtrlNameStr) -> bool
|
||||
|
@@ -44781,7 +44781,7 @@ SWIGINTERN PyObject *_wrap_new_FontPickerCtrl(PyObject *SWIGUNUSEDPARM(self), Py
|
||||
PyObject *resultobj = 0;
|
||||
wxWindow *arg1 = (wxWindow *) 0 ;
|
||||
int arg2 = (int) -1 ;
|
||||
wxFont const &arg3_defvalue = *wxNORMAL_FONT ;
|
||||
wxFont const &arg3_defvalue = wxNullFont ;
|
||||
wxFont *arg3 = (wxFont *) &arg3_defvalue ;
|
||||
wxPoint const &arg4_defvalue = wxDefaultPosition ;
|
||||
wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
|
||||
@@ -44923,7 +44923,7 @@ SWIGINTERN PyObject *_wrap_FontPickerCtrl_Create(PyObject *SWIGUNUSEDPARM(self),
|
||||
wxFontPickerCtrl *arg1 = (wxFontPickerCtrl *) 0 ;
|
||||
wxWindow *arg2 = (wxWindow *) 0 ;
|
||||
int arg3 = (int) -1 ;
|
||||
wxFont const &arg4_defvalue = *wxNORMAL_FONT ;
|
||||
wxFont const &arg4_defvalue = wxNullFont ;
|
||||
wxFont *arg4 = (wxFont *) &arg4_defvalue ;
|
||||
wxPoint const &arg5_defvalue = wxDefaultPosition ;
|
||||
wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
|
||||
|
@@ -3758,18 +3758,6 @@ class EvtHandler(Object):
|
||||
"""ProcessPendingEvents(self)"""
|
||||
return _core_.EvtHandler_ProcessPendingEvents(*args, **kwargs)
|
||||
|
||||
def AllowReentrance(*args, **kwargs):
|
||||
"""AllowReentrance(self, bool allow=True)"""
|
||||
return _core_.EvtHandler_AllowReentrance(*args, **kwargs)
|
||||
|
||||
def IsReentranceAllowed(*args, **kwargs):
|
||||
"""IsReentranceAllowed(self) -> bool"""
|
||||
return _core_.EvtHandler_IsReentranceAllowed(*args, **kwargs)
|
||||
|
||||
def IsEventHandlingInProgress(*args, **kwargs):
|
||||
"""IsEventHandlingInProgress(self) -> bool"""
|
||||
return _core_.EvtHandler_IsEventHandlingInProgress(*args, **kwargs)
|
||||
|
||||
def Connect(*args, **kwargs):
|
||||
"""Connect(self, int id, int lastId, int eventType, PyObject func)"""
|
||||
return _core_.EvtHandler_Connect(*args, **kwargs)
|
||||
|
@@ -20883,106 +20883,6 @@ fail:
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_EvtHandler_AllowReentrance(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj = 0;
|
||||
wxEvtHandler *arg1 = (wxEvtHandler *) 0 ;
|
||||
bool arg2 = (bool) true ;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
bool val2 ;
|
||||
int ecode2 = 0 ;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
char * kwnames[] = {
|
||||
(char *) "self",(char *) "allow", NULL
|
||||
};
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:EvtHandler_AllowReentrance",kwnames,&obj0,&obj1)) SWIG_fail;
|
||||
res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_wxEvtHandler, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "EvtHandler_AllowReentrance" "', expected argument " "1"" of type '" "wxEvtHandler *""'");
|
||||
}
|
||||
arg1 = reinterpret_cast< wxEvtHandler * >(argp1);
|
||||
if (obj1) {
|
||||
ecode2 = SWIG_AsVal_bool(obj1, &val2);
|
||||
if (!SWIG_IsOK(ecode2)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "EvtHandler_AllowReentrance" "', expected argument " "2"" of type '" "bool""'");
|
||||
}
|
||||
arg2 = static_cast< bool >(val2);
|
||||
}
|
||||
{
|
||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||
(arg1)->AllowReentrance(arg2);
|
||||
wxPyEndAllowThreads(__tstate);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_Py_Void();
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_EvtHandler_IsReentranceAllowed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||
PyObject *resultobj = 0;
|
||||
wxEvtHandler *arg1 = (wxEvtHandler *) 0 ;
|
||||
bool result;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
PyObject *swig_obj[1] ;
|
||||
|
||||
if (!args) SWIG_fail;
|
||||
swig_obj[0] = args;
|
||||
res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_wxEvtHandler, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "EvtHandler_IsReentranceAllowed" "', expected argument " "1"" of type '" "wxEvtHandler *""'");
|
||||
}
|
||||
arg1 = reinterpret_cast< wxEvtHandler * >(argp1);
|
||||
{
|
||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||
result = (bool)(arg1)->IsReentranceAllowed();
|
||||
wxPyEndAllowThreads(__tstate);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
{
|
||||
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
||||
}
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_EvtHandler_IsEventHandlingInProgress(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||
PyObject *resultobj = 0;
|
||||
wxEvtHandler *arg1 = (wxEvtHandler *) 0 ;
|
||||
bool result;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
PyObject *swig_obj[1] ;
|
||||
|
||||
if (!args) SWIG_fail;
|
||||
swig_obj[0] = args;
|
||||
res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_wxEvtHandler, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "EvtHandler_IsEventHandlingInProgress" "', expected argument " "1"" of type '" "wxEvtHandler *""'");
|
||||
}
|
||||
arg1 = reinterpret_cast< wxEvtHandler * >(argp1);
|
||||
{
|
||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||
result = (bool)(arg1)->IsEventHandlingInProgress();
|
||||
wxPyEndAllowThreads(__tstate);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
{
|
||||
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
||||
}
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_EvtHandler_Connect(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj = 0;
|
||||
wxEvtHandler *arg1 = (wxEvtHandler *) 0 ;
|
||||
@@ -56915,9 +56815,6 @@ static PyMethodDef SwigMethods[] = {
|
||||
{ (char *)"EvtHandler_ProcessEvent", (PyCFunction) _wrap_EvtHandler_ProcessEvent, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler_AddPendingEvent", (PyCFunction) _wrap_EvtHandler_AddPendingEvent, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler_ProcessPendingEvents", (PyCFunction)_wrap_EvtHandler_ProcessPendingEvents, METH_O, NULL},
|
||||
{ (char *)"EvtHandler_AllowReentrance", (PyCFunction) _wrap_EvtHandler_AllowReentrance, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler_IsReentranceAllowed", (PyCFunction)_wrap_EvtHandler_IsReentranceAllowed, METH_O, NULL},
|
||||
{ (char *)"EvtHandler_IsEventHandlingInProgress", (PyCFunction)_wrap_EvtHandler_IsEventHandlingInProgress, METH_O, NULL},
|
||||
{ (char *)"EvtHandler_Connect", (PyCFunction) _wrap_EvtHandler_Connect, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler_Disconnect", (PyCFunction) _wrap_EvtHandler_Disconnect, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler__setOORInfo", (PyCFunction) _wrap_EvtHandler__setOORInfo, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
|
@@ -5396,6 +5396,17 @@ class GraphicsContext(GraphicsObject):
|
||||
return val
|
||||
|
||||
Create = staticmethod(Create)
|
||||
def CreateMeasuringContext(*args):
|
||||
"""
|
||||
CreateMeasuringContext() -> GraphicsContext
|
||||
|
||||
Create a lightwieght context that can be used for measuring text only.
|
||||
"""
|
||||
val = _gdi_.GraphicsContext_CreateMeasuringContext(*args)
|
||||
val.__dc = args[0] # save a ref so the dc will not be deleted before self
|
||||
return val
|
||||
|
||||
CreateMeasuringContext = staticmethod(CreateMeasuringContext)
|
||||
def CreateFromNative(*args, **kwargs):
|
||||
"""
|
||||
CreateFromNative(void context) -> GraphicsContext
|
||||
@@ -5631,18 +5642,14 @@ class GraphicsContext(GraphicsObject):
|
||||
|
||||
def DrawText(*args, **kwargs):
|
||||
"""
|
||||
DrawText(self, String str, Double x, Double y)
|
||||
DrawText(self, String str, Double x, Double y, GraphicsBrush backgroundBrush=NullGraphicsBrush)
|
||||
|
||||
Draws a text at the defined position.
|
||||
Draws a text string at the defined position.
|
||||
"""
|
||||
return _gdi_.GraphicsContext_DrawText(*args, **kwargs)
|
||||
|
||||
def DrawRotatedText(*args, **kwargs):
|
||||
"""
|
||||
DrawRotatedText(self, String str, Double x, Double y, Double angle)
|
||||
|
||||
Draws a text at the defined position, at the given angle.
|
||||
"""
|
||||
"""DrawRotatedText(self, String str, Double x, Double y, Double angle, GraphicsBrush backgroundBrush=NullGraphicsBrush)"""
|
||||
return _gdi_.GraphicsContext_DrawRotatedText(*args, **kwargs)
|
||||
|
||||
def GetFullTextExtent(*args, **kwargs):
|
||||
@@ -5777,6 +5784,16 @@ def GraphicsContext_Create(*args):
|
||||
val.__dc = args[0] # save a ref so the dc will not be deleted before self
|
||||
return val
|
||||
|
||||
def GraphicsContext_CreateMeasuringContext(*args):
|
||||
"""
|
||||
GraphicsContext_CreateMeasuringContext() -> GraphicsContext
|
||||
|
||||
Create a lightwieght context that can be used for measuring text only.
|
||||
"""
|
||||
val = _gdi_.GraphicsContext_CreateMeasuringContext(*args)
|
||||
val.__dc = args[0] # save a ref so the dc will not be deleted before self
|
||||
return val
|
||||
|
||||
def GraphicsContext_CreateFromNative(*args, **kwargs):
|
||||
"""
|
||||
GraphicsContext_CreateFromNative(void context) -> GraphicsContext
|
||||
@@ -5814,6 +5831,10 @@ class GraphicsRenderer(_core.Object):
|
||||
"""
|
||||
return _gdi_.GraphicsRenderer_CreateContext(*args)
|
||||
|
||||
def CreateMeasuringContext(*args, **kwargs):
|
||||
"""CreateMeasuringContext(self) -> GraphicsContext"""
|
||||
return _gdi_.GraphicsRenderer_CreateMeasuringContext(*args, **kwargs)
|
||||
|
||||
def CreateContextFromNativeContext(*args, **kwargs):
|
||||
"""CreateContextFromNativeContext(self, void context) -> GraphicsContext"""
|
||||
return _gdi_.GraphicsRenderer_CreateContextFromNativeContext(*args, **kwargs)
|
||||
|
@@ -3905,6 +3905,18 @@ public:
|
||||
|
||||
#endif
|
||||
|
||||
SWIGINTERN void wxGraphicsContext_DrawText(wxGraphicsContext *self,wxString const &str,wxDouble x,wxDouble y,wxGraphicsBrush const &backgroundBrush=wxNullGraphicsBrush){
|
||||
if ( !backgroundBrush.IsNull() )
|
||||
self->DrawText(str, x, y, backgroundBrush);
|
||||
else
|
||||
self->DrawText(str, x, y);
|
||||
}
|
||||
SWIGINTERN void wxGraphicsContext_DrawRotatedText(wxGraphicsContext *self,wxString const &str,wxDouble x,wxDouble y,wxDouble angle,wxGraphicsBrush const &backgroundBrush=wxNullGraphicsBrush){
|
||||
if ( !backgroundBrush.IsNull() )
|
||||
self->DrawText(str, x, y, angle, backgroundBrush);
|
||||
else
|
||||
self->DrawText(str, x, y, angle);
|
||||
}
|
||||
SWIGINTERN PyObject *wxGraphicsContext_GetTextExtent(wxGraphicsContext *self,wxString const &text){
|
||||
wxDouble width = 0.0,
|
||||
height = 0.0;
|
||||
@@ -27625,6 +27637,22 @@ fail:
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_GraphicsContext_CreateMeasuringContext(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||
PyObject *resultobj = 0;
|
||||
wxGraphicsContext *result = 0 ;
|
||||
|
||||
if (!SWIG_Python_UnpackTuple(args,"GraphicsContext_CreateMeasuringContext",0,0,0)) SWIG_fail;
|
||||
{
|
||||
result = (wxGraphicsContext *)wxGraphicsContext::Create();
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_wxGraphicsContext, SWIG_POINTER_OWN | 0 );
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_GraphicsContext_CreateFromNative(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj = 0;
|
||||
void *arg1 = (void *) 0 ;
|
||||
@@ -28964,6 +28992,8 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawText(PyObject *SWIGUNUSEDPARM(sel
|
||||
wxString *arg2 = 0 ;
|
||||
wxDouble arg3 ;
|
||||
wxDouble arg4 ;
|
||||
wxGraphicsBrush const &arg5_defvalue = wxNullGraphicsBrush ;
|
||||
wxGraphicsBrush *arg5 = (wxGraphicsBrush *) &arg5_defvalue ;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
bool temp2 = false ;
|
||||
@@ -28971,15 +29001,18 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawText(PyObject *SWIGUNUSEDPARM(sel
|
||||
int ecode3 = 0 ;
|
||||
double val4 ;
|
||||
int ecode4 = 0 ;
|
||||
void *argp5 = 0 ;
|
||||
int res5 = 0 ;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
PyObject * obj2 = 0 ;
|
||||
PyObject * obj3 = 0 ;
|
||||
PyObject * obj4 = 0 ;
|
||||
char * kwnames[] = {
|
||||
(char *) "self",(char *) "str",(char *) "x",(char *) "y", NULL
|
||||
(char *) "self",(char *) "str",(char *) "x",(char *) "y",(char *) "backgroundBrush", NULL
|
||||
};
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO:GraphicsContext_DrawText",kwnames,&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO|O:GraphicsContext_DrawText",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
|
||||
res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_wxGraphicsContext, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GraphicsContext_DrawText" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
|
||||
@@ -29000,8 +29033,18 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawText(PyObject *SWIGUNUSEDPARM(sel
|
||||
SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "GraphicsContext_DrawText" "', expected argument " "4"" of type '" "wxDouble""'");
|
||||
}
|
||||
arg4 = static_cast< wxDouble >(val4);
|
||||
if (obj4) {
|
||||
res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_wxGraphicsBrush, 0 | 0);
|
||||
if (!SWIG_IsOK(res5)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "GraphicsContext_DrawText" "', expected argument " "5"" of type '" "wxGraphicsBrush const &""'");
|
||||
}
|
||||
if (!argp5) {
|
||||
SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GraphicsContext_DrawText" "', expected argument " "5"" of type '" "wxGraphicsBrush const &""'");
|
||||
}
|
||||
arg5 = reinterpret_cast< wxGraphicsBrush * >(argp5);
|
||||
}
|
||||
{
|
||||
(arg1)->DrawText((wxString const &)*arg2,arg3,arg4);
|
||||
wxGraphicsContext_DrawText(arg1,(wxString const &)*arg2,arg3,arg4,(wxGraphicsBrush const &)*arg5);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_Py_Void();
|
||||
@@ -29026,6 +29069,8 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawRotatedText(PyObject *SWIGUNUSEDP
|
||||
wxDouble arg3 ;
|
||||
wxDouble arg4 ;
|
||||
wxDouble arg5 ;
|
||||
wxGraphicsBrush const &arg6_defvalue = wxNullGraphicsBrush ;
|
||||
wxGraphicsBrush *arg6 = (wxGraphicsBrush *) &arg6_defvalue ;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
bool temp2 = false ;
|
||||
@@ -29035,16 +29080,19 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawRotatedText(PyObject *SWIGUNUSEDP
|
||||
int ecode4 = 0 ;
|
||||
double val5 ;
|
||||
int ecode5 = 0 ;
|
||||
void *argp6 = 0 ;
|
||||
int res6 = 0 ;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
PyObject * obj2 = 0 ;
|
||||
PyObject * obj3 = 0 ;
|
||||
PyObject * obj4 = 0 ;
|
||||
PyObject * obj5 = 0 ;
|
||||
char * kwnames[] = {
|
||||
(char *) "self",(char *) "str",(char *) "x",(char *) "y",(char *) "angle", NULL
|
||||
(char *) "self",(char *) "str",(char *) "x",(char *) "y",(char *) "angle",(char *) "backgroundBrush", NULL
|
||||
};
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO:GraphicsContext_DrawRotatedText",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO|O:GraphicsContext_DrawRotatedText",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail;
|
||||
res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_wxGraphicsContext, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
|
||||
@@ -29070,8 +29118,18 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawRotatedText(PyObject *SWIGUNUSEDP
|
||||
SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "5"" of type '" "wxDouble""'");
|
||||
}
|
||||
arg5 = static_cast< wxDouble >(val5);
|
||||
if (obj5) {
|
||||
res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_wxGraphicsBrush, 0 | 0);
|
||||
if (!SWIG_IsOK(res6)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "6"" of type '" "wxGraphicsBrush const &""'");
|
||||
}
|
||||
if (!argp6) {
|
||||
SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "6"" of type '" "wxGraphicsBrush const &""'");
|
||||
}
|
||||
arg6 = reinterpret_cast< wxGraphicsBrush * >(argp6);
|
||||
}
|
||||
{
|
||||
(arg1)->DrawText((wxString const &)*arg2,arg3,arg4,arg5);
|
||||
wxGraphicsContext_DrawRotatedText(arg1,(wxString const &)*arg2,arg3,arg4,arg5,(wxGraphicsBrush const &)*arg6);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_Py_Void();
|
||||
@@ -29968,6 +30026,32 @@ fail:
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_GraphicsRenderer_CreateMeasuringContext(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||
PyObject *resultobj = 0;
|
||||
wxGraphicsRenderer *arg1 = (wxGraphicsRenderer *) 0 ;
|
||||
wxGraphicsContext *result = 0 ;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
PyObject *swig_obj[1] ;
|
||||
|
||||
if (!args) SWIG_fail;
|
||||
swig_obj[0] = args;
|
||||
res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_wxGraphicsRenderer, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GraphicsRenderer_CreateMeasuringContext" "', expected argument " "1"" of type '" "wxGraphicsRenderer *""'");
|
||||
}
|
||||
arg1 = reinterpret_cast< wxGraphicsRenderer * >(argp1);
|
||||
{
|
||||
result = (wxGraphicsContext *)(arg1)->CreateMeasuringContext();
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_wxGraphicsContext, 0 | 0 );
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_GraphicsRenderer_CreateContextFromNativeContext(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj = 0;
|
||||
wxGraphicsRenderer *arg1 = (wxGraphicsRenderer *) 0 ;
|
||||
@@ -38981,6 +39065,7 @@ static PyMethodDef SwigMethods[] = {
|
||||
{ (char *)"GraphicsPath_swiginit", GraphicsPath_swiginit, METH_VARARGS, NULL},
|
||||
{ (char *)"delete_GraphicsContext", (PyCFunction)_wrap_delete_GraphicsContext, METH_O, NULL},
|
||||
{ (char *)"GraphicsContext_Create", _wrap_GraphicsContext_Create, METH_VARARGS, NULL},
|
||||
{ (char *)"GraphicsContext_CreateMeasuringContext", (PyCFunction)_wrap_GraphicsContext_CreateMeasuringContext, METH_NOARGS, NULL},
|
||||
{ (char *)"GraphicsContext_CreateFromNative", (PyCFunction) _wrap_GraphicsContext_CreateFromNative, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"GraphicsContext_CreateFromNativeWindow", (PyCFunction) _wrap_GraphicsContext_CreateFromNativeWindow, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"GraphicsContext_CreatePath", (PyCFunction)_wrap_GraphicsContext_CreatePath, METH_O, NULL},
|
||||
@@ -39027,6 +39112,7 @@ static PyMethodDef SwigMethods[] = {
|
||||
{ (char *)"delete_GraphicsRenderer", (PyCFunction)_wrap_delete_GraphicsRenderer, METH_O, NULL},
|
||||
{ (char *)"GraphicsRenderer_GetDefaultRenderer", (PyCFunction)_wrap_GraphicsRenderer_GetDefaultRenderer, METH_NOARGS, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreateContext", _wrap_GraphicsRenderer_CreateContext, METH_VARARGS, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreateMeasuringContext", (PyCFunction)_wrap_GraphicsRenderer_CreateMeasuringContext, METH_O, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreateContextFromNativeContext", (PyCFunction) _wrap_GraphicsRenderer_CreateContextFromNativeContext, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreateContextFromNativeWindow", (PyCFunction) _wrap_GraphicsRenderer_CreateContextFromNativeWindow, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreatePath", (PyCFunction)_wrap_GraphicsRenderer_CreatePath, METH_O, NULL},
|
||||
|
@@ -6965,7 +6965,7 @@ class FontPickerCtrl(PickerBase):
|
||||
__repr__ = _swig_repr
|
||||
def __init__(self, *args, **kwargs):
|
||||
"""
|
||||
__init__(self, Window parent, int id=-1, Font initial=*wxNORMAL_FONT,
|
||||
__init__(self, Window parent, int id=-1, Font initial=wxNullFont,
|
||||
Point pos=DefaultPosition, Size size=DefaultSize,
|
||||
long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
|
||||
String name=FontPickerCtrlNameStr) -> FontPickerCtrl
|
||||
@@ -6975,7 +6975,7 @@ class FontPickerCtrl(PickerBase):
|
||||
|
||||
def Create(*args, **kwargs):
|
||||
"""
|
||||
Create(self, Window parent, int id=-1, Font initial=*wxNORMAL_FONT,
|
||||
Create(self, Window parent, int id=-1, Font initial=wxNullFont,
|
||||
Point pos=DefaultPosition, Size size=DefaultSize,
|
||||
long style=FNTP_DEFAULT_STYLE, Validator validator=DefaultValidator,
|
||||
String name=FontPickerCtrlNameStr) -> bool
|
||||
|
@@ -45068,7 +45068,7 @@ SWIGINTERN PyObject *_wrap_new_FontPickerCtrl(PyObject *SWIGUNUSEDPARM(self), Py
|
||||
PyObject *resultobj = 0;
|
||||
wxWindow *arg1 = (wxWindow *) 0 ;
|
||||
int arg2 = (int) -1 ;
|
||||
wxFont const &arg3_defvalue = *wxNORMAL_FONT ;
|
||||
wxFont const &arg3_defvalue = wxNullFont ;
|
||||
wxFont *arg3 = (wxFont *) &arg3_defvalue ;
|
||||
wxPoint const &arg4_defvalue = wxDefaultPosition ;
|
||||
wxPoint *arg4 = (wxPoint *) &arg4_defvalue ;
|
||||
@@ -45210,7 +45210,7 @@ SWIGINTERN PyObject *_wrap_FontPickerCtrl_Create(PyObject *SWIGUNUSEDPARM(self),
|
||||
wxFontPickerCtrl *arg1 = (wxFontPickerCtrl *) 0 ;
|
||||
wxWindow *arg2 = (wxWindow *) 0 ;
|
||||
int arg3 = (int) -1 ;
|
||||
wxFont const &arg4_defvalue = *wxNORMAL_FONT ;
|
||||
wxFont const &arg4_defvalue = wxNullFont ;
|
||||
wxFont *arg4 = (wxFont *) &arg4_defvalue ;
|
||||
wxPoint const &arg5_defvalue = wxDefaultPosition ;
|
||||
wxPoint *arg5 = (wxPoint *) &arg5_defvalue ;
|
||||
|
@@ -3758,18 +3758,6 @@ class EvtHandler(Object):
|
||||
"""ProcessPendingEvents(self)"""
|
||||
return _core_.EvtHandler_ProcessPendingEvents(*args, **kwargs)
|
||||
|
||||
def AllowReentrance(*args, **kwargs):
|
||||
"""AllowReentrance(self, bool allow=True)"""
|
||||
return _core_.EvtHandler_AllowReentrance(*args, **kwargs)
|
||||
|
||||
def IsReentranceAllowed(*args, **kwargs):
|
||||
"""IsReentranceAllowed(self) -> bool"""
|
||||
return _core_.EvtHandler_IsReentranceAllowed(*args, **kwargs)
|
||||
|
||||
def IsEventHandlingInProgress(*args, **kwargs):
|
||||
"""IsEventHandlingInProgress(self) -> bool"""
|
||||
return _core_.EvtHandler_IsEventHandlingInProgress(*args, **kwargs)
|
||||
|
||||
def Connect(*args, **kwargs):
|
||||
"""Connect(self, int id, int lastId, int eventType, PyObject func)"""
|
||||
return _core_.EvtHandler_Connect(*args, **kwargs)
|
||||
|
@@ -20868,106 +20868,6 @@ fail:
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_EvtHandler_AllowReentrance(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj = 0;
|
||||
wxEvtHandler *arg1 = (wxEvtHandler *) 0 ;
|
||||
bool arg2 = (bool) true ;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
bool val2 ;
|
||||
int ecode2 = 0 ;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
char * kwnames[] = {
|
||||
(char *) "self",(char *) "allow", NULL
|
||||
};
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:EvtHandler_AllowReentrance",kwnames,&obj0,&obj1)) SWIG_fail;
|
||||
res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_wxEvtHandler, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "EvtHandler_AllowReentrance" "', expected argument " "1"" of type '" "wxEvtHandler *""'");
|
||||
}
|
||||
arg1 = reinterpret_cast< wxEvtHandler * >(argp1);
|
||||
if (obj1) {
|
||||
ecode2 = SWIG_AsVal_bool(obj1, &val2);
|
||||
if (!SWIG_IsOK(ecode2)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "EvtHandler_AllowReentrance" "', expected argument " "2"" of type '" "bool""'");
|
||||
}
|
||||
arg2 = static_cast< bool >(val2);
|
||||
}
|
||||
{
|
||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||
(arg1)->AllowReentrance(arg2);
|
||||
wxPyEndAllowThreads(__tstate);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_Py_Void();
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_EvtHandler_IsReentranceAllowed(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||
PyObject *resultobj = 0;
|
||||
wxEvtHandler *arg1 = (wxEvtHandler *) 0 ;
|
||||
bool result;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
PyObject *swig_obj[1] ;
|
||||
|
||||
if (!args) SWIG_fail;
|
||||
swig_obj[0] = args;
|
||||
res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_wxEvtHandler, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "EvtHandler_IsReentranceAllowed" "', expected argument " "1"" of type '" "wxEvtHandler *""'");
|
||||
}
|
||||
arg1 = reinterpret_cast< wxEvtHandler * >(argp1);
|
||||
{
|
||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||
result = (bool)(arg1)->IsReentranceAllowed();
|
||||
wxPyEndAllowThreads(__tstate);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
{
|
||||
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
||||
}
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_EvtHandler_IsEventHandlingInProgress(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||
PyObject *resultobj = 0;
|
||||
wxEvtHandler *arg1 = (wxEvtHandler *) 0 ;
|
||||
bool result;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
PyObject *swig_obj[1] ;
|
||||
|
||||
if (!args) SWIG_fail;
|
||||
swig_obj[0] = args;
|
||||
res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_wxEvtHandler, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "EvtHandler_IsEventHandlingInProgress" "', expected argument " "1"" of type '" "wxEvtHandler *""'");
|
||||
}
|
||||
arg1 = reinterpret_cast< wxEvtHandler * >(argp1);
|
||||
{
|
||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||
result = (bool)(arg1)->IsEventHandlingInProgress();
|
||||
wxPyEndAllowThreads(__tstate);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
{
|
||||
resultobj = result ? Py_True : Py_False; Py_INCREF(resultobj);
|
||||
}
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_EvtHandler_Connect(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj = 0;
|
||||
wxEvtHandler *arg1 = (wxEvtHandler *) 0 ;
|
||||
@@ -56941,9 +56841,6 @@ static PyMethodDef SwigMethods[] = {
|
||||
{ (char *)"EvtHandler_ProcessEvent", (PyCFunction) _wrap_EvtHandler_ProcessEvent, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler_AddPendingEvent", (PyCFunction) _wrap_EvtHandler_AddPendingEvent, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler_ProcessPendingEvents", (PyCFunction)_wrap_EvtHandler_ProcessPendingEvents, METH_O, NULL},
|
||||
{ (char *)"EvtHandler_AllowReentrance", (PyCFunction) _wrap_EvtHandler_AllowReentrance, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler_IsReentranceAllowed", (PyCFunction)_wrap_EvtHandler_IsReentranceAllowed, METH_O, NULL},
|
||||
{ (char *)"EvtHandler_IsEventHandlingInProgress", (PyCFunction)_wrap_EvtHandler_IsEventHandlingInProgress, METH_O, NULL},
|
||||
{ (char *)"EvtHandler_Connect", (PyCFunction) _wrap_EvtHandler_Connect, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler_Disconnect", (PyCFunction) _wrap_EvtHandler_Disconnect, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"EvtHandler__setOORInfo", (PyCFunction) _wrap_EvtHandler__setOORInfo, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
|
@@ -5494,6 +5494,17 @@ class GraphicsContext(GraphicsObject):
|
||||
return val
|
||||
|
||||
Create = staticmethod(Create)
|
||||
def CreateMeasuringContext(*args):
|
||||
"""
|
||||
CreateMeasuringContext() -> GraphicsContext
|
||||
|
||||
Create a lightwieght context that can be used for measuring text only.
|
||||
"""
|
||||
val = _gdi_.GraphicsContext_CreateMeasuringContext(*args)
|
||||
val.__dc = args[0] # save a ref so the dc will not be deleted before self
|
||||
return val
|
||||
|
||||
CreateMeasuringContext = staticmethod(CreateMeasuringContext)
|
||||
def CreateFromNative(*args, **kwargs):
|
||||
"""
|
||||
CreateFromNative(void context) -> GraphicsContext
|
||||
@@ -5729,18 +5740,14 @@ class GraphicsContext(GraphicsObject):
|
||||
|
||||
def DrawText(*args, **kwargs):
|
||||
"""
|
||||
DrawText(self, String str, Double x, Double y)
|
||||
DrawText(self, String str, Double x, Double y, GraphicsBrush backgroundBrush=NullGraphicsBrush)
|
||||
|
||||
Draws a text at the defined position.
|
||||
Draws a text string at the defined position.
|
||||
"""
|
||||
return _gdi_.GraphicsContext_DrawText(*args, **kwargs)
|
||||
|
||||
def DrawRotatedText(*args, **kwargs):
|
||||
"""
|
||||
DrawRotatedText(self, String str, Double x, Double y, Double angle)
|
||||
|
||||
Draws a text at the defined position, at the given angle.
|
||||
"""
|
||||
"""DrawRotatedText(self, String str, Double x, Double y, Double angle, GraphicsBrush backgroundBrush=NullGraphicsBrush)"""
|
||||
return _gdi_.GraphicsContext_DrawRotatedText(*args, **kwargs)
|
||||
|
||||
def GetFullTextExtent(*args, **kwargs):
|
||||
@@ -5875,6 +5882,16 @@ def GraphicsContext_Create(*args):
|
||||
val.__dc = args[0] # save a ref so the dc will not be deleted before self
|
||||
return val
|
||||
|
||||
def GraphicsContext_CreateMeasuringContext(*args):
|
||||
"""
|
||||
GraphicsContext_CreateMeasuringContext() -> GraphicsContext
|
||||
|
||||
Create a lightwieght context that can be used for measuring text only.
|
||||
"""
|
||||
val = _gdi_.GraphicsContext_CreateMeasuringContext(*args)
|
||||
val.__dc = args[0] # save a ref so the dc will not be deleted before self
|
||||
return val
|
||||
|
||||
def GraphicsContext_CreateFromNative(*args, **kwargs):
|
||||
"""
|
||||
GraphicsContext_CreateFromNative(void context) -> GraphicsContext
|
||||
@@ -5912,6 +5929,10 @@ class GraphicsRenderer(_core.Object):
|
||||
"""
|
||||
return _gdi_.GraphicsRenderer_CreateContext(*args)
|
||||
|
||||
def CreateMeasuringContext(*args, **kwargs):
|
||||
"""CreateMeasuringContext(self) -> GraphicsContext"""
|
||||
return _gdi_.GraphicsRenderer_CreateMeasuringContext(*args, **kwargs)
|
||||
|
||||
def CreateContextFromNativeContext(*args, **kwargs):
|
||||
"""CreateContextFromNativeContext(self, void context) -> GraphicsContext"""
|
||||
return _gdi_.GraphicsRenderer_CreateContextFromNativeContext(*args, **kwargs)
|
||||
|
@@ -3883,6 +3883,18 @@ public:
|
||||
|
||||
#endif
|
||||
|
||||
SWIGINTERN void wxGraphicsContext_DrawText(wxGraphicsContext *self,wxString const &str,wxDouble x,wxDouble y,wxGraphicsBrush const &backgroundBrush=wxNullGraphicsBrush){
|
||||
if ( !backgroundBrush.IsNull() )
|
||||
self->DrawText(str, x, y, backgroundBrush);
|
||||
else
|
||||
self->DrawText(str, x, y);
|
||||
}
|
||||
SWIGINTERN void wxGraphicsContext_DrawRotatedText(wxGraphicsContext *self,wxString const &str,wxDouble x,wxDouble y,wxDouble angle,wxGraphicsBrush const &backgroundBrush=wxNullGraphicsBrush){
|
||||
if ( !backgroundBrush.IsNull() )
|
||||
self->DrawText(str, x, y, angle, backgroundBrush);
|
||||
else
|
||||
self->DrawText(str, x, y, angle);
|
||||
}
|
||||
SWIGINTERN PyObject *wxGraphicsContext_GetTextExtent(wxGraphicsContext *self,wxString const &text){
|
||||
wxDouble width = 0.0,
|
||||
height = 0.0;
|
||||
@@ -28365,6 +28377,22 @@ fail:
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_GraphicsContext_CreateMeasuringContext(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||
PyObject *resultobj = 0;
|
||||
wxGraphicsContext *result = 0 ;
|
||||
|
||||
if (!SWIG_Python_UnpackTuple(args,"GraphicsContext_CreateMeasuringContext",0,0,0)) SWIG_fail;
|
||||
{
|
||||
result = (wxGraphicsContext *)wxGraphicsContext::Create();
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_wxGraphicsContext, SWIG_POINTER_OWN | 0 );
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_GraphicsContext_CreateFromNative(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj = 0;
|
||||
void *arg1 = (void *) 0 ;
|
||||
@@ -29704,6 +29732,8 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawText(PyObject *SWIGUNUSEDPARM(sel
|
||||
wxString *arg2 = 0 ;
|
||||
wxDouble arg3 ;
|
||||
wxDouble arg4 ;
|
||||
wxGraphicsBrush const &arg5_defvalue = wxNullGraphicsBrush ;
|
||||
wxGraphicsBrush *arg5 = (wxGraphicsBrush *) &arg5_defvalue ;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
bool temp2 = false ;
|
||||
@@ -29711,15 +29741,18 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawText(PyObject *SWIGUNUSEDPARM(sel
|
||||
int ecode3 = 0 ;
|
||||
double val4 ;
|
||||
int ecode4 = 0 ;
|
||||
void *argp5 = 0 ;
|
||||
int res5 = 0 ;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
PyObject * obj2 = 0 ;
|
||||
PyObject * obj3 = 0 ;
|
||||
PyObject * obj4 = 0 ;
|
||||
char * kwnames[] = {
|
||||
(char *) "self",(char *) "str",(char *) "x",(char *) "y", NULL
|
||||
(char *) "self",(char *) "str",(char *) "x",(char *) "y",(char *) "backgroundBrush", NULL
|
||||
};
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO:GraphicsContext_DrawText",kwnames,&obj0,&obj1,&obj2,&obj3)) SWIG_fail;
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOO|O:GraphicsContext_DrawText",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
|
||||
res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_wxGraphicsContext, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GraphicsContext_DrawText" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
|
||||
@@ -29740,8 +29773,18 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawText(PyObject *SWIGUNUSEDPARM(sel
|
||||
SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "GraphicsContext_DrawText" "', expected argument " "4"" of type '" "wxDouble""'");
|
||||
}
|
||||
arg4 = static_cast< wxDouble >(val4);
|
||||
if (obj4) {
|
||||
res5 = SWIG_ConvertPtr(obj4, &argp5, SWIGTYPE_p_wxGraphicsBrush, 0 | 0);
|
||||
if (!SWIG_IsOK(res5)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res5), "in method '" "GraphicsContext_DrawText" "', expected argument " "5"" of type '" "wxGraphicsBrush const &""'");
|
||||
}
|
||||
if (!argp5) {
|
||||
SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GraphicsContext_DrawText" "', expected argument " "5"" of type '" "wxGraphicsBrush const &""'");
|
||||
}
|
||||
arg5 = reinterpret_cast< wxGraphicsBrush * >(argp5);
|
||||
}
|
||||
{
|
||||
(arg1)->DrawText((wxString const &)*arg2,arg3,arg4);
|
||||
wxGraphicsContext_DrawText(arg1,(wxString const &)*arg2,arg3,arg4,(wxGraphicsBrush const &)*arg5);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_Py_Void();
|
||||
@@ -29766,6 +29809,8 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawRotatedText(PyObject *SWIGUNUSEDP
|
||||
wxDouble arg3 ;
|
||||
wxDouble arg4 ;
|
||||
wxDouble arg5 ;
|
||||
wxGraphicsBrush const &arg6_defvalue = wxNullGraphicsBrush ;
|
||||
wxGraphicsBrush *arg6 = (wxGraphicsBrush *) &arg6_defvalue ;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
bool temp2 = false ;
|
||||
@@ -29775,16 +29820,19 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawRotatedText(PyObject *SWIGUNUSEDP
|
||||
int ecode4 = 0 ;
|
||||
double val5 ;
|
||||
int ecode5 = 0 ;
|
||||
void *argp6 = 0 ;
|
||||
int res6 = 0 ;
|
||||
PyObject * obj0 = 0 ;
|
||||
PyObject * obj1 = 0 ;
|
||||
PyObject * obj2 = 0 ;
|
||||
PyObject * obj3 = 0 ;
|
||||
PyObject * obj4 = 0 ;
|
||||
PyObject * obj5 = 0 ;
|
||||
char * kwnames[] = {
|
||||
(char *) "self",(char *) "str",(char *) "x",(char *) "y",(char *) "angle", NULL
|
||||
(char *) "self",(char *) "str",(char *) "x",(char *) "y",(char *) "angle",(char *) "backgroundBrush", NULL
|
||||
};
|
||||
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO:GraphicsContext_DrawRotatedText",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) SWIG_fail;
|
||||
if (!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOOOO|O:GraphicsContext_DrawRotatedText",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) SWIG_fail;
|
||||
res1 = SWIG_ConvertPtr(obj0, &argp1,SWIGTYPE_p_wxGraphicsContext, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "1"" of type '" "wxGraphicsContext *""'");
|
||||
@@ -29810,8 +29858,18 @@ SWIGINTERN PyObject *_wrap_GraphicsContext_DrawRotatedText(PyObject *SWIGUNUSEDP
|
||||
SWIG_exception_fail(SWIG_ArgError(ecode5), "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "5"" of type '" "wxDouble""'");
|
||||
}
|
||||
arg5 = static_cast< wxDouble >(val5);
|
||||
if (obj5) {
|
||||
res6 = SWIG_ConvertPtr(obj5, &argp6, SWIGTYPE_p_wxGraphicsBrush, 0 | 0);
|
||||
if (!SWIG_IsOK(res6)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res6), "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "6"" of type '" "wxGraphicsBrush const &""'");
|
||||
}
|
||||
if (!argp6) {
|
||||
SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in method '" "GraphicsContext_DrawRotatedText" "', expected argument " "6"" of type '" "wxGraphicsBrush const &""'");
|
||||
}
|
||||
arg6 = reinterpret_cast< wxGraphicsBrush * >(argp6);
|
||||
}
|
||||
{
|
||||
(arg1)->DrawText((wxString const &)*arg2,arg3,arg4,arg5);
|
||||
wxGraphicsContext_DrawRotatedText(arg1,(wxString const &)*arg2,arg3,arg4,arg5,(wxGraphicsBrush const &)*arg6);
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_Py_Void();
|
||||
@@ -30708,6 +30766,32 @@ fail:
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_GraphicsRenderer_CreateMeasuringContext(PyObject *SWIGUNUSEDPARM(self), PyObject *args) {
|
||||
PyObject *resultobj = 0;
|
||||
wxGraphicsRenderer *arg1 = (wxGraphicsRenderer *) 0 ;
|
||||
wxGraphicsContext *result = 0 ;
|
||||
void *argp1 = 0 ;
|
||||
int res1 = 0 ;
|
||||
PyObject *swig_obj[1] ;
|
||||
|
||||
if (!args) SWIG_fail;
|
||||
swig_obj[0] = args;
|
||||
res1 = SWIG_ConvertPtr(swig_obj[0], &argp1,SWIGTYPE_p_wxGraphicsRenderer, 0 | 0 );
|
||||
if (!SWIG_IsOK(res1)) {
|
||||
SWIG_exception_fail(SWIG_ArgError(res1), "in method '" "GraphicsRenderer_CreateMeasuringContext" "', expected argument " "1"" of type '" "wxGraphicsRenderer *""'");
|
||||
}
|
||||
arg1 = reinterpret_cast< wxGraphicsRenderer * >(argp1);
|
||||
{
|
||||
result = (wxGraphicsContext *)(arg1)->CreateMeasuringContext();
|
||||
if (PyErr_Occurred()) SWIG_fail;
|
||||
}
|
||||
resultobj = SWIG_NewPointerObj(SWIG_as_voidptr(result), SWIGTYPE_p_wxGraphicsContext, 0 | 0 );
|
||||
return resultobj;
|
||||
fail:
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
SWIGINTERN PyObject *_wrap_GraphicsRenderer_CreateContextFromNativeContext(PyObject *SWIGUNUSEDPARM(self), PyObject *args, PyObject *kwargs) {
|
||||
PyObject *resultobj = 0;
|
||||
wxGraphicsRenderer *arg1 = (wxGraphicsRenderer *) 0 ;
|
||||
@@ -39743,6 +39827,7 @@ static PyMethodDef SwigMethods[] = {
|
||||
{ (char *)"GraphicsPath_swiginit", GraphicsPath_swiginit, METH_VARARGS, NULL},
|
||||
{ (char *)"delete_GraphicsContext", (PyCFunction)_wrap_delete_GraphicsContext, METH_O, NULL},
|
||||
{ (char *)"GraphicsContext_Create", _wrap_GraphicsContext_Create, METH_VARARGS, NULL},
|
||||
{ (char *)"GraphicsContext_CreateMeasuringContext", (PyCFunction)_wrap_GraphicsContext_CreateMeasuringContext, METH_NOARGS, NULL},
|
||||
{ (char *)"GraphicsContext_CreateFromNative", (PyCFunction) _wrap_GraphicsContext_CreateFromNative, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"GraphicsContext_CreateFromNativeWindow", (PyCFunction) _wrap_GraphicsContext_CreateFromNativeWindow, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"GraphicsContext_CreatePath", (PyCFunction)_wrap_GraphicsContext_CreatePath, METH_O, NULL},
|
||||
@@ -39789,6 +39874,7 @@ static PyMethodDef SwigMethods[] = {
|
||||
{ (char *)"delete_GraphicsRenderer", (PyCFunction)_wrap_delete_GraphicsRenderer, METH_O, NULL},
|
||||
{ (char *)"GraphicsRenderer_GetDefaultRenderer", (PyCFunction)_wrap_GraphicsRenderer_GetDefaultRenderer, METH_NOARGS, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreateContext", _wrap_GraphicsRenderer_CreateContext, METH_VARARGS, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreateMeasuringContext", (PyCFunction)_wrap_GraphicsRenderer_CreateMeasuringContext, METH_O, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreateContextFromNativeContext", (PyCFunction) _wrap_GraphicsRenderer_CreateContextFromNativeContext, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreateContextFromNativeWindow", (PyCFunction) _wrap_GraphicsRenderer_CreateContextFromNativeWindow, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||
{ (char *)"GraphicsRenderer_CreatePath", (PyCFunction)_wrap_GraphicsRenderer_CreatePath, METH_O, NULL},
|
||||
|
Reference in New Issue
Block a user