mirror of
https://github.com/python/cpython.git
synced 2024-11-26 19:34:19 +08:00
Interface to the appearance manager.
This commit is contained in:
parent
e4349e83d1
commit
e32596bca8
683
Mac/Modules/app/Appmodule.c
Normal file
683
Mac/Modules/app/Appmodule.c
Normal file
@ -0,0 +1,683 @@
|
||||
|
||||
/* =========================== Module App =========================== */
|
||||
|
||||
#include "Python.h"
|
||||
|
||||
|
||||
|
||||
#define SystemSevenOrLater 1
|
||||
|
||||
#include "macglue.h"
|
||||
#include <Memory.h>
|
||||
#include <Dialogs.h>
|
||||
#include <Menus.h>
|
||||
#include <Controls.h>
|
||||
|
||||
extern PyObject *ResObj_New(Handle);
|
||||
extern int ResObj_Convert(PyObject *, Handle *);
|
||||
extern PyObject *OptResObj_New(Handle);
|
||||
extern int OptResObj_Convert(PyObject *, Handle *);
|
||||
|
||||
extern PyObject *WinObj_New(WindowPtr);
|
||||
extern int WinObj_Convert(PyObject *, WindowPtr *);
|
||||
extern PyTypeObject Window_Type;
|
||||
#define WinObj_Check(x) ((x)->ob_type == &Window_Type)
|
||||
|
||||
extern PyObject *DlgObj_New(DialogPtr);
|
||||
extern int DlgObj_Convert(PyObject *, DialogPtr *);
|
||||
extern PyTypeObject Dialog_Type;
|
||||
#define DlgObj_Check(x) ((x)->ob_type == &Dialog_Type)
|
||||
|
||||
extern PyObject *MenuObj_New(MenuHandle);
|
||||
extern int MenuObj_Convert(PyObject *, MenuHandle *);
|
||||
|
||||
extern PyObject *CtlObj_New(ControlHandle);
|
||||
extern int CtlObj_Convert(PyObject *, ControlHandle *);
|
||||
|
||||
extern PyObject *GrafObj_New(GrafPtr);
|
||||
extern int GrafObj_Convert(PyObject *, GrafPtr *);
|
||||
|
||||
extern PyObject *BMObj_New(BitMapPtr);
|
||||
extern int BMObj_Convert(PyObject *, BitMapPtr *);
|
||||
|
||||
extern PyObject *WinObj_WhichWindow(WindowPtr);
|
||||
|
||||
#include <Appearance.h>
|
||||
|
||||
#define resNotFound -192 /* Can't include <Errors.h> because of Python's "errors.h" */
|
||||
|
||||
static PyObject *App_Error;
|
||||
|
||||
static PyObject *App_RegisterAppearanceClient(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
if (!PyArg_ParseTuple(_args, ""))
|
||||
return NULL;
|
||||
_err = RegisterAppearanceClient();
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_UnregisterAppearanceClient(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
if (!PyArg_ParseTuple(_args, ""))
|
||||
return NULL;
|
||||
_err = UnregisterAppearanceClient();
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_SetThemePen(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
ThemeBrush inBrush;
|
||||
SInt16 inDepth;
|
||||
Boolean inIsColorDevice;
|
||||
if (!PyArg_ParseTuple(_args, "hhb",
|
||||
&inBrush,
|
||||
&inDepth,
|
||||
&inIsColorDevice))
|
||||
return NULL;
|
||||
_err = SetThemePen(inBrush,
|
||||
inDepth,
|
||||
inIsColorDevice);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_SetThemeBackground(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
ThemeBrush inBrush;
|
||||
SInt16 inDepth;
|
||||
Boolean inIsColorDevice;
|
||||
if (!PyArg_ParseTuple(_args, "hhb",
|
||||
&inBrush,
|
||||
&inDepth,
|
||||
&inIsColorDevice))
|
||||
return NULL;
|
||||
_err = SetThemeBackground(inBrush,
|
||||
inDepth,
|
||||
inIsColorDevice);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_SetThemeTextColor(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
ThemeTextColor inColor;
|
||||
SInt16 inDepth;
|
||||
Boolean inIsColorDevice;
|
||||
if (!PyArg_ParseTuple(_args, "hhb",
|
||||
&inColor,
|
||||
&inDepth,
|
||||
&inIsColorDevice))
|
||||
return NULL;
|
||||
_err = SetThemeTextColor(inColor,
|
||||
inDepth,
|
||||
inIsColorDevice);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_SetThemeWindowBackground(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
WindowPtr inWindow;
|
||||
ThemeBrush inBrush;
|
||||
Boolean inUpdate;
|
||||
if (!PyArg_ParseTuple(_args, "O&hb",
|
||||
WinObj_Convert, &inWindow,
|
||||
&inBrush,
|
||||
&inUpdate))
|
||||
return NULL;
|
||||
_err = SetThemeWindowBackground(inWindow,
|
||||
inBrush,
|
||||
inUpdate);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemeWindowHeader(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inRect;
|
||||
ThemeDrawState inState;
|
||||
if (!PyArg_ParseTuple(_args, "O&l",
|
||||
PyMac_GetRect, &inRect,
|
||||
&inState))
|
||||
return NULL;
|
||||
_err = DrawThemeWindowHeader(&inRect,
|
||||
inState);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemeWindowListViewHeader(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inRect;
|
||||
ThemeDrawState inState;
|
||||
if (!PyArg_ParseTuple(_args, "O&l",
|
||||
PyMac_GetRect, &inRect,
|
||||
&inState))
|
||||
return NULL;
|
||||
_err = DrawThemeWindowListViewHeader(&inRect,
|
||||
inState);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemePlacard(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inRect;
|
||||
ThemeDrawState inState;
|
||||
if (!PyArg_ParseTuple(_args, "O&l",
|
||||
PyMac_GetRect, &inRect,
|
||||
&inState))
|
||||
return NULL;
|
||||
_err = DrawThemePlacard(&inRect,
|
||||
inState);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemeEditTextFrame(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inRect;
|
||||
ThemeDrawState inState;
|
||||
if (!PyArg_ParseTuple(_args, "O&l",
|
||||
PyMac_GetRect, &inRect,
|
||||
&inState))
|
||||
return NULL;
|
||||
_err = DrawThemeEditTextFrame(&inRect,
|
||||
inState);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemeListBoxFrame(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inRect;
|
||||
ThemeDrawState inState;
|
||||
if (!PyArg_ParseTuple(_args, "O&l",
|
||||
PyMac_GetRect, &inRect,
|
||||
&inState))
|
||||
return NULL;
|
||||
_err = DrawThemeListBoxFrame(&inRect,
|
||||
inState);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemeFocusRect(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inRect;
|
||||
Boolean inHasFocus;
|
||||
if (!PyArg_ParseTuple(_args, "O&b",
|
||||
PyMac_GetRect, &inRect,
|
||||
&inHasFocus))
|
||||
return NULL;
|
||||
_err = DrawThemeFocusRect(&inRect,
|
||||
inHasFocus);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemePrimaryGroup(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inRect;
|
||||
ThemeDrawState inState;
|
||||
if (!PyArg_ParseTuple(_args, "O&l",
|
||||
PyMac_GetRect, &inRect,
|
||||
&inState))
|
||||
return NULL;
|
||||
_err = DrawThemePrimaryGroup(&inRect,
|
||||
inState);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemeSecondaryGroup(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inRect;
|
||||
ThemeDrawState inState;
|
||||
if (!PyArg_ParseTuple(_args, "O&l",
|
||||
PyMac_GetRect, &inRect,
|
||||
&inState))
|
||||
return NULL;
|
||||
_err = DrawThemeSecondaryGroup(&inRect,
|
||||
inState);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemeSeparator(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inRect;
|
||||
ThemeDrawState inState;
|
||||
if (!PyArg_ParseTuple(_args, "O&l",
|
||||
PyMac_GetRect, &inRect,
|
||||
&inState))
|
||||
return NULL;
|
||||
_err = DrawThemeSeparator(&inRect,
|
||||
inState);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemeModelessDialogFrame(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inRect;
|
||||
ThemeDrawState inState;
|
||||
if (!PyArg_ParseTuple(_args, "O&l",
|
||||
PyMac_GetRect, &inRect,
|
||||
&inState))
|
||||
return NULL;
|
||||
_err = DrawThemeModelessDialogFrame(&inRect,
|
||||
inState);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemeGenericWell(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inRect;
|
||||
ThemeDrawState inState;
|
||||
Boolean inFillCenter;
|
||||
if (!PyArg_ParseTuple(_args, "O&lb",
|
||||
PyMac_GetRect, &inRect,
|
||||
&inState,
|
||||
&inFillCenter))
|
||||
return NULL;
|
||||
_err = DrawThemeGenericWell(&inRect,
|
||||
inState,
|
||||
inFillCenter);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemeFocusRegion(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Boolean inHasFocus;
|
||||
if (!PyArg_ParseTuple(_args, "b",
|
||||
&inHasFocus))
|
||||
return NULL;
|
||||
_err = DrawThemeFocusRegion((RgnHandle)0,
|
||||
inHasFocus);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_IsThemeInColor(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
Boolean _rv;
|
||||
SInt16 inDepth;
|
||||
Boolean inIsColorDevice;
|
||||
if (!PyArg_ParseTuple(_args, "hb",
|
||||
&inDepth,
|
||||
&inIsColorDevice))
|
||||
return NULL;
|
||||
_rv = IsThemeInColor(inDepth,
|
||||
inIsColorDevice);
|
||||
_res = Py_BuildValue("b",
|
||||
_rv);
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_GetThemeAccentColors(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
CTabHandle outColors;
|
||||
if (!PyArg_ParseTuple(_args, ""))
|
||||
return NULL;
|
||||
_err = GetThemeAccentColors(&outColors);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
_res = Py_BuildValue("O&",
|
||||
ResObj_New, outColors);
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemeMenuBarBackground(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inBounds;
|
||||
ThemeMenuBarState inState;
|
||||
UInt32 inAttributes;
|
||||
if (!PyArg_ParseTuple(_args, "O&hl",
|
||||
PyMac_GetRect, &inBounds,
|
||||
&inState,
|
||||
&inAttributes))
|
||||
return NULL;
|
||||
_err = DrawThemeMenuBarBackground(&inBounds,
|
||||
inState,
|
||||
inAttributes);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_GetThemeMenuBarHeight(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
SInt16 outHeight;
|
||||
if (!PyArg_ParseTuple(_args, ""))
|
||||
return NULL;
|
||||
_err = GetThemeMenuBarHeight(&outHeight);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
_res = Py_BuildValue("h",
|
||||
outHeight);
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemeMenuBackground(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inMenuRect;
|
||||
ThemeMenuType inMenuType;
|
||||
if (!PyArg_ParseTuple(_args, "O&h",
|
||||
PyMac_GetRect, &inMenuRect,
|
||||
&inMenuType))
|
||||
return NULL;
|
||||
_err = DrawThemeMenuBackground(&inMenuRect,
|
||||
inMenuType);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_GetThemeMenuBackgroundRegion(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inMenuRect;
|
||||
ThemeMenuType menuType;
|
||||
if (!PyArg_ParseTuple(_args, "O&h",
|
||||
PyMac_GetRect, &inMenuRect,
|
||||
&menuType))
|
||||
return NULL;
|
||||
_err = GetThemeMenuBackgroundRegion(&inMenuRect,
|
||||
menuType,
|
||||
(RgnHandle)0);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_DrawThemeMenuSeparator(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
Rect inItemRect;
|
||||
if (!PyArg_ParseTuple(_args, "O&",
|
||||
PyMac_GetRect, &inItemRect))
|
||||
return NULL;
|
||||
_err = DrawThemeMenuSeparator(&inItemRect);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
Py_INCREF(Py_None);
|
||||
_res = Py_None;
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_GetThemeMenuSeparatorHeight(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
SInt16 outHeight;
|
||||
if (!PyArg_ParseTuple(_args, ""))
|
||||
return NULL;
|
||||
_err = GetThemeMenuSeparatorHeight(&outHeight);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
_res = Py_BuildValue("h",
|
||||
outHeight);
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_GetThemeMenuItemExtra(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
ThemeMenuItemType inItemType;
|
||||
SInt16 outHeight;
|
||||
SInt16 outWidth;
|
||||
if (!PyArg_ParseTuple(_args, "h",
|
||||
&inItemType))
|
||||
return NULL;
|
||||
_err = GetThemeMenuItemExtra(inItemType,
|
||||
&outHeight,
|
||||
&outWidth);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
_res = Py_BuildValue("hh",
|
||||
outHeight,
|
||||
outWidth);
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyObject *App_GetThemeMenuTitleExtra(_self, _args)
|
||||
PyObject *_self;
|
||||
PyObject *_args;
|
||||
{
|
||||
PyObject *_res = NULL;
|
||||
OSStatus _err;
|
||||
SInt16 outWidth;
|
||||
Boolean inIsSquished;
|
||||
if (!PyArg_ParseTuple(_args, "b",
|
||||
&inIsSquished))
|
||||
return NULL;
|
||||
_err = GetThemeMenuTitleExtra(&outWidth,
|
||||
inIsSquished);
|
||||
if (_err != noErr) return PyMac_Error(_err);
|
||||
_res = Py_BuildValue("h",
|
||||
outWidth);
|
||||
return _res;
|
||||
}
|
||||
|
||||
static PyMethodDef App_methods[] = {
|
||||
{"RegisterAppearanceClient", (PyCFunction)App_RegisterAppearanceClient, 1,
|
||||
"() -> None"},
|
||||
{"UnregisterAppearanceClient", (PyCFunction)App_UnregisterAppearanceClient, 1,
|
||||
"() -> None"},
|
||||
{"SetThemePen", (PyCFunction)App_SetThemePen, 1,
|
||||
"(ThemeBrush inBrush, SInt16 inDepth, Boolean inIsColorDevice) -> None"},
|
||||
{"SetThemeBackground", (PyCFunction)App_SetThemeBackground, 1,
|
||||
"(ThemeBrush inBrush, SInt16 inDepth, Boolean inIsColorDevice) -> None"},
|
||||
{"SetThemeTextColor", (PyCFunction)App_SetThemeTextColor, 1,
|
||||
"(ThemeTextColor inColor, SInt16 inDepth, Boolean inIsColorDevice) -> None"},
|
||||
{"SetThemeWindowBackground", (PyCFunction)App_SetThemeWindowBackground, 1,
|
||||
"(WindowPtr inWindow, ThemeBrush inBrush, Boolean inUpdate) -> None"},
|
||||
{"DrawThemeWindowHeader", (PyCFunction)App_DrawThemeWindowHeader, 1,
|
||||
"(Rect inRect, ThemeDrawState inState) -> None"},
|
||||
{"DrawThemeWindowListViewHeader", (PyCFunction)App_DrawThemeWindowListViewHeader, 1,
|
||||
"(Rect inRect, ThemeDrawState inState) -> None"},
|
||||
{"DrawThemePlacard", (PyCFunction)App_DrawThemePlacard, 1,
|
||||
"(Rect inRect, ThemeDrawState inState) -> None"},
|
||||
{"DrawThemeEditTextFrame", (PyCFunction)App_DrawThemeEditTextFrame, 1,
|
||||
"(Rect inRect, ThemeDrawState inState) -> None"},
|
||||
{"DrawThemeListBoxFrame", (PyCFunction)App_DrawThemeListBoxFrame, 1,
|
||||
"(Rect inRect, ThemeDrawState inState) -> None"},
|
||||
{"DrawThemeFocusRect", (PyCFunction)App_DrawThemeFocusRect, 1,
|
||||
"(Rect inRect, Boolean inHasFocus) -> None"},
|
||||
{"DrawThemePrimaryGroup", (PyCFunction)App_DrawThemePrimaryGroup, 1,
|
||||
"(Rect inRect, ThemeDrawState inState) -> None"},
|
||||
{"DrawThemeSecondaryGroup", (PyCFunction)App_DrawThemeSecondaryGroup, 1,
|
||||
"(Rect inRect, ThemeDrawState inState) -> None"},
|
||||
{"DrawThemeSeparator", (PyCFunction)App_DrawThemeSeparator, 1,
|
||||
"(Rect inRect, ThemeDrawState inState) -> None"},
|
||||
{"DrawThemeModelessDialogFrame", (PyCFunction)App_DrawThemeModelessDialogFrame, 1,
|
||||
"(Rect inRect, ThemeDrawState inState) -> None"},
|
||||
{"DrawThemeGenericWell", (PyCFunction)App_DrawThemeGenericWell, 1,
|
||||
"(Rect inRect, ThemeDrawState inState, Boolean inFillCenter) -> None"},
|
||||
{"DrawThemeFocusRegion", (PyCFunction)App_DrawThemeFocusRegion, 1,
|
||||
"(Boolean inHasFocus) -> None"},
|
||||
{"IsThemeInColor", (PyCFunction)App_IsThemeInColor, 1,
|
||||
"(SInt16 inDepth, Boolean inIsColorDevice) -> (Boolean _rv)"},
|
||||
{"GetThemeAccentColors", (PyCFunction)App_GetThemeAccentColors, 1,
|
||||
"() -> (CTabHandle outColors)"},
|
||||
{"DrawThemeMenuBarBackground", (PyCFunction)App_DrawThemeMenuBarBackground, 1,
|
||||
"(Rect inBounds, ThemeMenuBarState inState, UInt32 inAttributes) -> None"},
|
||||
{"GetThemeMenuBarHeight", (PyCFunction)App_GetThemeMenuBarHeight, 1,
|
||||
"() -> (SInt16 outHeight)"},
|
||||
{"DrawThemeMenuBackground", (PyCFunction)App_DrawThemeMenuBackground, 1,
|
||||
"(Rect inMenuRect, ThemeMenuType inMenuType) -> None"},
|
||||
{"GetThemeMenuBackgroundRegion", (PyCFunction)App_GetThemeMenuBackgroundRegion, 1,
|
||||
"(Rect inMenuRect, ThemeMenuType menuType) -> None"},
|
||||
{"DrawThemeMenuSeparator", (PyCFunction)App_DrawThemeMenuSeparator, 1,
|
||||
"(Rect inItemRect) -> None"},
|
||||
{"GetThemeMenuSeparatorHeight", (PyCFunction)App_GetThemeMenuSeparatorHeight, 1,
|
||||
"() -> (SInt16 outHeight)"},
|
||||
{"GetThemeMenuItemExtra", (PyCFunction)App_GetThemeMenuItemExtra, 1,
|
||||
"(ThemeMenuItemType inItemType) -> (SInt16 outHeight, SInt16 outWidth)"},
|
||||
{"GetThemeMenuTitleExtra", (PyCFunction)App_GetThemeMenuTitleExtra, 1,
|
||||
"(Boolean inIsSquished) -> (SInt16 outWidth)"},
|
||||
{NULL, NULL, 0}
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
void initApp()
|
||||
{
|
||||
PyObject *m;
|
||||
PyObject *d;
|
||||
|
||||
|
||||
|
||||
|
||||
m = Py_InitModule("App", App_methods);
|
||||
d = PyModule_GetDict(m);
|
||||
App_Error = PyMac_GetOSErrException();
|
||||
if (App_Error == NULL ||
|
||||
PyDict_SetItemString(d, "Error", App_Error) != 0)
|
||||
Py_FatalError("can't initialize App.Error");
|
||||
}
|
||||
|
||||
/* ========================= End module App ========================= */
|
||||
|
56
Mac/Modules/app/appscan.py
Normal file
56
Mac/Modules/app/appscan.py
Normal file
@ -0,0 +1,56 @@
|
||||
# Scan an Apple header file, generating a Python file of generator calls.
|
||||
|
||||
import sys
|
||||
import os
|
||||
BGENDIR=os.path.join(sys.prefix, ':Tools:bgen:bgen')
|
||||
sys.path.append(BGENDIR)
|
||||
from scantools import Scanner
|
||||
from bgenlocations import TOOLBOXDIR
|
||||
|
||||
LONG = "Appearance"
|
||||
SHORT = "app"
|
||||
OBJECT = "NOTUSED"
|
||||
|
||||
def main():
|
||||
input = LONG + ".h"
|
||||
output = SHORT + "gen.py"
|
||||
defsoutput = TOOLBOXDIR + LONG + ".py"
|
||||
scanner = MyScanner(input, output, defsoutput)
|
||||
scanner.scan()
|
||||
scanner.close()
|
||||
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! ==="
|
||||
|
||||
class MyScanner(Scanner):
|
||||
|
||||
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
|
||||
|
||||
def writeinitialdefs(self):
|
||||
self.defsfile.write("def FOUR_CHAR_CODE(x): return x\n")
|
||||
|
||||
def makeblacklistnames(self):
|
||||
return [
|
||||
]
|
||||
|
||||
def makeblacklisttypes(self):
|
||||
return [
|
||||
"MenuTitleDrawingUPP",
|
||||
"MenuItemDrawingUPP",
|
||||
]
|
||||
|
||||
def makerepairinstructions(self):
|
||||
return [
|
||||
]
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
92
Mac/Modules/app/appsupport.py
Normal file
92
Mac/Modules/app/appsupport.py
Normal file
@ -0,0 +1,92 @@
|
||||
# This script generates a Python interface for an Apple Macintosh Manager.
|
||||
# It uses the "bgen" package to generate C code.
|
||||
# The function specifications are generated by scanning the mamager's header file,
|
||||
# using the "scantools" package (customized for this particular manager).
|
||||
|
||||
import string
|
||||
|
||||
# Declarations that change for each manager
|
||||
MACHEADERFILE = 'Appearance.h' # The Apple header file
|
||||
MODNAME = 'App' # The name of the module
|
||||
OBJECTNAME = 'UNUSED' # The basic name of the objects used here
|
||||
KIND = 'Record' # Usually 'Ptr' or 'Handle'
|
||||
|
||||
# The following is *usually* unchanged but may still require tuning
|
||||
MODPREFIX = MODNAME # The prefix for module-wide routines
|
||||
OBJECTTYPE = OBJECTNAME + KIND # The C type used to represent them
|
||||
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
|
||||
INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner
|
||||
OUTPUTFILE = MODNAME + "module.c" # The file generated by this program
|
||||
|
||||
from macsupport import *
|
||||
|
||||
# Create the type objects
|
||||
#MenuRef = OpaqueByValueType("MenuRef", "MenuObj")
|
||||
|
||||
|
||||
#WindowPeek = OpaqueByValueType("WindowPeek", OBJECTPREFIX)
|
||||
|
||||
RgnHandle = FakeType("(RgnHandle)0")
|
||||
# XXXX Should be next, but this will break a lot of code...
|
||||
# RgnHandle = OpaqueByValueType("RgnHandle", "OptResObj")
|
||||
|
||||
#KeyMap = ArrayOutputBufferType("KeyMap")
|
||||
#MacOSEventKind = Type("MacOSEventKind", "h") # Old-style
|
||||
#MacOSEventMask = Type("MacOSEventMask", "h") # Old-style
|
||||
#EventMask = Type("EventMask", "h")
|
||||
#EventKind = Type("EventKind", "h")
|
||||
ThemeBrush = Type("ThemeBrush", "h")
|
||||
ThemeColor = Type("ThemeColor", "h")
|
||||
ThemeTextColor = Type("ThemeTextColor", "h")
|
||||
ThemeMenuBarState = Type("ThemeMenuBarState", "h")
|
||||
ThemeMenuState = Type("ThemeMenuState", "h")
|
||||
ThemeMenuType = Type("ThemeMenuType", "h")
|
||||
ThemeMenuItemType = Type("ThemeMenuItemType", "h")
|
||||
ThemeDrawState = Type("ThemeDrawState", "l")
|
||||
CTabHandle = OpaqueByValueType("CTabHandle", "ResObj")
|
||||
|
||||
|
||||
includestuff = includestuff + """
|
||||
#include <%s>""" % MACHEADERFILE + """
|
||||
|
||||
#define resNotFound -192 /* Can't include <Errors.h> because of Python's "errors.h" */
|
||||
"""
|
||||
|
||||
## class MyObjectDefinition(GlobalObjectDefinition):
|
||||
## def outputCheckNewArg(self):
|
||||
## Output("if (itself == NULL) return PyMac_Error(resNotFound);")
|
||||
## def outputCheckConvertArg(self):
|
||||
## OutLbrace("if (DlgObj_Check(v))")
|
||||
## Output("*p_itself = ((WindowObject *)v)->ob_itself;")
|
||||
## Output("return 1;")
|
||||
## OutRbrace()
|
||||
## Out("""
|
||||
## if (v == Py_None) { *p_itself = NULL; return 1; }
|
||||
## if (PyInt_Check(v)) { *p_itself = (WindowPtr)PyInt_AsLong(v); return 1; }
|
||||
## """)
|
||||
|
||||
# From here on it's basically all boiler plate...
|
||||
|
||||
# Create the generator groups and link them
|
||||
module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
||||
##object = MyObjectDefinition(OBJECTNAME, OBJECTPREFIX, OBJECTTYPE)
|
||||
##module.addobject(object)
|
||||
|
||||
# Create the generator classes used to populate the lists
|
||||
Function = OSErrFunctionGenerator
|
||||
##Method = OSErrMethodGenerator
|
||||
|
||||
# Create and populate the lists
|
||||
functions = []
|
||||
##methods = []
|
||||
execfile(INPUTFILE)
|
||||
|
||||
# add the populated lists to the generator groups
|
||||
# (in a different wordl the scan program would generate this)
|
||||
for f in functions: module.add(f)
|
||||
##for f in methods: object.add(f)
|
||||
|
||||
# generate output (open the output file as late as possible)
|
||||
SetOutputFileName(OUTPUTFILE)
|
||||
module.generate()
|
||||
|
Loading…
Reference in New Issue
Block a user