Functions | |
void | mdlDialog_completionBarUpdate (MSDialogP dbP, WCharCP msgText, int percentComplete) |
Updates the completion bar window to display the message defined by the messageText parameter and the percent complete defined by the percentComplete parameter. More... | |
void | mdlDialog_completionBarDisplayMessage (MSDialogP dbP, WCharCP msgText) |
Displays a text message defined by the messageText parameter in the message box of the completion bar window. More... | |
void | mdlDialog_completionBarClose (MSDialogP dbP) |
Closes the completion bar window pointed to by the dbP parameter. More... | |
MSDialogP | mdlDialog_completionBarOpen (WCharCP messageText) |
Opens the completion bar window, displays the text defined by the messageText parameter in the window, and returns a pointer to the window to the calling application. More... | |
void mdlDialog_completionBarClose | ( | MSDialogP | dbP | ) |
Closes the completion bar window pointed to by the dbP parameter.
If the message box below the completion bar was opened by sending messages to the completion bar window using the mdlDialog_completionBarDisplayMessage function, then the window is not closed and the user must close the window by pressing the "Close" button.
[in] | dbP | Completion Bar DB Pointer |
void mdlDialog_completionBarDisplayMessage | ( | MSDialogP | dbP, |
WCharCP | msgText | ||
) |
Displays a text message defined by the messageText parameter in the message box of the completion bar window.
[in] | dbP | completion of bar DB pointer |
[in] | msgText | text to display in message window |
MSDialogP mdlDialog_completionBarOpen | ( | WCharCP | messageText | ) |
Opens the completion bar window, displays the text defined by the messageText parameter in the window, and returns a pointer to the window to the calling application.
If the window is already opened, the window is re-initialized and a pointer to the existing window is returned.
[in] | messageText | message text for Dialog Box |
void mdlDialog_completionBarUpdate | ( | MSDialogP | dbP, |
WCharCP | msgText, | ||
int | percentComplete | ||
) |
Updates the completion bar window to display the message defined by the messageText parameter and the percent complete defined by the percentComplete parameter.
The valid values for percentComplete are 0 through 100.
[in] | dbP | completion of bar DB pointer |
[in] | msgText | message text |
[in] | percentComplete | percentage complete on bar |