xtd 0.2.0
Loading...
Searching...
No Matches
button_states.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(BST_UNCHECKED)
20constexpr size_t BST_UNCHECKED = 0x0000;
27constexpr size_t BST_CHECKED = 0x0001;
34constexpr size_t BST_INDETERMINATE = 0x0002;
42constexpr size_t BST_PUSHED = 0x0004;
49constexpr size_t BST_FOCUS = 0x0008;
50
57constexpr size_t BST_DROPDOWNPUSHED = 0x0400;
58#endif
constexpr size_t BST_DROPDOWNPUSHED
he button is in the drop-down state. Applies only if the button has the TBSTYLE_DROPDOWN style.
Definition button_states.h:57
constexpr size_t BST_PUSHED
The button is being shown in the pushed state.
Definition button_states.h:42
constexpr size_t BST_INDETERMINATE
Sets the button state to grayed, indicating an indeterminate state. Use this value only if the button...
Definition button_states.h:34
constexpr size_t BST_UNCHECKED
Sets the button state to cleared.
Definition button_states.h:20
constexpr size_t BST_CHECKED
Sets the button state to checked.
Definition button_states.h:27
constexpr size_t BST_FOCUS
The button has the keyboard focus.
Definition button_states.h:49