reSWIGged
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32615 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2548,6 +2548,16 @@ class ArtProvider(object):
|
|||||||
return _misc_.ArtProvider_GetIcon(*args, **kwargs)
|
return _misc_.ArtProvider_GetIcon(*args, **kwargs)
|
||||||
|
|
||||||
GetIcon = staticmethod(GetIcon)
|
GetIcon = staticmethod(GetIcon)
|
||||||
|
def GetSize(*args, **kwargs):
|
||||||
|
"""
|
||||||
|
GetSize(String client, bool platform_dependent=False) -> Size
|
||||||
|
|
||||||
|
Get the size of an icon from a specific Art Client, queries the
|
||||||
|
topmost provider if platform_dependent = false
|
||||||
|
"""
|
||||||
|
return _misc_.ArtProvider_GetSize(*args, **kwargs)
|
||||||
|
|
||||||
|
GetSize = staticmethod(GetSize)
|
||||||
def Destroy(*args, **kwargs):
|
def Destroy(*args, **kwargs):
|
||||||
"""Destroy(self)"""
|
"""Destroy(self)"""
|
||||||
return _misc_.ArtProvider_Destroy(*args, **kwargs)
|
return _misc_.ArtProvider_Destroy(*args, **kwargs)
|
||||||
@@ -2658,6 +2668,15 @@ def ArtProvider_GetIcon(*args, **kwargs):
|
|||||||
"""
|
"""
|
||||||
return _misc_.ArtProvider_GetIcon(*args, **kwargs)
|
return _misc_.ArtProvider_GetIcon(*args, **kwargs)
|
||||||
|
|
||||||
|
def ArtProvider_GetSize(*args, **kwargs):
|
||||||
|
"""
|
||||||
|
ArtProvider_GetSize(String client, bool platform_dependent=False) -> Size
|
||||||
|
|
||||||
|
Get the size of an icon from a specific Art Client, queries the
|
||||||
|
topmost provider if platform_dependent = false
|
||||||
|
"""
|
||||||
|
return _misc_.ArtProvider_GetSize(*args, **kwargs)
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
|
|
||||||
CONFIG_USE_LOCAL_FILE = _misc_.CONFIG_USE_LOCAL_FILE
|
CONFIG_USE_LOCAL_FILE = _misc_.CONFIG_USE_LOCAL_FILE
|
||||||
|
@@ -16746,6 +16746,56 @@ static PyObject *_wrap_ArtProvider_GetIcon(PyObject *, PyObject *args, PyObject
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static PyObject *_wrap_ArtProvider_GetSize(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject *resultobj;
|
||||||
|
wxString *arg1 = 0 ;
|
||||||
|
bool arg2 = (bool) false ;
|
||||||
|
wxSize result;
|
||||||
|
bool temp1 = false ;
|
||||||
|
PyObject * obj0 = 0 ;
|
||||||
|
PyObject * obj1 = 0 ;
|
||||||
|
char *kwnames[] = {
|
||||||
|
(char *) "client",(char *) "platform_dependent", NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:ArtProvider_GetSize",kwnames,&obj0,&obj1)) goto fail;
|
||||||
|
{
|
||||||
|
arg1 = wxString_in_helper(obj0);
|
||||||
|
if (arg1 == NULL) SWIG_fail;
|
||||||
|
temp1 = true;
|
||||||
|
}
|
||||||
|
if (obj1) {
|
||||||
|
{
|
||||||
|
arg2 = (bool)(SWIG_As_bool(obj1));
|
||||||
|
if (SWIG_arg_fail(2)) SWIG_fail;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||||
|
result = wxPyArtProvider::GetSize((wxString const &)*arg1,arg2);
|
||||||
|
|
||||||
|
wxPyEndAllowThreads(__tstate);
|
||||||
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxSize * resultptr;
|
||||||
|
resultptr = new wxSize((wxSize &)(result));
|
||||||
|
resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if (temp1)
|
||||||
|
delete arg1;
|
||||||
|
}
|
||||||
|
return resultobj;
|
||||||
|
fail:
|
||||||
|
{
|
||||||
|
if (temp1)
|
||||||
|
delete arg1;
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static PyObject *_wrap_ArtProvider_Destroy(PyObject *, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_ArtProvider_Destroy(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject *resultobj;
|
PyObject *resultobj;
|
||||||
wxPyArtProvider *arg1 = (wxPyArtProvider *) 0 ;
|
wxPyArtProvider *arg1 = (wxPyArtProvider *) 0 ;
|
||||||
@@ -31661,6 +31711,7 @@ static PyMethodDef SwigMethods[] = {
|
|||||||
{ (char *)"ArtProvider_RemoveProvider", (PyCFunction) _wrap_ArtProvider_RemoveProvider, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"ArtProvider_RemoveProvider", (PyCFunction) _wrap_ArtProvider_RemoveProvider, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
{ (char *)"ArtProvider_GetBitmap", (PyCFunction) _wrap_ArtProvider_GetBitmap, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"ArtProvider_GetBitmap", (PyCFunction) _wrap_ArtProvider_GetBitmap, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
{ (char *)"ArtProvider_GetIcon", (PyCFunction) _wrap_ArtProvider_GetIcon, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"ArtProvider_GetIcon", (PyCFunction) _wrap_ArtProvider_GetIcon, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
|
{ (char *)"ArtProvider_GetSize", (PyCFunction) _wrap_ArtProvider_GetSize, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
{ (char *)"ArtProvider_Destroy", (PyCFunction) _wrap_ArtProvider_Destroy, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"ArtProvider_Destroy", (PyCFunction) _wrap_ArtProvider_Destroy, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
{ (char *)"ArtProvider_swigregister", ArtProvider_swigregister, METH_VARARGS, NULL},
|
{ (char *)"ArtProvider_swigregister", ArtProvider_swigregister, METH_VARARGS, NULL},
|
||||||
{ (char *)"delete_ConfigBase", (PyCFunction) _wrap_delete_ConfigBase, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"delete_ConfigBase", (PyCFunction) _wrap_delete_ConfigBase, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
|
@@ -2548,6 +2548,16 @@ class ArtProvider(object):
|
|||||||
return _misc_.ArtProvider_GetIcon(*args, **kwargs)
|
return _misc_.ArtProvider_GetIcon(*args, **kwargs)
|
||||||
|
|
||||||
GetIcon = staticmethod(GetIcon)
|
GetIcon = staticmethod(GetIcon)
|
||||||
|
def GetSize(*args, **kwargs):
|
||||||
|
"""
|
||||||
|
GetSize(String client, bool platform_dependent=False) -> Size
|
||||||
|
|
||||||
|
Get the size of an icon from a specific Art Client, queries the
|
||||||
|
topmost provider if platform_dependent = false
|
||||||
|
"""
|
||||||
|
return _misc_.ArtProvider_GetSize(*args, **kwargs)
|
||||||
|
|
||||||
|
GetSize = staticmethod(GetSize)
|
||||||
def Destroy(*args, **kwargs):
|
def Destroy(*args, **kwargs):
|
||||||
"""Destroy(self)"""
|
"""Destroy(self)"""
|
||||||
return _misc_.ArtProvider_Destroy(*args, **kwargs)
|
return _misc_.ArtProvider_Destroy(*args, **kwargs)
|
||||||
@@ -2658,6 +2668,15 @@ def ArtProvider_GetIcon(*args, **kwargs):
|
|||||||
"""
|
"""
|
||||||
return _misc_.ArtProvider_GetIcon(*args, **kwargs)
|
return _misc_.ArtProvider_GetIcon(*args, **kwargs)
|
||||||
|
|
||||||
|
def ArtProvider_GetSize(*args, **kwargs):
|
||||||
|
"""
|
||||||
|
ArtProvider_GetSize(String client, bool platform_dependent=False) -> Size
|
||||||
|
|
||||||
|
Get the size of an icon from a specific Art Client, queries the
|
||||||
|
topmost provider if platform_dependent = false
|
||||||
|
"""
|
||||||
|
return _misc_.ArtProvider_GetSize(*args, **kwargs)
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
|
|
||||||
CONFIG_USE_LOCAL_FILE = _misc_.CONFIG_USE_LOCAL_FILE
|
CONFIG_USE_LOCAL_FILE = _misc_.CONFIG_USE_LOCAL_FILE
|
||||||
|
@@ -16738,6 +16738,56 @@ static PyObject *_wrap_ArtProvider_GetIcon(PyObject *, PyObject *args, PyObject
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static PyObject *_wrap_ArtProvider_GetSize(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject *resultobj;
|
||||||
|
wxString *arg1 = 0 ;
|
||||||
|
bool arg2 = (bool) false ;
|
||||||
|
wxSize result;
|
||||||
|
bool temp1 = false ;
|
||||||
|
PyObject * obj0 = 0 ;
|
||||||
|
PyObject * obj1 = 0 ;
|
||||||
|
char *kwnames[] = {
|
||||||
|
(char *) "client",(char *) "platform_dependent", NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:ArtProvider_GetSize",kwnames,&obj0,&obj1)) goto fail;
|
||||||
|
{
|
||||||
|
arg1 = wxString_in_helper(obj0);
|
||||||
|
if (arg1 == NULL) SWIG_fail;
|
||||||
|
temp1 = true;
|
||||||
|
}
|
||||||
|
if (obj1) {
|
||||||
|
{
|
||||||
|
arg2 = (bool)(SWIG_As_bool(obj1));
|
||||||
|
if (SWIG_arg_fail(2)) SWIG_fail;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||||
|
result = wxPyArtProvider::GetSize((wxString const &)*arg1,arg2);
|
||||||
|
|
||||||
|
wxPyEndAllowThreads(__tstate);
|
||||||
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxSize * resultptr;
|
||||||
|
resultptr = new wxSize((wxSize &)(result));
|
||||||
|
resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if (temp1)
|
||||||
|
delete arg1;
|
||||||
|
}
|
||||||
|
return resultobj;
|
||||||
|
fail:
|
||||||
|
{
|
||||||
|
if (temp1)
|
||||||
|
delete arg1;
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static PyObject *_wrap_ArtProvider_Destroy(PyObject *, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_ArtProvider_Destroy(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject *resultobj;
|
PyObject *resultobj;
|
||||||
wxPyArtProvider *arg1 = (wxPyArtProvider *) 0 ;
|
wxPyArtProvider *arg1 = (wxPyArtProvider *) 0 ;
|
||||||
@@ -31718,6 +31768,7 @@ static PyMethodDef SwigMethods[] = {
|
|||||||
{ (char *)"ArtProvider_RemoveProvider", (PyCFunction) _wrap_ArtProvider_RemoveProvider, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"ArtProvider_RemoveProvider", (PyCFunction) _wrap_ArtProvider_RemoveProvider, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
{ (char *)"ArtProvider_GetBitmap", (PyCFunction) _wrap_ArtProvider_GetBitmap, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"ArtProvider_GetBitmap", (PyCFunction) _wrap_ArtProvider_GetBitmap, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
{ (char *)"ArtProvider_GetIcon", (PyCFunction) _wrap_ArtProvider_GetIcon, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"ArtProvider_GetIcon", (PyCFunction) _wrap_ArtProvider_GetIcon, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
|
{ (char *)"ArtProvider_GetSize", (PyCFunction) _wrap_ArtProvider_GetSize, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
{ (char *)"ArtProvider_Destroy", (PyCFunction) _wrap_ArtProvider_Destroy, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"ArtProvider_Destroy", (PyCFunction) _wrap_ArtProvider_Destroy, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
{ (char *)"ArtProvider_swigregister", ArtProvider_swigregister, METH_VARARGS, NULL},
|
{ (char *)"ArtProvider_swigregister", ArtProvider_swigregister, METH_VARARGS, NULL},
|
||||||
{ (char *)"delete_ConfigBase", (PyCFunction) _wrap_delete_ConfigBase, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"delete_ConfigBase", (PyCFunction) _wrap_delete_ConfigBase, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
|
@@ -2548,6 +2548,16 @@ class ArtProvider(object):
|
|||||||
return _misc_.ArtProvider_GetIcon(*args, **kwargs)
|
return _misc_.ArtProvider_GetIcon(*args, **kwargs)
|
||||||
|
|
||||||
GetIcon = staticmethod(GetIcon)
|
GetIcon = staticmethod(GetIcon)
|
||||||
|
def GetSize(*args, **kwargs):
|
||||||
|
"""
|
||||||
|
GetSize(String client, bool platform_dependent=False) -> Size
|
||||||
|
|
||||||
|
Get the size of an icon from a specific Art Client, queries the
|
||||||
|
topmost provider if platform_dependent = false
|
||||||
|
"""
|
||||||
|
return _misc_.ArtProvider_GetSize(*args, **kwargs)
|
||||||
|
|
||||||
|
GetSize = staticmethod(GetSize)
|
||||||
def Destroy(*args, **kwargs):
|
def Destroy(*args, **kwargs):
|
||||||
"""Destroy(self)"""
|
"""Destroy(self)"""
|
||||||
return _misc_.ArtProvider_Destroy(*args, **kwargs)
|
return _misc_.ArtProvider_Destroy(*args, **kwargs)
|
||||||
@@ -2658,6 +2668,15 @@ def ArtProvider_GetIcon(*args, **kwargs):
|
|||||||
"""
|
"""
|
||||||
return _misc_.ArtProvider_GetIcon(*args, **kwargs)
|
return _misc_.ArtProvider_GetIcon(*args, **kwargs)
|
||||||
|
|
||||||
|
def ArtProvider_GetSize(*args, **kwargs):
|
||||||
|
"""
|
||||||
|
ArtProvider_GetSize(String client, bool platform_dependent=False) -> Size
|
||||||
|
|
||||||
|
Get the size of an icon from a specific Art Client, queries the
|
||||||
|
topmost provider if platform_dependent = false
|
||||||
|
"""
|
||||||
|
return _misc_.ArtProvider_GetSize(*args, **kwargs)
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
|
|
||||||
CONFIG_USE_LOCAL_FILE = _misc_.CONFIG_USE_LOCAL_FILE
|
CONFIG_USE_LOCAL_FILE = _misc_.CONFIG_USE_LOCAL_FILE
|
||||||
|
@@ -16737,6 +16737,56 @@ static PyObject *_wrap_ArtProvider_GetIcon(PyObject *, PyObject *args, PyObject
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static PyObject *_wrap_ArtProvider_GetSize(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||||
|
PyObject *resultobj;
|
||||||
|
wxString *arg1 = 0 ;
|
||||||
|
bool arg2 = (bool) false ;
|
||||||
|
wxSize result;
|
||||||
|
bool temp1 = false ;
|
||||||
|
PyObject * obj0 = 0 ;
|
||||||
|
PyObject * obj1 = 0 ;
|
||||||
|
char *kwnames[] = {
|
||||||
|
(char *) "client",(char *) "platform_dependent", NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
if(!PyArg_ParseTupleAndKeywords(args,kwargs,(char *)"O|O:ArtProvider_GetSize",kwnames,&obj0,&obj1)) goto fail;
|
||||||
|
{
|
||||||
|
arg1 = wxString_in_helper(obj0);
|
||||||
|
if (arg1 == NULL) SWIG_fail;
|
||||||
|
temp1 = true;
|
||||||
|
}
|
||||||
|
if (obj1) {
|
||||||
|
{
|
||||||
|
arg2 = (bool)(SWIG_As_bool(obj1));
|
||||||
|
if (SWIG_arg_fail(2)) SWIG_fail;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
PyThreadState* __tstate = wxPyBeginAllowThreads();
|
||||||
|
result = wxPyArtProvider::GetSize((wxString const &)*arg1,arg2);
|
||||||
|
|
||||||
|
wxPyEndAllowThreads(__tstate);
|
||||||
|
if (PyErr_Occurred()) SWIG_fail;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
wxSize * resultptr;
|
||||||
|
resultptr = new wxSize((wxSize &)(result));
|
||||||
|
resultobj = SWIG_NewPointerObj((void *)(resultptr), SWIGTYPE_p_wxSize, 1);
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if (temp1)
|
||||||
|
delete arg1;
|
||||||
|
}
|
||||||
|
return resultobj;
|
||||||
|
fail:
|
||||||
|
{
|
||||||
|
if (temp1)
|
||||||
|
delete arg1;
|
||||||
|
}
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static PyObject *_wrap_ArtProvider_Destroy(PyObject *, PyObject *args, PyObject *kwargs) {
|
static PyObject *_wrap_ArtProvider_Destroy(PyObject *, PyObject *args, PyObject *kwargs) {
|
||||||
PyObject *resultobj;
|
PyObject *resultobj;
|
||||||
wxPyArtProvider *arg1 = (wxPyArtProvider *) 0 ;
|
wxPyArtProvider *arg1 = (wxPyArtProvider *) 0 ;
|
||||||
@@ -31717,6 +31767,7 @@ static PyMethodDef SwigMethods[] = {
|
|||||||
{ (char *)"ArtProvider_RemoveProvider", (PyCFunction) _wrap_ArtProvider_RemoveProvider, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"ArtProvider_RemoveProvider", (PyCFunction) _wrap_ArtProvider_RemoveProvider, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
{ (char *)"ArtProvider_GetBitmap", (PyCFunction) _wrap_ArtProvider_GetBitmap, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"ArtProvider_GetBitmap", (PyCFunction) _wrap_ArtProvider_GetBitmap, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
{ (char *)"ArtProvider_GetIcon", (PyCFunction) _wrap_ArtProvider_GetIcon, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"ArtProvider_GetIcon", (PyCFunction) _wrap_ArtProvider_GetIcon, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
|
{ (char *)"ArtProvider_GetSize", (PyCFunction) _wrap_ArtProvider_GetSize, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
{ (char *)"ArtProvider_Destroy", (PyCFunction) _wrap_ArtProvider_Destroy, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"ArtProvider_Destroy", (PyCFunction) _wrap_ArtProvider_Destroy, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
{ (char *)"ArtProvider_swigregister", ArtProvider_swigregister, METH_VARARGS, NULL},
|
{ (char *)"ArtProvider_swigregister", ArtProvider_swigregister, METH_VARARGS, NULL},
|
||||||
{ (char *)"delete_ConfigBase", (PyCFunction) _wrap_delete_ConfigBase, METH_VARARGS | METH_KEYWORDS, NULL},
|
{ (char *)"delete_ConfigBase", (PyCFunction) _wrap_delete_ConfigBase, METH_VARARGS | METH_KEYWORDS, NULL},
|
||||||
|
@@ -453,6 +453,7 @@ wxArtProvider_PopProvider = wx._misc.ArtProvider_PopProvider
|
|||||||
wxArtProvider_RemoveProvider = wx._misc.ArtProvider_RemoveProvider
|
wxArtProvider_RemoveProvider = wx._misc.ArtProvider_RemoveProvider
|
||||||
wxArtProvider_GetBitmap = wx._misc.ArtProvider_GetBitmap
|
wxArtProvider_GetBitmap = wx._misc.ArtProvider_GetBitmap
|
||||||
wxArtProvider_GetIcon = wx._misc.ArtProvider_GetIcon
|
wxArtProvider_GetIcon = wx._misc.ArtProvider_GetIcon
|
||||||
|
wxArtProvider_GetSize = wx._misc.ArtProvider_GetSize
|
||||||
wxCONFIG_USE_LOCAL_FILE = wx._misc.CONFIG_USE_LOCAL_FILE
|
wxCONFIG_USE_LOCAL_FILE = wx._misc.CONFIG_USE_LOCAL_FILE
|
||||||
wxCONFIG_USE_GLOBAL_FILE = wx._misc.CONFIG_USE_GLOBAL_FILE
|
wxCONFIG_USE_GLOBAL_FILE = wx._misc.CONFIG_USE_GLOBAL_FILE
|
||||||
wxCONFIG_USE_RELATIVE_PATH = wx._misc.CONFIG_USE_RELATIVE_PATH
|
wxCONFIG_USE_RELATIVE_PATH = wx._misc.CONFIG_USE_RELATIVE_PATH
|
||||||
|
Reference in New Issue
Block a user