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 [
|
1998-04-21 12:23:55 -03:00
|
|
|
"IsShowContextualMenuClick", # Can't find it in the library
|
|
|
|
"InitContextualMenus", # ditto
|
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
|
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")]),
|
|
|
|
]
|
|
|
|
|
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()
|