DVDBuilder for C++
3.4
DVD Authoring Software Development Kit
|
The DVDBuilderCallback interface is implemented by the application to receive status information from the DVDBuilder object. More...
Public Member Functions | |
virtual bool_t | onContinue () |
The onContinue method is called to query whether the current operation should continue. More... | |
virtual void | onProgress (int32_t percentDone) |
Notifies registered objects and applications of the progress of the DVD creation operation. More... | |
virtual void | onStatus (DVDBuilderStatus::Enum status) |
The onStatus method is called when status information must be communicated to the application. More... | |
int32_t | release () const |
The default implementation keeps a constant reference count of 1. More... | |
int32_t | retain () const |
The default implementation keeps a constant reference count of 1. More... | |
int32_t | retainCount () const |
The default implementation keeps a constant reference count of 1. More... | |
The DVDBuilderCallback interface is implemented by the application to receive status information from the DVDBuilder object.
To use the callback methods, you must implement a class in your application that inherits from the DVDBuilderCallback interface. Include code for your version of the interface methods in the class. Several examples of DVDBuilderCallback implementations can be found in the samples included with this SDK. For more information about the samples, see Sample Applications.
|
virtual |
The onContinue method is called to query whether the current operation should continue.
An DVDBuilder object that is performing some operation calls this method to determine whether it should continue.
|
virtual |
Notifies registered objects and applications of the progress of the DVD creation operation.
percentDone | Percentage of the DVD file structure that is completed. |
|
virtual |
The onStatus method is called when status information must be communicated to the application.
status | One member of the DVDBuilderStatus::Enum enumeration type. For a description of possible values, see the DVDBuilderStatus::Enum. |
|
virtual |
|
virtual |
|
virtual |