From: <sir...@us...> - 2003-03-03 15:37:12
|
Update of /cvsroot/btplusplus/BT++/src In directory sc8-pr-cvs1:/tmp/cvs-serv20564/src Modified Files: LoaderManager.py ConfigFile.py Log Message: - Reimplemented grid move up/down. Now also handels moving of selections of multiple items. - Added images for move up/down. - Implemented resizing grid columns. - Fixed error with offscreen bitmap allocation(for grid). - Sizes and/or positions of the main window (DlgMain) and the grids columns are now saved. Index: LoaderManager.py =================================================================== RCS file: /cvsroot/btplusplus/BT++/src/LoaderManager.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** LoaderManager.py 2 Mar 2003 16:32:16 -0000 1.1 --- LoaderManager.py 3 Mar 2003 15:37:08 -0000 1.2 *************** *** 77,80 **** --- 77,83 ---- return + if frm < to: + to = to + 1 + self.Loaders[to:to] = [self.Loaders[frm]] Index: ConfigFile.py =================================================================== RCS file: /cvsroot/btplusplus/BT++/src/ConfigFile.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ConfigFile.py 19 Feb 2003 20:45:55 -0000 1.1 --- ConfigFile.py 3 Mar 2003 15:37:08 -0000 1.2 *************** *** 27,30 **** --- 27,44 ---- 'ConfirmExit': 0, 'TrayPass': '' + }, + 'GUI': { + 'WndPosX': -1, + 'WndPosY': -1, + 'WndSizeX': 800, + 'WndSizeY': 450, + + 'GridCol0': 230, + 'GridCol1': 80, + 'GridCol2': 80, + 'GridCol3': 70, + 'GridCol4': 120, + 'GridCol5': 70, + 'GridCol6': 90 } } |