From: Kevin A. <ka...@us...> - 2004-05-12 20:41:45
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6086 Modified Files: widget.py Log Message: added position and size attributes to Panel Index: widget.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/widget.py,v retrieving revision 1.130 retrieving revision 1.131 diff -C2 -d -r1.130 -r1.131 *** widget.py 10 May 2004 19:52:51 -0000 1.130 --- widget.py 12 May 2004 20:41:35 -0000 1.131 *************** *** 493,494 **** --- 493,496 ---- deviceContext.DrawBitmapPoint(self._bitmap.getBits(), (0, 0)) + position = property(wx.Panel.GetPositionTuple, wx.Panel.SetPosition, doc="position of the panel") + size = property(wx.Panel.GetSizeTuple, wx.Panel.SetSize, doc="size of the panel") |