xtd 0.2.0
Loading...
Searching...
No Matches
arranged_direction_window.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(ARW_BOTTOMLEFT)
20constexpr size_t ARW_BOTTOMLEFT = 0x0000L;
27constexpr size_t ARW_BOTTOMRIGHT = 0x0001L;
34constexpr size_t ARW_TOPLEFT = 0x0002L;
41constexpr size_t ARW_TOPRIGHT = 0x0003L;
42
49constexpr size_t ARW_STARTMASK = 0x0003L;
56constexpr size_t ARW_STARTRIGHT = 0x0001L;
63constexpr size_t ARW_STARTTOP = 0x0002L;
64
71constexpr size_t ARW_LEFT = 0x0000;
78constexpr size_t ARW_RIGHT = 0x0000L;
85constexpr size_t ARW_UP = 0x0004L;
92constexpr size_t ARW_DOWN = 0x0004L;
99constexpr size_t ARW_HIDE = 0x0008L;
100#endif
101
constexpr size_t ARW_STARTRIGHT
Equivalent to ARW_BOTTOMRIGHT.
Definition arranged_direction_window.h:56
constexpr size_t ARW_RIGHT
Arrange right (valid with ARW_BOTTOMLEFT and ARW_TOPLEFT only).
Definition arranged_direction_window.h:78
constexpr size_t ARW_STARTTOP
Equivalent to ARW_TOPLEFT.
Definition arranged_direction_window.h:63
constexpr size_t ARW_UP
Arrange up (valid with ARW_BOTTOMLEFT and ARW_BOTTOMRIGHT only).
Definition arranged_direction_window.h:85
constexpr size_t ARW_BOTTOMLEFT
Start at the lower-left corner of the work area.
Definition arranged_direction_window.h:20
constexpr size_t ARW_TOPLEFT
Start at the upper-left corner of the work area.
Definition arranged_direction_window.h:34
constexpr size_t ARW_LEFT
Arrange left (valid with ARW_BOTTOMRIGHT and ARW_TOPRIGHT only).
Definition arranged_direction_window.h:71
constexpr size_t ARW_TOPRIGHT
Start at the upper-right corner of the work area.
Definition arranged_direction_window.h:41
constexpr size_t ARW_HIDE
Hide minimized windows by moving them off the visible area of the screen.
Definition arranged_direction_window.h:99
constexpr size_t ARW_DOWN
Arrange down (valid with ARW_TOPLEFT and ARW_TOPRIGHT only).
Definition arranged_direction_window.h:92
constexpr size_t ARW_BOTTOMRIGHT
Start at the lower-right corner of the work area.
Definition arranged_direction_window.h:27
constexpr size_t ARW_STARTMASK
Equivalent to ARW_TOPRIGHT.
Definition arranged_direction_window.h:49