summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/menu
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-04-16 14:33:21 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-04-16 14:33:21 (GMT)
commitded81a1ffe5c4398968888715b98b618f0604c37 (patch)
tree4615649ab17c51f51c1d12b10edf4074c120a8e5 /Mac/Modules/menu
parent19171a21fdff4f63ca35b3cafc96a86280d0539b (diff)
downloadcpython-ded81a1ffe5c4398968888715b98b618f0604c37.zip
cpython-ded81a1ffe5c4398968888715b98b618f0604c37.tar.gz
cpython-ded81a1ffe5c4398968888715b98b618f0604c37.tar.bz2
Removed ...gen.py files from repository
Diffstat (limited to 'Mac/Modules/menu')
-rw-r--r--Mac/Modules/menu/menugen.py272
1 files changed, 0 insertions, 272 deletions
diff --git a/Mac/Modules/menu/menugen.py b/Mac/Modules/menu/menugen.py
deleted file mode 100644
index 425003b..0000000
--- a/Mac/Modules/menu/menugen.py
+++ /dev/null
@@ -1,272 +0,0 @@
-# Generated from 'Sap:CW8 Gold:Metrowerks CodeWarrior:MacOS Support:Headers:Universal Headers:Menus.h'
-
-f = Function(short, 'GetMBarHeight',
-)
-functions.append(f)
-
-f = Function(void, 'InitMenus',
-)
-functions.append(f)
-
-f = Function(MenuRef, 'NewMenu',
- (short, 'menuID', InMode),
- (ConstStr255Param, 'menuTitle', InMode),
-)
-functions.append(f)
-
-f = Function(MenuRef, 'GetMenu',
- (short, 'resourceID', InMode),
-)
-functions.append(f)
-
-f = Method(void, 'DisposeMenu',
- (MenuRef, 'theMenu', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'AppendMenu',
- (MenuRef, 'menu', InMode),
- (ConstStr255Param, 'data', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'AppendResMenu',
- (MenuRef, 'theMenu', InMode),
- (ResType, 'theType', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'InsertResMenu',
- (MenuRef, 'theMenu', InMode),
- (ResType, 'theType', InMode),
- (short, 'afterItem', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'InsertMenu',
- (MenuRef, 'theMenu', InMode),
- (short, 'beforeID', InMode),
-)
-methods.append(f)
-
-f = Function(void, 'DrawMenuBar',
-)
-functions.append(f)
-
-f = Function(void, 'InvalMenuBar',
-)
-functions.append(f)
-
-f = Function(void, 'DeleteMenu',
- (short, 'menuID', InMode),
-)
-functions.append(f)
-
-f = Function(void, 'ClearMenuBar',
-)
-functions.append(f)
-
-f = Function(Handle, 'GetNewMBar',
- (short, 'menuBarID', InMode),
-)
-functions.append(f)
-
-f = Function(Handle, 'GetMenuBar',
-)
-functions.append(f)
-
-f = Function(void, 'SetMenuBar',
- (Handle, 'menuList', InMode),
-)
-functions.append(f)
-
-f = Method(void, 'InsertMenuItem',
- (MenuRef, 'theMenu', InMode),
- (ConstStr255Param, 'itemString', InMode),
- (short, 'afterItem', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'DeleteMenuItem',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
-)
-methods.append(f)
-
-f = Function(long, 'MenuKey',
- (short, 'ch', InMode),
-)
-functions.append(f)
-
-f = Function(void, 'HiliteMenu',
- (short, 'menuID', InMode),
-)
-functions.append(f)
-
-f = Method(void, 'SetMenuItemText',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
- (ConstStr255Param, 'itemString', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'GetMenuItemText',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
- (Str255, 'itemString', OutMode),
-)
-methods.append(f)
-
-f = Method(void, 'DisableItem',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'EnableItem',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'CheckItem',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
- (Boolean, 'checked', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'SetItemMark',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
- (short, 'markChar', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'GetItemMark',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
- (short, 'markChar', OutMode),
-)
-methods.append(f)
-
-f = Method(void, 'SetItemIcon',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
- (short, 'iconIndex', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'GetItemIcon',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
- (short, 'iconIndex', OutMode),
-)
-methods.append(f)
-
-f = Method(void, 'SetItemStyle',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
- (short, 'chStyle', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'GetItemStyle',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
- (Style, 'chStyle', OutMode),
-)
-methods.append(f)
-
-f = Method(void, 'CalcMenuSize',
- (MenuRef, 'theMenu', InMode),
-)
-methods.append(f)
-
-f = Method(short, 'CountMItems',
- (MenuRef, 'theMenu', InMode),
-)
-methods.append(f)
-
-f = Function(MenuRef, 'GetMenuHandle',
- (short, 'menuID', InMode),
-)
-functions.append(f)
-
-f = Function(void, 'FlashMenuBar',
- (short, 'menuID', InMode),
-)
-functions.append(f)
-
-f = Function(void, 'SetMenuFlash',
- (short, 'count', InMode),
-)
-functions.append(f)
-
-f = Function(long, 'MenuSelect',
- (Point, 'startPt', InMode),
-)
-functions.append(f)
-
-f = Function(void, 'InitProcMenu',
- (short, 'resID', InMode),
-)
-functions.append(f)
-
-f = Method(void, 'GetItemCmd',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
- (short, 'cmdChar', OutMode),
-)
-methods.append(f)
-
-f = Method(void, 'SetItemCmd',
- (MenuRef, 'theMenu', InMode),
- (short, 'item', InMode),
- (short, 'cmdChar', InMode),
-)
-methods.append(f)
-
-f = Method(long, 'PopUpMenuSelect',
- (MenuRef, 'menu', InMode),
- (short, 'top', InMode),
- (short, 'left', InMode),
- (short, 'popUpItem', InMode),
-)
-methods.append(f)
-
-f = Function(long, 'MenuChoice',
-)
-functions.append(f)
-
-f = Function(void, 'DeleteMCEntries',
- (short, 'menuID', InMode),
- (short, 'menuItem', InMode),
-)
-functions.append(f)
-
-f = Method(void, 'InsertFontResMenu',
- (MenuRef, 'theMenu', InMode),
- (short, 'afterItem', InMode),
- (short, 'scriptFilter', InMode),
-)
-methods.append(f)
-
-f = Method(void, 'InsertIntlResMenu',
- (MenuRef, 'theMenu', InMode),
- (ResType, 'theType', InMode),
- (short, 'afterItem', InMode),
- (short, 'scriptFilter', InMode),
-)
-methods.append(f)
-
-f = Function(Boolean, 'SystemEdit',
- (short, 'editCmd', InMode),
-)
-functions.append(f)
-
-f = Function(void, 'SystemMenu',
- (long, 'menuResult', InMode),
-)
-functions.append(f)
-