All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.SliderCell

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Cell
                   |
                   +----com.apple.alpha.app.ActionCell
                           |
                           +----com.apple.alpha.app.SliderCell

public class SliderCell
extends ActionCell
This class wraps the Objective-C class NSSliderCell.


Constructor Index

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

Method Index

 o allowsTickMarkValuesOnly()
A wrapper for the - allowsTickMarkValuesOnly Objective-C instance method.
 o altIncrementValue()
A wrapper for the - altIncrementValue Objective-C instance method.
 o closestTickMarkValueToValue(double)
A wrapper for the - closestTickMarkValueToValue: Objective-C instance method.
 o drawBarInside(Rect, boolean)
A wrapper for the - drawBarInside:flipped: Objective-C instance method.
 o drawKnob()
A wrapper for the - drawKnob Objective-C instance method.
 o drawKnobInRect(Rect)
A wrapper for the - drawKnob: Objective-C instance method.
 o indexOfTickMarkAtPoint(Point)
A wrapper for the - indexOfTickMarkAtPoint: Objective-C instance method.
 o isVertical()
A wrapper for the - isVertical Objective-C instance method.
 o knobRectFlipped(boolean)
A wrapper for the - knobRectFlipped: Objective-C instance method.
 o knobThickness()
A wrapper for the - knobThickness Objective-C instance method.
 o maxValue()
A wrapper for the - maxValue Objective-C instance method.
 o minValue()
A wrapper for the - minValue Objective-C instance method.
 o numberOfTickMarks()
A wrapper for the - numberOfTickMarks Objective-C instance method.
 o prefersTrackingUntilMouseUp()
A wrapper for the + prefersTrackingUntilMouseUp Objective-C class method.
 o rectOfTickMarkAtIndex(int)
A wrapper for the - rectOfTickMarkAtIndex: Objective-C instance method.
 o setAllowsTickMarkValuesOnly(boolean)
A wrapper for the - setAllowsTickMarkValuesOnly: Objective-C instance method.
 o setAltIncrementValue(double)
A wrapper for the - setAltIncrementValue: Objective-C instance method.
 o setKnobThickness(float)
A wrapper for the - setKnobThickness: Objective-C instance method.
 o setMaxValue(double)
A wrapper for the - setMaxValue: Objective-C instance method.
 o setMinValue(double)
A wrapper for the - setMinValue: Objective-C instance method.
 o setNumberOfTickMarks(int)
A wrapper for the - setNumberOfTickMarks: Objective-C instance method.
 o setTickMarkPosition(int)
A wrapper for the - setTickMarkPosition: Objective-C instance method.
 o setTitle(String)
A wrapper for the - setTitle: Objective-C instance method.
 o setTitleCell(Cell)
A wrapper for the - setTitleCell: Objective-C instance method.
 o setTitleColor(Color)
A wrapper for the - setTitleColor: Objective-C instance method.
 o setTitleFont(Font)
A wrapper for the - setTitleFont: Objective-C instance method.
 o tickMarkPosition()
A wrapper for the - tickMarkPosition Objective-C instance method.
 o tickMarkValueAtIndex(int)
A wrapper for the - tickMarkValueAtIndex: Objective-C instance method.
 o title()
A wrapper for the - title Objective-C instance method.
 o titleCell()
A wrapper for the - titleCell Objective-C instance method.
 o titleColor()
A wrapper for the - titleColor Objective-C instance method.
 o titleFont()
A wrapper for the - titleFont Objective-C instance method.
 o trackRect()
A wrapper for the - trackRect Objective-C instance method.

Constructors

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

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

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

Methods

 o prefersTrackingUntilMouseUp
 public static native boolean prefersTrackingUntilMouseUp()
A wrapper for the + prefersTrackingUntilMouseUp Objective-C class method.

 o minValue
 public native double minValue()
A wrapper for the - minValue Objective-C instance method.

 o setMinValue
 public native void setMinValue(double aDouble)
A wrapper for the - setMinValue: Objective-C instance method.

 o maxValue
 public native double maxValue()
A wrapper for the - maxValue Objective-C instance method.

 o setMaxValue
 public native void setMaxValue(double aDouble)
A wrapper for the - setMaxValue: Objective-C instance method.

 o setAltIncrementValue
 public native void setAltIncrementValue(double incValue)
A wrapper for the - setAltIncrementValue: Objective-C instance method.

 o altIncrementValue
 public native double altIncrementValue()
A wrapper for the - altIncrementValue Objective-C instance method.

 o isVertical
 public native int isVertical()
A wrapper for the - isVertical Objective-C instance method.

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

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

 o setTitleFont
 public native void setTitleFont(Font fontObj)
A wrapper for the - setTitleFont: Objective-C instance method.

 o titleFont
 public native Font titleFont()
A wrapper for the - titleFont Objective-C instance method.

 o title
 public native String title()
A wrapper for the - title Objective-C instance method.

 o setTitle
 public native void setTitle(String aString)
A wrapper for the - setTitle: Objective-C instance method.

 o setTitleCell
 public native void setTitleCell(Cell aCell)
A wrapper for the - setTitleCell: Objective-C instance method.

 o titleCell
 public native Object titleCell()
A wrapper for the - titleCell Objective-C instance method.

 o setKnobThickness
 public native void setKnobThickness(float aFloat)
A wrapper for the - setKnobThickness: Objective-C instance method.

 o knobThickness
 public native float knobThickness()
A wrapper for the - knobThickness Objective-C instance method.

 o knobRectFlipped
 public native Rect knobRectFlipped(boolean flipped)
A wrapper for the - knobRectFlipped: Objective-C instance method.

 o drawKnobInRect
 public native void drawKnobInRect(Rect knobRect)
A wrapper for the - drawKnob: Objective-C instance method.

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

 o drawBarInside
 public native void drawBarInside(Rect aRect,
                                  boolean flipped)
A wrapper for the - drawBarInside:flipped: Objective-C instance method.

 o trackRect
 public native Rect trackRect()
A wrapper for the - trackRect Objective-C instance method.

 o setNumberOfTickMarks
 public native void setNumberOfTickMarks(int count)
A wrapper for the - setNumberOfTickMarks: Objective-C instance method.

 o numberOfTickMarks
 public native int numberOfTickMarks()
A wrapper for the - numberOfTickMarks Objective-C instance method.

 o setTickMarkPosition
 public native void setTickMarkPosition(int position)
A wrapper for the - setTickMarkPosition: Objective-C instance method.

 o tickMarkPosition
 public native int tickMarkPosition()
A wrapper for the - tickMarkPosition Objective-C instance method.

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

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

 o tickMarkValueAtIndex
 public native double tickMarkValueAtIndex(int index)
A wrapper for the - tickMarkValueAtIndex: Objective-C instance method.

 o rectOfTickMarkAtIndex
 public native Rect rectOfTickMarkAtIndex(int index)
A wrapper for the - rectOfTickMarkAtIndex: Objective-C instance method.

 o indexOfTickMarkAtPoint
 public native int indexOfTickMarkAtPoint(Point point)
A wrapper for the - indexOfTickMarkAtPoint: Objective-C instance method.

 o closestTickMarkValueToValue
 public native double closestTickMarkValueToValue(double value)
A wrapper for the - closestTickMarkValueToValue: Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index