Renamed the core namespace's submodules to have a leading underscore.
This is so epydoc will automatically mark them as private and won't document the objects they contain (they'll be docmented via the wx module.) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26945 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
%import core.i
|
||||
%pythoncode { wx = core }
|
||||
%pythoncode { wx = _core }
|
||||
%pythoncode { __docfilter__ = wx.__docfilter__ }
|
||||
|
||||
MAKE_CONST_WXSTRING_NOSWIG(PanelNameStr);
|
||||
|
@@ -35,7 +35,7 @@
|
||||
|
||||
%import windows.i
|
||||
%import controls.i
|
||||
%pythoncode { wx = core }
|
||||
%pythoncode { wx = _core }
|
||||
%pythoncode { __docfilter__ = wx.__docfilter__ }
|
||||
|
||||
|
||||
|
@@ -3,16 +3,16 @@
|
||||
|
||||
import _gizmos
|
||||
|
||||
import windows
|
||||
import core
|
||||
import controls
|
||||
wx = core
|
||||
import _windows
|
||||
import _core
|
||||
import _controls
|
||||
wx = _core
|
||||
__docfilter__ = wx.__docfilter__
|
||||
wxEVT_DYNAMIC_SASH_SPLIT = _gizmos.wxEVT_DYNAMIC_SASH_SPLIT
|
||||
wxEVT_DYNAMIC_SASH_UNIFY = _gizmos.wxEVT_DYNAMIC_SASH_UNIFY
|
||||
DS_MANAGE_SCROLLBARS = _gizmos.DS_MANAGE_SCROLLBARS
|
||||
DS_DRAG_CORNER = _gizmos.DS_DRAG_CORNER
|
||||
class DynamicSashSplitEvent(core.CommandEvent):
|
||||
class DynamicSashSplitEvent(_core.CommandEvent):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxDynamicSashSplitEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -33,7 +33,7 @@ DynamicSashNameStr = cvar.DynamicSashNameStr
|
||||
EditableListBoxNameStr = cvar.EditableListBoxNameStr
|
||||
TreeListCtrlNameStr = cvar.TreeListCtrlNameStr
|
||||
|
||||
class DynamicSashUnifyEvent(core.CommandEvent):
|
||||
class DynamicSashUnifyEvent(_core.CommandEvent):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxDynamicSashUnifyEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -50,7 +50,7 @@ class DynamicSashUnifyEventPtr(DynamicSashUnifyEvent):
|
||||
self.__class__ = DynamicSashUnifyEvent
|
||||
_gizmos.DynamicSashUnifyEvent_swigregister(DynamicSashUnifyEventPtr)
|
||||
|
||||
class DynamicSashWindow(core.Window):
|
||||
class DynamicSashWindow(_core.Window):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxDynamicSashWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -101,7 +101,7 @@ EVT_DYNAMIC_SASH_UNIFY = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_UNIFY, 1 )
|
||||
EL_ALLOW_NEW = _gizmos.EL_ALLOW_NEW
|
||||
EL_ALLOW_EDIT = _gizmos.EL_ALLOW_EDIT
|
||||
EL_ALLOW_DELETE = _gizmos.EL_ALLOW_DELETE
|
||||
class EditableListBox(windows.Panel):
|
||||
class EditableListBox(_windows.Panel):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxEditableListBox instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -156,7 +156,7 @@ class EditableListBoxPtr(EditableListBox):
|
||||
self.__class__ = EditableListBox
|
||||
_gizmos.EditableListBox_swigregister(EditableListBoxPtr)
|
||||
|
||||
class RemotelyScrolledTreeCtrl(controls.TreeCtrl):
|
||||
class RemotelyScrolledTreeCtrl(_controls.TreeCtrl):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxRemotelyScrolledTreeCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -202,7 +202,7 @@ class RemotelyScrolledTreeCtrlPtr(RemotelyScrolledTreeCtrl):
|
||||
self.__class__ = RemotelyScrolledTreeCtrl
|
||||
_gizmos.RemotelyScrolledTreeCtrl_swigregister(RemotelyScrolledTreeCtrlPtr)
|
||||
|
||||
class TreeCompanionWindow(core.Window):
|
||||
class TreeCompanionWindow(_core.Window):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxPyTreeCompanionWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -236,7 +236,7 @@ class TreeCompanionWindowPtr(TreeCompanionWindow):
|
||||
self.__class__ = TreeCompanionWindow
|
||||
_gizmos.TreeCompanionWindow_swigregister(TreeCompanionWindowPtr)
|
||||
|
||||
class ThinSplitterWindow(windows.SplitterWindow):
|
||||
class ThinSplitterWindow(_windows.SplitterWindow):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxThinSplitterWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -258,7 +258,7 @@ class ThinSplitterWindowPtr(ThinSplitterWindow):
|
||||
self.__class__ = ThinSplitterWindow
|
||||
_gizmos.ThinSplitterWindow_swigregister(ThinSplitterWindowPtr)
|
||||
|
||||
class SplitterScrolledWindow(windows.ScrolledWindow):
|
||||
class SplitterScrolledWindow(_windows.ScrolledWindow):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxSplitterScrolledWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -285,7 +285,7 @@ LED_ALIGN_RIGHT = _gizmos.LED_ALIGN_RIGHT
|
||||
LED_ALIGN_CENTER = _gizmos.LED_ALIGN_CENTER
|
||||
LED_ALIGN_MASK = _gizmos.LED_ALIGN_MASK
|
||||
LED_DRAW_FADED = _gizmos.LED_DRAW_FADED
|
||||
class LEDNumberCtrl(core.Control):
|
||||
class LEDNumberCtrl(_core.Control):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxLEDNumberCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -348,7 +348,7 @@ TL_ALIGN_LEFT = _gizmos.TL_ALIGN_LEFT
|
||||
TL_ALIGN_RIGHT = _gizmos.TL_ALIGN_RIGHT
|
||||
TL_ALIGN_CENTER = _gizmos.TL_ALIGN_CENTER
|
||||
TREE_HITTEST_ONITEMCOLUMN = _gizmos.TREE_HITTEST_ONITEMCOLUMN
|
||||
class TreeListColumnInfo(core.Object):
|
||||
class TreeListColumnInfo(_core.Object):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxTreeListColumnInfo instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -408,7 +408,7 @@ class TreeListColumnInfoPtr(TreeListColumnInfo):
|
||||
self.__class__ = TreeListColumnInfo
|
||||
_gizmos.TreeListColumnInfo_swigregister(TreeListColumnInfoPtr)
|
||||
|
||||
class TreeListCtrl(core.Control):
|
||||
class TreeListCtrl(_core.Control):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxPyTreeListCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
|
@@ -24,7 +24,7 @@
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
%import core.i
|
||||
%pythoncode { wx = core }
|
||||
%pythoncode { wx = _core }
|
||||
%pythoncode { __docfilter__ = wx.__docfilter__ }
|
||||
|
||||
|
||||
|
@@ -3,10 +3,10 @@
|
||||
|
||||
import _glcanvas
|
||||
|
||||
import core
|
||||
wx = core
|
||||
import _core
|
||||
wx = _core
|
||||
__docfilter__ = wx.__docfilter__
|
||||
class GLContext(core.Object):
|
||||
class GLContext(_core.Object):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxGLContext instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -82,7 +82,7 @@ WX_GL_MIN_ACCUM_RED = _glcanvas.WX_GL_MIN_ACCUM_RED
|
||||
WX_GL_MIN_ACCUM_GREEN = _glcanvas.WX_GL_MIN_ACCUM_GREEN
|
||||
WX_GL_MIN_ACCUM_BLUE = _glcanvas.WX_GL_MIN_ACCUM_BLUE
|
||||
WX_GL_MIN_ACCUM_ALPHA = _glcanvas.WX_GL_MIN_ACCUM_ALPHA
|
||||
class GLCanvas(core.Window):
|
||||
class GLCanvas(_core.Window):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxGLCanvas instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
|
@@ -24,7 +24,7 @@
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
%import core.i
|
||||
%pythoncode { wx = core }
|
||||
%pythoncode { wx = _core }
|
||||
%pythoncode { __docfilter__ = wx.__docfilter__ }
|
||||
|
||||
MAKE_CONST_WXSTRING_NOSWIG(PanelNameStr);
|
||||
|
@@ -3,13 +3,13 @@
|
||||
|
||||
import _ogl
|
||||
|
||||
import windows
|
||||
import core
|
||||
wx = core
|
||||
import _windows
|
||||
import _core
|
||||
wx = _core
|
||||
__docfilter__ = wx.__docfilter__
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
class ShapeRegion(core.Object):
|
||||
class ShapeRegion(_core.Object):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxShapeRegion instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -138,7 +138,7 @@ class ShapeRegionPtr(ShapeRegion):
|
||||
self.__class__ = ShapeRegion
|
||||
_ogl.ShapeRegion_swigregister(ShapeRegionPtr)
|
||||
|
||||
class AttachmentPoint(core.Object):
|
||||
class AttachmentPoint(_core.Object):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxAttachmentPoint instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -158,7 +158,7 @@ class AttachmentPointPtr(AttachmentPoint):
|
||||
self.__class__ = AttachmentPoint
|
||||
_ogl.AttachmentPoint_swigregister(AttachmentPointPtr)
|
||||
|
||||
class PyShapeEvtHandler(core.Object):
|
||||
class PyShapeEvtHandler(_core.Object):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxPyShapeEvtHandler instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -1066,7 +1066,7 @@ _ogl.PyShape_swigregister(PyShapePtr)
|
||||
|
||||
oglMETAFLAGS_OUTLINE = _ogl.oglMETAFLAGS_OUTLINE
|
||||
oglMETAFLAGS_ATTACHMENTS = _ogl.oglMETAFLAGS_ATTACHMENTS
|
||||
class PseudoMetaFile(core.Object):
|
||||
class PseudoMetaFile(_core.Object):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxPseudoMetaFile instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -2005,7 +2005,7 @@ class PyDrawnShapePtr(PyDrawnShape):
|
||||
self.__class__ = PyDrawnShape
|
||||
_ogl.PyDrawnShape_swigregister(PyDrawnShapePtr)
|
||||
|
||||
class OGLConstraint(core.Object):
|
||||
class OGLConstraint(_core.Object):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxOGLConstraint instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -2960,7 +2960,7 @@ class PyCircleShapePtr(PyCircleShape):
|
||||
self.__class__ = PyCircleShape
|
||||
_ogl.PyCircleShape_swigregister(PyCircleShapePtr)
|
||||
|
||||
class ArrowHead(core.Object):
|
||||
class ArrowHead(_core.Object):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxArrowHead instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -3737,7 +3737,7 @@ class PyTextShapePtr(PyTextShape):
|
||||
self.__class__ = PyTextShape
|
||||
_ogl.PyTextShape_swigregister(PyTextShapePtr)
|
||||
|
||||
class Diagram(core.Object):
|
||||
class Diagram(_core.Object):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxDiagram instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -3850,7 +3850,7 @@ class DiagramPtr(Diagram):
|
||||
self.__class__ = Diagram
|
||||
_ogl.Diagram_swigregister(DiagramPtr)
|
||||
|
||||
class PyShapeCanvas(windows.ScrolledWindow):
|
||||
class PyShapeCanvas(_windows.ScrolledWindow):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxPyShapeCanvas instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
|
@@ -23,7 +23,7 @@
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
%import windows.i
|
||||
%pythoncode { wx = core }
|
||||
%pythoncode { wx = _core }
|
||||
%pythoncode { __docfilter__ = wx.__docfilter__ }
|
||||
|
||||
|
||||
|
@@ -3,9 +3,9 @@
|
||||
|
||||
import _stc
|
||||
|
||||
import core
|
||||
import misc
|
||||
wx = core
|
||||
import _core
|
||||
import _misc
|
||||
wx = _core
|
||||
__docfilter__ = wx.__docfilter__
|
||||
STC_USE_DND = _stc.STC_USE_DND
|
||||
STC_USE_POPUP = _stc.STC_USE_POPUP
|
||||
@@ -889,7 +889,7 @@ STC_CMD_WORDLEFTEND = _stc.STC_CMD_WORDLEFTEND
|
||||
STC_CMD_WORDLEFTENDEXTEND = _stc.STC_CMD_WORDLEFTENDEXTEND
|
||||
STC_CMD_WORDRIGHTEND = _stc.STC_CMD_WORDRIGHTEND
|
||||
STC_CMD_WORDRIGHTENDEXTEND = _stc.STC_CMD_WORDRIGHTENDEXTEND
|
||||
class StyledTextCtrl(core.Control):
|
||||
class StyledTextCtrl(_core.Control):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxStyledTextCtrl instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -2627,7 +2627,7 @@ def PreStyledTextCtrl(*args, **kwargs):
|
||||
val.thisown = 1
|
||||
return val
|
||||
|
||||
class StyledTextEvent(core.CommandEvent):
|
||||
class StyledTextEvent(_core.CommandEvent):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxStyledTextEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
|
@@ -24,7 +24,7 @@
|
||||
|
||||
%import core.i
|
||||
%import misc.i // for DnD
|
||||
%pythoncode { wx = core }
|
||||
%pythoncode { wx = _core }
|
||||
%pythoncode { __docfilter__ = wx.__docfilter__ }
|
||||
|
||||
MAKE_CONST_WXSTRING(STCNameStr);
|
||||
|
@@ -3,8 +3,8 @@
|
||||
|
||||
import _xrc
|
||||
|
||||
import core
|
||||
wx = core
|
||||
import _core
|
||||
wx = _core
|
||||
__docfilter__ = wx.__docfilter__
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
@@ -14,7 +14,7 @@ WX_XMLRES_CURRENT_VERSION_RELEASE = _xrc.WX_XMLRES_CURRENT_VERSION_RELEASE
|
||||
WX_XMLRES_CURRENT_VERSION_REVISION = _xrc.WX_XMLRES_CURRENT_VERSION_REVISION
|
||||
XRC_USE_LOCALE = _xrc.XRC_USE_LOCALE
|
||||
XRC_NO_SUBCLASSING = _xrc.XRC_NO_SUBCLASSING
|
||||
class XmlResource(core.Object):
|
||||
class XmlResource(_core.Object):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxXmlResource instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -401,7 +401,7 @@ def XmlNodeEasy(*args, **kwargs):
|
||||
val.thisown = 1
|
||||
return val
|
||||
|
||||
class XmlDocument(core.Object):
|
||||
class XmlDocument(_core.Object):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxXmlDocument instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
@@ -482,7 +482,7 @@ def EmptyXmlDocument(*args, **kwargs):
|
||||
|
||||
#---------------------------------------------------------------------------
|
||||
|
||||
class XmlResourceHandler(core.Object):
|
||||
class XmlResourceHandler(_core.Object):
|
||||
def __repr__(self):
|
||||
return "<%s.%s; proxy of C++ wxPyXmlResourceHandler instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
||||
def __init__(self, *args, **kwargs):
|
||||
|
@@ -26,7 +26,7 @@
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
%import core.i
|
||||
%pythoncode { wx = core }
|
||||
%pythoncode { wx = _core }
|
||||
%pythoncode { __docfilter__ = wx.__docfilter__ }
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user