xtd 0.2.0
Loading...
Searching...
No Matches
dialog_box_identifiers.h
Go to the documentation of this file.
1
4#pragma once
6#if !defined(__XTD_FORMS_NATIVE_LIBRARY__)
7#error "Do not include this file: Internal use only"
8#endif
10
11#include <cstddef>
12
18constexpr size_t IDNONE = 0;
19#if !defined(IDOK)
25constexpr size_t IDOK = 1;
31constexpr size_t IDCANCEL = 2;
37constexpr size_t IDABORT = 3;
43constexpr size_t IDRETRY = 4;
49constexpr size_t IDIGNORE = 5;
55constexpr size_t IDYES = 6;
61constexpr size_t IDNO = 7;
67constexpr size_t IDCLOSE = 8;
73constexpr size_t IDHELP = 9;
79constexpr size_t IDTRYAGAIN = 10;
85constexpr size_t IDCONTINUE = 11;
86#endif
87
88#if !defined(IDTIMEOUT)
94constexpr size_t IDTIMEOUT = 32000;
95#endif
constexpr size_t IDCLOSE
The Close button was selected.
Definition dialog_box_identifiers.h:67
constexpr size_t IDCANCEL
The Cancel button was selected.
Definition dialog_box_identifiers.h:31
constexpr size_t IDIGNORE
The Ignore button was selected.
Definition dialog_box_identifiers.h:49
constexpr size_t IDYES
The Yes button was selected.
Definition dialog_box_identifiers.h:55
constexpr size_t IDHELP
The Help button was selected.
Definition dialog_box_identifiers.h:73
constexpr size_t IDNO
The No button was selected.
Definition dialog_box_identifiers.h:61
constexpr size_t IDNONE
No button was selected.
Definition dialog_box_identifiers.h:18
constexpr size_t IDTIMEOUT
The bWait parameter was TRUE and the time-out interval elapsed.
Definition dialog_box_identifiers.h:94
constexpr size_t IDABORT
The Abort button was selected.
Definition dialog_box_identifiers.h:37
constexpr size_t IDOK
The OK button was selected.
Definition dialog_box_identifiers.h:25
constexpr size_t IDRETRY
The Retry button was selected.
Definition dialog_box_identifiers.h:43
constexpr size_t IDTRYAGAIN
The Try button was selected.
Definition dialog_box_identifiers.h:79
constexpr size_t IDCONTINUE
The Continue button was selected.
Definition dialog_box_identifiers.h:85