Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Previous Book Contents Book Index Next

Inside Macintosh: Programmer's Guide to MacApp / Part 1 - MacApp Theory and Architecture
Chapter 5 - Events and Commands


Target Management

"Target Chain Dispatching," beginning on page 107, describes how MacApp dispatches menu commands and key events to event-handler objects in the target chain. The command or event is passed to each object in the target chain, starting with the current target object, until one of the objects handles it.

The current target object can change frequently during execution of your application. Managing this process is known as target management. The most common target objects are views, documents, and the application object. As part of MacApp's target management, these objects are given the opportunity to

The next sections describe MacApp's target management.

Automatic Target Changes

MacApp performs many target changes automatically:

Figure 5-6 shows a target change due to window activation. The document window "untitled 2" is in front. Its text view is the current target object and receives events such as data entry keystrokes. If an event isn't handled by the text view, it is passed on to its superview, a scroller. If the event isn't handled by the scroller, it is passed on to the other objects in the target chain, a window, a document, and finally the application object.

Figure 5-6 MacApp target chain as affected by window activation

When the user clicks the back window, "untitled", that window is activated and its target view becomes the current target object. In this case, the target is again a text view, with a hierarchy (and a target chain) similar to the previous view. Both chains end at the application object. (This behavior can vary if the user clicks draggable data in the back window, as described in "Mouse-Down Events," beginning on page 105.)

Manual Target Changes

You can modify MacApp's default behavior by specifically setting the current target object. The TEventHandler class provides the BecomeTarget method for this purpose. To be sure an event-handler object is willing and eligible to become the target, you can call its WantsToBeTarget method before calling its BecomeTarget method. The BecomeTarget method performs target validation and returns TRUE if the target change succeeded. Target validation is described in the next section.

Target Validation

When MacApp attempts to change the current target object, or when you attempt to change the target in your code, the current target object may not be ready to give up being the target. For example, the target might be a text entry view in a dialog box that contains invalid information.

Target validation is the process of allowing the current target object to validate its data before a target change and refuse to change if the data is invalid. The BecomeTarget method performs target validation by calling the ResignTarget method of the current target object.

The ResignTarget method calls the WillingToResignTarget method of the current target object. The default version of this method returns 0, indicating that it is willing to resign. If an object is not willing to resign, ResignTarget calls the TargetValidationFailed method of the target object. You can override TargetValidationFailed to display an alert box--for example, to tell the user why the data in a text entry field is invalid.

Target Change Notification

Whenever the target changes, MacApp notifies the old and new target objects. It calls the ResignedTarget method of the old target object and calls the BecameTarget method of the new target object. The default versions of these methods do nothing, but you can override them to let your objects prepare to receive events or perform cleanup before relinquishing target status.


Previous Book Contents Book Index Next

© Apple Computer, Inc.
25 JUL 1996