|
From: creedon <icr...@us...> - 2005-12-30 22:49:04
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27037 Modified Files: SHELL.R Log Message: for Mac OS, show command key equivalents for the style menu items that support them, see http://sourceforge.net/tracker/index.php?func=detail&aid=1392455&group_id=120666&atid=687801 Index: SHELL.R =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/SHELL.R,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** SHELL.R 1 Nov 2005 19:11:52 -0000 1.10 --- SHELL.R 30 Dec 2005 22:48:53 -0000 1.11 *************** *** 391,403 **** "-", noIcon, noKey, noMark, plain, /* [3] */ ! "Bold", noIcon, noKey, noMark, 1, /* [4] */ ! "Italic", noIcon, noKey, noMark, 2, /* [5] */ ! "Underline", noIcon, noKey, noMark, 4, /* [6] */ ! "Outline", noIcon, noKey, noMark, 8, /* [7] */ ! "Shadow", noIcon, noKey, noMark, 16, /* [8] */ "Superscript", noIcon, noKey, noMark, plain, --- 391,403 ---- "-", noIcon, noKey, noMark, plain, /* [3] */ ! "Bold", noIcon, "B", noMark, 1, /* [4] */ ! "Italic", noIcon, "I", noMark, 2, /* [5] */ ! "Underline", noIcon, "U", noMark, 4, /* [6] */ ! "Outline", noIcon, "O", noMark, 8, /* [7] */ ! "Shadow", noIcon, "S", noMark, 16, /* [8] */ "Superscript", noIcon, noKey, noMark, plain, *************** *** 604,607 **** --- 604,635 ---- }; + resource 'xmnu' (129, "Style") { + versionZero + { + { + /* array ItemExtensions: 9 elements */ + /* [1] */ + skipItem {}, + /* [2] */ + skipItem {}, + /* [3] */ + dataItem {0, kMenuShiftModifier, currScript, 0, 0, noHierID, sysFont, naturalGlyph}, + /* [4] */ + dataItem {0, kMenuShiftModifier, currScript, 0, 0, noHierID, sysFont, naturalGlyph}, + /* [5] */ + dataItem {0, kMenuShiftModifier, currScript, 0, 0, noHierID, sysFont, naturalGlyph}, + /* [6] */ + dataItem {0, kMenuShiftModifier, currScript, 0, 0, noHierID, sysFont, naturalGlyph}, + /* [7] */ + dataItem {0, kMenuShiftModifier, currScript, 0, 0, noHierID, sysFont, naturalGlyph}, + /* [8] */ + skipItem {}, + /* [9] */ + skipItem {} + } + } + }; + + resource 'STR#' (129, "Defaults", purgeable) { { /* array StringArray: 6 elements */ |