+class Position(object):
+ """Proxy of C++ Position class"""
+ thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
+ __repr__ = _swig_repr
+ def __init__(self, *args, **kwargs):
+ """__init__(self, int row=0, int col=0) -> Position"""
+ _core_.Position_swiginit(self,_core_.new_Position(*args, **kwargs))
+ __swig_destroy__ = _core_.delete_Position
+ __del__ = lambda self : None;
+ def GetRow(*args, **kwargs):
+ """GetRow(self) -> int"""
+ return _core_.Position_GetRow(*args, **kwargs)
+
+ def GetColumn(*args, **kwargs):
+ """GetColumn(self) -> int"""
+ return _core_.Position_GetColumn(*args, **kwargs)
+
+ def GetCol(*args, **kwargs):
+ """GetCol(self) -> int"""
+ return _core_.Position_GetCol(*args, **kwargs)
+
+ def SetRow(*args, **kwargs):
+ """SetRow(self, int row)"""
+ return _core_.Position_SetRow(*args, **kwargs)
+
+ def SetColumn(*args, **kwargs):
+ """SetColumn(self, int column)"""
+ return _core_.Position_SetColumn(*args, **kwargs)
+
+ def SetCol(*args, **kwargs):
+ """SetCol(self, int column)"""
+ return _core_.Position_SetCol(*args, **kwargs)
+
+ def __eq__(*args, **kwargs):
+ """
+ __eq__(self, PyObject other) -> bool
+
+ Test for equality of wx.Position objects.
+ """
+ return _core_.Position___eq__(*args, **kwargs)
+
+ def __ne__(*args, **kwargs):
+ """
+ __ne__(self, PyObject other) -> bool
+
+ Test for inequality of wx.Position objects.
+ """
+ return _core_.Position___ne__(*args, **kwargs)
+
+ def __add__(*args):
+ """
+ __add__(self, Position p) -> Position
+ __add__(self, Size s) -> Position
+ """
+ return _core_.Position___add__(*args)
+
+ def __sub__(*args):
+ """
+ __sub__(self, Position p) -> Position
+ __sub__(self, Size s) -> Position
+ """
+ return _core_.Position___sub__(*args)
+
+ row = property(GetRow,SetRow)
+ col = property(GetCol,SetCol)
+_core_.Position_swigregister(Position)
+