All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.SplitView

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

public class SplitView
extends View
This class wraps the Objective-C class NSSplitView.


Variable Index

 o SplitViewDidResizeSubviewsNotification
 o SplitViewWillResizeSubviewsNotification

Constructor Index

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

Method Index

 o adjustSubviews()
A wrapper for the - adjustSubviews Objective-C instance method.
 o delegate()
A wrapper for the - delegate Objective-C instance method.
 o dividerThickness()
A wrapper for the - dividerThickness Objective-C instance method.
 o drawDividerInRect(Rect)
A wrapper for the - drawDividerInRect: Objective-C instance method.
 o isVertical()
A wrapper for the - isVertical Objective-C instance method.
 o setDelegate(Object)
A wrapper for the - setDelegate: Objective-C instance method.
 o setVertical(boolean)
A wrapper for the - setVertical: Objective-C instance method.

Variables

 o SplitViewDidResizeSubviewsNotification
 public static final String SplitViewDidResizeSubviewsNotification
 o SplitViewWillResizeSubviewsNotification
 public static final String SplitViewWillResizeSubviewsNotification

Constructors

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

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

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

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

Methods

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

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

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

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

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

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

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


All Packages  Class Hierarchy  This Package  Previous  Next  Index