Inherits from | |
Conforms to | |
Framework | System/Library/Frameworks/Quartz.framework/ImageKit.framework |
Availability | Available in Mac OS X v10.5 and later. |
Declared in | IKFilterUIView.h |
The IKFilterUIView
class provides a view that contains input parameter controls for a Core Image filter (CIFilter
). You need to use this class when providing a user interface for a custom filter. The class creates a view that has an object controller for the given filter. It also retains the filter.
Creates a view that contains controls for the input parameters of a filter.
+ (id)viewWithFrame:(NSRect)frameRect filter:(CIFilter *)inFilter
The rectangle that defines the area of the view.
A Core Image filter. The view retains the filter.
An IKFilterUIView
object that contains controls for the input parameters of the provided filter.
IKFilterUIView.h
Returns the Core Image filter associated with the view.
- (CIFilter *)filter
The Core Image filter associated with the view.
IKFilterUIView.h
Initializes a view that contains controls for the input parameters of a filter.
- (id)initWithFrame:(NSRect)frameRect filter:(CIFilter *)inFilter
The rectangle that defines the area of the view.
A Core Image filter. The view retains the filter.
The IKFilterUIView
object initialized with controls for the input parameters of the provided filter.
IKFilterUIView.h
Returns the object controller for the bindings between the filter and its view.
- (NSObjectController *)objectController
The object controller for the bindings between the filter and its view.
IKFilterUIView.h
© 2006 Apple Computer, Inc. All Rights Reserved. (Last updated: 2006-12-06)