Mac OS X Reference Library Apple Developer
Search

IKImageBrowserDelegate Protocol Reference

(informal protocol)

Adopted by
Framework
System/Library/Frameworks/Quartz.framework/ImageKit.framework
Declared in
IKImageBrowserView.h

Overview

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.

Tasks

Performing Custom Tasks in Response to User Events

Instance Methods

imageBrowser:backgroundWasRightClickedWithEvent:

Performs custom tasks when the user right-clicks the image browser view background. (required)

- (void) imageBrowser:(IKImageBrowserView *) aBrowser backgroundWasRightClickedWithEvent:(NSEvent *) event;

Parameters
aBrowser

An image browser view.

event

The event that invoked the method.

Discussion

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.

Availability
  • Available in Mac OS X v10.5 and later.
Declared In
IKImageBrowserView.h

imageBrowser:cellWasDoubleClickedAtIndex:

Performs custom tasks when the user double-clicks an item in the image browser view. (required)

- (void) imageBrowser:(IKImageBrowserView *) aBrowser cellWasDoubleClickedAtIndex:(NSUInteger) index;

Parameters
aBrowser

An image browser view.

index

The index of the cell.

Discussion

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.

Availability
  • Available in Mac OS X v10.5 and later.
Declared In
IKImageBrowserView.h

imageBrowser:cellWasRightClickedAtIndex:withEvent:

Performs custom tasks when the user right-clicks an item in the image browser view. (required)

- (void) imageBrowser:(IKImageBrowserView *) aBrowser cellWasRightClickedAtIndex:(NSUInteger) index withEvent:(NSEvent *) event;

Parameters
aBrowser

An image browser view.

index

The index of the cell.

event

The event that invoked the method.

Discussion

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.

Availability
  • Available in Mac OS X v10.5 and later.
Declared In
IKImageBrowserView.h

imageBrowserSelectionDidChange:

Performs custom tasks when the selection changes. (required)

- (void) imageBrowserSelectionDidChange:(IKImageBrowserView *) aBrowser;

Parameters
aBrowser

An image browser view.

Discussion

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.

Availability
  • Available in Mac OS X v10.5 and later.
Declared In
IKImageBrowserView.h



Last updated: 2006-12-07

Did this document help you? Yes It's good, but... Not helpful...