From: Kevin A. <ka...@us...> - 2004-08-09 22:47:05
|
Update of /cvsroot/pythoncard/PythonCard/tools/resourceEditor/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11529/tools/resourceEditor/modules Modified Files: menuDialog.rsrc.py Log Message: adjusted position and sizes for Mac OS X Index: menuDialog.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/resourceEditor/modules/menuDialog.rsrc.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** menuDialog.rsrc.py 1 May 2002 16:15:09 -0000 1.3 --- menuDialog.rsrc.py 9 Aug 2004 22:46:56 -0000 1.4 *************** *** 1,7 **** {'type':'CustomDialog', ! 'name':'menuDialog', ! 'title':'Menu Editor', ! 'size':(480, 300), ! 'components': [ {'type':'List', --- 1,8 ---- {'type':'CustomDialog', ! 'name':'menuDialog', ! 'title':'Menu Editor', ! 'position':(20, 50), ! 'size':(480, 300), ! 'components': [ {'type':'List', *************** *** 14,27 **** {'type':'Button', 'name':'btnUp', ! 'position':(5, 190), ! 'size':(50, -1), ! 'label':'Up', }, {'type':'Button', 'name':'btnDown', ! 'position':(65, 190), ! 'size':(50, -1), ! 'label':'Down', }, --- 15,28 ---- {'type':'Button', 'name':'btnUp', ! 'position':(5, 190), ! 'size':(50, -1), ! 'label':'Up', }, {'type':'Button', 'name':'btnDown', ! 'position':(60, 190), ! 'size':(60, -1), ! 'label':'Down', }, *************** *** 29,34 **** 'name':'btnDelete', 'position':(125, 190), ! 'size':(50, -1), ! 'label':'Delete', }, --- 30,35 ---- 'name':'btnDelete', 'position':(125, 190), ! 'size':(60, -1), ! 'label':'Delete', }, *************** *** 36,40 **** 'name':'stcName', 'position':(200, 10), - #'size':(45, -1), 'text':'Name:', }, --- 37,40 ---- *************** *** 43,47 **** 'name':'stcLabel', 'position':(200, 35), - #'size':(45, -1), 'text':'Label:', }, --- 43,46 ---- *************** *** 50,54 **** 'name':'stcShortcut', 'position':(200, 60), - #'size':(45, -1), 'text':'Shortcut:', }, --- 49,52 ---- *************** *** 57,61 **** 'name':'stcCommand', 'position':(200, 85), - #'size':(45, -1), 'text':'Command:', }, --- 55,58 ---- *************** *** 64,73 **** 'name':'fldListIndex', 'position':(460, 5), ! 'visible':0, }, {'type':'TextField', 'name':'fldName', ! 'position':(260, 5), 'size':(188, -1), }, --- 61,70 ---- 'name':'fldListIndex', 'position':(460, 5), ! 'visible':False, }, {'type':'TextField', 'name':'fldName', ! 'position':(275, 5), 'size':(188, -1), }, *************** *** 75,79 **** {'type':'TextField', 'name':'fldLabel', ! 'position':(260, 30), 'size':(188, -1), }, --- 72,76 ---- {'type':'TextField', 'name':'fldLabel', ! 'position':(275, 30), 'size':(188, -1), }, *************** *** 81,85 **** {'type':'TextField', 'name':'fldShortcut', ! 'position':(260, 55), 'size':(188, -1), }, --- 78,82 ---- {'type':'TextField', 'name':'fldShortcut', ! 'position':(275, 55), 'size':(188, -1), }, *************** *** 87,91 **** {'type':'TextField', 'name':'fldCommand', ! 'position':(260, 80), 'size':(188, -1), }, --- 84,88 ---- {'type':'TextField', 'name':'fldCommand', ! 'position':(275, 80), 'size':(188, -1), }, *************** *** 93,99 **** {'type':'CheckBox', 'name':'chkEnabled', ! 'position':(260, 105), ! #'size':(135, -1), ! 'checked':1, 'label':'Enabled', }, --- 90,95 ---- {'type':'CheckBox', 'name':'chkEnabled', ! 'position':(275, 110), ! 'checked':True, 'label':'Enabled', }, *************** *** 101,107 **** {'type':'CheckBox', 'name':'chkCheckable', ! 'position':(260, 130), ! #'size':(135, -1), ! 'checked':0, 'label':'Checkable', }, --- 97,101 ---- {'type':'CheckBox', 'name':'chkCheckable', ! 'position':(275, 135), 'label':'Checkable', }, *************** *** 109,115 **** {'type':'CheckBox', 'name':'chkChecked', ! 'position':(260, 155), ! #'size':(135, -1), ! 'checked':0, 'label':'Checked', }, --- 103,107 ---- {'type':'CheckBox', 'name':'chkChecked', ! 'position':(275, 160), 'label':'Checked', }, *************** *** 117,143 **** {'type':'Button', 'name':'btnNewMenu', ! 'position':(200, 190), ! 'label':'New Menu', }, {'type':'Button', 'name':'btnNewMenuItem', ! 'position':(290, 190), ! 'label':'New MenuItem', }, {'type':'Button', 'name':'btnOK', 'position':(10, 240), ! 'label':'OK', ! 'default':1, ! 'id':5100, }, {'type':'Button', 'name':'btnCancel', 'position':(115, 240), ! 'label':'Cancel', ! 'id':5101, }, --- 109,135 ---- {'type':'Button', 'name':'btnNewMenu', ! 'position':(220, 190), ! 'label':'New Menu', }, {'type':'Button', 'name':'btnNewMenuItem', ! 'position':(320, 190), ! 'label':'New MenuItem', }, {'type':'Button', + 'id':5100, 'name':'btnOK', 'position':(10, 240), ! 'default':1, ! 'label':'OK', }, {'type':'Button', + 'id':5101, 'name':'btnCancel', 'position':(115, 240), ! 'label':'Cancel', }, |