1995-01-30 07:53:55 -04:00
|
|
|
# Scan <Menus.h>, generating menugen.py.
|
1998-04-17 11:07:56 -03:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
BGENDIR=os.path.join(sys.prefix, ':Tools:bgen:bgen')
|
|
|
|
sys.path.append(BGENDIR)
|
1995-01-30 07:53:55 -04:00
|
|
|
|
|
|
|
from scantools import Scanner
|
1996-04-12 13:29:23 -03:00
|
|
|
from bgenlocations import TOOLBOXDIR
|
1995-01-30 07:53:55 -04:00
|
|
|
|
|
|
|
def main():
|
|
|
|
input = "Menus.h"
|
|
|
|
output = "menugen.py"
|
1996-04-12 13:29:23 -03:00
|
|
|
defsoutput = TOOLBOXDIR + "Menus.py"
|
1995-01-30 07:53:55 -04:00
|
|
|
scanner = MyScanner(input, output, defsoutput)
|
|
|
|
scanner.scan()
|
|
|
|
scanner.close()
|
|
|
|
print "=== Done scanning and generating, now doing 'import menusupport' ==="
|
|
|
|
import menusupport
|
|
|
|
print "=== Done. It's up to you to compile Menumodule.c ==="
|
|
|
|
|
|
|
|
class MyScanner(Scanner):
|
|
|
|
|
|
|
|
def destination(self, type, name, arglist):
|
|
|
|
classname = "Function"
|
|
|
|
listname = "functions"
|
|
|
|
if arglist:
|
|
|
|
t, n, m = arglist[0]
|
1995-06-06 10:08:40 -03:00
|
|
|
if t in ("MenuHandle", "MenuRef") and m == "InMode":
|
1995-01-30 07:53:55 -04:00
|
|
|
classname = "Method"
|
|
|
|
listname = "methods"
|
|
|
|
return classname, listname
|
|
|
|
|
|
|
|
def makeblacklistnames(self):
|
|
|
|
return [
|
1999-12-12 17:41:51 -04:00
|
|
|
## "IsShowContextualMenuClick", # Can't find it in the library
|
|
|
|
## "InitContextualMenus", # ditto
|
|
|
|
"GetMenuItemProperty", # difficult for the moment
|
|
|
|
"GetMenuItemPropertySize",
|
|
|
|
"SetMenuItemProperty",
|
|
|
|
"RemoveMenuItemProperty",
|
2000-12-10 19:43:49 -04:00
|
|
|
"SetMenuCommandProperty",
|
|
|
|
"GetMenuCommandProperty",
|
|
|
|
"GetMenuTitle", # Funny arg/returnvalue
|
|
|
|
"SetMenuTitle",
|
2001-12-16 16:18:40 -04:00
|
|
|
"SetMenuTitleIcon", # void*
|
1995-01-30 07:53:55 -04:00
|
|
|
]
|
|
|
|
|
2000-06-02 18:35:07 -03:00
|
|
|
def makegreylist(self):
|
|
|
|
return [
|
2000-07-14 19:37:27 -03:00
|
|
|
('#if !TARGET_API_MAC_CARBON', [
|
2000-06-02 18:35:07 -03:00
|
|
|
'GetMenuItemRefCon2',
|
|
|
|
'SetMenuItemRefCon2',
|
|
|
|
'EnableItem',
|
|
|
|
'DisableItem',
|
|
|
|
'CheckItem',
|
|
|
|
'CountMItems',
|
|
|
|
'OpenDeskAcc',
|
|
|
|
'SystemEdit',
|
|
|
|
'SystemMenu',
|
|
|
|
'SetMenuFlash',
|
|
|
|
'InitMenus',
|
|
|
|
'InitProcMenu',
|
2000-12-10 19:43:49 -04:00
|
|
|
]),
|
|
|
|
('#if TARGET_API_MAC_CARBON', [
|
|
|
|
'DisposeMenuBar',
|
|
|
|
'DuplicateMenuBar',
|
|
|
|
'CreateNewMenu',
|
|
|
|
'GetFontFamilyFromMenuSelection',
|
|
|
|
'UpdateStandardFontMenu',
|
|
|
|
'CreateStandardFontMenu',
|
|
|
|
'RemoveMenuCommandProperty',
|
|
|
|
'GetMenuCommandPropertySize',
|
|
|
|
'IsMenuCommandEnabled',
|
|
|
|
'DisableMenuCommand',
|
|
|
|
'EnableMenuCommand',
|
|
|
|
'GetIndMenuItemWithCommandID',
|
|
|
|
'CountMenuItemsWithCommandID',
|
|
|
|
'MenuHasEnabledItems',
|
|
|
|
'EnableAllMenuItems',
|
|
|
|
'DisableAllMenuItems',
|
|
|
|
'ChangeMenuItemAttributes',
|
|
|
|
'GetMenuItemAttributes',
|
|
|
|
'ChangeMenuAttributes',
|
|
|
|
'GetMenuAttributes',
|
|
|
|
'ChangeMenuItemPropertyAttributes',
|
|
|
|
'GetMenuItemPropertyAttributes',
|
2001-12-16 16:18:40 -04:00
|
|
|
'AcquireRootMenu',
|
|
|
|
'UpdateInvalidMenuItems',
|
|
|
|
'InvalidateMenuItems',
|
|
|
|
'IsMenuItemInvalid',
|
|
|
|
'GetMenuCommandMark',
|
|
|
|
'SetMenuCommandMark',
|
|
|
|
'GetMenuType',
|
|
|
|
'SetMenuItemCommandKey',
|
|
|
|
'GetMenuItemCommandKey',
|
|
|
|
'SetMenuItemIndent',
|
|
|
|
'GetMenuItemIndent',
|
|
|
|
'SetMenuItemTextWithCFString',
|
|
|
|
'CopyMenuItemTextAsCFString',
|
|
|
|
'GetMenuItemHierarchicalMenu',
|
|
|
|
'SetMenuItemHierarchicalMenu',
|
|
|
|
'SetRootMenu',
|
|
|
|
'IsMenuBarInvalid',
|
|
|
|
'InvalidateMenuEnabling',
|
|
|
|
'InsertMenuItemTextWithCFString',
|
|
|
|
'AppendMenuItemTextWithCFString',
|
|
|
|
'DeleteMenuItems',
|
|
|
|
'CopyMenuItems',
|
|
|
|
'IsMenuSizeInvalid',
|
|
|
|
'InvalidateMenuSize',
|
|
|
|
'SetMenuTitleWithCFString',
|
|
|
|
'CopyMenuTitleAsCFString',
|
|
|
|
'DuplicateMenu',
|
|
|
|
'ReleaseMenu',
|
|
|
|
'RetainMenu',
|
|
|
|
'GetMenuRetainCount',
|
|
|
|
'IsValidMenu',
|
2000-06-02 18:35:07 -03:00
|
|
|
])]
|
|
|
|
|
1995-01-30 07:53:55 -04:00
|
|
|
def makeblacklisttypes(self):
|
|
|
|
return [
|
|
|
|
'MCTableHandle',
|
|
|
|
'MCEntryPtr',
|
|
|
|
'MCTablePtr',
|
1998-04-21 12:23:55 -03:00
|
|
|
'AEDesc_ptr', # For now: doable, but not easy
|
|
|
|
'ProcessSerialNumber', # ditto
|
2000-12-10 19:43:49 -04:00
|
|
|
"MenuDefSpecPtr", # Too difficult for now
|
|
|
|
"MenuDefSpec_ptr", # ditto
|
|
|
|
"MenuTrackingData",
|
2001-12-16 16:18:40 -04:00
|
|
|
"void_ptr", # Don't know yet.
|
|
|
|
"EventRef", # For now, not exported yet.
|
|
|
|
"MenuItemDataPtr", # Not yet.
|
|
|
|
"MenuItemDataRec_ptr",
|
1995-01-30 07:53:55 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
def makerepairinstructions(self):
|
|
|
|
return [
|
|
|
|
([("Str255", "itemString", "InMode")],
|
|
|
|
[("*", "*", "OutMode")]),
|
|
|
|
|
|
|
|
([("void_ptr", "*", "InMode"), ("long", "*", "InMode")],
|
|
|
|
[("InBuffer", "*", "*")]),
|
|
|
|
|
|
|
|
([("void", "*", "OutMode"), ("long", "*", "InMode"),
|
|
|
|
("long", "*", "OutMode")],
|
|
|
|
[("VarVarOutBuffer", "*", "InOutMode")]),
|
2002-01-03 08:16:18 -04:00
|
|
|
([("MenuRef", 'outHierMenu', "OutMode")],
|
|
|
|
[("OptMenuRef", 'outHierMenu', "OutMode")]),
|
1995-01-30 07:53:55 -04:00
|
|
|
]
|
|
|
|
|
1998-04-24 07:28:20 -03:00
|
|
|
def writeinitialdefs(self):
|
|
|
|
self.defsfile.write("def FOUR_CHAR_CODE(x): return x\n")
|
|
|
|
|
1995-01-30 07:53:55 -04:00
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|