(informal protocol)
Adopted by | |
Framework | System/Library/Frameworks/Quartz.framework/ImageKit.framework |
Declared in | IKImageBrowserView.h |
The IKImageBrowserDelegate
is an informal protocol for the delegate of an IKImageBrowserView
object. You can implement these methods to perform custom tasks when in response to events in the image browser view.
– imageBrowser:backgroundWasRightClickedWithEvent:
– imageBrowser:cellWasRightClickedAtIndex:withEvent:
– imageBrowser:cellWasDoubleClickedAtIndex:
– imageBrowserSelectionDidChange:
Performs custom tasks when the user right-clicks the image browser view background.
- (void) imageBrowser:(IKImageBrowserView *) aBrowser backgroundWasRightClickedWithEvent:(NSEvent *) event;
An image browser view.
The event that invoked the method.
This method signals that the user either right-clicked the background or left-clicked it with the Alt key pressed. You can implement this method if you want to perform custom tasks at that time.
IKImageBrowserView.h
Performs custom tasks when the user double-clicks an item in the image browser view.
- (void) imageBrowser:(IKImageBrowserView *) aBrowser cellWasDoubleClickedAtIndex:(NSUInteger) index;
An image browser view.
The index of the cell.
This method signals that the user double-clicked an item in the image browser view. You can implement this method if you want to perform custom tasks at that time.
IKImageBrowserView.h
Performs custom tasks when the user right-clicks an item in the image browser view.
- (void) imageBrowser:(IKImageBrowserView *) aBrowser cellWasRightClickedAtIndex:(NSUInteger) index withEvent:(NSEvent *) event;
An image browser view.
The index of the cell.
The event that invoked the method.
This method signals that the user either right-clicked an item in the browser or left-clicked the item with the Alt key pressed. You can implement this method if you want to perform custom tasks at that time.
IKImageBrowserView.h
Performs custom tasks when the selection changes.
- (void) imageBrowserSelectionDidChange:(IKImageBrowserView *) aBrowser;
An image browser view.
This method signals that the user changes the selection in the image browser view. You can implement this method if you want to perform custom tasks at that time.
IKImageBrowserView.h
© 2006 Apple Computer, Inc. All Rights Reserved. (Last updated: 2006-12-07)