Update of /cvsroot/pythoncard/PythonCard
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15908
Modified Files:
model.py
Log Message:
added maximized property to Background
Index: model.py
===================================================================
RCS file: /cvsroot/pythoncard/PythonCard/model.py,v
retrieving revision 1.196
retrieving revision 1.197
diff -C2 -d -r1.196 -r1.197
*** model.py 13 Jan 2006 23:17:35 -0000 1.196
--- model.py 13 Jan 2006 23:33:37 -0000 1.197
***************
*** 1235,1238 ****
--- 1235,1239 ----
title = property(wx.Frame.GetTitle, wx.Frame.SetTitle)
visible = property(wx.Frame.IsShown, wx.Frame.Show, doc="whether the background window is visible")
+ maximized = property(wx.Frame.IsMaximized, wx.Frame.Maximize, doc="whether the background window is maximized")
minimized = property(wx.Frame.IsIconized, wx.Frame.Iconize, doc="whether the background window is minimized")
|