wxDEFAULT_STATUSBAR_STYLE
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33340 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -90,6 +90,13 @@ typedef wxPoint2DDouble wxPoint2D;
|
||||
#define SWIG_TYPE_TABLE wxPython_type_table
|
||||
#endif
|
||||
|
||||
#ifdef __WXGTK__
|
||||
#define wxDEFAULT_STATUSBAR_STYLE wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE
|
||||
#else
|
||||
#define wxDEFAULT_STATUSBAR_STYLE wxST_SIZEGRIP
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef wxPyUSE_EXPORTED_API
|
||||
|
||||
void __wxPyPreStart(PyObject*);
|
||||
|
@@ -16,6 +16,7 @@
|
||||
%rename(TRANSPARENT_WINDOW) wxTRANSPARENT_WINDOW;
|
||||
%rename(NO_BORDER) wxNO_BORDER;
|
||||
%rename(DEFAULT_CONTROL_BORDER) wxDEFAULT_CONTROL_BORDER;
|
||||
%rename(DEFAULT_STATUSBAR_STYLE) wxDEFAULT_STATUSBAR_STYLE;
|
||||
%rename(TAB_TRAVERSAL) wxTAB_TRAVERSAL;
|
||||
%rename(WANTS_CHARS) wxWANTS_CHARS;
|
||||
%rename(POPUP_WINDOW) wxPOPUP_WINDOW;
|
||||
|
@@ -259,21 +259,6 @@ typedef unsigned long wxUIntPtr;
|
||||
%enddef
|
||||
#endif
|
||||
|
||||
#ifdef _DO_FULL_DOCS
|
||||
%define RenameDocCtorStr(newname, docstr, details, decl)
|
||||
%feature("docstring") decl docstr details;
|
||||
%rename(newname) decl;
|
||||
decl
|
||||
%enddef
|
||||
#else
|
||||
%define RenameDocCtorStr(newname, docstr, details, decl)
|
||||
%feature("docstring") decl docstr;
|
||||
%rename(newname) decl;
|
||||
decl
|
||||
%enddef
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
// Set the autodoc string for a constructor decl and then define the decl too.
|
||||
// Must use the full declaration of the item.
|
||||
@@ -426,7 +411,8 @@ enum {
|
||||
wxTRANSPARENT_WINDOW,
|
||||
wxNO_BORDER,
|
||||
wxDEFAULT_CONTROL_BORDER,
|
||||
|
||||
wxDEFAULT_STATUSBAR_STYLE,
|
||||
|
||||
wxTAB_TRAVERSAL,
|
||||
wxWANTS_CHARS,
|
||||
wxPOPUP_WINDOW,
|
||||
|
@@ -32,6 +32,7 @@ wxSTATIC_BORDER = wx._core.STATIC_BORDER
|
||||
wxTRANSPARENT_WINDOW = wx._core.TRANSPARENT_WINDOW
|
||||
wxNO_BORDER = wx._core.NO_BORDER
|
||||
wxDEFAULT_CONTROL_BORDER = wx._core.DEFAULT_CONTROL_BORDER
|
||||
wxDEFAULT_STATUSBAR_STYLE = wx._core.DEFAULT_STATUSBAR_STYLE
|
||||
wxTAB_TRAVERSAL = wx._core.TAB_TRAVERSAL
|
||||
wxWANTS_CHARS = wx._core.WANTS_CHARS
|
||||
wxPOPUP_WINDOW = wx._core.POPUP_WINDOW
|
||||
|
Reference in New Issue
Block a user