|
Mac Dev Center
Mac OS X Reference Library Drivers, Kernel, & Hardware: User-Space Device Access Disc Recording UI Framework Reference
|
NSObject(DRBurnProgressPanelDelegateMethods) |
| Extends Class: | |
| Declared In: |
This category defines a set of methods that delegates of the burn progress panel can implement to control the behavior of the panel.
Allows the delegate to handle the end-of-burn feedback.
Notification sent by the panel after ordering out.
Notification sent by the panel before display.
burnProgressPanel:burnDidFinish: |
Allows the delegate to handle the end-of-burn feedback.
- (BOOL) burnProgressPanel:(DRBurnProgressPanel*)theBurnPanel burnDidFinish:(DRBurn*)burn;
theBurnPanelThe progress panel
burnThe object that performed the burn.
A BOOL indicating whether the normal end-of-burn feedback should occur.
This method allows the delegate to handle or modify the end-of-burn feedback performed by the progress panel. Return YES to indicate the delegate handled the burn completion and the standard feedback should be supressed. If this method returns NO, the normal end-of-burn handling is performed (displaying an error if appropriate, playing an "I'm done" sound, etc). The delegate is messaged before the progress panel is ordered out so a sheet may be displayed on a progress panel displayed as a window.
burnProgressPanelDidFinish: |
Notification sent by the panel after ordering out.
- (void) burnProgressPanelDidFinish:(NSNotification*)aNotification;
aNotificationAlways DRBurnProgressPanelDidFinishNotification . You can retrieve the DRBurnProgressPanel object in question by sending object message to aNotification.
If the delegate implements this method it will receive the message after the panel is removed from display.
burnProgressPanelWillBegin: |
Notification sent by the panel before display.
- (void) burnProgressPanelWillBegin:(NSNotification*)aNotification;
aNotificationAlways DRBurnProgressPanelWillBeginNotification . You can retrieve the DRBurnProgressPanel object in question by sending object message to aNotification.
If the delegate implements this method it will receive the message immediately before the panel is displayed.
Last Updated: 2009-08-13