diff options
| author | Jack Jansen <jack.jansen@cwi.nl> | 1999-12-14 15:44:53 (GMT) |
|---|---|---|
| committer | Jack Jansen <jack.jansen@cwi.nl> | 1999-12-14 15:44:53 (GMT) |
| commit | 1836dbe22d45ac7066a1fdb3cbf3f041b2c5e727 (patch) | |
| tree | d1fee203089475a4cd9f22b76018b401d80683b6 /Mac/Lib/lib-toolbox/Menus.py | |
| parent | d16b5abc073fd6f9bce1e40862fd851db6faf3e4 (diff) | |
| download | cpython-1836dbe22d45ac7066a1fdb3cbf3f041b2c5e727.zip cpython-1836dbe22d45ac7066a1fdb3cbf3f041b2c5e727.tar.gz cpython-1836dbe22d45ac7066a1fdb3cbf3f041b2c5e727.tar.bz2 | |
Regenerated now that bgen can handle a few more constructs in constant definitions.
Diffstat (limited to 'Mac/Lib/lib-toolbox/Menus.py')
| -rw-r--r-- | Mac/Lib/lib-toolbox/Menus.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Mac/Lib/lib-toolbox/Menus.py b/Mac/Lib/lib-toolbox/Menus.py index 40230b8..8ac0085 100644 --- a/Mac/Lib/lib-toolbox/Menus.py +++ b/Mac/Lib/lib-toolbox/Menus.py @@ -1,4 +1,4 @@ -# Generated from 'SWDev:Codewarrior Pro 5:Metrowerks CodeWarrior:MacOS Support:Universal:Interfaces:CIncludes:Menus.h' +# Generated from 'flap:CodeWarrior Pro 5:Metrowerks CodeWarrior:MacOS Support:Universal:Interfaces:CIncludes:Menus.h' def FOUR_CHAR_CODE(x): return x gestaltMenuMgrAttr = FOUR_CHAR_CODE('menu') @@ -27,6 +27,10 @@ mctLastIDIndic = -99 kMenuStdMenuProc = 63 kMenuStdMenuBarProc = 63 kMenuNoModifiers = 0 +kMenuShiftModifier = (1 << 0) +kMenuOptionModifier = (1 << 1) +kMenuControlModifier = (1 << 2) +kMenuNoCommandModifier = (1 << 3) kMenuNoIcon = 0 kMenuIconType = 1 kMenuShrinkIconType = 2 |
