A view controller that manages an NSSplitView.
MOSplitViewController is a subclass of MOViewController that manages an NSSplitView. Each of its subcontrollers is a split in the split view. MOSplitViewController manages installing and uninstalling its subcontrollers' views as they are added and removed.
isPaneSplitter |
- ( BOOL ) isPaneSplitter;
Returns whether the split view is a pane splitter. Covers NSSplitView's isPaneSplitter: method. By providing this convenience API MOSplitViewController also makes it possible to query this state without having to cause the view to be created if it is not yet needed. This state is saved and restored as part of the controller's geometry configuration.
isVertical |
- ( BOOL ) isVertical;
Returns whether the split view is vertical. Covers NSSplitView's isVertical: method. By providing this convenience API MOSplitViewController also makes it possible to query this state without having to cause the view to be created if it is not yet needed. This state is saved and restored as part of the controller's geometry configuration.
setPaneSplitter: |
- ( void ) setPaneSplitter: (BOOL ) flag;
Sets whether the split view is a pane splitter. Covers NSSplitView's setIsPaneSplitter: method. By providing this convenience API MOSplitViewController also makes it possible to set this state without having to cause the view to be created if it is not yet needed. This state is saved and restored as part of the controller's geometry configuration.
- flag
- Whether the split view is a pane splitter.
setVertical: |
- ( void ) setVertical: (BOOL ) flag;
Sets whether the split view is vertical. Covers NSSplitView's setVertical: method. By providing this convenience API MOSplitViewController also makes it possible to set this state without having to cause the view to be created if it is not yet needed. This state is saved and restored as part of the controller's geometry configuration.
- flag
- Whether the split view is vertical.
splitView |
- ( NSSplitView *) splitView;
Returns the receiver's NSSplitView. This method will cause the view to be loaded if necessary.
(Last Updated 3/20/2005)