ADC Home > Reference Library > Reference > Audio > Carbon > Disc Recording UI Framework Reference

 


NSObject(DRBurnProgressPanelDelegateMethods)

Extends Class:
Declared In:

Overview

This category defines a set of methods that delegates of the burn progress panel can implement to control the behavior of the panel.



Methods

-burnProgressPanel:burnDidFinish:
Allows the delegate to handle the end-of-burn feedback.
-burnProgressPanelDidFinish:
Notification sent by the panel after ordering out.
-burnProgressPanelWillBegin:
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; 
Parameters
theBurnPanel
The progress panel
burn
The object that performed the burn.
Return Value

A BOOL indicating whether the normal end-of-burn feedback should occur.

Discussion

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; 
Parameters
aNotification
Always DRBurnProgressPanelDidFinishNotification . You can retrieve the DRBurnProgressPanel object in question by sending object message to aNotification.
Discussion

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; 
Parameters
aNotification
Always DRBurnProgressPanelWillBeginNotification . You can retrieve the DRBurnProgressPanel object in question by sending object message to aNotification.
Discussion

If the delegate implements this method it will receive the message immediately before the panel is displayed.


Did this document help you?
Yes: Tell us what works for you.
It’s good, but: Report typos, inaccuracies, and so forth.
It wasn’t helpful: Tell us what would have helped.
Last Updated: 2008-03-11