INDockableWindowControllerDelegate Protocol Reference
Conforms to | NSObject |
Declared in | INDockableWindowController.h |
Overview
The dockable window controller’s delegate. Contains some methods that are useful for being notified about events that were triggered by the user and not by methods called on the window controller
Tasks
Other Methods
-
– dockableWindowController:viewControllerWasDetached:
Called when a view controller is detached from the primary window.
-
– dockableWindowController:viewControllerWasAttached:
Called when a view controller is attached to the primary window
-
– dockableWindowController:auxiliaryWindowDidClose:
Called when the user closes an auxiliary window containing a dockable view controller.
NSSplitViewDelegate Methods
-
– splitView:shouldAdjustSizeOfSubview:
The documentation for these methods can be found here: http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/NSSplitViewDelegate_Protocol/Reference/Reference.html
-
– splitView:canCollapseSubview:
It is recommended that you do not override the following NSSplitView delegate methods to allow collapsing. Using this class with collapsing enabled results in undefined behaviour
Instance Methods
dockableWindowController:auxiliaryWindowDidClose:
Called when the user closes an auxiliary window containing a dockable view controller.
- (void)dockableWindowController:(INDockableWindowController *)controller auxiliaryWindowDidClose:(INDockableAuxiliaryWindow *)auxiliaryWindow
Parameters
- controller
The dockable window controller.
- auxiliaryWindow
The window that was closed.
Declared In
INDockableWindowController.h
dockableWindowController:viewControllerWasAttached:
Called when a view controller is attached to the primary window
- (void)dockableWindowController:(INDockableWindowController *)controller viewControllerWasAttached:(INDockableViewController *)viewController
Parameters
- controller
The dockable window controller.
- viewController
The view controller that was attached.
Declared In
INDockableWindowController.h
dockableWindowController:viewControllerWasDetached:
Called when a view controller is detached from the primary window.
- (void)dockableWindowController:(INDockableWindowController *)controller viewControllerWasDetached:(INDockableViewController *)viewController
Parameters
- controller
The dockable window controller.
- viewController
The view controller that was detached. *
Declared In
INDockableWindowController.h
splitView:canCollapseSubview:
It is recommended that you do not override the following NSSplitView delegate methods to allow collapsing. Using this class with collapsing enabled results in undefined behaviour
- (BOOL)splitView:(NSSplitView *)splitView canCollapseSubview:(NSView *)subview
Discussion
Warning: It is recommended that you do not override the following NSSplitView delegate methods to allow collapsing. Using this class with collapsing enabled results in undefined behaviour
Declared In
INDockableWindowController.h
splitView:shouldAdjustSizeOfSubview:
The documentation for these methods can be found here: http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/NSSplitViewDelegate_Protocol/Reference/Reference.html
- (BOOL)splitView:(NSSplitView *)splitView shouldAdjustSizeOfSubview:(NSView *)subview
Declared In
INDockableWindowController.h