NSAppleEventManager Class Reference
| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/Foundation.framework |
| Availability | Available in OS X v10.0 and later. |
| Companion guide | |
| Declared in | NSAppleEventManager.h |
Overview
Provides a mechanism for registering handler routines for specific types of Apple events and dispatching events to those handlers.
Cocoa provides built-in scriptability support that uses scriptability information supplied by an application to automatically convert Apple events into script command objects that perform the desired operation. However, some applications may want to perform more basic Apple event handling, in which an application registers handlers for the Apple events it can process, then calls on the Apple Event Manager to dispatch received Apple events to the appropriate handler. NSAppleEventManager supports these mechanisms by providing methods to register and remove handlers and to dispatch Apple events to the appropriate handler, if one exists. For related information, see “How Cocoa Applications Handle Apple Events.”
Each application has at most one instance of NSAppleEventManager. To obtain a reference to it, you call the class method sharedAppleEventManager, which creates the instance if it doesn’t already exist.
For information about the Apple Event Manager, see Apple Event Manager Reference and Apple Events Programming Guide.
Tasks
Getting an Event Manager
Working with Event Handlers
-
– removeEventHandlerForEventClass:andEventID: -
– setEventHandler:andSelector:forEventClass:andEventID:
Working with Events
Suspending and Resuming Apple Events
Class Methods
sharedAppleEventManager
Returns the single instance of NSAppleEventManager, creating it first if it doesn’t exist.
Availability
- Available in OS X v10.0 and later.
Declared In
NSAppleEventManager.hInstance Methods
appleEventForSuspensionID:
Given a nonzero suspensionID returned by an invocation of suspendCurrentAppleEvent, returns the descriptor for the event whose handling was suspended.
Discussion
The effects of mutating or retaining the returned descriptor are undefined, although it may be copied. appleEventForSuspensionID: may be invoked in any thread, not just the one in which the corresponding invocation of suspendCurrentAppleEvent occurred.
Availability
- Available in OS X v10.3 and later.
Declared In
NSAppleEventManager.hcurrentAppleEvent
Returns the descriptor for currentAppleEvent if an Apple event is being handled on the current thread.
Discussion
An Apple event is being handled on the current thread if a handler that was registered with setEventHandler:andSelector:forEventClass:andEventID: is being messaged at this instant or setCurrentAppleEventAndReplyEventWithSuspensionID: has just been invoked. Returns nil otherwise. The effects of mutating or retaining the returned descriptor are undefined, although it may be copied.
Availability
- Available in OS X v10.3 and later.
See Also
Declared In
NSAppleEventManager.hcurrentReplyAppleEvent
Returns the corresponding reply event descriptor if an Apple event is being handled on the current thread.
Discussion
An Apple event is being handled on the current thread if currentAppleEvent does not return nil. Returns nil otherwise. This descriptor, including any mutations, will be returned to the sender of the current event when all handling of the event has been completed, if the sender has requested a reply. The effects of retaining the descriptor are undefined; it may be copied, but mutations of the copy are not returned to the sender of the current event.
Availability
- Available in OS X v10.3 and later.
Declared In
NSAppleEventManager.hdispatchRawAppleEvent:withRawReply:handlerRefCon:
Causes the Apple event specified by theAppleEvent to be dispatched to the appropriate Apple event handler, if one has been registered by calling setEventHandler:andSelector:forEventClass:andEventID:.
Discussion
The theReply parameter always specifies a reply Apple event, never nil. However, the handler should not fill out the reply if the descriptor type for the reply event is typeNull, indicating the sender does not want a reply.
The handlerRefcon parameter provides 4 bytes of data to the handler; a common use for this parameter is to pass a pointer to additional data.
This method is primarily intended for Cocoa’s internal use. Note that dispatching an event means routing an event to an appropriate handler in the current application. You cannot use this method to send an event to other applications.
Availability
- Available in OS X v10.0 and later.
Declared In
NSAppleEventManager.hremoveEventHandlerForEventClass:andEventID:
If an Apple event handler has been registered for the event specified by eventClass and eventID, removes it.
Discussion
Otherwise does nothing.
Availability
- Available in OS X v10.0 and later.
Declared In
NSAppleEventManager.hreplyAppleEventForSuspensionID:
Given a nonzero suspensionID returned by an invocation of suspendCurrentAppleEvent, returns the corresponding reply event descriptor.
Discussion
This descriptor, including any mutations, will be returned to the sender of the suspended event when handling of the event is resumed, if the sender has requested a reply. The effects of retaining the descriptor are undefined; it may be copied, but mutations of the copy are returned to the sender of the suspended event. replyAppleEventForSuspensionID: may be invoked in any thread, not just the one in which the corresponding invocation of suspendCurrentAppleEvent occurred.
Availability
- Available in OS X v10.3 and later.
See Also
Declared In
NSAppleEventManager.hresumeWithSuspensionID:
Given a nonzero suspensionID returned by an invocation of suspendCurrentAppleEvent, signal that handling of the suspended event may now continue.
Discussion
This may result in the immediate sending of the reply event to the sender of the suspended event, if the sender has requested a reply. If suspensionID has been used in a previous invocation of setCurrentAppleEventAndReplyEventWithSuspensionID: the effects of that invocation are completely undone. Redundant invocations of resumeWithSuspensionID: are ignored. Subsequent invocations of other NSAppleEventManager methods using the same suspension ID are invalid. resumeWithSuspensionID: may be invoked in any thread, not just the one in which the corresponding invocation of suspendCurrentAppleEvent occurred.
Availability
- Available in OS X v10.3 and later.
Declared In
NSAppleEventManager.hsetCurrentAppleEventAndReplyEventWithSuspensionID:
Given a nonzero suspensionID returned by an invocation of suspendCurrentAppleEvent, sets the values that will be returned by subsequent invocations of currentAppleEvent and currentReplyAppleEvent to be the event whose handling was suspended and its corresponding reply event, respectively.
Discussion
Redundant invocations of setCurrentAppleEventAndReplyEventWithSuspensionID: are ignored.
Availability
- Available in OS X v10.3 and later.
Declared In
NSAppleEventManager.hsetEventHandler:andSelector:forEventClass:andEventID:
Registers the Apple event handler specified by handler for the event specified by eventClass and eventID.
Discussion
If an event handler is already registered for the specified event class and event ID, removes it. The signature for handler should match the following:
- (void)handleAppleEvent:(NSAppleEventDescriptor *)event withReplyEvent: (NSAppleEventDescriptor *)replyEvent; |
Availability
- Available in OS X v10.0 and later.
Declared In
NSAppleEventManager.hsuspendCurrentAppleEvent
Suspends the handling of the current event and returns an ID that must be used to resume the handling of the event if an Apple event is being handled on the current thread.
Discussion
An Apple event is being handled on the current thread if currentAppleEvent does not return nil. Returns zero otherwise. The suspended event is no longer the current event after this method returns.
Availability
- Available in OS X v10.3 and later.
Declared In
NSAppleEventManager.hConstants
NSAppleEvent Timeouts
The following constants should not be used and may eventually be removed.
extern const double NSAppleEventTimeOutDefault; extern const double NSAppleEventTimeOutNone;
Constants
NSAppleEventTimeOutDefaultSpecifies that an event-processing operation should continue until a timeout occurs based on a value determined by the Apple Event Manager (about 1 minute). Not currently used by applications.
Available in OS X v10.0 and later.
Declared in
NSAppleEventManager.h.NSAppleEventTimeOutNoneSpecifies that the application is willing to wait indefinitely for the current operation to complete. Not currently used by applications.
Available in OS X v10.0 and later.
Declared in
NSAppleEventManager.h.
Declared In
NSAppleEventManager.hNotifications
NSAppleEventManagerWillProcessFirstEventNotification
NSAppleEventManager before it first dispatches an Apple event. Your application can use this notification to avoid registering any Apple event handlers until the first time at which they may be needed. The notification object is the NSAppleEventManager. This notification does not contain a userInfo dictionary.Availability
- Available in OS X v10.0 and later.
Declared In
NSAppleEventManager.h© 2006 Apple Computer, Inc. All Rights Reserved. (Last updated: 2006-05-23)