xtd 0.2.0
Loading...
Searching...
No Matches
progress_dialog_flags.h File Reference
#include <cstddef>

Definition

Contains progress dialog flags constants.

Go to the source code of this file.

Variables

constexpr size_t PROGDLG_NORMAL
 Normal progress dialog box behavior.
 
constexpr size_t PROGDLG_MODAL
 The progress dialog box will be modal to the window specified by hwndParent. By default, a progress dialog box is modeless.
 
constexpr size_t PROGDLG_AUTOTIME
 Automatically estimate the remaining time and display the estimate on line 3. If this flag is set, IProgressDialog::SetLine can be used only to display text on lines 1 and 2.
 
constexpr size_t PROGDLG_NOTIME
 Do not show the "time remaining" text.
 
constexpr size_t PROGDLG_NOMINIMIZE
 Do not display a minimize button on the dialog box's caption bar.
 
constexpr size_t PROGDLG_NOPROGRESSBAR
 Do not display a progress bar. Typically, an application can quantitatively determine how much of the operation remains and periodically pass that value to IProgressDialog::SetProgress. The progress dialog box uses this information to update its progress bar. This flag is typically set when the calling application must wait for an operation to finish, but does not have any quantitative information it can use to update the dialog box.
 
constexpr size_t PROGDLG_MARQUEEPROGRESS
 Sets the progress bar to marquee mode. This causes the progress bar to scroll horizontally, similar to a marquee display. Use this when you wish to indicate that progress is being made, but the time required for the operation is unknown.
 
constexpr size_t PROGDLG_NOCANCEL
 Do not display a cancel button. The operation cannot be canceled. Use this only when absolutely necessary.
 
constexpr size_t PROGDLG_NOSKIP
 Do not shows "Skip" button.
 
constexpr size_t PROGDLG_SMOOTH
 Increasing the size of a smooth.
 
constexpr size_t PROGDLG_SMOOTH_REVERSE
 Increasing the size of a reverse smooth.
 
constexpr size_t PROGDLG_ELAPSEDTIME
 Shows the "elapsed time" text.
 
constexpr size_t PROGDLG_ESTIMATEDTIME
 Shows the "estimated time" text.