xtd 0.2.0
Loading...
Searching...
No Matches
class_styles.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
13#if !defined(CS_VREDRAW)
20constexpr size_t CS_VREDRAW = 0x00000001;
27constexpr size_t CS_HREDRAW = 0x00000002;
34constexpr size_t CS_DBLCLKS = 0x00000008;
41constexpr size_t CS_OWNDC = 0x00000020;
48constexpr size_t CS_CLASSDC = 0x00000040;
55constexpr size_t CS_PARENTDC = 0x00000080;
62constexpr size_t CS_NOCLOSE = 0x00000200;
69constexpr size_t CS_SAVEBITS = 0x00000800;
76constexpr size_t CS_BYTEALIGNCLIENT = 0x00001000;
83constexpr size_t CS_BYTEALIGNWINDOW = 0x00002000;
90constexpr size_t CS_GLOBALCLASS = 0x00004000;
91
94constexpr size_t CS_IME = 0x00010000;
96
103constexpr size_t CS_DROPSHADOW = 0x00020000;
104#endif
constexpr size_t CS_BYTEALIGNWINDOW
Aligns the window on a byte boundary (in the x direction). This style affects the width of the window...
Definition class_styles.h:83
constexpr size_t CS_BYTEALIGNCLIENT
Aligns the window's client area on a byte boundary (in the x direction). This style affects the width...
Definition class_styles.h:76
constexpr size_t CS_NOCLOSE
Disables Close on the window menu.
Definition class_styles.h:62
constexpr size_t CS_VREDRAW
Redraws the entire window if a movement or size adjustment changes the height of the client area.
Definition class_styles.h:20
constexpr size_t CS_DBLCLKS
Sends a double-click message to the window procedure when the user double-clicks the mouse while the ...
Definition class_styles.h:34
constexpr size_t CS_PARENTDC
Sets the clipping rectangle of the child window to that of the parent window so that the child can dr...
Definition class_styles.h:55
constexpr size_t CS_OWNDC
Allocates a unique device context for each window in the class.
Definition class_styles.h:41
constexpr size_t CS_GLOBALCLASS
Indicates that the window class is an application global class.
Definition class_styles.h:90
constexpr size_t CS_CLASSDC
Allocates one device context to be shared by all windows in the class. Because window classes are pro...
Definition class_styles.h:48
constexpr size_t CS_DROPSHADOW
Enables the drop shadow effect on a window. The effect is turned on and off through SPI_SETDROPSHADOW...
Definition class_styles.h:103
constexpr size_t CS_HREDRAW
Redraws the entire window if a movement or size adjustment changes the width of the client area.
Definition class_styles.h:27
constexpr size_t CS_SAVEBITS
Saves, as a bitmap, the portion of the screen image obscured by a window of this class....
Definition class_styles.h:69