reSWIGged
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28572 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -5980,9 +5980,8 @@ class Window(EvtHandler):
|
|||||||
"""
|
"""
|
||||||
return _core_.Window_FitInside(*args, **kwargs)
|
return _core_.Window_FitInside(*args, **kwargs)
|
||||||
|
|
||||||
def SetSizeHints(*args):
|
def SetSizeHints(*args, **kwargs):
|
||||||
"""
|
"""
|
||||||
SetSizeHints(self, Size minSize, Size maxSize=DefaultSize, Size incSize=DefaultSize)
|
|
||||||
SetSizeHints(self, int minW, int minH, int maxW=-1, int maxH=-1, int incW=-1,
|
SetSizeHints(self, int minW, int minH, int maxW=-1, int maxH=-1, int incW=-1,
|
||||||
int incH=-1)
|
int incH=-1)
|
||||||
|
|
||||||
@@ -5995,11 +5994,25 @@ class Window(EvtHandler):
|
|||||||
|
|
||||||
The resizing increments are only significant under Motif or Xt.
|
The resizing increments are only significant under Motif or Xt.
|
||||||
"""
|
"""
|
||||||
return _core_.Window_SetSizeHints(*args)
|
return _core_.Window_SetSizeHints(*args, **kwargs)
|
||||||
|
|
||||||
def SetVirtualSizeHints(*args):
|
def SetSizeHintsSz(*args, **kwargs):
|
||||||
|
"""
|
||||||
|
SetSizeHintsSz(self, Size minSize, Size maxSize=DefaultSize, Size incSize=DefaultSize)
|
||||||
|
|
||||||
|
Allows specification of minimum and maximum window sizes, and window
|
||||||
|
size increments. If a pair of values is not set (or set to -1), the
|
||||||
|
default values will be used. If this function is called, the user
|
||||||
|
will not be able to size the window outside the given bounds (if it is
|
||||||
|
a top-level window.) Sizers will also inspect the minimum window size
|
||||||
|
and will use that value if set when calculating layout.
|
||||||
|
|
||||||
|
The resizing increments are only significant under Motif or Xt.
|
||||||
|
"""
|
||||||
|
return _core_.Window_SetSizeHintsSz(*args, **kwargs)
|
||||||
|
|
||||||
|
def SetVirtualSizeHints(*args, **kwargs):
|
||||||
"""
|
"""
|
||||||
SetVirtualSizeHints(self, Size minSize, Size maxSize=DefaultSize)
|
|
||||||
SetVirtualSizeHints(self, int minW, int minH, int maxW=-1, int maxH=-1)
|
SetVirtualSizeHints(self, int minW, int minH, int maxW=-1, int maxH=-1)
|
||||||
|
|
||||||
Allows specification of minimum and maximum virtual window sizes. If a
|
Allows specification of minimum and maximum virtual window sizes. If a
|
||||||
@@ -6007,7 +6020,18 @@ class Window(EvtHandler):
|
|||||||
used. If this function is called, the user will not be able to size
|
used. If this function is called, the user will not be able to size
|
||||||
the virtual area of the window outside the given bounds.
|
the virtual area of the window outside the given bounds.
|
||||||
"""
|
"""
|
||||||
return _core_.Window_SetVirtualSizeHints(*args)
|
return _core_.Window_SetVirtualSizeHints(*args, **kwargs)
|
||||||
|
|
||||||
|
def SetVirtualSizeHintsSz(*args, **kwargs):
|
||||||
|
"""
|
||||||
|
SetVirtualSizeHintsSz(self, Size minSize, Size maxSize=DefaultSize)
|
||||||
|
|
||||||
|
Allows specification of minimum and maximum virtual window sizes. If a
|
||||||
|
pair of values is not set (or set to -1), the default values will be
|
||||||
|
used. If this function is called, the user will not be able to size
|
||||||
|
the virtual area of the window outside the given bounds.
|
||||||
|
"""
|
||||||
|
return _core_.Window_SetVirtualSizeHintsSz(*args, **kwargs)
|
||||||
|
|
||||||
def GetMaxSize(*args, **kwargs):
|
def GetMaxSize(*args, **kwargs):
|
||||||
"""GetMaxSize(self) -> Size"""
|
"""GetMaxSize(self) -> Size"""
|
||||||
|
@@ -23162,56 +23162,7 @@ static PyObject *_wrap_Window_FitInside(PyObject *self, PyObject *args, PyObject
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static PyObject *_wrap_Window_SetSizeHints__SWIG_0(PyObject *self, PyObject *args) {
|
static PyObject *_wrap_Window_SetSizeHints(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject *resultobj;
|
|
||||||
wxWindow *arg1 = (wxWindow *) 0 ;
|
|
||||||
wxSize *arg2 = 0 ;
|
|
||||||
wxSize const &arg3_defvalue = wxDefaultSize ;
|
|
||||||
wxSize *arg3 = (wxSize *) &arg3_defvalue ;
|
|
||||||
wxSize const &arg4_defvalue = wxDefaultSize ;
|
|
||||||
wxSize *arg4 = (wxSize *) &arg4_defvalue ;
|
|
||||||
wxSize temp2 ;
|
|
||||||
wxSize temp3 ;
|
|
||||||
wxSize temp4 ;
|
|
||||||
PyObject * obj0 = 0 ;
|
|
||||||
PyObject * obj1 = 0 ;
|
|
||||||
PyObject * obj2 = 0 ;
|
|
||||||
PyObject * obj3 = 0 ;
|
|
||||||
|
|
||||||
if(!PyArg_ParseTuple(args,(char *)"OO|OO:Window_SetSizeHints",&obj0,&obj1,&obj2,&obj3)) goto fail;
|
|
||||||
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
|
|
||||||
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
|
||||||
{
|
|
||||||
arg2 = &temp2;
|
|
||||||
if ( ! wxSize_helper(obj1, &arg2)) SWIG_fail;
|
|
||||||
}
|
|
||||||
if (obj2) {
|
|
||||||
{
|
|
||||||
arg3 = &temp3;
|
|
||||||
if ( ! wxSize_helper(obj2, &arg3)) SWIG_fail;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (obj3) {
|
|
||||||
{
|
|
||||||
arg4 = &temp4;
|
|
||||||
if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
{
|
|
||||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
|
||||||
(arg1)->SetSizeHints((wxSize const &)*arg2,(wxSize const &)*arg3,(wxSize const &)*arg4);
|
|
||||||
|
|
||||||
wxPyEndAllowThreads(__tstate);
|
|
||||||
if (PyErr_Occurred()) SWIG_fail;
|
|
||||||
}
|
|
||||||
Py_INCREF(Py_None); resultobj = Py_None;
|
|
||||||
return resultobj;
|
|
||||||
fail:
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static PyObject *_wrap_Window_SetSizeHints__SWIG_1(PyObject *self, PyObject *args) {
|
|
||||||
PyObject *resultobj;
|
PyObject *resultobj;
|
||||||
wxWindow *arg1 = (wxWindow *) 0 ;
|
wxWindow *arg1 = (wxWindow *) 0 ;
|
||||||
int arg2 ;
|
int arg2 ;
|
||||||
@@ -23227,8 +23178,11 @@ static PyObject *_wrap_Window_SetSizeHints__SWIG_1(PyObject *self, PyObject *arg
|
|||||||
PyObject * obj4 = 0 ;
|
PyObject * obj4 = 0 ;
|
||||||
PyObject * obj5 = 0 ;
|
PyObject * obj5 = 0 ;
|
||||||
PyObject * obj6 = 0 ;
|
PyObject * obj6 = 0 ;
|
||||||
|
char *kwnames[] = {
|
||||||
|
(char *) "self",(char *) "minW",(char *) "minH",(char *) "maxW",(char *) "maxH",(char *) "incW",(char *) "incH", NULL
|
||||||
|
};
|
||||||
|
|
||||||
if(!PyArg_ParseTuple(args,(char *)"OOO|OOOO:Window_SetSizeHints",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO|OOOO:Window_SetSizeHints",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6)) goto fail;
|
||||||
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
|
||||||
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
||||||
arg2 = (int) SWIG_AsInt(obj1);
|
arg2 = (int) SWIG_AsInt(obj1);
|
||||||
@@ -23265,115 +23219,26 @@ static PyObject *_wrap_Window_SetSizeHints__SWIG_1(PyObject *self, PyObject *arg
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static PyObject *_wrap_Window_SetSizeHints(PyObject *self, PyObject *args) {
|
static PyObject *_wrap_Window_SetSizeHintsSz(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
int argc;
|
|
||||||
PyObject *argv[8];
|
|
||||||
int ii;
|
|
||||||
|
|
||||||
argc = PyObject_Length(args);
|
|
||||||
for (ii = 0; (ii < argc) && (ii < 7); ii++) {
|
|
||||||
argv[ii] = PyTuple_GetItem(args,ii);
|
|
||||||
}
|
|
||||||
if ((argc >= 2) && (argc <= 4)) {
|
|
||||||
int _v;
|
|
||||||
{
|
|
||||||
void *ptr;
|
|
||||||
if (SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_wxWindow, 0) == -1) {
|
|
||||||
_v = 0;
|
|
||||||
PyErr_Clear();
|
|
||||||
} else {
|
|
||||||
_v = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (_v) {
|
|
||||||
{
|
|
||||||
_v = wxPySimple_typecheck(argv[1], wxT("wxSize"), 2);
|
|
||||||
}
|
|
||||||
if (_v) {
|
|
||||||
if (argc <= 2) {
|
|
||||||
return _wrap_Window_SetSizeHints__SWIG_0(self,args);
|
|
||||||
}
|
|
||||||
{
|
|
||||||
_v = wxPySimple_typecheck(argv[2], wxT("wxSize"), 2);
|
|
||||||
}
|
|
||||||
if (_v) {
|
|
||||||
if (argc <= 3) {
|
|
||||||
return _wrap_Window_SetSizeHints__SWIG_0(self,args);
|
|
||||||
}
|
|
||||||
{
|
|
||||||
_v = wxPySimple_typecheck(argv[3], wxT("wxSize"), 2);
|
|
||||||
}
|
|
||||||
if (_v) {
|
|
||||||
return _wrap_Window_SetSizeHints__SWIG_0(self,args);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if ((argc >= 3) && (argc <= 7)) {
|
|
||||||
int _v;
|
|
||||||
{
|
|
||||||
void *ptr;
|
|
||||||
if (SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_wxWindow, 0) == -1) {
|
|
||||||
_v = 0;
|
|
||||||
PyErr_Clear();
|
|
||||||
} else {
|
|
||||||
_v = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (_v) {
|
|
||||||
_v = SWIG_CheckInt(argv[1]);
|
|
||||||
if (_v) {
|
|
||||||
_v = SWIG_CheckInt(argv[2]);
|
|
||||||
if (_v) {
|
|
||||||
if (argc <= 3) {
|
|
||||||
return _wrap_Window_SetSizeHints__SWIG_1(self,args);
|
|
||||||
}
|
|
||||||
_v = SWIG_CheckInt(argv[3]);
|
|
||||||
if (_v) {
|
|
||||||
if (argc <= 4) {
|
|
||||||
return _wrap_Window_SetSizeHints__SWIG_1(self,args);
|
|
||||||
}
|
|
||||||
_v = SWIG_CheckInt(argv[4]);
|
|
||||||
if (_v) {
|
|
||||||
if (argc <= 5) {
|
|
||||||
return _wrap_Window_SetSizeHints__SWIG_1(self,args);
|
|
||||||
}
|
|
||||||
_v = SWIG_CheckInt(argv[5]);
|
|
||||||
if (_v) {
|
|
||||||
if (argc <= 6) {
|
|
||||||
return _wrap_Window_SetSizeHints__SWIG_1(self,args);
|
|
||||||
}
|
|
||||||
_v = SWIG_CheckInt(argv[6]);
|
|
||||||
if (_v) {
|
|
||||||
return _wrap_Window_SetSizeHints__SWIG_1(self,args);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'Window_SetSizeHints'");
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static PyObject *_wrap_Window_SetVirtualSizeHints__SWIG_0(PyObject *self, PyObject *args) {
|
|
||||||
PyObject *resultobj;
|
PyObject *resultobj;
|
||||||
wxWindow *arg1 = (wxWindow *) 0 ;
|
wxWindow *arg1 = (wxWindow *) 0 ;
|
||||||
wxSize *arg2 = 0 ;
|
wxSize *arg2 = 0 ;
|
||||||
wxSize const &arg3_defvalue = wxDefaultSize ;
|
wxSize const &arg3_defvalue = wxDefaultSize ;
|
||||||
wxSize *arg3 = (wxSize *) &arg3_defvalue ;
|
wxSize *arg3 = (wxSize *) &arg3_defvalue ;
|
||||||
|
wxSize const &arg4_defvalue = wxDefaultSize ;
|
||||||
|
wxSize *arg4 = (wxSize *) &arg4_defvalue ;
|
||||||
wxSize temp2 ;
|
wxSize temp2 ;
|
||||||
wxSize temp3 ;
|
wxSize temp3 ;
|
||||||
|
wxSize temp4 ;
|
||||||
PyObject * obj0 = 0 ;
|
PyObject * obj0 = 0 ;
|
||||||
PyObject * obj1 = 0 ;
|
PyObject * obj1 = 0 ;
|
||||||
PyObject * obj2 = 0 ;
|
PyObject * obj2 = 0 ;
|
||||||
|
PyObject * obj3 = 0 ;
|
||||||
|
char *kwnames[] = {
|
||||||
|
(char *) "self",(char *) "minSize",(char *) "maxSize",(char *) "incSize", NULL
|
||||||
|
};
|
||||||
|
|
||||||
if(!PyArg_ParseTuple(args,(char *)"OO|O:Window_SetVirtualSizeHints",&obj0,&obj1,&obj2)) goto fail;
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|OO:Window_SetSizeHintsSz",kwnames,&obj0,&obj1,&obj2,&obj3)) goto fail;
|
||||||
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
|
||||||
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
||||||
{
|
{
|
||||||
@@ -23386,9 +23251,15 @@ static PyObject *_wrap_Window_SetVirtualSizeHints__SWIG_0(PyObject *self, PyObje
|
|||||||
if ( ! wxSize_helper(obj2, &arg3)) SWIG_fail;
|
if ( ! wxSize_helper(obj2, &arg3)) SWIG_fail;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (obj3) {
|
||||||
|
{
|
||||||
|
arg4 = &temp4;
|
||||||
|
if ( ! wxSize_helper(obj3, &arg4)) SWIG_fail;
|
||||||
|
}
|
||||||
|
}
|
||||||
{
|
{
|
||||||
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||||
(arg1)->SetVirtualSizeHints((wxSize const &)*arg2,(wxSize const &)*arg3);
|
(arg1)->SetSizeHints((wxSize const &)*arg2,(wxSize const &)*arg3,(wxSize const &)*arg4);
|
||||||
|
|
||||||
wxPyEndAllowThreads(__tstate);
|
wxPyEndAllowThreads(__tstate);
|
||||||
if (PyErr_Occurred()) SWIG_fail;
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
@@ -23400,7 +23271,7 @@ static PyObject *_wrap_Window_SetVirtualSizeHints__SWIG_0(PyObject *self, PyObje
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static PyObject *_wrap_Window_SetVirtualSizeHints__SWIG_1(PyObject *self, PyObject *args) {
|
static PyObject *_wrap_Window_SetVirtualSizeHints(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject *resultobj;
|
PyObject *resultobj;
|
||||||
wxWindow *arg1 = (wxWindow *) 0 ;
|
wxWindow *arg1 = (wxWindow *) 0 ;
|
||||||
int arg2 ;
|
int arg2 ;
|
||||||
@@ -23412,8 +23283,11 @@ static PyObject *_wrap_Window_SetVirtualSizeHints__SWIG_1(PyObject *self, PyObje
|
|||||||
PyObject * obj2 = 0 ;
|
PyObject * obj2 = 0 ;
|
||||||
PyObject * obj3 = 0 ;
|
PyObject * obj3 = 0 ;
|
||||||
PyObject * obj4 = 0 ;
|
PyObject * obj4 = 0 ;
|
||||||
|
char *kwnames[] = {
|
||||||
|
(char *) "self",(char *) "minW",(char *) "minH",(char *) "maxW",(char *) "maxH", NULL
|
||||||
|
};
|
||||||
|
|
||||||
if(!PyArg_ParseTuple(args,(char *)"OOO|OO:Window_SetVirtualSizeHints",&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OOO|OO:Window_SetVirtualSizeHints",kwnames,&obj0,&obj1,&obj2,&obj3,&obj4)) goto fail;
|
||||||
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
|
||||||
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
||||||
arg2 = (int) SWIG_AsInt(obj1);
|
arg2 = (int) SWIG_AsInt(obj1);
|
||||||
@@ -23442,78 +23316,44 @@ static PyObject *_wrap_Window_SetVirtualSizeHints__SWIG_1(PyObject *self, PyObje
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static PyObject *_wrap_Window_SetVirtualSizeHints(PyObject *self, PyObject *args) {
|
static PyObject *_wrap_Window_SetVirtualSizeHintsSz(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
int argc;
|
PyObject *resultobj;
|
||||||
PyObject *argv[6];
|
wxWindow *arg1 = (wxWindow *) 0 ;
|
||||||
int ii;
|
wxSize *arg2 = 0 ;
|
||||||
|
wxSize const &arg3_defvalue = wxDefaultSize ;
|
||||||
|
wxSize *arg3 = (wxSize *) &arg3_defvalue ;
|
||||||
|
wxSize temp2 ;
|
||||||
|
wxSize temp3 ;
|
||||||
|
PyObject * obj0 = 0 ;
|
||||||
|
PyObject * obj1 = 0 ;
|
||||||
|
PyObject * obj2 = 0 ;
|
||||||
|
char *kwnames[] = {
|
||||||
|
(char *) "self",(char *) "minSize",(char *) "maxSize", NULL
|
||||||
|
};
|
||||||
|
|
||||||
argc = PyObject_Length(args);
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO|O:Window_SetVirtualSizeHintsSz",kwnames,&obj0,&obj1,&obj2)) goto fail;
|
||||||
for (ii = 0; (ii < argc) && (ii < 5); ii++) {
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxWindow,
|
||||||
argv[ii] = PyTuple_GetItem(args,ii);
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
||||||
|
{
|
||||||
|
arg2 = &temp2;
|
||||||
|
if ( ! wxSize_helper(obj1, &arg2)) SWIG_fail;
|
||||||
}
|
}
|
||||||
if ((argc >= 2) && (argc <= 3)) {
|
if (obj2) {
|
||||||
int _v;
|
|
||||||
{
|
{
|
||||||
void *ptr;
|
arg3 = &temp3;
|
||||||
if (SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_wxWindow, 0) == -1) {
|
if ( ! wxSize_helper(obj2, &arg3)) SWIG_fail;
|
||||||
_v = 0;
|
|
||||||
PyErr_Clear();
|
|
||||||
} else {
|
|
||||||
_v = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (_v) {
|
|
||||||
{
|
|
||||||
_v = wxPySimple_typecheck(argv[1], wxT("wxSize"), 2);
|
|
||||||
}
|
|
||||||
if (_v) {
|
|
||||||
if (argc <= 2) {
|
|
||||||
return _wrap_Window_SetVirtualSizeHints__SWIG_0(self,args);
|
|
||||||
}
|
|
||||||
{
|
|
||||||
_v = wxPySimple_typecheck(argv[2], wxT("wxSize"), 2);
|
|
||||||
}
|
|
||||||
if (_v) {
|
|
||||||
return _wrap_Window_SetVirtualSizeHints__SWIG_0(self,args);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ((argc >= 3) && (argc <= 5)) {
|
{
|
||||||
int _v;
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||||
{
|
(arg1)->SetVirtualSizeHints((wxSize const &)*arg2,(wxSize const &)*arg3);
|
||||||
void *ptr;
|
|
||||||
if (SWIG_ConvertPtr(argv[0], &ptr, SWIGTYPE_p_wxWindow, 0) == -1) {
|
wxPyEndAllowThreads(__tstate);
|
||||||
_v = 0;
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
PyErr_Clear();
|
|
||||||
} else {
|
|
||||||
_v = 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (_v) {
|
|
||||||
_v = SWIG_CheckInt(argv[1]);
|
|
||||||
if (_v) {
|
|
||||||
_v = SWIG_CheckInt(argv[2]);
|
|
||||||
if (_v) {
|
|
||||||
if (argc <= 3) {
|
|
||||||
return _wrap_Window_SetVirtualSizeHints__SWIG_1(self,args);
|
|
||||||
}
|
|
||||||
_v = SWIG_CheckInt(argv[3]);
|
|
||||||
if (_v) {
|
|
||||||
if (argc <= 4) {
|
|
||||||
return _wrap_Window_SetVirtualSizeHints__SWIG_1(self,args);
|
|
||||||
}
|
|
||||||
_v = SWIG_CheckInt(argv[4]);
|
|
||||||
if (_v) {
|
|
||||||
return _wrap_Window_SetVirtualSizeHints__SWIG_1(self,args);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Py_INCREF(Py_None); resultobj = Py_None;
|
||||||
PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'Window_SetVirtualSizeHints'");
|
return resultobj;
|
||||||
|
fail:
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -40826,8 +40666,10 @@ static PyMethodDef SwigMethods[] = {
|
|||||||
{ (char *)"Window_CenterOnParent", (PyCFunction) _wrap_Window_CenterOnParent, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"Window_CenterOnParent", (PyCFunction) _wrap_Window_CenterOnParent, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"Window_Fit", (PyCFunction) _wrap_Window_Fit, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"Window_Fit", (PyCFunction) _wrap_Window_Fit, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"Window_FitInside", (PyCFunction) _wrap_Window_FitInside, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"Window_FitInside", (PyCFunction) _wrap_Window_FitInside, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"Window_SetSizeHints", _wrap_Window_SetSizeHints, METH_VARARGS },
|
{ (char *)"Window_SetSizeHints", (PyCFunction) _wrap_Window_SetSizeHints, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"Window_SetVirtualSizeHints", _wrap_Window_SetVirtualSizeHints, METH_VARARGS },
|
{ (char *)"Window_SetSizeHintsSz", (PyCFunction) _wrap_Window_SetSizeHintsSz, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ (char *)"Window_SetVirtualSizeHints", (PyCFunction) _wrap_Window_SetVirtualSizeHints, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ (char *)"Window_SetVirtualSizeHintsSz", (PyCFunction) _wrap_Window_SetVirtualSizeHintsSz, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"Window_GetMaxSize", (PyCFunction) _wrap_Window_GetMaxSize, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"Window_GetMaxSize", (PyCFunction) _wrap_Window_GetMaxSize, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"Window_GetMinSize", (PyCFunction) _wrap_Window_GetMinSize, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"Window_GetMinSize", (PyCFunction) _wrap_Window_GetMinSize, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"Window_SetMinSize", (PyCFunction) _wrap_Window_SetMinSize, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"Window_SetMinSize", (PyCFunction) _wrap_Window_SetMinSize, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
@@ -5631,7 +5631,22 @@ class Display(object):
|
|||||||
"""
|
"""
|
||||||
ChangeMode(self, VideoMode mode=DefaultVideoMode) -> bool
|
ChangeMode(self, VideoMode mode=DefaultVideoMode) -> bool
|
||||||
|
|
||||||
Change current mode, return true if succeeded, false otherwise
|
Changes the video mode of this display to the mode specified in the
|
||||||
|
mode parameter.
|
||||||
|
|
||||||
|
If wx.DefaultVideoMode is passed in as the mode parameter, the defined
|
||||||
|
behaviour is that wx.Display will reset the video mode to the default
|
||||||
|
mode used by the display. On Windows, the behavior is normal.
|
||||||
|
However, there are differences on other platforms. On Unix variations
|
||||||
|
using X11 extensions it should behave as defined, but some
|
||||||
|
irregularities may occur.
|
||||||
|
|
||||||
|
On wxMac passing in wx.DefaultVideoMode as the mode parameter does
|
||||||
|
nothing. This happens because Carbon no longer has access to
|
||||||
|
DMUseScreenPrefs, an undocumented function that changed the video mode
|
||||||
|
to the system default by using the system's 'scrn' resource.
|
||||||
|
|
||||||
|
Returns True if succeeded, False otherwise
|
||||||
"""
|
"""
|
||||||
return _misc_.Display_ChangeMode(*args, **kwargs)
|
return _misc_.Display_ChangeMode(*args, **kwargs)
|
||||||
|
|
||||||
|
@@ -748,6 +748,9 @@ _windows_.SplashScreen_swigregister(SplashScreenPtr)
|
|||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
SB_NORMAL = _windows_.SB_NORMAL
|
||||||
|
SB_FLAT = _windows_.SB_FLAT
|
||||||
|
SB_RAISED = _windows_.SB_RAISED
|
||||||
class StatusBar(_core.Window):
|
class StatusBar(_core.Window):
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return "<%s.%s; proxy of C++ wxStatusBar instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
return "<%s.%s; proxy of C++ wxStatusBar instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||||
@@ -794,6 +797,10 @@ class StatusBar(_core.Window):
|
|||||||
"""SetStatusWidths(self, int widths, int widths_field)"""
|
"""SetStatusWidths(self, int widths, int widths_field)"""
|
||||||
return _windows_.StatusBar_SetStatusWidths(*args, **kwargs)
|
return _windows_.StatusBar_SetStatusWidths(*args, **kwargs)
|
||||||
|
|
||||||
|
def SetStatusStyles(*args, **kwargs):
|
||||||
|
"""SetStatusStyles(self, int styles, int styles_field)"""
|
||||||
|
return _windows_.StatusBar_SetStatusStyles(*args, **kwargs)
|
||||||
|
|
||||||
def GetFieldRect(*args, **kwargs):
|
def GetFieldRect(*args, **kwargs):
|
||||||
"""GetFieldRect(self, int i) -> Rect"""
|
"""GetFieldRect(self, int i) -> Rect"""
|
||||||
return _windows_.StatusBar_GetFieldRect(*args, **kwargs)
|
return _windows_.StatusBar_GetFieldRect(*args, **kwargs)
|
||||||
|
@@ -5463,6 +5463,45 @@ static PyObject *_wrap_StatusBar_SetStatusWidths(PyObject *self, PyObject *args,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static PyObject *_wrap_StatusBar_SetStatusStyles(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject *resultobj;
|
||||||
|
wxStatusBar *arg1 = (wxStatusBar *) 0 ;
|
||||||
|
int arg2 ;
|
||||||
|
int *arg3 = (int *) 0 ;
|
||||||
|
PyObject * obj0 = 0 ;
|
||||||
|
PyObject * obj1 = 0 ;
|
||||||
|
char *kwnames[] = {
|
||||||
|
(char *) "self",(char *) "styles", NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"OO:StatusBar_SetStatusStyles",kwnames,&obj0,&obj1)) goto fail;
|
||||||
|
if ((SWIG_ConvertPtr(obj0,(void **)(&arg1),SWIGTYPE_p_wxStatusBar,
|
||||||
|
SWIG_POINTER_EXCEPTION | 0)) == -1) SWIG_fail;
|
||||||
|
{
|
||||||
|
arg2 = PyList_Size(obj1);
|
||||||
|
arg3 = int_LIST_helper(obj1);
|
||||||
|
if (arg3 == NULL) SWIG_fail;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||||
|
(arg1)->SetStatusStyles(arg2,(int const *)arg3);
|
||||||
|
|
||||||
|
wxPyEndAllowThreads(__tstate);
|
||||||
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
|
}
|
||||||
|
Py_INCREF(Py_None); resultobj = Py_None;
|
||||||
|
{
|
||||||
|
if (arg3) delete [] arg3;
|
||||||
|
}
|
||||||
|
return resultobj;
|
||||||
|
fail:
|
||||||
|
{
|
||||||
|
if (arg3) delete [] arg3;
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static PyObject *_wrap_StatusBar_GetFieldRect(PyObject *self, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_StatusBar_GetFieldRect(PyObject *self, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject *resultobj;
|
PyObject *resultobj;
|
||||||
wxStatusBar *arg1 = (wxStatusBar *) 0 ;
|
wxStatusBar *arg1 = (wxStatusBar *) 0 ;
|
||||||
@@ -25079,6 +25118,7 @@ static PyMethodDef SwigMethods[] = {
|
|||||||
{ (char *)"StatusBar_PushStatusText", (PyCFunction) _wrap_StatusBar_PushStatusText, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"StatusBar_PushStatusText", (PyCFunction) _wrap_StatusBar_PushStatusText, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"StatusBar_PopStatusText", (PyCFunction) _wrap_StatusBar_PopStatusText, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"StatusBar_PopStatusText", (PyCFunction) _wrap_StatusBar_PopStatusText, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"StatusBar_SetStatusWidths", (PyCFunction) _wrap_StatusBar_SetStatusWidths, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"StatusBar_SetStatusWidths", (PyCFunction) _wrap_StatusBar_SetStatusWidths, METH_VARARGS | METH_KEYWORDS },
|
||||||
|
{ (char *)"StatusBar_SetStatusStyles", (PyCFunction) _wrap_StatusBar_SetStatusStyles, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"StatusBar_GetFieldRect", (PyCFunction) _wrap_StatusBar_GetFieldRect, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"StatusBar_GetFieldRect", (PyCFunction) _wrap_StatusBar_GetFieldRect, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"StatusBar_SetMinHeight", (PyCFunction) _wrap_StatusBar_SetMinHeight, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"StatusBar_SetMinHeight", (PyCFunction) _wrap_StatusBar_SetMinHeight, METH_VARARGS | METH_KEYWORDS },
|
||||||
{ (char *)"StatusBar_GetBorderX", (PyCFunction) _wrap_StatusBar_GetBorderX, METH_VARARGS | METH_KEYWORDS },
|
{ (char *)"StatusBar_GetBorderX", (PyCFunction) _wrap_StatusBar_GetBorderX, METH_VARARGS | METH_KEYWORDS },
|
||||||
@@ -26952,6 +26992,9 @@ SWIGEXPORT(void) SWIG_init(void) {
|
|||||||
PyDict_SetItemString(d,"SPLASH_NO_CENTRE", SWIG_FromInt((int)wxSPLASH_NO_CENTRE));
|
PyDict_SetItemString(d,"SPLASH_NO_CENTRE", SWIG_FromInt((int)wxSPLASH_NO_CENTRE));
|
||||||
PyDict_SetItemString(d,"SPLASH_TIMEOUT", SWIG_FromInt((int)wxSPLASH_TIMEOUT));
|
PyDict_SetItemString(d,"SPLASH_TIMEOUT", SWIG_FromInt((int)wxSPLASH_TIMEOUT));
|
||||||
PyDict_SetItemString(d,"SPLASH_NO_TIMEOUT", SWIG_FromInt((int)wxSPLASH_NO_TIMEOUT));
|
PyDict_SetItemString(d,"SPLASH_NO_TIMEOUT", SWIG_FromInt((int)wxSPLASH_NO_TIMEOUT));
|
||||||
|
PyDict_SetItemString(d,"SB_NORMAL", SWIG_FromInt((int)wxSB_NORMAL));
|
||||||
|
PyDict_SetItemString(d,"SB_FLAT", SWIG_FromInt((int)wxSB_FLAT));
|
||||||
|
PyDict_SetItemString(d,"SB_RAISED", SWIG_FromInt((int)wxSB_RAISED));
|
||||||
SWIG_addvarlink(SWIG_globals,(char*)"SplitterNameStr",_wrap_SplitterNameStr_get, _wrap_SplitterNameStr_set);
|
SWIG_addvarlink(SWIG_globals,(char*)"SplitterNameStr",_wrap_SplitterNameStr_get, _wrap_SplitterNameStr_set);
|
||||||
PyDict_SetItemString(d,"SP_NOBORDER", SWIG_FromInt((int)wxSP_NOBORDER));
|
PyDict_SetItemString(d,"SP_NOBORDER", SWIG_FromInt((int)wxSP_NOBORDER));
|
||||||
PyDict_SetItemString(d,"SP_NOSASH", SWIG_FromInt((int)wxSP_NOSASH));
|
PyDict_SetItemString(d,"SP_NOSASH", SWIG_FromInt((int)wxSP_NOSASH));
|
||||||
|
@@ -85,6 +85,9 @@ wxSplashScreenWindow = wx._windows.SplashScreenWindow
|
|||||||
wxSplashScreenWindowPtr = wx._windows.SplashScreenWindowPtr
|
wxSplashScreenWindowPtr = wx._windows.SplashScreenWindowPtr
|
||||||
wxSplashScreen = wx._windows.SplashScreen
|
wxSplashScreen = wx._windows.SplashScreen
|
||||||
wxSplashScreenPtr = wx._windows.SplashScreenPtr
|
wxSplashScreenPtr = wx._windows.SplashScreenPtr
|
||||||
|
wxSB_NORMAL = wx._windows.SB_NORMAL
|
||||||
|
wxSB_FLAT = wx._windows.SB_FLAT
|
||||||
|
wxSB_RAISED = wx._windows.SB_RAISED
|
||||||
wxStatusBar = wx._windows.StatusBar
|
wxStatusBar = wx._windows.StatusBar
|
||||||
wxStatusBarPtr = wx._windows.StatusBarPtr
|
wxStatusBarPtr = wx._windows.StatusBarPtr
|
||||||
wxPreStatusBar = wx._windows.PreStatusBar
|
wxPreStatusBar = wx._windows.PreStatusBar
|
||||||
|
Reference in New Issue
Block a user