xtd 0.2.0
Loading...
Searching...
No Matches
progress_dialog_flags.h
Go to the documentation of this file.
1
4#pragma once
5#include <cstddef>
6
7#if !defined(PROGDLG_NORMAL)
14constexpr size_t PROGDLG_NORMAL = 0x00000000;
21constexpr size_t PROGDLG_MODAL = 0x00000001;
28constexpr size_t PROGDLG_AUTOTIME = 0x00000002;
35constexpr size_t PROGDLG_NOTIME = 0x00000004;
42constexpr size_t PROGDLG_NOMINIMIZE = 0x00000008;
49constexpr size_t PROGDLG_NOPROGRESSBAR = 0x00000010;
56constexpr size_t PROGDLG_MARQUEEPROGRESS = 0x00000020;
63constexpr size_t PROGDLG_NOCANCEL = 0x00000040;
64#endif
71constexpr size_t PROGDLG_NOSKIP = 0x00000080;
78constexpr size_t PROGDLG_SMOOTH = 0x00000100;
85constexpr size_t PROGDLG_SMOOTH_REVERSE = 0x00000200;
92constexpr size_t PROGDLG_ELAPSEDTIME = 0x00000400;
99constexpr size_t PROGDLG_ESTIMATEDTIME = 0x00000800;
constexpr size_t PROGDLG_NOTIME
Do not show the "time remaining" text.
Definition progress_dialog_flags.h:35
constexpr size_t PROGDLG_ELAPSEDTIME
Shows the "elapsed time" text.
Definition progress_dialog_flags.h:92
constexpr size_t PROGDLG_SMOOTH_REVERSE
Increasing the size of a reverse smooth.
Definition progress_dialog_flags.h:85
constexpr size_t PROGDLG_MODAL
The progress dialog box will be modal to the window specified by hwndParent. By default,...
Definition progress_dialog_flags.h:21
constexpr size_t PROGDLG_MARQUEEPROGRESS
Sets the progress bar to marquee mode. This causes the progress bar to scroll horizontally,...
Definition progress_dialog_flags.h:56
constexpr size_t PROGDLG_SMOOTH
Increasing the size of a smooth.
Definition progress_dialog_flags.h:78
constexpr size_t PROGDLG_ESTIMATEDTIME
Shows the "estimated time" text.
Definition progress_dialog_flags.h:99
constexpr size_t PROGDLG_NOCANCEL
Do not display a cancel button. The operation cannot be canceled. Use this only when absolutely neces...
Definition progress_dialog_flags.h:63
constexpr size_t PROGDLG_NOMINIMIZE
Do not display a minimize button on the dialog box's caption bar.
Definition progress_dialog_flags.h:42
constexpr size_t PROGDLG_NOSKIP
Do not shows "Skip" button.
Definition progress_dialog_flags.h:71
constexpr size_t PROGDLG_NORMAL
Normal progress dialog box behavior.
Definition progress_dialog_flags.h:14
constexpr size_t PROGDLG_AUTOTIME
Automatically estimate the remaining time and display the estimate on line 3. If this flag is set,...
Definition progress_dialog_flags.h:28
constexpr size_t PROGDLG_NOPROGRESSBAR
Do not display a progress bar. Typically, an application can quantitatively determine how much of the...
Definition progress_dialog_flags.h:49