Tcl Library Procedures Tcl_MacSetEventProc(3TCL)
_________________________________________________________________
NAME
Tcl_MacSetEventProc, Tcl_MacConvertTextResource,
Tcl_MacEvalResource, Tcl_MacFindResource,
Tcl_GetOSTypeFromObj, Tcl_SetOSTypeObj, Tcl_NewOSTypeObj -
procedures to handle Macintosh resources and other Macintosh specificsSYNOPSIS
#include
intTcl_MacEvalResource(interp, resourceName, resourceNumber, fileName)
char*Tcl_MacConvertTextResource(resource)
HandleTcl_MacFindResource(interp, resourceType, resourceName, resourceNumber, resFileRef, releaseIt)
Tcl_Obj*
Tcl_NewOSTypeObj(newOSType)
voidTcl_SetOSTypeObj(objPtr, newOSType)
intTcl_GetOSTypeFromObj(interp, objPtr, osTypePtr)
voidTcl_MacSetEventProc(procPtr)
ARGUMENTSTcl_Interp *interp (in) Interpreter to use
for error report-
ing, or NULL if no error reporting is desired. CONST char *resourceName (in) Name of TEXT resource to source, NULL if number should be used. int resourceNumber (in) Resource id of source. CONST char *fileName (in) Name of file to process. NULL if application Tcl Last change: 8.1 1Tcl Library Procedures Tcl_MacSetEventProc(3TCL)
resource. Handle resource (in) Handle to TEXT resource. long resourceType (in) Type of resource to load. CONST char *resFileRef (in) Registered resource file reference, NULL if searching all open resource files. int *releaseIt (out) Should we release this resource when done.int newOSType (in) Int used to ini-
tialize the new object or set the object's value.Tcl_Obj *objPtr (in) Object whose
internal represen-
tation is to be set or retrieved. osTypePtr out Place to store the resulting integer.Tcl_MacConvertEventPtr procPtr(in)
Reference to the new function tohandle all incom-
ing Mac events._________________________________________________________________
INTRODUCTION The described routines are used to implement the Macintosh specific resource command and the Mac specific notifier.. They manipulate or use Macintosh resources and provide administration for open resource file references.DESCRIPTION
Tcl_MacEvalResource extends the source command to Macintosh
resources. It sources Tcl code from a Text resource. Currently only sources the resource by name, file IDs may be supported at a later date. Tcl Last change: 8.1 2Tcl Library Procedures Tcl_MacSetEventProc(3TCL)
Tcl_MacConvertTextResource converts a TEXT resource into a
Tcl suitable string. It mallocs the returned memory, con-
verts ``\r'' to ``\n'', and appends a null. The caller has the responsibility for freeing the memory.Tcl_MacFindResource provides a higher level interface for
loading resources. It is used by resource read.Tcl_NewOSTypeObj is used to create a new resource name type
object. The object type is "ostype".Tcl_SetOSTypeObj modifies an object to be a resource type
and to have the specified long value.Tcl_GetOSTypeFromObj attempts to return an int from the Tcl
object "objPtr". If the object is not already an int, an attempt will be made to convert it to one.Tcl_MacSetEventProc sets the event handling procedure for
the application. This function will be passed all incoming Mac events. This function usually controls the console or some other entity like Tk. RESOURCE TYPESResource types are 4-byte values used by the macintosh
resource facility to tag parts of the resource fork in a file so that the OS knows how to handle them. As all 4 bytes are restricted to printable characters such a type can be interpreted as a 4 character string too. KEYWORDS macintosh, mac, resource, notifierATTRIBUTES
See attributes(5) for descriptions of the following attri-
butes:_______________________________________
| ATTRIBUTE TYPE | ATTRIBUTE VALUE|
|____________________|__________________|_
| Availability | runtime/tcl-8 |
|____________________|__________________|_
| Interface Stability| Uncommitted ||____________________|_________________|
NOTES Source for Tcl is available on http://opensolaris.org. Tcl Last change: 8.1 3