Kaydet (Commit) ae8a68f4 authored tarafından Jack Jansen's avatar Jack Jansen

Trying again to check it in. Changes to:

- Use Universal Headers as input
- Change addpack calls to not depend on Guido's disklayout
- Checkge testprograms to use new names for some functions
üst c7cfb955
# Progress dialog # Progress dialog
from addpack import addpack from addpack import addpack
addpack('Demo') addpack('Tools')
addpack('bgen') addpack('bgen')
addpack('dlg') addpack('dlg')
addpack('evt') addpack('evt')
from Dlg import GetNewDialog, ModalDialog, SetIText from Dlg import GetNewDialog, ModalDialog, SetDialogItemText
count = 0 count = 0
...@@ -17,12 +17,12 @@ def filter(d, e): ...@@ -17,12 +17,12 @@ def filter(d, e):
def main(): def main():
d = GetNewDialog(256, -1) d = GetNewDialog(256, -1)
tp, h, rect = d.GetDItem(2) tp, h, rect = d.GetDialogItem(2)
SetIText(h, "Progress...") SetDialogItemText(h, "Progress...")
for i in range(100): for i in range(100):
if i%10 == 0: if i%10 == 0:
str = "Progress...%d" % i str = "Progress...%d" % i
SetIText(h, str) SetDialogItemText(h, str)
ModalDialog(filter) ModalDialog(filter)
for j in range(100): pass for j in range(100): pass
......
...@@ -5,6 +5,7 @@ from Ctl import * ...@@ -5,6 +5,7 @@ from Ctl import *
from Win import * from Win import *
from Evt import * from Evt import *
import time import time
import sys
def main(): def main():
r = (40, 40, 400, 300) r = (40, 40, 400, 300)
...@@ -12,6 +13,8 @@ def main(): ...@@ -12,6 +13,8 @@ def main():
w.DrawGrowIcon() w.DrawGrowIcon()
r = (40, 40, 100, 60) r = (40, 40, 100, 60)
c = NewControl(w, r, "SPAM!", 1, 0, 0, 1, 0, 0) c = NewControl(w, r, "SPAM!", 1, 0, 0, 1, 0, 0)
print 'Ok, try it...'
sys.exit(1) # So we can see what happens...
main() main()
...@@ -3,6 +3,9 @@ ...@@ -3,6 +3,9 @@
# Python library. # Python library.
# The ID can be overridden by passing a second parameter. # The ID can be overridden by passing a second parameter.
import addpack
addpack.addpack(':Tools:bgen:evt')
from Dlg import * from Dlg import *
from Events import * from Events import *
import string import string
...@@ -17,8 +20,8 @@ def f(d, event): ...@@ -17,8 +20,8 @@ def f(d, event):
def message(str = "Hello, world!", id = ID): def message(str = "Hello, world!", id = ID):
d = GetNewDialog(id, -1) d = GetNewDialog(id, -1)
tp, h, rect = d.GetDItem(2) tp, h, rect = d.GetDialogItem(2)
SetIText(h, str) SetDialogItemText(h, str)
while 1: while 1:
n = ModalDialog(f) n = ModalDialog(f)
if n == 1: break if n == 1: break
......
# Generated from 'D:Development:THINK C:Mac #includes:Apple #includes:Controls.h' # Generated from 'Moes:CW5 GOLD \304:Metrowerks C/C++ \304:Headers \304:Universal Headers 2.0a3 \304:Controls.h'
pushButProc = 0 pushButProc = 0
checkBoxProc = 1 checkBoxProc = 1
radioButProc = 2 radioButProc = 2
useWFont = 8
scrollBarProc = 16 scrollBarProc = 16
popupMenuProc = 1008
useWFont = 8
inLabel = 1
inMenu = 2
inTriangle = 4
inButton = 10 inButton = 10
inCheckBox = 11 inCheckBox = 11
inUpButton = 20 inUpButton = 20
...@@ -12,17 +16,34 @@ inDownButton = 21 ...@@ -12,17 +16,34 @@ inDownButton = 21
inPageUp = 22 inPageUp = 22
inPageDown = 23 inPageDown = 23
inThumb = 129 inThumb = 129
popupMenuProc = 1008 kNoHiliteControlPart = 0
inLabel = 1 kInLabelControlPart = 1
inMenu = 2 kInMenuControlPart = 2
inTriangle = 4 kInTriangleControlPart = 4
kInButtonControlPart = 10
kInCheckBoxControlPart = 11
kInUpButtonControlPart = 20
kInDownButtonControlPart = 21
kInPageUpControlPart = 22
kInPageDownControlPart = 23
kInIndicatorControlPart = 129
kReservedControlPart = 254
kControlInactiveControlPart = 255
popupFixedWidth = 1 << 0
popupVariableWidth = 1 << 1
popupUseAddResMenu = 1 << 2
popupUseWFont = 1 << 3 popupUseWFont = 1 << 3
popupTitleBold = 1 << 8
popupTitleItalic = 1 << 9
popupTitleUnderline = 1 << 10
popupTitleOutline = 1 << 11 popupTitleOutline = 1 << 11
popupTitleShadow = 1 << 12
popupTitleCondense = 1 << 13
popupTitleExtend = 1 << 14 popupTitleExtend = 1 << 14
popupTitleNoStyle = 1 << 15
popupTitleLeftJust = 0x00000000 popupTitleLeftJust = 0x00000000
popupTitleCenterJust = 0x00000001 popupTitleCenterJust = 0x00000001
popupTitleRightJust = 0x000000FF popupTitleRightJust = 0x000000FF
noConstraint = 0
hAxisOnly = 1 hAxisOnly = 1
vAxisOnly = 2 vAxisOnly = 2
drawCntl = 0 drawCntl = 0
...@@ -36,6 +57,7 @@ dragCntl = 7 ...@@ -36,6 +57,7 @@ dragCntl = 7
autoTrack = 8 autoTrack = 8
calcCntlRgn = 10 calcCntlRgn = 10
calcThumbRgn = 11 calcThumbRgn = 11
drawThumbOutline = 12
cFrameColor = 0 cFrameColor = 0
cBodyColor = 1 cBodyColor = 1
cTextColor = 2 cTextColor = 2
......
# Generated from 'D:Development:THINK C:Mac #includes:Apple #includes:Dialogs.h' # Generated from 'Moes:CW5 GOLD \304:Metrowerks C/C++ \304:Headers \304:Universal Headers 2.0a3 \304:Dialogs.h'
ctrlItem = 4 ctrlItem = 4
btnCtrl = 0 btnCtrl = 0
...@@ -16,6 +16,7 @@ cancel = 2 ...@@ -16,6 +16,7 @@ cancel = 2
stopIcon = 0 stopIcon = 0
noteIcon = 1 noteIcon = 1
cautionIcon = 2 cautionIcon = 2
kIDODialogItem = 24
overlayDITL = 0 overlayDITL = 0
appendDITLRight = 1 appendDITLRight = 1
appendDITLBottom = 2 appendDITLBottom = 2
...@@ -56,7 +56,7 @@ typedef struct ControlObject { ...@@ -56,7 +56,7 @@ typedef struct ControlObject {
} ControlObject; } ControlObject;
PyObject *CtlObj_New(itself) PyObject *CtlObj_New(itself)
const ControlHandle itself; ControlHandle itself;
{ {
ControlObject *it; ControlObject *it;
if (itself == NULL) return PyMac_Error(resNotFound); if (itself == NULL) return PyMac_Error(resNotFound);
...@@ -86,7 +86,7 @@ static void CtlObj_dealloc(self) ...@@ -86,7 +86,7 @@ static void CtlObj_dealloc(self)
PyMem_DEL(self); PyMem_DEL(self);
} }
static PyObject *CtlObj_SetCTitle(_self, _args) static PyObject *CtlObj_SetControlTitle(_self, _args)
ControlObject *_self; ControlObject *_self;
PyObject *_args; PyObject *_args;
{ {
...@@ -95,14 +95,14 @@ static PyObject *CtlObj_SetCTitle(_self, _args) ...@@ -95,14 +95,14 @@ static PyObject *CtlObj_SetCTitle(_self, _args)
if (!PyArg_ParseTuple(_args, "O&", if (!PyArg_ParseTuple(_args, "O&",
PyMac_GetStr255, title)) PyMac_GetStr255, title))
return NULL; return NULL;
SetCTitle(_self->ob_itself, SetControlTitle(_self->ob_itself,
title); title);
Py_INCREF(Py_None); Py_INCREF(Py_None);
_res = Py_None; _res = Py_None;
return _res; return _res;
} }
static PyObject *CtlObj_GetCTitle(_self, _args) static PyObject *CtlObj_GetControlTitle(_self, _args)
ControlObject *_self; ControlObject *_self;
PyObject *_args; PyObject *_args;
{ {
...@@ -111,7 +111,7 @@ static PyObject *CtlObj_GetCTitle(_self, _args) ...@@ -111,7 +111,7 @@ static PyObject *CtlObj_GetCTitle(_self, _args)
if (!PyArg_ParseTuple(_args, "O&", if (!PyArg_ParseTuple(_args, "O&",
PyMac_GetStr255, title)) PyMac_GetStr255, title))
return NULL; return NULL;
GetCTitle(_self->ob_itself, GetControlTitle(_self->ob_itself,
title); title);
Py_INCREF(Py_None); Py_INCREF(Py_None);
_res = Py_None; _res = Py_None;
...@@ -224,7 +224,7 @@ static PyObject *CtlObj_SizeControl(_self, _args) ...@@ -224,7 +224,7 @@ static PyObject *CtlObj_SizeControl(_self, _args)
return _res; return _res;
} }
static PyObject *CtlObj_SetCtlValue(_self, _args) static PyObject *CtlObj_SetControlValue(_self, _args)
ControlObject *_self; ControlObject *_self;
PyObject *_args; PyObject *_args;
{ {
...@@ -233,14 +233,14 @@ static PyObject *CtlObj_SetCtlValue(_self, _args) ...@@ -233,14 +233,14 @@ static PyObject *CtlObj_SetCtlValue(_self, _args)
if (!PyArg_ParseTuple(_args, "h", if (!PyArg_ParseTuple(_args, "h",
&theValue)) &theValue))
return NULL; return NULL;
SetCtlValue(_self->ob_itself, SetControlValue(_self->ob_itself,
theValue); theValue);
Py_INCREF(Py_None); Py_INCREF(Py_None);
_res = Py_None; _res = Py_None;
return _res; return _res;
} }
static PyObject *CtlObj_GetCtlValue(_self, _args) static PyObject *CtlObj_GetControlValue(_self, _args)
ControlObject *_self; ControlObject *_self;
PyObject *_args; PyObject *_args;
{ {
...@@ -248,13 +248,13 @@ static PyObject *CtlObj_GetCtlValue(_self, _args) ...@@ -248,13 +248,13 @@ static PyObject *CtlObj_GetCtlValue(_self, _args)
short _rv; short _rv;
if (!PyArg_ParseTuple(_args, "")) if (!PyArg_ParseTuple(_args, ""))
return NULL; return NULL;
_rv = GetCtlValue(_self->ob_itself); _rv = GetControlValue(_self->ob_itself);
_res = Py_BuildValue("h", _res = Py_BuildValue("h",
_rv); _rv);
return _res; return _res;
} }
static PyObject *CtlObj_SetCtlMin(_self, _args) static PyObject *CtlObj_SetControlMinimum(_self, _args)
ControlObject *_self; ControlObject *_self;
PyObject *_args; PyObject *_args;
{ {
...@@ -263,14 +263,14 @@ static PyObject *CtlObj_SetCtlMin(_self, _args) ...@@ -263,14 +263,14 @@ static PyObject *CtlObj_SetCtlMin(_self, _args)
if (!PyArg_ParseTuple(_args, "h", if (!PyArg_ParseTuple(_args, "h",
&minValue)) &minValue))
return NULL; return NULL;
SetCtlMin(_self->ob_itself, SetControlMinimum(_self->ob_itself,
minValue); minValue);
Py_INCREF(Py_None); Py_INCREF(Py_None);
_res = Py_None; _res = Py_None;
return _res; return _res;
} }
static PyObject *CtlObj_GetCtlMin(_self, _args) static PyObject *CtlObj_GetControlMinimum(_self, _args)
ControlObject *_self; ControlObject *_self;
PyObject *_args; PyObject *_args;
{ {
...@@ -278,13 +278,13 @@ static PyObject *CtlObj_GetCtlMin(_self, _args) ...@@ -278,13 +278,13 @@ static PyObject *CtlObj_GetCtlMin(_self, _args)
short _rv; short _rv;
if (!PyArg_ParseTuple(_args, "")) if (!PyArg_ParseTuple(_args, ""))
return NULL; return NULL;
_rv = GetCtlMin(_self->ob_itself); _rv = GetControlMinimum(_self->ob_itself);
_res = Py_BuildValue("h", _res = Py_BuildValue("h",
_rv); _rv);
return _res; return _res;
} }
static PyObject *CtlObj_SetCtlMax(_self, _args) static PyObject *CtlObj_SetControlMaximum(_self, _args)
ControlObject *_self; ControlObject *_self;
PyObject *_args; PyObject *_args;
{ {
...@@ -293,14 +293,14 @@ static PyObject *CtlObj_SetCtlMax(_self, _args) ...@@ -293,14 +293,14 @@ static PyObject *CtlObj_SetCtlMax(_self, _args)
if (!PyArg_ParseTuple(_args, "h", if (!PyArg_ParseTuple(_args, "h",
&maxValue)) &maxValue))
return NULL; return NULL;
SetCtlMax(_self->ob_itself, SetControlMaximum(_self->ob_itself,
maxValue); maxValue);
Py_INCREF(Py_None); Py_INCREF(Py_None);
_res = Py_None; _res = Py_None;
return _res; return _res;
} }
static PyObject *CtlObj_GetCtlMax(_self, _args) static PyObject *CtlObj_GetControlMaximum(_self, _args)
ControlObject *_self; ControlObject *_self;
PyObject *_args; PyObject *_args;
{ {
...@@ -308,13 +308,13 @@ static PyObject *CtlObj_GetCtlMax(_self, _args) ...@@ -308,13 +308,13 @@ static PyObject *CtlObj_GetCtlMax(_self, _args)
short _rv; short _rv;
if (!PyArg_ParseTuple(_args, "")) if (!PyArg_ParseTuple(_args, ""))
return NULL; return NULL;
_rv = GetCtlMax(_self->ob_itself); _rv = GetControlMaximum(_self->ob_itself);
_res = Py_BuildValue("h", _res = Py_BuildValue("h",
_rv); _rv);
return _res; return _res;
} }
static PyObject *CtlObj_SetCRefCon(_self, _args) static PyObject *CtlObj_SetControlReference(_self, _args)
ControlObject *_self; ControlObject *_self;
PyObject *_args; PyObject *_args;
{ {
...@@ -323,14 +323,14 @@ static PyObject *CtlObj_SetCRefCon(_self, _args) ...@@ -323,14 +323,14 @@ static PyObject *CtlObj_SetCRefCon(_self, _args)
if (!PyArg_ParseTuple(_args, "l", if (!PyArg_ParseTuple(_args, "l",
&data)) &data))
return NULL; return NULL;
SetCRefCon(_self->ob_itself, SetControlReference(_self->ob_itself,
data); data);
Py_INCREF(Py_None); Py_INCREF(Py_None);
_res = Py_None; _res = Py_None;
return _res; return _res;
} }
static PyObject *CtlObj_GetCRefCon(_self, _args) static PyObject *CtlObj_GetControlReference(_self, _args)
ControlObject *_self; ControlObject *_self;
PyObject *_args; PyObject *_args;
{ {
...@@ -338,12 +338,26 @@ static PyObject *CtlObj_GetCRefCon(_self, _args) ...@@ -338,12 +338,26 @@ static PyObject *CtlObj_GetCRefCon(_self, _args)
long _rv; long _rv;
if (!PyArg_ParseTuple(_args, "")) if (!PyArg_ParseTuple(_args, ""))
return NULL; return NULL;
_rv = GetCRefCon(_self->ob_itself); _rv = GetControlReference(_self->ob_itself);
_res = Py_BuildValue("l", _res = Py_BuildValue("l",
_rv); _rv);
return _res; return _res;
} }
static PyObject *CtlObj_SetControlAction(_self, _args)
ControlObject *_self;
PyObject *_args;
{
PyObject *_res = NULL;
if (!PyArg_ParseTuple(_args, ""))
return NULL;
SetControlAction(_self->ob_itself,
(ControlActionUPP)0);
Py_INCREF(Py_None);
_res = Py_None;
return _res;
}
static PyObject *CtlObj_DragControl(_self, _args) static PyObject *CtlObj_DragControl(_self, _args)
ControlObject *_self; ControlObject *_self;
PyObject *_args; PyObject *_args;
...@@ -386,42 +400,42 @@ static PyObject *CtlObj_TestControl(_self, _args) ...@@ -386,42 +400,42 @@ static PyObject *CtlObj_TestControl(_self, _args)
return _res; return _res;
} }
static PyObject *CtlObj_TrackControl(_self, _args) static PyObject *CtlObj_GetControlVariant(_self, _args)
ControlObject *_self; ControlObject *_self;
PyObject *_args; PyObject *_args;
{ {
PyObject *_res = NULL; PyObject *_res = NULL;
short _rv; short _rv;
Point thePoint; if (!PyArg_ParseTuple(_args, ""))
if (!PyArg_ParseTuple(_args, "O&",
PyMac_GetPoint, &thePoint))
return NULL; return NULL;
_rv = TrackControl(_self->ob_itself, _rv = GetControlVariant(_self->ob_itself);
thePoint,
(ControlActionUPP)0);
_res = Py_BuildValue("h", _res = Py_BuildValue("h",
_rv); _rv);
return _res; return _res;
} }
static PyObject *CtlObj_GetCVariant(_self, _args) static PyObject *CtlObj_TrackControl(_self, _args)
ControlObject *_self; ControlObject *_self;
PyObject *_args; PyObject *_args;
{ {
PyObject *_res = NULL; PyObject *_res = NULL;
short _rv; short _rv;
if (!PyArg_ParseTuple(_args, "")) Point thePoint;
if (!PyArg_ParseTuple(_args, "O&",
PyMac_GetPoint, &thePoint))
return NULL; return NULL;
_rv = GetCVariant(_self->ob_itself); _rv = TrackControl(_self->ob_itself,
thePoint,
(ControlActionUPP)0);
_res = Py_BuildValue("h", _res = Py_BuildValue("h",
_rv); _rv);
return _res; return _res;
} }
static PyMethodDef CtlObj_methods[] = { static PyMethodDef CtlObj_methods[] = {
{"SetCTitle", (PyCFunction)CtlObj_SetCTitle, 1, {"SetControlTitle", (PyCFunction)CtlObj_SetControlTitle, 1,
"(Str255 title) -> None"}, "(Str255 title) -> None"},
{"GetCTitle", (PyCFunction)CtlObj_GetCTitle, 1, {"GetControlTitle", (PyCFunction)CtlObj_GetControlTitle, 1,
"(Str255 title) -> None"}, "(Str255 title) -> None"},
{"DisposeControl", (PyCFunction)CtlObj_DisposeControl, 1, {"DisposeControl", (PyCFunction)CtlObj_DisposeControl, 1,
"() -> None"}, "() -> None"},
...@@ -437,30 +451,32 @@ static PyMethodDef CtlObj_methods[] = { ...@@ -437,30 +451,32 @@ static PyMethodDef CtlObj_methods[] = {
"(short h, short v) -> None"}, "(short h, short v) -> None"},
{"SizeControl", (PyCFunction)CtlObj_SizeControl, 1, {"SizeControl", (PyCFunction)CtlObj_SizeControl, 1,
"(short w, short h) -> None"}, "(short w, short h) -> None"},
{"SetCtlValue", (PyCFunction)CtlObj_SetCtlValue, 1, {"SetControlValue", (PyCFunction)CtlObj_SetControlValue, 1,
"(short theValue) -> None"}, "(short theValue) -> None"},
{"GetCtlValue", (PyCFunction)CtlObj_GetCtlValue, 1, {"GetControlValue", (PyCFunction)CtlObj_GetControlValue, 1,
"() -> (short _rv)"}, "() -> (short _rv)"},
{"SetCtlMin", (PyCFunction)CtlObj_SetCtlMin, 1, {"SetControlMinimum", (PyCFunction)CtlObj_SetControlMinimum, 1,
"(short minValue) -> None"}, "(short minValue) -> None"},
{"GetCtlMin", (PyCFunction)CtlObj_GetCtlMin, 1, {"GetControlMinimum", (PyCFunction)CtlObj_GetControlMinimum, 1,
"() -> (short _rv)"}, "() -> (short _rv)"},
{"SetCtlMax", (PyCFunction)CtlObj_SetCtlMax, 1, {"SetControlMaximum", (PyCFunction)CtlObj_SetControlMaximum, 1,
"(short maxValue) -> None"}, "(short maxValue) -> None"},
{"GetCtlMax", (PyCFunction)CtlObj_GetCtlMax, 1, {"GetControlMaximum", (PyCFunction)CtlObj_GetControlMaximum, 1,
"() -> (short _rv)"}, "() -> (short _rv)"},
{"SetCRefCon", (PyCFunction)CtlObj_SetCRefCon, 1, {"SetControlReference", (PyCFunction)CtlObj_SetControlReference, 1,
"(long data) -> None"}, "(long data) -> None"},
{"GetCRefCon", (PyCFunction)CtlObj_GetCRefCon, 1, {"GetControlReference", (PyCFunction)CtlObj_GetControlReference, 1,
"() -> (long _rv)"}, "() -> (long _rv)"},
{"SetControlAction", (PyCFunction)CtlObj_SetControlAction, 1,
"() -> None"},
{"DragControl", (PyCFunction)CtlObj_DragControl, 1, {"DragControl", (PyCFunction)CtlObj_DragControl, 1,
"(Point startPt, Rect limitRect, Rect slopRect, short axis) -> None"}, "(Point startPt, Rect limitRect, Rect slopRect, short axis) -> None"},
{"TestControl", (PyCFunction)CtlObj_TestControl, 1, {"TestControl", (PyCFunction)CtlObj_TestControl, 1,
"(Point thePt) -> (short _rv)"}, "(Point thePt) -> (short _rv)"},
{"GetControlVariant", (PyCFunction)CtlObj_GetControlVariant, 1,
"() -> (short _rv)"},
{"TrackControl", (PyCFunction)CtlObj_TrackControl, 1, {"TrackControl", (PyCFunction)CtlObj_TrackControl, 1,
"(Point thePoint) -> (short _rv)"}, "(Point thePoint) -> (short _rv)"},
{"GetCVariant", (PyCFunction)CtlObj_GetCVariant, 1,
"() -> (short _rv)"},
{NULL, NULL, 0} {NULL, NULL, 0}
}; };
...@@ -580,22 +596,6 @@ static PyObject *Ctl_DrawControls(_self, _args) ...@@ -580,22 +596,6 @@ static PyObject *Ctl_DrawControls(_self, _args)
return _res; return _res;
} }
static PyObject *Ctl_UpdtControl(_self, _args)
PyObject *_self;
PyObject *_args;
{
PyObject *_res = NULL;
WindowPtr theWindow;
if (!PyArg_ParseTuple(_args, "O&",
WinObj_Convert, &theWindow))
return NULL;
UpdtControl(theWindow,
theWindow->visRgn);
Py_INCREF(Py_None);
_res = Py_None;
return _res;
}
static PyObject *Ctl_UpdateControls(_self, _args) static PyObject *Ctl_UpdateControls(_self, _args)
PyObject *_self; PyObject *_self;
PyObject *_args; PyObject *_args;
...@@ -643,8 +643,6 @@ static PyMethodDef Ctl_methods[] = { ...@@ -643,8 +643,6 @@ static PyMethodDef Ctl_methods[] = {
"(WindowPtr theWindow) -> None"}, "(WindowPtr theWindow) -> None"},
{"DrawControls", (PyCFunction)Ctl_DrawControls, 1, {"DrawControls", (PyCFunction)Ctl_DrawControls, 1,
"(WindowPtr theWindow) -> None"}, "(WindowPtr theWindow) -> None"},
{"UpdtControl", (PyCFunction)Ctl_UpdtControl, 1,
"(WindowPtr theWindow) -> None"},
{"UpdateControls", (PyCFunction)Ctl_UpdateControls, 1, {"UpdateControls", (PyCFunction)Ctl_UpdateControls, 1,
"(WindowPtr theWindow) -> None"}, "(WindowPtr theWindow) -> None"},
{"FindControl", (PyCFunction)Ctl_FindControl, 1, {"FindControl", (PyCFunction)Ctl_FindControl, 1,
......
# Generated from 'D:Development:THINK C:Mac #includes:Apple #includes:Controls.h' # Generated from 'Moes:CW5 GOLD \304:Metrowerks C/C++ \304:Headers \304:Universal Headers 2.0a3 \304:Controls.h'
f = Function(ControlHandle, 'NewControl', f = Function(ControlRef, 'NewControl',
(WindowPtr, 'theWindow', InMode), (WindowRef, 'theWindow', InMode),
(Rect_ptr, 'boundsRect', InMode), (Rect_ptr, 'boundsRect', InMode),
(ConstStr255Param, 'title', InMode), (ConstStr255Param, 'title', InMode),
(Boolean, 'visible', InMode), (Boolean, 'visible', InMode),
...@@ -13,132 +13,132 @@ f = Function(ControlHandle, 'NewControl', ...@@ -13,132 +13,132 @@ f = Function(ControlHandle, 'NewControl',
) )
functions.append(f) functions.append(f)
f = Method(void, 'SetCTitle', f = Method(void, 'SetControlTitle',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
(ConstStr255Param, 'title', InMode), (ConstStr255Param, 'title', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'GetCTitle', f = Method(void, 'GetControlTitle',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
(Str255, 'title', InMode), (Str255, 'title', InMode),
) )
methods.append(f) methods.append(f)
f = Function(ControlHandle, 'GetNewControl', f = Function(ControlRef, 'GetNewControl',
(short, 'controlID', InMode), (short, 'controlID', InMode),
(WindowPtr, 'owner', InMode), (WindowRef, 'owner', InMode),
) )
functions.append(f) functions.append(f)
f = Method(void, 'DisposeControl', f = Method(void, 'DisposeControl',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
) )
methods.append(f) methods.append(f)
f = Function(void, 'KillControls', f = Function(void, 'KillControls',
(WindowPtr, 'theWindow', InMode), (WindowRef, 'theWindow', InMode),
) )
functions.append(f) functions.append(f)
f = Method(void, 'HideControl', f = Method(void, 'HideControl',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'ShowControl', f = Method(void, 'ShowControl',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
) )
methods.append(f) methods.append(f)
f = Function(void, 'DrawControls', f = Function(void, 'DrawControls',
(WindowPtr, 'theWindow', InMode), (WindowRef, 'theWindow', InMode),
) )
functions.append(f) functions.append(f)
f = Method(void, 'Draw1Control', f = Method(void, 'Draw1Control',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'HiliteControl', f = Method(void, 'HiliteControl',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
(short, 'hiliteState', InMode), (short, 'hiliteState', InMode),
) )
methods.append(f) methods.append(f)
f = Function(void, 'UpdtControl',
(WindowPtr, 'theWindow', InMode),
(RgnHandle, 'updateRgn', InMode),
)
functions.append(f)
f = Function(void, 'UpdateControls', f = Function(void, 'UpdateControls',
(WindowPtr, 'theWindow', InMode), (WindowRef, 'theWindow', InMode),
(RgnHandle, 'updateRgn', InMode), (RgnHandle, 'updateRgn', InMode),
) )
functions.append(f) functions.append(f)
f = Method(void, 'MoveControl', f = Method(void, 'MoveControl',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
(short, 'h', InMode), (short, 'h', InMode),
(short, 'v', InMode), (short, 'v', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'SizeControl', f = Method(void, 'SizeControl',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
(short, 'w', InMode), (short, 'w', InMode),
(short, 'h', InMode), (short, 'h', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'SetCtlValue', f = Method(void, 'SetControlValue',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
(short, 'theValue', InMode), (short, 'theValue', InMode),
) )
methods.append(f) methods.append(f)
f = Method(short, 'GetCtlValue', f = Method(short, 'GetControlValue',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'SetCtlMin', f = Method(void, 'SetControlMinimum',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
(short, 'minValue', InMode), (short, 'minValue', InMode),
) )
methods.append(f) methods.append(f)
f = Method(short, 'GetCtlMin', f = Method(short, 'GetControlMinimum',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'SetCtlMax', f = Method(void, 'SetControlMaximum',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
(short, 'maxValue', InMode), (short, 'maxValue', InMode),
) )
methods.append(f) methods.append(f)
f = Method(short, 'GetCtlMax', f = Method(short, 'GetControlMaximum',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'SetCRefCon', f = Method(void, 'SetControlReference',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
(long, 'data', InMode), (long, 'data', InMode),
) )
methods.append(f) methods.append(f)
f = Method(long, 'GetCRefCon', f = Method(long, 'GetControlReference',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
)
methods.append(f)
f = Method(void, 'SetControlAction',
(ControlRef, 'theControl', InMode),
(FakeType('(ControlActionUPP)0'), 'actionProc', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'DragControl', f = Method(void, 'DragControl',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
(Point, 'startPt', InMode), (Point, 'startPt', InMode),
(Rect_ptr, 'limitRect', InMode), (Rect_ptr, 'limitRect', InMode),
(Rect_ptr, 'slopRect', InMode), (Rect_ptr, 'slopRect', InMode),
...@@ -147,27 +147,27 @@ f = Method(void, 'DragControl', ...@@ -147,27 +147,27 @@ f = Method(void, 'DragControl',
methods.append(f) methods.append(f)
f = Method(short, 'TestControl', f = Method(short, 'TestControl',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
(Point, 'thePt', InMode), (Point, 'thePt', InMode),
) )
methods.append(f) methods.append(f)
f = Method(short, 'TrackControl',
(ControlHandle, 'theControl', InMode),
(Point, 'thePoint', InMode),
(FakeType('(ControlActionUPP)0'), 'actionProc', InMode),
)
methods.append(f)
f = Function(short, 'FindControl', f = Function(short, 'FindControl',
(Point, 'thePoint', InMode), (Point, 'thePoint', InMode),
(WindowPtr, 'theWindow', InMode), (WindowRef, 'theWindow', InMode),
(ExistingControlHandle, 'theControl', OutMode), (ExistingControlHandle, 'theControl', OutMode),
) )
functions.append(f) functions.append(f)
f = Method(short, 'GetCVariant', f = Method(short, 'GetControlVariant',
(ControlHandle, 'theControl', InMode), (ControlRef, 'theControl', InMode),
)
methods.append(f)
f = Method(short, 'TrackControl',
(ControlRef, 'theControl', InMode),
(Point, 'thePoint', InMode),
(FakeType('(ControlActionUPP)0'), 'actionProc', InMode),
) )
methods.append(f) methods.append(f)
# Scan <Controls.h>, generating ctlgen.py. # Scan <Controls.h>, generating ctlgen.py.
import addpack
addpack.addpack(':Tools:bgen:bgen')
from scantools import Scanner from scantools import Scanner
...@@ -20,7 +22,7 @@ class MyScanner(Scanner): ...@@ -20,7 +22,7 @@ class MyScanner(Scanner):
listname = "functions" listname = "functions"
if arglist: if arglist:
t, n, m = arglist[0] t, n, m = arglist[0]
if t == "ControlHandle" and m == "InMode": if t in ("ControlHandle", "ControlRef") and m == "InMode":
classname = "Method" classname = "Method"
listname = "methods" listname = "methods"
return classname, listname return classname, listname
...@@ -35,6 +37,7 @@ class MyScanner(Scanner): ...@@ -35,6 +37,7 @@ class MyScanner(Scanner):
def makeblacklisttypes(self): def makeblacklisttypes(self):
return [ return [
'ProcPtr', 'ProcPtr',
'ControlActionUPP',
'CCTabHandle', 'CCTabHandle',
'AuxCtlHandle', 'AuxCtlHandle',
] ]
...@@ -51,9 +54,13 @@ class MyScanner(Scanner): ...@@ -51,9 +54,13 @@ class MyScanner(Scanner):
# For TrackControl # For TrackControl
([("ProcPtr", "actionProc", "InMode")], ([("ProcPtr", "actionProc", "InMode")],
[("FakeType('(ControlActionUPP)0')", "*", "*")]), [("FakeType('(ControlActionUPP)0')", "*", "*")]),
([("ControlActionUPP", "actionProc", "InMode")],
[("FakeType('(ControlActionUPP)0')", "*", "*")]),
([("ControlHandle", "*", "OutMode")], ([("ControlHandle", "*", "OutMode")],
[("ExistingControlHandle", "*", "*")]), [("ExistingControlHandle", "*", "*")]),
([("ControlRef", "*", "OutMode")], # Ditto, for Universal Headers
[("ExistingControlHandle", "*", "*")]),
] ]
if __name__ == "__main__": if __name__ == "__main__":
......
...@@ -5,6 +5,9 @@ ...@@ -5,6 +5,9 @@
import string import string
import addpack
addpack.addpack(':Tools:bgen:bgen')
# Declarations that change for each manager # Declarations that change for each manager
MACHEADERFILE = 'Controls.h' # The Apple header file MACHEADERFILE = 'Controls.h' # The Apple header file
MODNAME = 'Ctl' # The name of the module MODNAME = 'Ctl' # The name of the module
...@@ -22,6 +25,7 @@ from macsupport import * ...@@ -22,6 +25,7 @@ from macsupport import *
# Create the type objects # Create the type objects
ControlHandle = OpaqueByValueType(OBJECTTYPE, OBJECTPREFIX) ControlHandle = OpaqueByValueType(OBJECTTYPE, OBJECTPREFIX)
ControlRef = ControlHandle
ExistingControlHandle = OpaqueByValueType(OBJECTTYPE, "CtlObj_WhichControl", "BUG") ExistingControlHandle = OpaqueByValueType(OBJECTTYPE, "CtlObj_WhichControl", "BUG")
RgnHandle = FakeType("theWindow->visRgn") # XXX RgnHandle = FakeType("theWindow->visRgn") # XXX
......
This diff is collapsed.
# Generated from 'D:Development:THINK C:Mac #includes:Apple #includes:Dialogs.h' # Generated from 'Moes:CW5 GOLD \304:Metrowerks C/C++ \304:Headers \304:Universal Headers 2.0a3 \304:Dialogs.h'
f = Function(DialogPtr, 'NewDialog', f = Function(DialogRef, 'NewDialog',
(NullStorage, 'wStorage', InMode), (NullStorage, 'wStorage', InMode),
(Rect_ptr, 'boundsRect', InMode), (Rect_ptr, 'boundsRect', InMode),
(ConstStr255Param, 'title', InMode), (ConstStr255Param, 'title', InMode),
(Boolean, 'visible', InMode), (Boolean, 'visible', InMode),
(short, 'procID', InMode), (short, 'procID', InMode),
(WindowPtr, 'behind', InMode), (WindowRef, 'behind', InMode),
(Boolean, 'goAwayFlag', InMode), (Boolean, 'goAwayFlag', InMode),
(long, 'refCon', InMode), (long, 'refCon', InMode),
(Handle, 'itmLstHndl', InMode), (Handle, 'itmLstHndl', InMode),
) )
functions.append(f) functions.append(f)
f = Function(DialogPtr, 'GetNewDialog', f = Function(DialogRef, 'GetNewDialog',
(short, 'dialogID', InMode), (short, 'dialogID', InMode),
(NullStorage, 'dStorage', InMode), (NullStorage, 'dStorage', InMode),
(WindowPtr, 'behind', InMode), (WindowRef, 'behind', InMode),
) )
functions.append(f) functions.append(f)
...@@ -29,7 +29,7 @@ f = Function(void, 'ParamText', ...@@ -29,7 +29,7 @@ f = Function(void, 'ParamText',
functions.append(f) functions.append(f)
f = Function(void, 'ModalDialog', f = Function(void, 'ModalDialog',
(ModalFilterProcPtr, 'filterProc', InMode), (ModalFilterUPP, 'modalFilter', InMode),
(short, 'itemHit', OutMode), (short, 'itemHit', OutMode),
) )
functions.append(f) functions.append(f)
...@@ -47,42 +47,42 @@ f = Function(Boolean, 'DialogSelect', ...@@ -47,42 +47,42 @@ f = Function(Boolean, 'DialogSelect',
functions.append(f) functions.append(f)
f = Method(void, 'DrawDialog', f = Method(void, 'DrawDialog',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'UpdateDialog', f = Method(void, 'UpdateDialog',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
(RgnHandle, 'updateRgn', InMode), (RgnHandle, 'updateRgn', InMode),
) )
methods.append(f) methods.append(f)
f = Function(short, 'Alert', f = Function(short, 'Alert',
(short, 'alertID', InMode), (short, 'alertID', InMode),
(ModalFilterProcPtr, 'filterProc', InMode), (ModalFilterUPP, 'modalFilter', InMode),
) )
functions.append(f) functions.append(f)
f = Function(short, 'StopAlert', f = Function(short, 'StopAlert',
(short, 'alertID', InMode), (short, 'alertID', InMode),
(ModalFilterProcPtr, 'filterProc', InMode), (ModalFilterUPP, 'modalFilter', InMode),
) )
functions.append(f) functions.append(f)
f = Function(short, 'NoteAlert', f = Function(short, 'NoteAlert',
(short, 'alertID', InMode), (short, 'alertID', InMode),
(ModalFilterProcPtr, 'filterProc', InMode), (ModalFilterUPP, 'modalFilter', InMode),
) )
functions.append(f) functions.append(f)
f = Function(short, 'CautionAlert', f = Function(short, 'CautionAlert',
(short, 'alertID', InMode), (short, 'alertID', InMode),
(ModalFilterProcPtr, 'filterProc', InMode), (ModalFilterUPP, 'modalFilter', InMode),
) )
functions.append(f) functions.append(f)
f = Method(void, 'GetDItem', f = Method(void, 'GetDialogItem',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
(short, 'itemNo', InMode), (short, 'itemNo', InMode),
(short, 'itemType', OutMode), (short, 'itemType', OutMode),
(Handle, 'item', OutMode), (Handle, 'item', OutMode),
...@@ -90,8 +90,8 @@ f = Method(void, 'GetDItem', ...@@ -90,8 +90,8 @@ f = Method(void, 'GetDItem',
) )
methods.append(f) methods.append(f)
f = Method(void, 'SetDItem', f = Method(void, 'SetDialogItem',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
(short, 'itemNo', InMode), (short, 'itemNo', InMode),
(short, 'itemType', InMode), (short, 'itemType', InMode),
(Handle, 'item', InMode), (Handle, 'item', InMode),
...@@ -99,101 +99,130 @@ f = Method(void, 'SetDItem', ...@@ -99,101 +99,130 @@ f = Method(void, 'SetDItem',
) )
methods.append(f) methods.append(f)
f = Method(void, 'HideDItem', f = Method(void, 'HideDialogItem',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
(short, 'itemNo', InMode), (short, 'itemNo', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'ShowDItem', f = Method(void, 'ShowDialogItem',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
(short, 'itemNo', InMode), (short, 'itemNo', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'SelIText', f = Method(void, 'SelectDialogItemText',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
(short, 'itemNo', InMode), (short, 'itemNo', InMode),
(short, 'strtSel', InMode), (short, 'strtSel', InMode),
(short, 'endSel', InMode), (short, 'endSel', InMode),
) )
methods.append(f) methods.append(f)
f = Function(void, 'GetIText', f = Function(void, 'GetDialogItemText',
(Handle, 'item', InMode), (Handle, 'item', InMode),
(Str255, 'text', OutMode), (Str255, 'text', OutMode),
) )
functions.append(f) functions.append(f)
f = Function(void, 'SetIText', f = Function(void, 'SetDialogItemText',
(Handle, 'item', InMode), (Handle, 'item', InMode),
(ConstStr255Param, 'text', InMode), (ConstStr255Param, 'text', InMode),
) )
functions.append(f) functions.append(f)
f = Method(short, 'FindDItem', f = Method(short, 'FindDialogItem',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
(Point, 'thePt', InMode), (Point, 'thePt', InMode),
) )
methods.append(f) methods.append(f)
f = Function(DialogPtr, 'NewCDialog', f = Function(DialogRef, 'NewColorDialog',
(NullStorage, 'dStorage', InMode), (NullStorage, 'dStorage', InMode),
(Rect_ptr, 'boundsRect', InMode), (Rect_ptr, 'boundsRect', InMode),
(ConstStr255Param, 'title', InMode), (ConstStr255Param, 'title', InMode),
(Boolean, 'visible', InMode), (Boolean, 'visible', InMode),
(short, 'procID', InMode), (short, 'procID', InMode),
(WindowPtr, 'behind', InMode), (WindowRef, 'behind', InMode),
(Boolean, 'goAwayFlag', InMode), (Boolean, 'goAwayFlag', InMode),
(long, 'refCon', InMode), (long, 'refCon', InMode),
(Handle, 'items', InMode), (Handle, 'items', InMode),
) )
functions.append(f) functions.append(f)
f = Function(void, 'ResetAlrtStage', f = Function(short, 'GetAlertStage',
) )
functions.append(f) functions.append(f)
f = Method(void, 'DlgCut', f = Function(void, 'ResetAlertStage',
(DialogPtr, 'theDialog', InMode), )
functions.append(f)
f = Method(void, 'DialogCut',
(DialogRef, 'theDialog', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'DlgPaste', f = Method(void, 'DialogPaste',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'DlgCopy', f = Method(void, 'DialogCopy',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'DlgDelete', f = Method(void, 'DialogDelete',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
) )
methods.append(f) methods.append(f)
f = Function(void, 'SetDAFont', f = Function(void, 'SetDialogFont',
(short, 'fontNum', InMode), (short, 'value', InMode),
) )
functions.append(f) functions.append(f)
f = Method(void, 'AppendDITL', f = Method(void, 'AppendDITL',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
(Handle, 'theHandle', InMode), (Handle, 'theHandle', InMode),
(DITLMethod, 'method', InMode), (DITLMethod, 'method', InMode),
) )
methods.append(f) methods.append(f)
f = Method(short, 'CountDITL', f = Method(short, 'CountDITL',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
) )
methods.append(f) methods.append(f)
f = Method(void, 'ShortenDITL', f = Method(void, 'ShortenDITL',
(DialogPtr, 'theDialog', InMode), (DialogRef, 'theDialog', InMode),
(short, 'numberItems', InMode), (short, 'numberItems', InMode),
) )
methods.append(f) methods.append(f)
f = Method(Boolean, 'StdFilterProc',
(DialogRef, 'theDialog', InMode),
(EventRecord, 'event', OutMode),
(short, 'itemHit', OutMode),
)
methods.append(f)
f = Method(OSErr, 'SetDialogDefaultItem',
(DialogRef, 'theDialog', InMode),
(short, 'newItem', InMode),
)
methods.append(f)
f = Method(OSErr, 'SetDialogCancelItem',
(DialogRef, 'theDialog', InMode),
(short, 'newItem', InMode),
)
methods.append(f)
f = Method(OSErr, 'SetDialogTracksCursor',
(DialogRef, 'theDialog', InMode),
(Boolean, 'tracks', InMode),
)
methods.append(f)
# Scan an Apple header file, generating a Python file of generator calls. # Scan an Apple header file, generating a Python file of generator calls.
import addpack
addpack.addpack(':Tools:bgen:bgen')
from scantools import Scanner from scantools import Scanner
LONG = "Dialogs" LONG = "Dialogs"
...@@ -24,7 +27,7 @@ class MyScanner(Scanner): ...@@ -24,7 +27,7 @@ class MyScanner(Scanner):
listname = "functions" listname = "functions"
if arglist: if arglist:
t, n, m = arglist[0] t, n, m = arglist[0]
if t == "DialogPtr" and m == "InMode": if t in ("DialogPtr", "DialogRef") and m == "InMode":
classname = "Method" classname = "Method"
listname = "methods" listname = "methods"
return classname, listname return classname, listname
...@@ -42,6 +45,7 @@ class MyScanner(Scanner): ...@@ -42,6 +45,7 @@ class MyScanner(Scanner):
'FreeAlert', 'FreeAlert',
'CouldDialog', 'CouldDialog',
'FreeDialog', 'FreeDialog',
'GetStdFilterProc',
] ]
def makeblacklisttypes(self): def makeblacklisttypes(self):
...@@ -66,6 +70,8 @@ class MyScanner(Scanner): ...@@ -66,6 +70,8 @@ class MyScanner(Scanner):
([("DialogPtr", "*", "OutMode")], ([("DialogPtr", "*", "OutMode")],
[("ExistingDialogPtr", "*", "*")]), [("ExistingDialogPtr", "*", "*")]),
([("DialogRef", "*", "OutMode")],
[("ExistingDialogPtr", "*", "*")]),
] ]
if __name__ == "__main__": if __name__ == "__main__":
......
...@@ -3,14 +3,19 @@ ...@@ -3,14 +3,19 @@
# It execs the file dlggen.py which contain the function definitions # It execs the file dlggen.py which contain the function definitions
# (dlggen.py was generated by dlgscan.py, scanning the <Dialogs.h> header file). # (dlggen.py was generated by dlgscan.py, scanning the <Dialogs.h> header file).
import addpack
addpack.addpack(':Tools:bgen:bgen')
from macsupport import * from macsupport import *
# Create the type objects # Create the type objects
DialogPtr = OpaqueByValueType("DialogPtr", "DlgObj") DialogPtr = OpaqueByValueType("DialogPtr", "DlgObj")
DialogRef = DialogPtr
ModalFilterProcPtr = InputOnlyType("PyObject*", "O") ModalFilterProcPtr = InputOnlyType("PyObject*", "O")
ModalFilterProcPtr.passInput = lambda name: "NewModalFilterProc(Dlg_PassFilterProc(%s))" % name ModalFilterProcPtr.passInput = lambda name: "NewModalFilterProc(Dlg_PassFilterProc(%s))" % name
ModalFilterUPP = ModalFilterProcPtr
RgnHandle = FakeType("_self->ob_itself->visRgn") # XXX RgnHandle = FakeType("_self->ob_itself->visRgn") # XXX
......
...@@ -68,9 +68,9 @@ class FixedInputOutputBufferType(InputOnlyType): ...@@ -68,9 +68,9 @@ class FixedInputOutputBufferType(InputOnlyType):
self.size) self.size)
Output("goto %s__error__;", name) Output("goto %s__error__;", name)
OutRbrace() OutRbrace()
self.transferSize() self.transferSize(name)
def transferSize(): def transferSize(self, name):
Output("%s__len__ = %s__in_len__;", name, name) Output("%s__len__ = %s__in_len__;", name, name)
def passOutput(self, name): def passOutput(self, name):
...@@ -174,7 +174,7 @@ class StructInputOutputBufferType(FixedInputOutputBufferType): ...@@ -174,7 +174,7 @@ class StructInputOutputBufferType(FixedInputOutputBufferType):
def getargsArgs(self, name): def getargsArgs(self, name):
return "(char **)&%s__in__, &%s__in_len__" % (name, name) return "(char **)&%s__in__, &%s__in_len__" % (name, name)
def transferSize(self): def transferSize(self, name):
pass pass
def passInput(self, name): def passInput(self, name):
......
...@@ -32,11 +32,15 @@ ResType = OSTypeType("ResType") ...@@ -32,11 +32,15 @@ ResType = OSTypeType("ResType")
# Handles (always resources in our case) # Handles (always resources in our case)
Handle = OpaqueByValueType("Handle", "ResObj") Handle = OpaqueByValueType("Handle", "ResObj")
MenuHandle = OpaqueByValueType("MenuHandle", "MenuObj") MenuHandle = OpaqueByValueType("MenuHandle", "MenuObj")
MenuRef = MenuHandle
ControlHandle = OpaqueByValueType("ControlHandle", "CtlObj") ControlHandle = OpaqueByValueType("ControlHandle", "CtlObj")
ControlRef = ControlHandle
# Windows and Dialogs # Windows and Dialogs
WindowPtr = OpaqueByValueType("WindowPtr", "WinObj") WindowPtr = OpaqueByValueType("WindowPtr", "WinObj")
WindowRef = WindowPtr
DialogPtr = OpaqueByValueType("DialogPtr", "DlgObj") DialogPtr = OpaqueByValueType("DialogPtr", "DlgObj")
DialogRef = DialogPtr
ExistingWindowPtr = OpaqueByValueType("WindowPtr", "WinObj_WhichWindow", "BUG") ExistingWindowPtr = OpaqueByValueType("WindowPtr", "WinObj_WhichWindow", "BUG")
ExistingDialogPtr = OpaqueByValueType("DialogPtr", "WinObj_WhichWindow", "BUG") ExistingDialogPtr = OpaqueByValueType("DialogPtr", "WinObj_WhichWindow", "BUG")
...@@ -137,8 +141,8 @@ class MacModule(Module): ...@@ -137,8 +141,8 @@ class MacModule(Module):
_SetOutputFileName = SetOutputFileName # Save original _SetOutputFileName = SetOutputFileName # Save original
def SetOutputFileName(file = None): def SetOutputFileName(file = None):
"Set the output file name and set its creator&type to KAHL&TEXT" "Set the output file name and set its creator&type to MPCC&TEXT"
_SetOutputFileName(file) _SetOutputFileName(file)
if file: if file:
import MacOS import MacOS
MacOS.SetCreatorAndType(file, 'KAHL', 'TEXT') MacOS.SetCreatorAndType(file, 'MPCC', 'TEXT')
...@@ -27,8 +27,10 @@ except ImportError: ...@@ -27,8 +27,10 @@ except ImportError:
MacOS = None MacOS = None
# Default preferences # Default preferences
CREATOR = 'KAHL' # My favorite text editor on the Mac #CREATOR = 'KAHL' # Guido's favorite text editor on the Mac
INCLUDEDIR = "D:Development:THINK C:Mac #includes:Apple #includes:" #INCLUDEDIR = "D:Development:THINK C:Mac #includes:Apple #includes:"
CREATOR = 'MPCC' # Jack's favorite text editor on the Mac
INCLUDEDIR = "Moes:CW5 GOLD :Metrowerks C/C++ :Headers :Universal Headers 2.0a3 :"
Error = "scantools.Error" Error = "scantools.Error"
...@@ -203,9 +205,9 @@ class Scanner: ...@@ -203,9 +205,9 @@ class Scanner:
self.includepath = [':', INCLUDEDIR] self.includepath = [':', INCLUDEDIR]
def initpatterns(self): def initpatterns(self):
self.head_pat = "^pascal[ \t]+" # XXX Mac specific! self.head_pat = "^extern pascal[ \t]+" # XXX Mac specific!
self.tail_pat = "[;={}]" self.tail_pat = "[;={}]"
self.type_pat = "pascal[ \t\n]+\(<type>[a-zA-Z0-9_]+\)[ \t\n]+" self.type_pat = "pascal[ \t\n]+\(<type>[a-zA-Z0-9_ \t]*[a-zA-Z0-9_]\)[ \t\n]+"
self.name_pat = "\(<name>[a-zA-Z0-9_]+\)[ \t\n]*" self.name_pat = "\(<name>[a-zA-Z0-9_]+\)[ \t\n]*"
self.args_pat = "(\(<args>\([^(;=)]+\|([^(;=)]*)\)*\))" self.args_pat = "(\(<args>\([^(;=)]+\|([^(;=)]*)\)*\))"
self.whole_pat = self.type_pat + self.name_pat + self.args_pat self.whole_pat = self.type_pat + self.name_pat + self.args_pat
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment