All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.Slider

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.Slider

public class Slider
extends Control
This class wraps the Objective-C class NSSlider.


Constructor Index

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

Method Index

 o acceptsFirstMouse(Event)
A wrapper for the - acceptsFirstMouse: Objective-C instance method.
 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 image()
A wrapper for the - image 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 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 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 setImage(Image)
A wrapper for the - setImage: 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.

Constructors

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

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

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

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

Methods

 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 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 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 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 setImage
 public native void setImage(Image backgroundImage)
A wrapper for the - setImage: Objective-C instance method.

 o image
 public native Image image()
A wrapper for the - image Objective-C instance method.

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

 o acceptsFirstMouse
 public native boolean acceptsFirstMouse(Event theEvent)
A wrapper for the - acceptsFirstMouse: Objective-C instance method.

Overrides:
acceptsFirstMouse in class View
 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