1997-09-09 10:52:47 -03:00
|
|
|
# Scan an Apple header file, generating a Python file of generator calls.
|
|
|
|
|
1998-04-17 11:07:56 -03:00
|
|
|
import sys
|
|
|
|
import os
|
2002-08-05 12:39:30 -03:00
|
|
|
from bgenlocations import TOOLBOXDIR, BGENDIR
|
1998-04-17 11:07:56 -03:00
|
|
|
sys.path.append(BGENDIR)
|
1997-09-09 10:52:47 -03:00
|
|
|
from scantools import Scanner
|
|
|
|
|
2002-08-29 18:09:00 -03:00
|
|
|
LONG = "MacHelp"
|
1997-09-09 10:52:47 -03:00
|
|
|
SHORT = "help"
|
|
|
|
OBJECT = "NOTUSED"
|
|
|
|
|
|
|
|
def main():
|
2004-07-18 03:16:08 -03:00
|
|
|
input = LONG + ".h"
|
|
|
|
output = SHORT + "gen.py"
|
|
|
|
defsoutput = TOOLBOXDIR + LONG + ".py"
|
|
|
|
scanner = MyScanner(input, output, defsoutput)
|
|
|
|
scanner.scan()
|
|
|
|
scanner.close()
|
|
|
|
print "=== Testing definitions output code ==="
|
|
|
|
execfile(defsoutput, {}, {})
|
|
|
|
print "=== Done scanning and generating, now importing the generated code... ==="
|
|
|
|
exec "import " + SHORT + "support"
|
|
|
|
print "=== Done. It's up to you to compile it now! ==="
|
1997-09-09 10:52:47 -03:00
|
|
|
|
|
|
|
class MyScanner(Scanner):
|
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
def destination(self, type, name, arglist):
|
|
|
|
classname = "Function"
|
|
|
|
listname = "functions"
|
|
|
|
if arglist:
|
|
|
|
t, n, m = arglist[0]
|
|
|
|
# This is non-functional today
|
|
|
|
if t == OBJECT and m == "InMode":
|
|
|
|
classname = "Method"
|
|
|
|
listname = "methods"
|
|
|
|
return classname, listname
|
1997-09-09 10:52:47 -03:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
def writeinitialdefs(self):
|
|
|
|
self.defsfile.write("def FOUR_CHAR_CODE(x): return x\n")
|
1998-02-20 12:02:09 -04:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
def makeblacklistnames(self):
|
|
|
|
return [
|
|
|
|
]
|
1997-09-09 10:52:47 -03:00
|
|
|
|
2004-07-18 03:16:08 -03:00
|
|
|
def makeblacklisttypes(self):
|
|
|
|
return [
|
|
|
|
## "TipFunctionUPP",
|
|
|
|
## "HMMessageRecord",
|
|
|
|
## "HMMessageRecord_ptr",
|
|
|
|
"HMWindowContentUPP",
|
|
|
|
"HMMenuTitleContentUPP",
|
|
|
|
"HMControlContentUPP",
|
|
|
|
"HMMenuItemContentUPP",
|
|
|
|
# For the moment
|
|
|
|
"HMHelpContentRec",
|
|
|
|
"HMHelpContentRec_ptr",
|
|
|
|
]
|
|
|
|
|
|
|
|
def makerepairinstructions(self):
|
|
|
|
return [
|
|
|
|
## ([("WindowPtr", "*", "OutMode")],
|
|
|
|
## [("ExistingWindowPtr", "*", "*")]),
|
|
|
|
]
|
1997-09-09 10:52:47 -03:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2004-07-18 03:16:08 -03:00
|
|
|
main()
|