All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.ColorWell

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Responder
                   |
                   +----com.apple.alpha.app.View
                           |
                           +----com.apple.alpha.app.Control
                                   |
                                   +----com.apple.alpha.app.ColorWell

public class ColorWell
extends Control
This class wraps the Objective-C class NSColorWell.


Constructor Index

 o ColorWell()
This default constructor is equivalent to Objective-C's [[NSColorWell alloc] init].
 o ColorWell(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o ColorWell(Coder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.
 o ColorWell(Rect)
This constructor has the same effect as calling - initWithFrame: on a newly allocated object.

Method Index

 o activateWell(boolean)
A wrapper for the - activate: Objective-C instance method.
 o color()
A wrapper for the - color Objective-C instance method.
 o deactivate()
A wrapper for the - deactivate Objective-C instance method.
 o drawWellInside(Rect)
A wrapper for the - drawWellInside: Objective-C instance method.
 o isActive()
A wrapper for the - isActive Objective-C instance method.
 o isBordered()
A wrapper for the - isBordered Objective-C instance method.
 o setBordered(boolean)
A wrapper for the - setBordered: Objective-C instance method.
 o setColor(Color)
A wrapper for the - setColor: Objective-C instance method.
 o takeColorFrom(Object)
A wrapper for the - takeColorFrom: Objective-C instance method.

Constructors

 o ColorWell
 protected ColorWell(boolean shouldAllocate,
                     int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o ColorWell
 public ColorWell()
This default constructor is equivalent to Objective-C's [[NSColorWell alloc] init].

 o ColorWell
 public ColorWell(Coder aDecoder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

 o ColorWell
 public ColorWell(Rect frameRect)
This constructor has the same effect as calling - initWithFrame: on a newly allocated object.

Methods

 o deactivate
 public native void deactivate()
A wrapper for the - deactivate Objective-C instance method.

 o activateWell
 public native void activateWell(boolean exclusive)
A wrapper for the - activate: Objective-C instance method.

 o isActive
 public native boolean isActive()
A wrapper for the - isActive Objective-C instance method.

 o drawWellInside
 public native void drawWellInside(Rect insideRect)
A wrapper for the - drawWellInside: Objective-C instance method.

 o isBordered
 public native boolean isBordered()
A wrapper for the - isBordered Objective-C instance method.

 o setBordered
 public native void setBordered(boolean flag)
A wrapper for the - setBordered: Objective-C instance method.

 o takeColorFrom
 public native void takeColorFrom(Object sender)
A wrapper for the - takeColorFrom: Objective-C instance method.

 o setColor
 public native void setColor(Color color)
A wrapper for the - setColor: Objective-C instance method.

 o color
 public native Color color()
A wrapper for the - color Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index