xtd 0.2.0
Loading...
Searching...
No Matches
choose_color_flags.h
Go to the documentation of this file.
1
4#pragma once
5#include <cstddef>
6
7#if !defined(CC_RGBINIT)
14constexpr size_t CC_RGBINIT = 0x00000001;
21constexpr size_t CC_FULLOPEN = 0x00000002;
28constexpr size_t CC_PREVENTFULLOPEN = 0x00000004;
35constexpr size_t CC_SHOWHELP = 0x00000008;
42constexpr size_t CC_ENABLEHOOK = 0x00000010;
49constexpr size_t CC_ENABLETEMPLATE = 0x00000020;
56constexpr size_t CC_ENABLETEMPLATEHANDLE = 0x00000040;
63constexpr size_t CC_SOLIDCOLOR = 0x00000080;
70constexpr size_t CC_ANYCOLOR = 0x00000100;
71#endif
78constexpr size_t CC_ALPHACOLOR = 0x00000200;
constexpr size_t CC_PREVENTFULLOPEN
Disables the Define Custom Color button.
Definition choose_color_flags.h:28
constexpr size_t CC_ALPHACOLOR
Causes the dialog box to display alpha colors in the set of basic colors.
Definition choose_color_flags.h:78
constexpr size_t CC_FULLOPEN
Causes the dialog box to display the additional controls that allow the user to create custom colors....
Definition choose_color_flags.h:21
constexpr size_t CC_ENABLETEMPLATEHANDLE
The hInstance member identifies a data block that contains a preloaded dialog box template....
Definition choose_color_flags.h:56
constexpr size_t CC_SOLIDCOLOR
Causes the dialog box to display only solid colors in the set of basic colors.
Definition choose_color_flags.h:63
constexpr size_t CC_ANYCOLOR
Causes the dialog box to display all available colors in the set of basic colors.
Definition choose_color_flags.h:70
constexpr size_t CC_ENABLEHOOK
Enables the hook procedure specified in the lpfnHook member of this structure. This flag is used only...
Definition choose_color_flags.h:42
constexpr size_t CC_RGBINIT
Causes the dialog box to use the color specified in the rgbResult member as the initial color selecti...
Definition choose_color_flags.h:14
constexpr size_t CC_SHOWHELP
Causes the dialog box to display the Help button. The hwndOwner member must specify the window to rec...
Definition choose_color_flags.h:35
constexpr size_t CC_ENABLETEMPLATE
The hInstance and lpTemplateName members specify a dialog box template to use in place of the default...
Definition choose_color_flags.h:49