#include "ofxCore.h"
Go to the source code of this file.
Classes | |
struct | OfxMessageSuiteV1 |
The OFX suite that allows a plug-in to pass messages back to a user. More... | |
Defines | |
#define | kOfxMessageSuite "OfxMessageSuite" |
#define | kOfxMessageFatal "OfxMessageFatal" |
String used to type fatal error messages. | |
#define | kOfxMessageError "OfxMessageError" |
String used to type error messages. | |
#define | kOfxMessageMessage "OfxMessageMessage" |
String used to type simple ordinary messages. | |
#define | kOfxMessageLog "OfxMessageLog" |
String used to type log messages. | |
#define | kOfxMessageQuestion "OfxMessageQuestion" |
String used to type yes/no messages. |
#define kOfxMessageError "OfxMessageError" |
String used to type error messages.
Ordinary error messages should be posted when there is an error in operation that is recoverable by user intervention.
#define kOfxMessageFatal "OfxMessageFatal" |
String used to type fatal error messages.
Fatal error messages should only be posted by a plugin when it can no longer continue operation.
#define kOfxMessageLog "OfxMessageLog" |
String used to type log messages.
Log messages are written out to a log and not to the end user.
#define kOfxMessageMessage "OfxMessageMessage" |
String used to type simple ordinary messages.
Ordinary messages simply convey information from the plugin directly to the user.
#define kOfxMessageQuestion "OfxMessageQuestion" |
String used to type yes/no messages.
The host is to enter a modal state which waits for the user to respond yes or no. The OfxMessageSuiteV1::message function which posted the message will only return after the user responds. When asking a question, the OfxStatus code returned by the message function will be,
It is an error to post a question message if the plugin is not in an interactive session.
#define kOfxMessageSuite "OfxMessageSuite" |