xtd 0.2.0
Loading...
Searching...
No Matches
progress dialog flags

Definition

progress dialog flags definitions.

Warning
Internal use only

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.
 

Variable Documentation

◆ PROGDLG_NORMAL

constexpr size_t PROGDLG_NORMAL
constexpr

#include <xtd.forms.native/include/xtd/forms/progress_dialog_flags.h>

Normal progress dialog box behavior.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ PROGDLG_MODAL

constexpr size_t PROGDLG_MODAL
constexpr

#include <xtd.forms.native/include/xtd/forms/progress_dialog_flags.h>

The progress dialog box will be modal to the window specified by hwndParent. By default, a progress dialog box is modeless.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ PROGDLG_AUTOTIME

constexpr size_t PROGDLG_AUTOTIME
constexpr

#include <xtd.forms.native/include/xtd/forms/progress_dialog_flags.h>

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.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ PROGDLG_NOTIME

constexpr size_t PROGDLG_NOTIME
constexpr

#include <xtd.forms.native/include/xtd/forms/progress_dialog_flags.h>

Do not show the "time remaining" text.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ PROGDLG_NOMINIMIZE

constexpr size_t PROGDLG_NOMINIMIZE
constexpr

#include <xtd.forms.native/include/xtd/forms/progress_dialog_flags.h>

Do not display a minimize button on the dialog box's caption bar.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ PROGDLG_NOPROGRESSBAR

constexpr size_t PROGDLG_NOPROGRESSBAR
constexpr

#include <xtd.forms.native/include/xtd/forms/progress_dialog_flags.h>

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.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ PROGDLG_MARQUEEPROGRESS

constexpr size_t PROGDLG_MARQUEEPROGRESS
constexpr

#include <xtd.forms.native/include/xtd/forms/progress_dialog_flags.h>

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.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ PROGDLG_NOCANCEL

constexpr size_t PROGDLG_NOCANCEL
constexpr

#include <xtd.forms.native/include/xtd/forms/progress_dialog_flags.h>

Do not display a cancel button. The operation cannot be canceled. Use this only when absolutely necessary.

Library
xtd.forms.native
Remarks
For more info see https://docs.microsoft.com .
Warning
Internal use only

◆ PROGDLG_NOSKIP

constexpr size_t PROGDLG_NOSKIP
constexpr

#include <xtd.forms.native/include/xtd/forms/progress_dialog_flags.h>

Do not shows "Skip" button.

Library
xtd.forms.native
Remarks
Added specifically for xtd.
Warning
Internal use only

◆ PROGDLG_SMOOTH

constexpr size_t PROGDLG_SMOOTH
constexpr

#include <xtd.forms.native/include/xtd/forms/progress_dialog_flags.h>

Increasing the size of a smooth.

Library
xtd.forms.native
Remarks
Added specifically for xtd.
Warning
Internal use only

◆ PROGDLG_SMOOTH_REVERSE

constexpr size_t PROGDLG_SMOOTH_REVERSE
constexpr

#include <xtd.forms.native/include/xtd/forms/progress_dialog_flags.h>

Increasing the size of a reverse smooth.

Library
xtd.forms.native
Remarks
Added specifically for xtd.
Warning
Internal use only

◆ PROGDLG_ELAPSEDTIME

constexpr size_t PROGDLG_ELAPSEDTIME
constexpr

#include <xtd.forms.native/include/xtd/forms/progress_dialog_flags.h>

Shows the "elapsed time" text.

Library
xtd.forms.native
Remarks
Added specifically for xtd.
Warning
Internal use only

◆ PROGDLG_ESTIMATEDTIME

constexpr size_t PROGDLG_ESTIMATEDTIME
constexpr

#include <xtd.forms.native/include/xtd/forms/progress_dialog_flags.h>

Shows the "estimated time" text.

Library
xtd.forms.native
Remarks
Added specifically for xtd.
Warning
Internal use only