2003-11-21 20:58:50 +00:00
|
|
|
# This file was created automatically by SWIG.
|
|
|
|
# Don't modify this file, modify the SWIG interface instead.
|
|
|
|
|
2004-05-14 21:38:16 +00:00
|
|
|
"""
|
|
|
|
The Object Graphics Library provides for simple drawing and manipulation
|
2004-06-01 21:57:03 +00:00
|
|
|
of 2D objects. (This version is deprecated, please use wx.lib.ogl instead.)
|
2004-05-14 21:38:16 +00:00
|
|
|
"""
|
|
|
|
|
2003-11-21 20:58:50 +00:00
|
|
|
import _ogl
|
|
|
|
|
2004-12-23 21:39:36 +00:00
|
|
|
def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
|
|
|
|
if (name == "this"):
|
|
|
|
if isinstance(value, class_type):
|
|
|
|
self.__dict__[name] = value.this
|
|
|
|
if hasattr(value,"thisown"): self.__dict__["thisown"] = value.thisown
|
|
|
|
del value.thisown
|
|
|
|
return
|
|
|
|
method = class_type.__swig_setmethods__.get(name,None)
|
|
|
|
if method: return method(self,value)
|
|
|
|
if (not static) or hasattr(self,name) or (name == "thisown"):
|
|
|
|
self.__dict__[name] = value
|
|
|
|
else:
|
|
|
|
raise AttributeError("You cannot add attributes to %s" % self)
|
|
|
|
|
|
|
|
def _swig_setattr(self,class_type,name,value):
|
|
|
|
return _swig_setattr_nondynamic(self,class_type,name,value,0)
|
|
|
|
|
|
|
|
def _swig_getattr(self,class_type,name):
|
|
|
|
method = class_type.__swig_getmethods__.get(name,None)
|
|
|
|
if method: return method(self)
|
|
|
|
raise AttributeError,name
|
|
|
|
|
|
|
|
import types
|
|
|
|
try:
|
|
|
|
_object = types.ObjectType
|
|
|
|
_newclass = 1
|
|
|
|
except AttributeError:
|
|
|
|
class _object : pass
|
|
|
|
_newclass = 0
|
|
|
|
del types
|
|
|
|
|
|
|
|
|
|
|
|
def _swig_setattr_nondynamic_method(set):
|
|
|
|
def set_attr(self,name,value):
|
|
|
|
if hasattr(self,name) or (name in ("this", "thisown")):
|
|
|
|
set(self,name,value)
|
|
|
|
else:
|
|
|
|
raise AttributeError("You cannot add attributes to %s" % self)
|
|
|
|
return set_attr
|
|
|
|
|
|
|
|
|
2004-04-25 06:51:10 +00:00
|
|
|
import _windows
|
|
|
|
import _core
|
|
|
|
wx = _core
|
2004-04-30 06:30:29 +00:00
|
|
|
__docfilter__ = wx.__DocFilter(globals())
|
2004-06-01 21:57:03 +00:00
|
|
|
import warnings
|
|
|
|
warnings.warn("This module is deprecated. Please use the wx.lib.ogl package instead.",
|
|
|
|
DeprecationWarning, stacklevel=2)
|
|
|
|
|
2003-11-21 20:58:50 +00:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
2004-04-25 06:51:10 +00:00
|
|
|
class ShapeRegion(_core.Object):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ ShapeRegion class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
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):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self) -> ShapeRegion"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_ShapeRegion(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
def SetText(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetText(self, String s)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_SetText(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetFont(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetFont(self, Font f)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_SetFont(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetMinSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetMinSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_SetMinSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_SetSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetPosition(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetPosition(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_SetPosition(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetProportions(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetProportions(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_SetProportions(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetFormatMode(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetFormatMode(self, int mode)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_SetFormatMode(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetName(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetName(self, String s)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_SetName(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetColour(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetColour(self, String col)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_SetColour(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetText(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetText(self) -> String"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetText(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetFont(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetFont(self) -> Font"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetFont(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetMinSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetMinSize(self, double OUTPUT, double OUTPUT)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetMinSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetProportion(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetProportion(self, double OUTPUT, double OUTPUT)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetProportion(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetSize(self, double OUTPUT, double OUTPUT)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetPosition(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetPosition(self, double OUTPUT, double OUTPUT)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetPosition(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetFormatMode(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetFormatMode(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetFormatMode(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetName(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetName(self) -> String"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetName(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetColour(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetColour(self) -> String"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetColour(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetActualColourObject(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetActualColourObject(self) -> Colour"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetActualColourObject(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetFormattedText(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetFormattedText(self) -> wxList"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetFormattedText(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetPenColour(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetPenColour(self) -> String"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetPenColour(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetPenStyle(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetPenStyle(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetPenStyle(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetPenStyle(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetPenStyle(self, int style)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_SetPenStyle(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetPenColour(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetPenColour(self, String col)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_SetPenColour(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetActualPen(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetActualPen(self) -> wxPen"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetActualPen(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetWidth(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetWidth(self) -> double"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetWidth(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetHeight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetHeight(self) -> double"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_GetHeight(*args, **kwargs)
|
|
|
|
|
|
|
|
def ClearText(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ClearText(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ShapeRegion_ClearText(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class ShapeRegionPtr(ShapeRegion):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = ShapeRegion
|
|
|
|
_ogl.ShapeRegion_swigregister(ShapeRegionPtr)
|
|
|
|
|
2004-04-25 06:51:10 +00:00
|
|
|
class AttachmentPoint(_core.Object):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ AttachmentPoint class"""
|
2004-01-02 20:38:22 +00:00
|
|
|
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):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self, int id=0, double x=0.0, double y=0.0) -> AttachmentPoint"""
|
2004-01-02 20:38:22 +00:00
|
|
|
newobj = _ogl.new_AttachmentPoint(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
m_id = property(_ogl.AttachmentPoint_m_id_get, _ogl.AttachmentPoint_m_id_set)
|
|
|
|
m_x = property(_ogl.AttachmentPoint_m_x_get, _ogl.AttachmentPoint_m_x_set)
|
|
|
|
m_y = property(_ogl.AttachmentPoint_m_y_get, _ogl.AttachmentPoint_m_y_set)
|
|
|
|
|
|
|
|
class AttachmentPointPtr(AttachmentPoint):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = AttachmentPoint
|
|
|
|
_ogl.AttachmentPoint_swigregister(AttachmentPointPtr)
|
|
|
|
|
2004-04-25 06:51:10 +00:00
|
|
|
class PyShapeEvtHandler(_core.Object):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyShapeEvtHandler class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
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):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self, PyShapeEvtHandler prev=None, PyShape shape=None) -> PyShapeEvtHandler"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyShapeEvtHandler(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
self._setOORandCallbackInfo(PyShapeEvtHandler)
|
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def _setOORInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setOORInfo(self, PyObject _self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler__setOORInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def _setOORandCallbackInfo(self, _class):
|
|
|
|
self._setOORInfo(self)
|
|
|
|
self._setCallbackInfo(self, _class)
|
|
|
|
|
|
|
|
def SetShape(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetShape(self, PyShape sh)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_SetShape(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetShape(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetShape(self) -> PyShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_GetShape(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetPreviousHandler(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetPreviousHandler(self, PyShapeEvtHandler handler)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_SetPreviousHandler(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetPreviousHandler(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetPreviousHandler(self) -> PyShapeEvtHandler"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_GetPreviousHandler(*args, **kwargs)
|
|
|
|
|
|
|
|
def CreateNewCopy(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""CreateNewCopy(self) -> PyShapeEvtHandler"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_CreateNewCopy(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDelete(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDelete(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnDelete(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeEvtHandler_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyShapeEvtHandlerPtr(PyShapeEvtHandler):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyShapeEvtHandler
|
|
|
|
_ogl.PyShapeEvtHandler_swigregister(PyShapeEvtHandlerPtr)
|
|
|
|
|
|
|
|
class PyShape(PyShapeEvtHandler):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyShape class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s.%s; proxy of C++ wxPyShape instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
|
|
|
def __init__(self, *args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self, PyShapeCanvas can=None) -> PyShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyShape(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
2004-05-14 21:38:16 +00:00
|
|
|
self._setOORandCallbackInfo(PyShape)
|
2003-11-21 20:58:50 +00:00
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBoundingBoxMax(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBoundingBoxMax(self, double OUTPUT, double OUTPUT)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetBoundingBoxMax(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBoundingBoxMin(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBoundingBoxMin(self, double OUTPUT, double OUTPUT)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetBoundingBoxMin(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetPerimeterPoint(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
GetPerimeterPoint(self, double x1, double y1, double x2, double y2, double OUTPUT,
|
2003-11-27 01:06:51 +00:00
|
|
|
double OUTPUT) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetPerimeterPoint(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetCanvas(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetCanvas(self) -> PyShapeCanvas"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetCanvas(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetCanvas(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetCanvas(self, PyShapeCanvas the_canvas)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetCanvas(*args, **kwargs)
|
|
|
|
|
|
|
|
def AddToCanvas(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AddToCanvas(self, PyShapeCanvas the_canvas, PyShape addAfter=None)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_AddToCanvas(*args, **kwargs)
|
|
|
|
|
|
|
|
def InsertInCanvas(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""InsertInCanvas(self, PyShapeCanvas the_canvas)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_InsertInCanvas(*args, **kwargs)
|
|
|
|
|
|
|
|
def RemoveFromCanvas(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""RemoveFromCanvas(self, PyShapeCanvas the_canvas)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_RemoveFromCanvas(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetX(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetX(self) -> double"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetX(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetY(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetY(self) -> double"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetY(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetX(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetX(self, double x)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetX(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetY(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetY(self, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetY(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetParent(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetParent(self) -> PyShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetParent(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetParent(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetParent(self, PyShape p)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetParent(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetTopAncestor(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetTopAncestor(self) -> PyShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetTopAncestor(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetChildren(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetChildren(self) -> PyObject"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetChildren(*args, **kwargs)
|
|
|
|
|
|
|
|
def Unlink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Unlink(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Unlink(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetDrawHandles(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetDrawHandles(self, bool drawH)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetDrawHandles(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetDrawHandles(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetDrawHandles(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetDrawHandles(*args, **kwargs)
|
|
|
|
|
|
|
|
def MakeControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""MakeControlPoints(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_MakeControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def DeleteControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DeleteControlPoints(self, DC dc=None)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_DeleteControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def ResetControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ResetControlPoints(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_ResetControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetEventHandler(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetEventHandler(self) -> PyShapeEvtHandler"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetEventHandler(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetEventHandler(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetEventHandler(self, PyShapeEvtHandler handler)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetEventHandler(*args, **kwargs)
|
|
|
|
|
|
|
|
def MakeMandatoryControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""MakeMandatoryControlPoints(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_MakeMandatoryControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def ResetMandatoryControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ResetMandatoryControlPoints(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_ResetMandatoryControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def Recompute(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Recompute(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Recompute(*args, **kwargs)
|
|
|
|
|
|
|
|
def CalculateSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""CalculateSize(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_CalculateSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def Select(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Select(self, bool select=True, DC dc=None)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Select(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetHighlight(self, bool hi=True, bool recurse=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def IsHighlighted(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""IsHighlighted(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_IsHighlighted(*args, **kwargs)
|
|
|
|
|
|
|
|
def Selected(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Selected(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Selected(*args, **kwargs)
|
|
|
|
|
|
|
|
def AncestorSelected(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AncestorSelected(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_AncestorSelected(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetSensitivityFilter(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetSensitivityFilter(self, int sens=OP_ALL, bool recursive=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetSensitivityFilter(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetSensitivityFilter(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetSensitivityFilter(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetSensitivityFilter(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetDraggable(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetDraggable(self, bool drag, bool recursive=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetDraggable(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetFixedSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetFixedSize(self, bool x, bool y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetFixedSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetFixedSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetFixedSize(self, bool OUTPUT, bool OUTPUT)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetFixedSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetFixedWidth(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetFixedWidth(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetFixedWidth(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetFixedHeight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetFixedHeight(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetFixedHeight(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetSpaceAttachments(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetSpaceAttachments(self, bool sp)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetSpaceAttachments(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetSpaceAttachments(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetSpaceAttachments(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetSpaceAttachments(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetShadowMode(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetShadowMode(self, int mode, bool redraw=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetShadowMode(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetShadowMode(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetShadowMode(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetShadowMode(*args, **kwargs)
|
|
|
|
|
|
|
|
def HitTest(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""HitTest(self, double x, double y, int OUTPUT, double OUTPUT) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_HitTest(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetCentreResize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetCentreResize(self, bool cr)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetCentreResize(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetCentreResize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetCentreResize(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetCentreResize(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetMaintainAspectRatio(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetMaintainAspectRatio(self, bool ar)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetMaintainAspectRatio(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetMaintainAspectRatio(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetMaintainAspectRatio(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetMaintainAspectRatio(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetLines(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetLines(self) -> PyObject"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetLines(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetDisableLabel(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetDisableLabel(self, bool flag)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetDisableLabel(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetDisableLabel(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetDisableLabel(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetDisableLabel(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetAttachmentMode(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetAttachmentMode(self, int mode)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetAttachmentMode(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetAttachmentMode(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetAttachmentMode(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetAttachmentMode(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetId(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetId(self, long i)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetId(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetId(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetId(self) -> long"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetId(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetPen(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetPen(self, wxPen pen)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetPen(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetBrush(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetBrush(self, wxBrush brush)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetBrush(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetClientData(self, data):
|
|
|
|
self.clientData = data
|
|
|
|
def GetClientData(self):
|
|
|
|
if hasattr(self, 'clientData'):
|
|
|
|
return self.clientData
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def Show(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Show(self, bool show)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Show(*args, **kwargs)
|
|
|
|
|
|
|
|
def IsShown(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""IsShown(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_IsShown(*args, **kwargs)
|
|
|
|
|
|
|
|
def Move(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Move(self, DC dc, double x1, double y1, bool display=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Move(*args, **kwargs)
|
|
|
|
|
|
|
|
def Erase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Erase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Erase(*args, **kwargs)
|
|
|
|
|
|
|
|
def EraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""EraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_EraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def Draw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Draw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Draw(*args, **kwargs)
|
|
|
|
|
|
|
|
def Flash(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Flash(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Flash(*args, **kwargs)
|
|
|
|
|
|
|
|
def MoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""MoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_MoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_DrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetSize(self, double x, double y, bool recursive=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetAttachmentSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetAttachmentSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetAttachmentSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def Attach(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Attach(self, PyShapeCanvas can)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Attach(*args, **kwargs)
|
|
|
|
|
|
|
|
def Detach(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Detach(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Detach(*args, **kwargs)
|
|
|
|
|
|
|
|
def Constrain(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Constrain(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Constrain(*args, **kwargs)
|
|
|
|
|
|
|
|
def AddLine(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
AddLine(self, PyLineShape line, PyShape other, int attachFrom=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachTo=0, int positionFrom=-1, int positionTo=-1)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_AddLine(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetLinePosition(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetLinePosition(self, PyLineShape line) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetLinePosition(*args, **kwargs)
|
|
|
|
|
|
|
|
def AddText(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AddText(self, String string)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_AddText(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetPen(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetPen(self) -> wxPen"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetPen(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBrush(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBrush(self) -> wxBrush"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetBrush(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetDefaultRegionSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetDefaultRegionSize(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetDefaultRegionSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def FormatText(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""FormatText(self, DC dc, String s, int regionId=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_FormatText(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetFormatMode(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetFormatMode(self, int mode, int regionId=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetFormatMode(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetFormatMode(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetFormatMode(self, int regionId=0) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetFormatMode(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetFont(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetFont(self, Font font, int regionId=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetFont(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetFont(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetFont(self, int regionId=0) -> Font"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetFont(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetTextColour(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetTextColour(self, String colour, int regionId=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetTextColour(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetTextColour(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetTextColour(self, int regionId=0) -> String"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetTextColour(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetNumberOfTextRegions(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetNumberOfTextRegions(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetNumberOfTextRegions(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetRegionName(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetRegionName(self, String name, int regionId=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetRegionName(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetRegionName(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetRegionName(self, int regionId) -> String"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetRegionName(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetRegionId(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetRegionId(self, String name) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetRegionId(*args, **kwargs)
|
|
|
|
|
|
|
|
def NameRegions(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""NameRegions(self, String parentName=EmptyString)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_NameRegions(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetRegions(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetRegions(self) -> PyObject"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetRegions(*args, **kwargs)
|
|
|
|
|
|
|
|
def AddRegion(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AddRegion(self, ShapeRegion region)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_AddRegion(*args, **kwargs)
|
|
|
|
|
|
|
|
def ClearRegions(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ClearRegions(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_ClearRegions(*args, **kwargs)
|
|
|
|
|
|
|
|
def AssignNewIds(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AssignNewIds(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_AssignNewIds(*args, **kwargs)
|
|
|
|
|
|
|
|
def FindRegion(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""FindRegion(self, String regionName, int OUTPUT) -> PyShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_FindRegion(*args, **kwargs)
|
|
|
|
|
|
|
|
def FindRegionNames(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""FindRegionNames(self, wxStringList list)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_FindRegionNames(*args, **kwargs)
|
|
|
|
|
|
|
|
def ClearText(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ClearText(self, int regionId=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_ClearText(*args, **kwargs)
|
|
|
|
|
|
|
|
def RemoveLine(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""RemoveLine(self, PyLineShape line)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_RemoveLine(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetAttachmentPosition(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
GetAttachmentPosition(self, int attachment, double OUTPUT, double OUTPUT, int nth=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int no_arcs=1, PyLineShape line=None) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetAttachmentPosition(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetNumberOfAttachments(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetNumberOfAttachments(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetNumberOfAttachments(*args, **kwargs)
|
|
|
|
|
|
|
|
def AttachmentIsValid(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AttachmentIsValid(self, int attachment) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_AttachmentIsValid(*args, **kwargs)
|
|
|
|
|
2004-01-02 20:38:22 +00:00
|
|
|
def GetAttachments(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetAttachments(self) -> PyObject"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyShape_GetAttachments(*args, **kwargs)
|
|
|
|
|
2003-11-21 20:58:50 +00:00
|
|
|
def GetAttachmentPositionEdge(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
GetAttachmentPositionEdge(self, int attachment, double OUTPUT, double OUTPUT, int nth=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int no_arcs=1, PyLineShape line=None) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetAttachmentPositionEdge(*args, **kwargs)
|
|
|
|
|
|
|
|
def CalcSimpleAttachment(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
CalcSimpleAttachment(self, RealPoint pt1, RealPoint pt2, int nth, int noArcs,
|
2003-11-27 01:06:51 +00:00
|
|
|
PyLineShape line) -> RealPoint
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_CalcSimpleAttachment(*args, **kwargs)
|
|
|
|
|
|
|
|
def AttachmentSortTest(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AttachmentSortTest(self, int attachmentPoint, RealPoint pt1, RealPoint pt2) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_AttachmentSortTest(*args, **kwargs)
|
|
|
|
|
|
|
|
def EraseLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""EraseLinks(self, DC dc, int attachment=-1, bool recurse=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_EraseLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawLinks(self, DC dc, int attachment=-1, bool recurse=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_DrawLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def MoveLineToNewAttachment(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""MoveLineToNewAttachment(self, DC dc, PyLineShape to_move, double x, double y) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_MoveLineToNewAttachment(*args, **kwargs)
|
|
|
|
|
|
|
|
def ApplyAttachmentOrdering(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ApplyAttachmentOrdering(self, PyObject linesToSort)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_ApplyAttachmentOrdering(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBranchingAttachmentRoot(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBranchingAttachmentRoot(self, int attachment) -> RealPoint"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetBranchingAttachmentRoot(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBranchingAttachmentInfo(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
GetBranchingAttachmentInfo(self, int attachment, RealPoint root, RealPoint neck, RealPoint shoulder1,
|
2003-11-27 01:06:51 +00:00
|
|
|
RealPoint shoulder2) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetBranchingAttachmentInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBranchingAttachmentPoint(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBranchingAttachmentPoint(self, int attachment, int n, RealPoint attachmentPoint, RealPoint stemPoint) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetBranchingAttachmentPoint(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetAttachmentLineCount(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetAttachmentLineCount(self, int attachment) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetAttachmentLineCount(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetBranchNeckLength(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetBranchNeckLength(self, int len)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetBranchNeckLength(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBranchNeckLength(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBranchNeckLength(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetBranchNeckLength(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetBranchStemLength(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetBranchStemLength(self, int len)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetBranchStemLength(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBranchStemLength(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBranchStemLength(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetBranchStemLength(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetBranchSpacing(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetBranchSpacing(self, int len)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetBranchSpacing(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBranchSpacing(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBranchSpacing(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetBranchSpacing(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetBranchStyle(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetBranchStyle(self, long style)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_SetBranchStyle(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBranchStyle(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBranchStyle(self) -> long"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetBranchStyle(*args, **kwargs)
|
|
|
|
|
|
|
|
def PhysicalToLogicalAttachment(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""PhysicalToLogicalAttachment(self, int physicalAttachment) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_PhysicalToLogicalAttachment(*args, **kwargs)
|
|
|
|
|
|
|
|
def LogicalToPhysicalAttachment(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""LogicalToPhysicalAttachment(self, int logicalAttachment) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_LogicalToPhysicalAttachment(*args, **kwargs)
|
|
|
|
|
|
|
|
def Draggable(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Draggable(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Draggable(*args, **kwargs)
|
|
|
|
|
|
|
|
def HasDescendant(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""HasDescendant(self, PyShape image) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_HasDescendant(*args, **kwargs)
|
|
|
|
|
|
|
|
def CreateNewCopy(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""CreateNewCopy(self, bool resetMapping=True, bool recompute=True) -> PyShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_CreateNewCopy(*args, **kwargs)
|
|
|
|
|
|
|
|
def Copy(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Copy(self, PyShape copy)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Copy(*args, **kwargs)
|
|
|
|
|
|
|
|
def CopyWithHandler(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""CopyWithHandler(self, PyShape copy)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_CopyWithHandler(*args, **kwargs)
|
|
|
|
|
|
|
|
def Rotate(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Rotate(self, double x, double y, double theta)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Rotate(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetRotation(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetRotation(self) -> double"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetRotation(*args, **kwargs)
|
|
|
|
|
2004-01-02 20:38:22 +00:00
|
|
|
def SetRotation(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetRotation(self, double rotation)"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyShape_SetRotation(*args, **kwargs)
|
|
|
|
|
2003-11-21 20:58:50 +00:00
|
|
|
def ClearAttachments(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ClearAttachments(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_ClearAttachments(*args, **kwargs)
|
|
|
|
|
|
|
|
def Recentre(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Recentre(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_Recentre(*args, **kwargs)
|
|
|
|
|
|
|
|
def ClearPointList(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ClearPointList(self, wxList list)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_ClearPointList(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBackgroundPen(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBackgroundPen(self) -> wxPen"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetBackgroundPen(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBackgroundBrush(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBackgroundBrush(self) -> wxBrush"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_GetBackgroundBrush(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDelete(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDelete(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnDelete(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShape_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyShapePtr(PyShape):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyShape
|
|
|
|
_ogl.PyShape_swigregister(PyShapePtr)
|
|
|
|
|
|
|
|
oglMETAFLAGS_OUTLINE = _ogl.oglMETAFLAGS_OUTLINE
|
|
|
|
oglMETAFLAGS_ATTACHMENTS = _ogl.oglMETAFLAGS_ATTACHMENTS
|
2004-04-25 06:51:10 +00:00
|
|
|
class PseudoMetaFile(_core.Object):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PseudoMetaFile class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
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):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self) -> PseudoMetaFile"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PseudoMetaFile(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
def __del__(self, destroy=_ogl.delete_PseudoMetaFile):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__del__(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
try:
|
|
|
|
if self.thisown: destroy(self)
|
|
|
|
except: pass
|
|
|
|
|
|
|
|
def Draw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Draw(self, DC dc, double xoffset, double yoffset)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_Draw(*args, **kwargs)
|
|
|
|
|
|
|
|
def Clear(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Clear(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_Clear(*args, **kwargs)
|
|
|
|
|
|
|
|
def Copy(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Copy(self, PseudoMetaFile copy)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_Copy(*args, **kwargs)
|
|
|
|
|
|
|
|
def Scale(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Scale(self, double sx, double sy)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_Scale(*args, **kwargs)
|
|
|
|
|
|
|
|
def ScaleTo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ScaleTo(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_ScaleTo(*args, **kwargs)
|
|
|
|
|
|
|
|
def Translate(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Translate(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_Translate(*args, **kwargs)
|
|
|
|
|
|
|
|
def Rotate(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Rotate(self, double x, double y, double theta)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_Rotate(*args, **kwargs)
|
|
|
|
|
|
|
|
def LoadFromMetaFile(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""LoadFromMetaFile(self, String filename, double width, double height) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_LoadFromMetaFile(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBounds(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBounds(self, double minX, double minY, double maxX, double maxY)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_GetBounds(*args, **kwargs)
|
|
|
|
|
|
|
|
def CalculateSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""CalculateSize(self, PyDrawnShape shape)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_CalculateSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetRotateable(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetRotateable(self, bool rot)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_SetRotateable(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetRotateable(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetRotateable(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_GetRotateable(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_SetSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetFillBrush(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetFillBrush(self, wxBrush brush)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_SetFillBrush(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetFillBrush(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetFillBrush(self) -> wxBrush"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_GetFillBrush(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetOutlinePen(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetOutlinePen(self, wxPen pen)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_SetOutlinePen(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetOutlinePen(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetOutlinePen(self) -> wxPen"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_GetOutlinePen(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetOutlineOp(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetOutlineOp(self, int op)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_SetOutlineOp(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetOutlineOp(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetOutlineOp(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_GetOutlineOp(*args, **kwargs)
|
|
|
|
|
|
|
|
def IsValid(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""IsValid(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_IsValid(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawLine(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawLine(self, Point pt1, Point pt2)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_DrawLine(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawRectangle(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawRectangle(self, Rect rect)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_DrawRectangle(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawRoundedRectangle(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawRoundedRectangle(self, Rect rect, double radius)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_DrawRoundedRectangle(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawArc(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawArc(self, Point centrePt, Point startPt, Point endPt)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_DrawArc(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawEllipticArc(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawEllipticArc(self, Rect rect, double startAngle, double endAngle)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_DrawEllipticArc(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawEllipse(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawEllipse(self, Rect rect)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_DrawEllipse(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawPoint(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawPoint(self, Point pt)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_DrawPoint(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawText(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawText(self, String text, Point pt)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_DrawText(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawLines(*args, **kwargs):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""DrawLines(self, int points)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_DrawLines(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawPolygon(*args, **kwargs):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""DrawPolygon(self, int points, int flags=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_DrawPolygon(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawSpline(*args, **kwargs):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""DrawSpline(self, int points)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_DrawSpline(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetClippingRect(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetClippingRect(self, Rect rect)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_SetClippingRect(*args, **kwargs)
|
|
|
|
|
|
|
|
def DestroyClippingRect(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DestroyClippingRect(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_DestroyClippingRect(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetPen(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""SetPen(self, wxPen pen, bool isOutline=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_SetPen(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetBrush(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""SetBrush(self, wxBrush brush, bool isFill=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_SetBrush(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetFont(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetFont(self, Font font)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_SetFont(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetTextColour(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetTextColour(self, Colour colour)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_SetTextColour(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetBackgroundColour(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetBackgroundColour(self, Colour colour)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_SetBackgroundColour(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetBackgroundMode(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetBackgroundMode(self, int mode)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PseudoMetaFile_SetBackgroundMode(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PseudoMetaFilePtr(PseudoMetaFile):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PseudoMetaFile
|
|
|
|
_ogl.PseudoMetaFile_swigregister(PseudoMetaFilePtr)
|
|
|
|
|
|
|
|
class PyRectangleShape(PyShape):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyRectangleShape class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s.%s; proxy of C++ wxPyRectangleShape instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
|
|
|
def __init__(self, *args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self, double width=0.0, double height=0.0) -> PyRectangleShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyRectangleShape(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
self._setOORandCallbackInfo(PyRectangleShape)
|
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetCornerRadius(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetCornerRadius(self, double radius)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_SetCornerRadius(*args, **kwargs)
|
|
|
|
|
2004-01-02 20:38:22 +00:00
|
|
|
def GetCornerRadius(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetCornerRadius(self) -> double"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyRectangleShape_GetCornerRadius(*args, **kwargs)
|
|
|
|
|
2003-11-21 20:58:50 +00:00
|
|
|
def base_OnDelete(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDelete(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnDelete(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyRectangleShape_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyRectangleShapePtr(PyRectangleShape):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyRectangleShape
|
|
|
|
_ogl.PyRectangleShape_swigregister(PyRectangleShapePtr)
|
|
|
|
|
|
|
|
class PyControlPoint(PyRectangleShape):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyControlPoint class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s.%s; proxy of C++ wxPyControlPoint instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
|
|
|
def __init__(self, *args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
__init__(self, PyShapeCanvas the_canvas=None, PyShape object=None,
|
2003-11-27 01:06:51 +00:00
|
|
|
double size=0.0, double the_xoffset=0.0, double the_yoffset=0.0,
|
|
|
|
int the_type=0) -> PyControlPoint
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyControlPoint(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
self._setOORandCallbackInfo(PyControlPoint)
|
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetCornerRadius(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetCornerRadius(self, double radius)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_SetCornerRadius(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDelete(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDelete(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnDelete(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyControlPoint_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyControlPointPtr(PyControlPoint):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyControlPoint
|
|
|
|
_ogl.PyControlPoint_swigregister(PyControlPointPtr)
|
|
|
|
|
|
|
|
class PyBitmapShape(PyRectangleShape):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyBitmapShape class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s.%s; proxy of C++ wxPyBitmapShape instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
|
|
|
def __init__(self, *args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self) -> PyBitmapShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyBitmapShape(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
self._setOORandCallbackInfo(PyBitmapShape)
|
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBitmap(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBitmap(self) -> Bitmap"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_GetBitmap(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetFilename(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetFilename(self) -> String"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_GetFilename(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetBitmap(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetBitmap(self, Bitmap bitmap)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_SetBitmap(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetFilename(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetFilename(self, String filename)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_SetFilename(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDelete(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDelete(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnDelete(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyBitmapShape_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyBitmapShapePtr(PyBitmapShape):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyBitmapShape
|
|
|
|
_ogl.PyBitmapShape_swigregister(PyBitmapShapePtr)
|
|
|
|
|
|
|
|
class PyDrawnShape(PyRectangleShape):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyDrawnShape class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s.%s; proxy of C++ wxPyDrawnShape instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
|
|
|
def __init__(self, *args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self) -> PyDrawnShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyDrawnShape(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
self._setOORandCallbackInfo(PyDrawnShape)
|
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def CalculateSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""CalculateSize(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_CalculateSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def DestroyClippingRect(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DestroyClippingRect(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_DestroyClippingRect(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawArc(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawArc(self, Point centrePoint, Point startPoint, Point endPoint)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_DrawArc(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawAtAngle(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawAtAngle(self, int angle)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_DrawAtAngle(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawEllipticArc(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawEllipticArc(self, Rect rect, double startAngle, double endAngle)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_DrawEllipticArc(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawLine(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawLine(self, Point point1, Point point2)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_DrawLine(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawLines(*args, **kwargs):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""DrawLines(self, int points)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_DrawLines(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawPoint(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawPoint(self, Point point)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_DrawPoint(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawPolygon(*args, **kwargs):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""DrawPolygon(self, int points, int flags=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_DrawPolygon(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawRectangle(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawRectangle(self, Rect rect)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_DrawRectangle(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawRoundedRectangle(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawRoundedRectangle(self, Rect rect, double radius)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_DrawRoundedRectangle(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawSpline(*args, **kwargs):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""DrawSpline(self, int points)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_DrawSpline(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawText(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawText(self, String text, Point point)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_DrawText(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetAngle(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetAngle(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_GetAngle(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetMetaFile(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetMetaFile(self) -> PseudoMetaFile"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_GetMetaFile(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetRotation(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetRotation(self) -> double"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_GetRotation(*args, **kwargs)
|
|
|
|
|
|
|
|
def LoadFromMetaFile(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""LoadFromMetaFile(self, String filename) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_LoadFromMetaFile(*args, **kwargs)
|
|
|
|
|
|
|
|
def Rotate(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Rotate(self, double x, double y, double theta)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_Rotate(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetClippingRect(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetClippingRect(self, Rect rect)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_SetClippingRect(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetDrawnBackgroundColour(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetDrawnBackgroundColour(self, Colour colour)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_SetDrawnBackgroundColour(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetDrawnBackgroundMode(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetDrawnBackgroundMode(self, int mode)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_SetDrawnBackgroundMode(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetDrawnBrush(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""SetDrawnBrush(self, wxBrush pen, bool isOutline=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_SetDrawnBrush(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetDrawnFont(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetDrawnFont(self, Font font)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_SetDrawnFont(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetDrawnPen(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""SetDrawnPen(self, wxPen pen, bool isOutline=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_SetDrawnPen(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetDrawnTextColour(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetDrawnTextColour(self, Colour colour)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_SetDrawnTextColour(*args, **kwargs)
|
|
|
|
|
|
|
|
def Scale(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Scale(self, double sx, double sy)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_Scale(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetSaveToFile(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetSaveToFile(self, bool save)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_SetSaveToFile(*args, **kwargs)
|
|
|
|
|
|
|
|
def Translate(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Translate(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_Translate(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDelete(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDelete(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnDelete(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDrawnShape_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyDrawnShapePtr(PyDrawnShape):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyDrawnShape
|
|
|
|
_ogl.PyDrawnShape_swigregister(PyDrawnShapePtr)
|
|
|
|
|
2004-04-25 06:51:10 +00:00
|
|
|
class OGLConstraint(_core.Object):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ OGLConstraint class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
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):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self, int type, PyShape constraining, PyObject constrained) -> OGLConstraint"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_OGLConstraint(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
def Evaluate(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Evaluate(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.OGLConstraint_Evaluate(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetSpacing(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetSpacing(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.OGLConstraint_SetSpacing(*args, **kwargs)
|
|
|
|
|
|
|
|
def Equals(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Equals(self, double a, double b) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.OGLConstraint_Equals(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class OGLConstraintPtr(OGLConstraint):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = OGLConstraint
|
|
|
|
_ogl.OGLConstraint_swigregister(OGLConstraintPtr)
|
|
|
|
|
|
|
|
class PyCompositeShape(PyRectangleShape):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyCompositeShape class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s.%s; proxy of C++ wxPyCompositeShape instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
|
|
|
def __init__(self, *args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self) -> PyCompositeShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyCompositeShape(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
self._setOORandCallbackInfo(PyCompositeShape)
|
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def AddChild(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AddChild(self, PyShape child, PyShape addAfter=None)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_AddChild(*args, **kwargs)
|
|
|
|
|
|
|
|
def AddConstraint(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AddConstraint(self, OGLConstraint constraint) -> OGLConstraint"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_AddConstraint(*args, **kwargs)
|
|
|
|
|
|
|
|
def AddConstrainedShapes(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AddConstrainedShapes(self, int type, PyShape constraining, PyObject constrained) -> OGLConstraint"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_AddConstrainedShapes(*args, **kwargs)
|
|
|
|
|
|
|
|
def AddSimpleConstraint(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AddSimpleConstraint(self, int type, PyShape constraining, PyShape constrained) -> OGLConstraint"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_AddSimpleConstraint(*args, **kwargs)
|
|
|
|
|
|
|
|
def CalculateSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""CalculateSize(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_CalculateSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def ContainsDivision(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ContainsDivision(self, PyDivisionShape division) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_ContainsDivision(*args, **kwargs)
|
|
|
|
|
|
|
|
def DeleteConstraint(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DeleteConstraint(self, OGLConstraint constraint)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_DeleteConstraint(*args, **kwargs)
|
|
|
|
|
|
|
|
def DeleteConstraintsInvolvingChild(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DeleteConstraintsInvolvingChild(self, PyShape child)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_DeleteConstraintsInvolvingChild(*args, **kwargs)
|
|
|
|
|
|
|
|
def FindContainerImage(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""FindContainerImage(self) -> PyShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_FindContainerImage(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetConstraints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetConstraints(self) -> PyObject"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_GetConstraints(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetDivisions(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetDivisions(self) -> PyObject"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_GetDivisions(*args, **kwargs)
|
|
|
|
|
|
|
|
def MakeContainer(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""MakeContainer(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_MakeContainer(*args, **kwargs)
|
|
|
|
|
|
|
|
def Recompute(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Recompute(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_Recompute(*args, **kwargs)
|
|
|
|
|
|
|
|
def RemoveChild(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""RemoveChild(self, PyShape child)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_RemoveChild(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDelete(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDelete(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnDelete(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCompositeShape_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyCompositeShapePtr(PyCompositeShape):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyCompositeShape
|
|
|
|
_ogl.PyCompositeShape_swigregister(PyCompositeShapePtr)
|
|
|
|
|
|
|
|
class PyDividedShape(PyRectangleShape):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyDividedShape class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s.%s; proxy of C++ wxPyDividedShape instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
|
|
|
def __init__(self, *args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self, double width=0.0, double height=0.0) -> PyDividedShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyDividedShape(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
self._setOORandCallbackInfo(PyDividedShape)
|
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def EditRegions(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""EditRegions(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_EditRegions(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetRegionSizes(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetRegionSizes(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_SetRegionSizes(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDelete(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDelete(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnDelete(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDividedShape_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyDividedShapePtr(PyDividedShape):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyDividedShape
|
|
|
|
_ogl.PyDividedShape_swigregister(PyDividedShapePtr)
|
|
|
|
|
|
|
|
class PyDivisionShape(PyCompositeShape):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyDivisionShape class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s.%s; proxy of C++ wxPyDivisionShape instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
|
|
|
def __init__(self, *args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self) -> PyDivisionShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyDivisionShape(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
self._setOORandCallbackInfo(PyDivisionShape)
|
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def AdjustBottom(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AdjustBottom(self, double bottom, bool test)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_AdjustBottom(*args, **kwargs)
|
|
|
|
|
|
|
|
def AdjustLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AdjustLeft(self, double left, bool test)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_AdjustLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def AdjustRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AdjustRight(self, double right, bool test)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_AdjustRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def AdjustTop(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AdjustTop(self, double top, bool test)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_AdjustTop(*args, **kwargs)
|
|
|
|
|
|
|
|
def Divide(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Divide(self, int direction)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_Divide(*args, **kwargs)
|
|
|
|
|
|
|
|
def EditEdge(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""EditEdge(self, int side)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_EditEdge(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetBottomSide(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetBottomSide(self) -> PyDivisionShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_GetBottomSide(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetHandleSide(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetHandleSide(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_GetHandleSide(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetLeftSide(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetLeftSide(self) -> PyDivisionShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_GetLeftSide(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetLeftSideColour(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetLeftSideColour(self) -> String"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_GetLeftSideColour(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetLeftSidePen(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetLeftSidePen(self) -> wxPen"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_GetLeftSidePen(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetRightSide(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetRightSide(self) -> PyDivisionShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_GetRightSide(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetTopSide(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetTopSide(self) -> PyDivisionShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_GetTopSide(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetTopSidePen(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetTopSidePen(self) -> wxPen"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_GetTopSidePen(*args, **kwargs)
|
|
|
|
|
|
|
|
def ResizeAdjoining(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ResizeAdjoining(self, int side, double newPos, bool test)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_ResizeAdjoining(*args, **kwargs)
|
|
|
|
|
|
|
|
def PopupMenu(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""PopupMenu(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_PopupMenu(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetBottomSide(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetBottomSide(self, PyDivisionShape shape)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_SetBottomSide(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetHandleSide(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetHandleSide(self, int side)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_SetHandleSide(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetLeftSide(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetLeftSide(self, PyDivisionShape shape)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_SetLeftSide(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetLeftSideColour(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetLeftSideColour(self, String colour)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_SetLeftSideColour(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetLeftSidePen(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetLeftSidePen(self, wxPen pen)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_SetLeftSidePen(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetRightSide(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetRightSide(self, PyDivisionShape shape)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_SetRightSide(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetTopSide(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetTopSide(self, PyDivisionShape shape)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_SetTopSide(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetTopSideColour(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetTopSideColour(self, String colour)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_SetTopSideColour(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetTopSidePen(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetTopSidePen(self, wxPen pen)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_SetTopSidePen(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDelete(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDelete(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnDelete(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyDivisionShape_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyDivisionShapePtr(PyDivisionShape):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyDivisionShape
|
|
|
|
_ogl.PyDivisionShape_swigregister(PyDivisionShapePtr)
|
|
|
|
|
|
|
|
class PyEllipseShape(PyShape):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyEllipseShape class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s.%s; proxy of C++ wxPyEllipseShape instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
|
|
|
def __init__(self, *args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self, double width=0.0, double height=0.0) -> PyEllipseShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyEllipseShape(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
self._setOORandCallbackInfo(PyEllipseShape)
|
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyEllipseShape_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyEllipseShapePtr(PyEllipseShape):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyEllipseShape
|
|
|
|
_ogl.PyEllipseShape_swigregister(PyEllipseShapePtr)
|
|
|
|
|
|
|
|
class PyCircleShape(PyEllipseShape):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyCircleShape class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s.%s; proxy of C++ wxPyCircleShape instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
|
|
|
def __init__(self, *args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self, double width=0.0) -> PyCircleShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyCircleShape(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
self._setOORandCallbackInfo(PyCircleShape)
|
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyCircleShape_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyCircleShapePtr(PyCircleShape):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyCircleShape
|
|
|
|
_ogl.PyCircleShape_swigregister(PyCircleShapePtr)
|
|
|
|
|
2004-04-25 06:51:10 +00:00
|
|
|
class ArrowHead(_core.Object):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ ArrowHead class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
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):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
__init__(self, int type=0, int end=0, double size=0.0, double dist=0.0,
|
2003-12-19 04:47:55 +00:00
|
|
|
String name=EmptyString, PseudoMetaFile mf=None,
|
2003-11-27 01:06:51 +00:00
|
|
|
long arrowId=-1) -> ArrowHead
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_ArrowHead(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
def __del__(self, destroy=_ogl.delete_ArrowHead):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__del__(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
try:
|
|
|
|
if self.thisown: destroy(self)
|
|
|
|
except: pass
|
|
|
|
|
|
|
|
def _GetType(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_GetType(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead__GetType(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetPosition(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetPosition(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_GetPosition(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetPosition(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetPosition(self, int pos)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_SetPosition(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetXOffset(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetXOffset(self) -> double"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_GetXOffset(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetYOffset(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetYOffset(self) -> double"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_GetYOffset(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetSpacing(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetSpacing(self) -> double"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_GetSpacing(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetSize(self) -> double"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_GetSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetName(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetName(self) -> String"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_GetName(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetXOffset(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetXOffset(self, double x)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_SetXOffset(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetYOffset(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetYOffset(self, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_SetYOffset(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetMetaFile(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetMetaFile(self) -> PseudoMetaFile"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_GetMetaFile(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetId(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetId(self) -> long"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_GetId(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetArrowEnd(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetArrowEnd(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_GetArrowEnd(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetArrowSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetArrowSize(self) -> double"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_GetArrowSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetSize(self, double size)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_SetSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetSpacing(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetSpacing(self, double sp)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.ArrowHead_SetSpacing(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class ArrowHeadPtr(ArrowHead):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = ArrowHead
|
|
|
|
_ogl.ArrowHead_swigregister(ArrowHeadPtr)
|
|
|
|
|
|
|
|
class PyLineShape(PyShape):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyLineShape class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s.%s; proxy of C++ wxPyLineShape instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
|
|
|
def __init__(self, *args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self) -> PyLineShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyLineShape(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
self._setOORandCallbackInfo(PyLineShape)
|
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def AddArrow(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
AddArrow(self, int type, int end=ARROW_POSITION_END, double arrowSize=10.0,
|
2003-12-19 04:47:55 +00:00
|
|
|
double xOffset=0.0, String name=EmptyString,
|
2003-11-27 01:06:51 +00:00
|
|
|
PseudoMetaFile mf=None, long arrowId=-1)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_AddArrow(*args, **kwargs)
|
|
|
|
|
|
|
|
def AddArrowOrdered(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AddArrowOrdered(self, ArrowHead arrow, PyObject referenceList, int end)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_AddArrowOrdered(*args, **kwargs)
|
|
|
|
|
|
|
|
def ClearArrow(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ClearArrow(self, String name) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_ClearArrow(*args, **kwargs)
|
|
|
|
|
|
|
|
def ClearArrowsAtPosition(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ClearArrowsAtPosition(self, int position=-1)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_ClearArrowsAtPosition(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawArrow(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawArrow(self, DC dc, ArrowHead arrow, double xOffset, bool proportionalOffset)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_DrawArrow(*args, **kwargs)
|
|
|
|
|
|
|
|
def DeleteArrowHeadId(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DeleteArrowHeadId(self, long arrowId) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_DeleteArrowHeadId(*args, **kwargs)
|
|
|
|
|
|
|
|
def DeleteArrowHead(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DeleteArrowHead(self, int position, String name) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_DeleteArrowHead(*args, **kwargs)
|
|
|
|
|
|
|
|
def DeleteLineControlPoint(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DeleteLineControlPoint(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_DeleteLineControlPoint(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawArrows(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawArrows(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_DrawArrows(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawRegion(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawRegion(self, DC dc, ShapeRegion region, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_DrawRegion(*args, **kwargs)
|
|
|
|
|
|
|
|
def EraseRegion(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""EraseRegion(self, DC dc, ShapeRegion region, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_EraseRegion(*args, **kwargs)
|
|
|
|
|
|
|
|
def FindArrowHeadId(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""FindArrowHeadId(self, long arrowId) -> ArrowHead"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_FindArrowHeadId(*args, **kwargs)
|
|
|
|
|
|
|
|
def FindArrowHead(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""FindArrowHead(self, int position, String name) -> ArrowHead"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_FindArrowHead(*args, **kwargs)
|
|
|
|
|
|
|
|
def FindLineEndPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""FindLineEndPoints(self, double OUTPUT, double OUTPUT, double OUTPUT, double OUTPUT)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_FindLineEndPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def FindLinePosition(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""FindLinePosition(self, double x, double y) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_FindLinePosition(*args, **kwargs)
|
|
|
|
|
|
|
|
def FindMinimumWidth(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""FindMinimumWidth(self) -> double"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_FindMinimumWidth(*args, **kwargs)
|
|
|
|
|
|
|
|
def FindNth(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""FindNth(self, PyShape image, int OUTPUT, int OUTPUT, bool incoming)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_FindNth(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetAttachmentFrom(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetAttachmentFrom(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_GetAttachmentFrom(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetAttachmentTo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetAttachmentTo(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_GetAttachmentTo(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetEnds(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetEnds(self, double OUTPUT, double OUTPUT, double OUTPUT, double OUTPUT)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_GetEnds(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetFrom(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetFrom(self) -> PyShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_GetFrom(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetLabelPosition(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetLabelPosition(self, int position, double OUTPUT, double OUTPUT)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_GetLabelPosition(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetNextControlPoint(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetNextControlPoint(self, PyShape shape) -> RealPoint"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_GetNextControlPoint(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetTo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetTo(self) -> PyShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_GetTo(*args, **kwargs)
|
|
|
|
|
|
|
|
def Initialise(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Initialise(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_Initialise(*args, **kwargs)
|
|
|
|
|
|
|
|
def InsertLineControlPoint(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""InsertLineControlPoint(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_InsertLineControlPoint(*args, **kwargs)
|
|
|
|
|
|
|
|
def IsEnd(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""IsEnd(self, PyShape shape) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_IsEnd(*args, **kwargs)
|
|
|
|
|
|
|
|
def IsSpline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""IsSpline(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_IsSpline(*args, **kwargs)
|
|
|
|
|
|
|
|
def MakeLineControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""MakeLineControlPoints(self, int n)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_MakeLineControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetLineControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetLineControlPoints(self) -> PyObject"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_GetLineControlPoints(*args, **kwargs)
|
|
|
|
|
2004-05-08 01:11:02 +00:00
|
|
|
def SetLineControlPoints(*args, **kwargs):
|
|
|
|
"""SetLineControlPoints(self, PyObject list)"""
|
|
|
|
return _ogl.PyLineShape_SetLineControlPoints(*args, **kwargs)
|
|
|
|
|
2003-11-21 20:58:50 +00:00
|
|
|
def SetAttachmentFrom(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetAttachmentFrom(self, int fromAttach)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_SetAttachmentFrom(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetAttachments(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetAttachments(self, int fromAttach, int toAttach)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_SetAttachments(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetAttachmentTo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetAttachmentTo(self, int toAttach)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_SetAttachmentTo(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetEnds(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetEnds(self, double x1, double y1, double x2, double y2)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_SetEnds(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetFrom(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetFrom(self, PyShape object)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_SetFrom(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetIgnoreOffsets(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetIgnoreOffsets(self, bool ignore)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_SetIgnoreOffsets(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetSpline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetSpline(self, bool spline)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_SetSpline(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetTo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetTo(self, PyShape object)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_SetTo(*args, **kwargs)
|
|
|
|
|
|
|
|
def Straighten(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Straighten(self, DC dc=None)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_Straighten(*args, **kwargs)
|
|
|
|
|
|
|
|
def Unlink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Unlink(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_Unlink(*args, **kwargs)
|
|
|
|
|
2004-01-02 20:38:22 +00:00
|
|
|
def SetAlignmentOrientation(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetAlignmentOrientation(self, bool isEnd, bool isHoriz)"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyLineShape_SetAlignmentOrientation(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetAlignmentType(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetAlignmentType(self, bool isEnd, int alignType)"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyLineShape_SetAlignmentType(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetAlignmentOrientation(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetAlignmentOrientation(self, bool isEnd) -> bool"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyLineShape_GetAlignmentOrientation(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetAlignmentType(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetAlignmentType(self, bool isEnd) -> int"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyLineShape_GetAlignmentType(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetAlignmentStart(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetAlignmentStart(self) -> int"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyLineShape_GetAlignmentStart(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetAlignmentEnd(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetAlignmentEnd(self) -> int"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyLineShape_GetAlignmentEnd(*args, **kwargs)
|
|
|
|
|
2003-11-21 20:58:50 +00:00
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyLineShape_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyLineShapePtr(PyLineShape):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyLineShape
|
|
|
|
_ogl.PyLineShape_swigregister(PyLineShapePtr)
|
|
|
|
|
|
|
|
class PyPolygonShape(PyShape):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyPolygonShape class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s.%s; proxy of C++ wxPyPolygonShape instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
|
|
|
def __init__(self, *args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self) -> PyPolygonShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyPolygonShape(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
self._setOORandCallbackInfo(PyPolygonShape)
|
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def Create(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Create(self, PyObject points) -> PyObject"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_Create(*args, **kwargs)
|
|
|
|
|
|
|
|
def AddPolygonPoint(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AddPolygonPoint(self, int pos=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_AddPolygonPoint(*args, **kwargs)
|
|
|
|
|
|
|
|
def CalculatePolygonCentre(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""CalculatePolygonCentre(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_CalculatePolygonCentre(*args, **kwargs)
|
|
|
|
|
|
|
|
def DeletePolygonPoint(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DeletePolygonPoint(self, int pos=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_DeletePolygonPoint(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetPoints(self) -> PyObject"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_GetPoints(*args, **kwargs)
|
|
|
|
|
2004-01-02 20:38:22 +00:00
|
|
|
def GetOriginalPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetOriginalPoints(self) -> PyObject"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyPolygonShape_GetOriginalPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetOriginalWidth(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetOriginalWidth(self) -> double"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyPolygonShape_GetOriginalWidth(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetOriginalHeight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetOriginalHeight(self) -> double"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyPolygonShape_GetOriginalHeight(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetOriginalWidth(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetOriginalWidth(self, double w)"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyPolygonShape_SetOriginalWidth(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetOriginalHeight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetOriginalHeight(self, double h)"""
|
2004-01-02 20:38:22 +00:00
|
|
|
return _ogl.PyPolygonShape_SetOriginalHeight(*args, **kwargs)
|
|
|
|
|
2003-11-21 20:58:50 +00:00
|
|
|
def UpdateOriginalPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""UpdateOriginalPoints(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_UpdateOriginalPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyPolygonShape_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyPolygonShapePtr(PyPolygonShape):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyPolygonShape
|
|
|
|
_ogl.PyPolygonShape_swigregister(PyPolygonShapePtr)
|
|
|
|
|
|
|
|
class PyTextShape(PyRectangleShape):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyTextShape class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return "<%s.%s; proxy of C++ wxPyTextShape instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
|
|
|
|
def __init__(self, *args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self, double width=0.0, double height=0.0) -> PyTextShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyTextShape(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
self._setOORandCallbackInfo(PyTextShape)
|
|
|
|
|
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDelete(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDelete(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnDelete(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnDraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnDrawContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawBranches(*args, **kwargs):
|
2004-09-25 23:41:54 +00:00
|
|
|
"""base_OnDrawBranches(self, DC dc, bool erase=False)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnDrawBranches(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLinks(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLinks(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnMoveLinks(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnErase(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnErase(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnErase(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseContents(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseContents(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnEraseContents(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnHighlight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnHighlight(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnHighlight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftDoubleClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftDoubleClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnLeftDoubleClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnSize(self, double x, double y)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePre(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePre(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True) -> bool
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnMovePre(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMovePost(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnMovePost(self, DC dc, double x, double y, double old_x, double old_y,
|
2003-11-27 01:06:51 +00:00
|
|
|
bool display=True)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnMovePost(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0, int attachment=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawOutline(self, DC dc, double x, double y, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnDrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDrawControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDrawControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnDrawControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEraseControlPoints(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEraseControlPoints(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnEraseControlPoints(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnMoveLink(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnMoveLink(self, DC dc, bool moveControlPoints=True)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnMoveLink(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingDragLeft(self, PyControlPoint pt, bool draw, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnSizingDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingBeginDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingBeginDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnSizingBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnSizingEndDragLeft(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
base_OnSizingEndDragLeft(self, PyControlPoint pt, double x, double y, int keys=0,
|
2003-11-27 01:06:51 +00:00
|
|
|
int attachment=0)
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnSizingEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnBeginSize(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndSize(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndSize(self, double w, double h)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyTextShape_base_OnEndSize(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class PyTextShapePtr(PyTextShape):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyTextShape
|
|
|
|
_ogl.PyTextShape_swigregister(PyTextShapePtr)
|
|
|
|
|
2004-04-25 06:51:10 +00:00
|
|
|
class Diagram(_core.Object):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ Diagram class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
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):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""__init__(self) -> Diagram"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_Diagram(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
|
|
|
def AddShape(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AddShape(self, PyShape shape, PyShape addAfter=None)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_AddShape(*args, **kwargs)
|
|
|
|
|
|
|
|
def Clear(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Clear(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_Clear(*args, **kwargs)
|
|
|
|
|
|
|
|
def DeleteAllShapes(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DeleteAllShapes(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_DeleteAllShapes(*args, **kwargs)
|
|
|
|
|
|
|
|
def DrawOutline(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""DrawOutline(self, DC dc, double x1, double y1, double x2, double y2)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_DrawOutline(*args, **kwargs)
|
|
|
|
|
|
|
|
def FindShape(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""FindShape(self, long id) -> PyShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_FindShape(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetCanvas(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetCanvas(self) -> PyShapeCanvas"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_GetCanvas(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetCount(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetCount(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_GetCount(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetGridSpacing(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetGridSpacing(self) -> double"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_GetGridSpacing(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetMouseTolerance(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetMouseTolerance(self) -> int"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_GetMouseTolerance(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetShapeList(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetShapeList(self) -> PyObject"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_GetShapeList(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetQuickEditMode(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetQuickEditMode(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_GetQuickEditMode(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetSnapToGrid(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetSnapToGrid(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_GetSnapToGrid(*args, **kwargs)
|
|
|
|
|
|
|
|
def InsertShape(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""InsertShape(self, PyShape shape)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_InsertShape(*args, **kwargs)
|
|
|
|
|
|
|
|
def RecentreAll(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""RecentreAll(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_RecentreAll(*args, **kwargs)
|
|
|
|
|
|
|
|
def Redraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Redraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_Redraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def RemoveAllShapes(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""RemoveAllShapes(self)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_RemoveAllShapes(*args, **kwargs)
|
|
|
|
|
|
|
|
def RemoveShape(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""RemoveShape(self, PyShape shape)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_RemoveShape(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetCanvas(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetCanvas(self, PyShapeCanvas canvas)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_SetCanvas(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetGridSpacing(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetGridSpacing(self, double spacing)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_SetGridSpacing(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetMouseTolerance(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetMouseTolerance(self, int tolerance)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_SetMouseTolerance(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetQuickEditMode(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetQuickEditMode(self, bool mode)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_SetQuickEditMode(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetSnapToGrid(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetSnapToGrid(self, bool snap)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_SetSnapToGrid(*args, **kwargs)
|
|
|
|
|
|
|
|
def ShowAll(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""ShowAll(self, bool show)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_ShowAll(*args, **kwargs)
|
|
|
|
|
|
|
|
def Snap(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Snap(self, double INOUT, double INOUT)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.Diagram_Snap(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
class DiagramPtr(Diagram):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = Diagram
|
|
|
|
_ogl.Diagram_swigregister(DiagramPtr)
|
|
|
|
|
2004-04-25 06:51:10 +00:00
|
|
|
class PyShapeCanvas(_windows.ScrolledWindow):
|
2004-12-23 21:39:36 +00:00
|
|
|
"""Proxy of C++ PyShapeCanvas class"""
|
2003-11-21 20:58:50 +00:00
|
|
|
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):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
__init__(self, Window parent=None, int id=-1, Point pos=DefaultPosition,
|
2003-11-27 01:06:51 +00:00
|
|
|
Size size=DefaultSize, long style=BORDER,
|
2003-12-19 04:47:55 +00:00
|
|
|
String name=wxPyShapeCanvasNameStr) -> PyShapeCanvas
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
newobj = _ogl.new_PyShapeCanvas(*args, **kwargs)
|
|
|
|
self.this = newobj.this
|
|
|
|
self.thisown = 1
|
|
|
|
del newobj.thisown
|
2004-05-14 21:38:16 +00:00
|
|
|
self._setOORandCallbackInfo(PyShapeCanvas)
|
|
|
|
|
2003-11-21 20:58:50 +00:00
|
|
|
def _setCallbackInfo(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""_setCallbackInfo(self, PyObject self, PyObject _class)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas__setCallbackInfo(*args, **kwargs)
|
|
|
|
|
|
|
|
def _setOORandCallbackInfo(self, _class):
|
|
|
|
self._setOORInfo(self)
|
|
|
|
self._setCallbackInfo(self, _class)
|
|
|
|
|
|
|
|
def AddShape(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""AddShape(self, PyShape shape, PyShape addAfter=None)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_AddShape(*args, **kwargs)
|
|
|
|
|
|
|
|
def FindShape(*args, **kwargs):
|
2003-11-27 01:06:51 +00:00
|
|
|
"""
|
2004-04-25 00:47:48 +00:00
|
|
|
FindShape(self, double x1, double y, int OUTPUT, wxClassInfo info=None,
|
2003-11-27 01:06:51 +00:00
|
|
|
PyShape notImage=None) -> PyShape
|
|
|
|
"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_FindShape(*args, **kwargs)
|
|
|
|
|
|
|
|
def FindFirstSensitiveShape(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""FindFirstSensitiveShape(self, double x1, double y, int OUTPUT, int op) -> PyShape"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_FindFirstSensitiveShape(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetDiagram(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetDiagram(self) -> Diagram"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_GetDiagram(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetQuickEditMode(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""GetQuickEditMode(self) -> bool"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_GetQuickEditMode(*args, **kwargs)
|
|
|
|
|
|
|
|
def InsertShape(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""InsertShape(self, PyShape shape)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_InsertShape(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragLeft(self, double x, double y, int keys=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_base_OnBeginDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnBeginDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnBeginDragRight(self, double x, double y, int keys=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_base_OnBeginDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragLeft(self, double x, double y, int keys=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_base_OnEndDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnEndDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnEndDragRight(self, double x, double y, int keys=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_base_OnEndDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragLeft(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragLeft(self, bool draw, double x, double y, int keys=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_base_OnDragLeft(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnDragRight(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnDragRight(self, bool draw, double x, double y, int keys=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_base_OnDragRight(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnLeftClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnLeftClick(self, double x, double y, int keys=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_base_OnLeftClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def base_OnRightClick(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""base_OnRightClick(self, double x, double y, int keys=0)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_base_OnRightClick(*args, **kwargs)
|
|
|
|
|
|
|
|
def Redraw(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Redraw(self, DC dc)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_Redraw(*args, **kwargs)
|
|
|
|
|
|
|
|
def RemoveShape(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""RemoveShape(self, PyShape shape)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_RemoveShape(*args, **kwargs)
|
|
|
|
|
|
|
|
def SetDiagram(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""SetDiagram(self, Diagram diagram)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_SetDiagram(*args, **kwargs)
|
|
|
|
|
|
|
|
def Snap(*args, **kwargs):
|
2004-04-25 00:47:48 +00:00
|
|
|
"""Snap(self, double INOUT, double INOUT)"""
|
2003-11-21 20:58:50 +00:00
|
|
|
return _ogl.PyShapeCanvas_Snap(*args, **kwargs)
|
|
|
|
|
|
|
|
def GetShapeList(self):
|
|
|
|
return self.GetDiagram().GetShapeList()
|
|
|
|
|
|
|
|
|
|
|
|
class PyShapeCanvasPtr(PyShapeCanvas):
|
|
|
|
def __init__(self, this):
|
|
|
|
self.this = this
|
|
|
|
if not hasattr(self,"thisown"): self.thisown = 0
|
|
|
|
self.__class__ = PyShapeCanvas
|
|
|
|
_ogl.PyShapeCanvas_swigregister(PyShapeCanvasPtr)
|
|
|
|
|
|
|
|
# Aliases
|
|
|
|
ShapeCanvas = PyShapeCanvas
|
|
|
|
ShapeEvtHandler = PyShapeEvtHandler
|
|
|
|
Shape = PyShape
|
|
|
|
RectangleShape = PyRectangleShape
|
|
|
|
BitmapShape = PyBitmapShape
|
|
|
|
DrawnShape = PyDrawnShape
|
|
|
|
CompositeShape = PyCompositeShape
|
|
|
|
DividedShape = PyDividedShape
|
|
|
|
DivisionShape = PyDivisionShape
|
|
|
|
EllipseShape = PyEllipseShape
|
|
|
|
CircleShape = PyCircleShape
|
|
|
|
LineShape = PyLineShape
|
|
|
|
PolygonShape = PyPolygonShape
|
|
|
|
TextShape = PyTextShape
|
|
|
|
ControlPoint = PyControlPoint
|
|
|
|
|
|
|
|
KEY_SHIFT = _ogl.KEY_SHIFT
|
|
|
|
KEY_CTRL = _ogl.KEY_CTRL
|
|
|
|
ARROW_NONE = _ogl.ARROW_NONE
|
|
|
|
ARROW_END = _ogl.ARROW_END
|
|
|
|
ARROW_BOTH = _ogl.ARROW_BOTH
|
|
|
|
ARROW_MIDDLE = _ogl.ARROW_MIDDLE
|
|
|
|
ARROW_START = _ogl.ARROW_START
|
|
|
|
ARROW_HOLLOW_CIRCLE = _ogl.ARROW_HOLLOW_CIRCLE
|
|
|
|
ARROW_FILLED_CIRCLE = _ogl.ARROW_FILLED_CIRCLE
|
|
|
|
ARROW_ARROW = _ogl.ARROW_ARROW
|
|
|
|
ARROW_SINGLE_OBLIQUE = _ogl.ARROW_SINGLE_OBLIQUE
|
|
|
|
ARROW_DOUBLE_OBLIQUE = _ogl.ARROW_DOUBLE_OBLIQUE
|
|
|
|
ARROW_METAFILE = _ogl.ARROW_METAFILE
|
|
|
|
ARROW_POSITION_END = _ogl.ARROW_POSITION_END
|
|
|
|
ARROW_POSITION_START = _ogl.ARROW_POSITION_START
|
|
|
|
CONTROL_POINT_VERTICAL = _ogl.CONTROL_POINT_VERTICAL
|
|
|
|
CONTROL_POINT_HORIZONTAL = _ogl.CONTROL_POINT_HORIZONTAL
|
|
|
|
CONTROL_POINT_DIAGONAL = _ogl.CONTROL_POINT_DIAGONAL
|
|
|
|
CONTROL_POINT_ENDPOINT_TO = _ogl.CONTROL_POINT_ENDPOINT_TO
|
|
|
|
CONTROL_POINT_ENDPOINT_FROM = _ogl.CONTROL_POINT_ENDPOINT_FROM
|
|
|
|
CONTROL_POINT_LINE = _ogl.CONTROL_POINT_LINE
|
|
|
|
FORMAT_NONE = _ogl.FORMAT_NONE
|
|
|
|
FORMAT_CENTRE_HORIZ = _ogl.FORMAT_CENTRE_HORIZ
|
|
|
|
FORMAT_CENTRE_VERT = _ogl.FORMAT_CENTRE_VERT
|
|
|
|
FORMAT_SIZE_TO_CONTENTS = _ogl.FORMAT_SIZE_TO_CONTENTS
|
|
|
|
LINE_ALIGNMENT_HORIZ = _ogl.LINE_ALIGNMENT_HORIZ
|
|
|
|
LINE_ALIGNMENT_VERT = _ogl.LINE_ALIGNMENT_VERT
|
|
|
|
LINE_ALIGNMENT_TO_NEXT_HANDLE = _ogl.LINE_ALIGNMENT_TO_NEXT_HANDLE
|
|
|
|
LINE_ALIGNMENT_NONE = _ogl.LINE_ALIGNMENT_NONE
|
|
|
|
SHADOW_NONE = _ogl.SHADOW_NONE
|
|
|
|
SHADOW_LEFT = _ogl.SHADOW_LEFT
|
|
|
|
SHADOW_RIGHT = _ogl.SHADOW_RIGHT
|
|
|
|
OP_CLICK_LEFT = _ogl.OP_CLICK_LEFT
|
|
|
|
OP_CLICK_RIGHT = _ogl.OP_CLICK_RIGHT
|
|
|
|
OP_DRAG_LEFT = _ogl.OP_DRAG_LEFT
|
|
|
|
OP_DRAG_RIGHT = _ogl.OP_DRAG_RIGHT
|
|
|
|
OP_ALL = _ogl.OP_ALL
|
|
|
|
ATTACHMENT_MODE_NONE = _ogl.ATTACHMENT_MODE_NONE
|
|
|
|
ATTACHMENT_MODE_EDGE = _ogl.ATTACHMENT_MODE_EDGE
|
|
|
|
ATTACHMENT_MODE_BRANCHING = _ogl.ATTACHMENT_MODE_BRANCHING
|
|
|
|
BRANCHING_ATTACHMENT_NORMAL = _ogl.BRANCHING_ATTACHMENT_NORMAL
|
|
|
|
BRANCHING_ATTACHMENT_BLOB = _ogl.BRANCHING_ATTACHMENT_BLOB
|
|
|
|
gyCONSTRAINT_CENTRED_VERTICALLY = _ogl.gyCONSTRAINT_CENTRED_VERTICALLY
|
|
|
|
gyCONSTRAINT_CENTRED_HORIZONTALLY = _ogl.gyCONSTRAINT_CENTRED_HORIZONTALLY
|
|
|
|
gyCONSTRAINT_CENTRED_BOTH = _ogl.gyCONSTRAINT_CENTRED_BOTH
|
|
|
|
gyCONSTRAINT_LEFT_OF = _ogl.gyCONSTRAINT_LEFT_OF
|
|
|
|
gyCONSTRAINT_RIGHT_OF = _ogl.gyCONSTRAINT_RIGHT_OF
|
|
|
|
gyCONSTRAINT_ABOVE = _ogl.gyCONSTRAINT_ABOVE
|
|
|
|
gyCONSTRAINT_BELOW = _ogl.gyCONSTRAINT_BELOW
|
|
|
|
gyCONSTRAINT_ALIGNED_TOP = _ogl.gyCONSTRAINT_ALIGNED_TOP
|
|
|
|
gyCONSTRAINT_ALIGNED_BOTTOM = _ogl.gyCONSTRAINT_ALIGNED_BOTTOM
|
|
|
|
gyCONSTRAINT_ALIGNED_LEFT = _ogl.gyCONSTRAINT_ALIGNED_LEFT
|
|
|
|
gyCONSTRAINT_ALIGNED_RIGHT = _ogl.gyCONSTRAINT_ALIGNED_RIGHT
|
|
|
|
gyCONSTRAINT_MIDALIGNED_TOP = _ogl.gyCONSTRAINT_MIDALIGNED_TOP
|
|
|
|
gyCONSTRAINT_MIDALIGNED_BOTTOM = _ogl.gyCONSTRAINT_MIDALIGNED_BOTTOM
|
|
|
|
gyCONSTRAINT_MIDALIGNED_LEFT = _ogl.gyCONSTRAINT_MIDALIGNED_LEFT
|
|
|
|
gyCONSTRAINT_MIDALIGNED_RIGHT = _ogl.gyCONSTRAINT_MIDALIGNED_RIGHT
|
|
|
|
DIVISION_SIDE_NONE = _ogl.DIVISION_SIDE_NONE
|
|
|
|
DIVISION_SIDE_LEFT = _ogl.DIVISION_SIDE_LEFT
|
|
|
|
DIVISION_SIDE_TOP = _ogl.DIVISION_SIDE_TOP
|
|
|
|
DIVISION_SIDE_RIGHT = _ogl.DIVISION_SIDE_RIGHT
|
|
|
|
DIVISION_SIDE_BOTTOM = _ogl.DIVISION_SIDE_BOTTOM
|
|
|
|
|
|
|
|
def OGLInitialize(*args, **kwargs):
|
|
|
|
"""OGLInitialize()"""
|
|
|
|
return _ogl.OGLInitialize(*args, **kwargs)
|
|
|
|
|
|
|
|
def OGLCleanUp(*args, **kwargs):
|
|
|
|
"""OGLCleanUp()"""
|
|
|
|
return _ogl.OGLCleanUp(*args, **kwargs)
|
|
|
|
|