TuttleOFX
1
|
A suite that provides progress feedback from a plugin to an application. More...
#include <ofxProgress.h>
Data Fields | |
OfxStatus(* | progressStart )(void *effectInstance, const char *label) |
Initiate a progress bar display. | |
OfxStatus(* | progressUpdate )(void *effectInstance, double progress) |
Indicate how much of the processing task has been completed and reports on any abort status. | |
OfxStatus(* | progressEnd )(void *effectInstance) |
Signal that we are finished with the progress meter. |
A suite that provides progress feedback from a plugin to an application.
A plugin instance can initiate, update and close a progress indicator with this suite.
This is an optional suite in the Image Effect API.
Definition at line 45 of file ofxProgress.h.
OfxStatus( * OfxProgressSuiteV1::progressEnd)(void *effectInstance) |
Signal that we are finished with the progress meter.
Call this when you are done with the progress meter and no longer need it displayed.
- you can no longer call progressUpdate on the instance
Definition at line 92 of file ofxProgress.h.
Referenced by OFX::ImageEffect::progressEnd().
OfxStatus( * OfxProgressSuiteV1::progressStart)(void *effectInstance, const char *label) |
Initiate a progress bar display.
Call this to initiate the display of a progress bar.
Definition at line 62 of file ofxProgress.h.
Referenced by OFX::ImageEffect::progressStart().
OfxStatus( * OfxProgressSuiteV1::progressUpdate)(void *effectInstance, double progress) |
Indicate how much of the processing task has been completed and reports on any abort status.
Definition at line 76 of file ofxProgress.h.
Referenced by OFX::ImageEffect::progressUpdate().