reSWIGged
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33341 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -86,6 +86,7 @@ STATIC_BORDER = _core_.STATIC_BORDER
|
||||
TRANSPARENT_WINDOW = _core_.TRANSPARENT_WINDOW
|
||||
NO_BORDER = _core_.NO_BORDER
|
||||
DEFAULT_CONTROL_BORDER = _core_.DEFAULT_CONTROL_BORDER
|
||||
DEFAULT_STATUSBAR_STYLE = _core_.DEFAULT_STATUSBAR_STYLE
|
||||
TAB_TRAVERSAL = _core_.TAB_TRAVERSAL
|
||||
WANTS_CHARS = _core_.WANTS_CHARS
|
||||
POPUP_WINDOW = _core_.POPUP_WINDOW
|
||||
|
@@ -47727,6 +47727,9 @@ SWIGEXPORT(void) SWIG_init(void) {
|
||||
{
|
||||
PyDict_SetItemString(d,"DEFAULT_CONTROL_BORDER", SWIG_From_int((int)(wxDEFAULT_CONTROL_BORDER)));
|
||||
}
|
||||
{
|
||||
PyDict_SetItemString(d,"DEFAULT_STATUSBAR_STYLE", SWIG_From_int((int)(wxDEFAULT_STATUSBAR_STYLE)));
|
||||
}
|
||||
{
|
||||
PyDict_SetItemString(d,"TAB_TRAVERSAL", SWIG_From_int((int)(wxTAB_TRAVERSAL)));
|
||||
}
|
||||
|
@@ -516,7 +516,7 @@ class Frame(TopLevelWindow):
|
||||
Command = ProcessCommand
|
||||
def CreateStatusBar(*args, **kwargs):
|
||||
"""
|
||||
CreateStatusBar(self, int number=1, long style=wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE,
|
||||
CreateStatusBar(self, int number=1, long style=wxDEFAULT_STATUSBAR_STYLE,
|
||||
int winid=0, String name=StatusLineNameStr) -> StatusBar
|
||||
"""
|
||||
return _windows_.Frame_CreateStatusBar(*args, **kwargs)
|
||||
@@ -857,7 +857,7 @@ class StatusBar(_core.Window):
|
||||
return "<%s.%s; proxy of C++ wxStatusBar instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
"""
|
||||
__init__(self, Window parent, int id=-1, long style=wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE,
|
||||
__init__(self, Window parent, int id=-1, long style=wxDEFAULT_STATUSBAR_STYLE,
|
||||
String name=StatusLineNameStr) -> StatusBar
|
||||
"""
|
||||
newobj = _windows_.new_StatusBar(*args, **kwargs)
|
||||
|
@@ -4965,7 +4965,7 @@ static PyObject *_wrap_Frame_CreateStatusBar(PyObject *, PyObject *args, PyObjec
|
||||
PyObject *resultobj;
|
||||
wxFrame *arg1 = (wxFrame *) 0 ;
|
||||
int arg2 = (int) 1 ;
|
||||
long arg3 = (long) wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE ;
|
||||
long arg3 = (long) wxDEFAULT_STATUSBAR_STYLE ;
|
||||
int arg4 = (int) 0 ;
|
||||
wxString const &arg5_defvalue = wxPyStatusLineNameStr ;
|
||||
wxString *arg5 = (wxString *) &arg5_defvalue ;
|
||||
@@ -6646,7 +6646,7 @@ static PyObject *_wrap_new_StatusBar(PyObject *, PyObject *args, PyObject *kwarg
|
||||
PyObject *resultobj;
|
||||
wxWindow *arg1 = (wxWindow *) 0 ;
|
||||
int arg2 = (int) -1 ;
|
||||
long arg3 = (long) wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE ;
|
||||
long arg3 = (long) wxDEFAULT_STATUSBAR_STYLE ;
|
||||
wxString const &arg4_defvalue = wxPyStatusLineNameStr ;
|
||||
wxString *arg4 = (wxString *) &arg4_defvalue ;
|
||||
wxStatusBar *result;
|
||||
|
Reference in New Issue
Block a user