OSATerminology.c 2.47 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
** This module is a one-trick pony: given an FSSpec it gets the aeut
** resources. It was written by Donovan Preston and slightly modified
** by Jack.
**
** It should be considered a placeholder, it will probably be replaced
** by a full interface to OpenScripting.
*/
#include "Python.h"
10
#include "pymactoolbox.h"
11

12 13
#include <Carbon/Carbon.h>

14
#ifndef __LP64__
15 16 17 18 19 20 21 22
static PyObject *
PyOSA_GetAppTerminology(PyObject* self, PyObject* args)
{
	AEDesc theDesc = {0,0};
	FSSpec fss;
	ComponentInstance defaultComponent = NULL;
	SInt16 defaultTerminology = 0;
	Boolean didLaunch = 0;
23
	OSAError err;
24
	long modeFlags = 0;
25
	
26 27
	if (!PyArg_ParseTuple(args, "O&|i", PyMac_GetFSSpec, &fss, &modeFlags))
		 return NULL;
28
	
29 30 31
	defaultComponent = OpenDefaultComponent (kOSAComponentType, 'ascr');
	err = GetComponentInstanceError (defaultComponent);
	if (err) return PyMac_Error(err);
32 33
	err = OSAGetAppTerminology (
    	defaultComponent, 
34 35
    	modeFlags,
    	&fss, 
36 37
    	defaultTerminology, 
    	&didLaunch, 
38
    	&theDesc
39
	);
40 41 42
	if (err) return PyMac_Error(err);
	return Py_BuildValue("O&i", AEDesc_New, &theDesc, didLaunch);
}
43

44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
static PyObject *
PyOSA_GetSysTerminology(PyObject* self, PyObject* args)
{
	AEDesc theDesc = {0,0};
	FSSpec fss;
	ComponentInstance defaultComponent = NULL;
	SInt16 defaultTerminology = 0;
	Boolean didLaunch = 0;
	OSAError err;
	long modeFlags = 0;
	
	if (!PyArg_ParseTuple(args, "O&|i", PyMac_GetFSSpec, &fss, &modeFlags))
		 return NULL;
	
	defaultComponent = OpenDefaultComponent (kOSAComponentType, 'ascr');
	err = GetComponentInstanceError (defaultComponent);
	if (err) return PyMac_Error(err);
	err = OSAGetAppTerminology (
62
    	defaultComponent, 
63 64
    	modeFlags,
    	&fss, 
65 66
    	defaultTerminology, 
    	&didLaunch, 
67 68 69 70
    	&theDesc
	);
	if (err) return PyMac_Error(err);
	return Py_BuildValue("O&i", AEDesc_New, &theDesc, didLaunch);
71
}
72
#endif /* !__LP64__ */
73 74 75 76

/* 
 * List of methods defined in the module
 */
77
static struct PyMethodDef OSATerminology_methods[] =
78
{
79
#ifndef __LP64__
80 81 82 83 84 85 86 87
  	{"GetAppTerminology", 
		(PyCFunction) PyOSA_GetAppTerminology,
		METH_VARARGS,
		"Get an applications terminology, as an AEDesc object."},
  	{"GetSysTerminology", 
		(PyCFunction) PyOSA_GetSysTerminology,
		METH_VARARGS,
		"Get an applications system terminology, as an AEDesc object."},
88
#endif /* !__LP64__ */
89
	{NULL, (PyCFunction) NULL, 0, NULL}
90 91 92
};

void
93
initOSATerminology(void)
94
{
95 96
	if (PyErr_WarnPy3k("In 3.x, OSATerminology is removed.", 1) < 0)
		return;
97
	Py_InitModule("OSATerminology", OSATerminology_methods);
98
}