xtd 0.2.0
Loading...
Searching...
No Matches
status_bar_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(TBSTYLE_TOOLTIPS)
20constexpr size_t SBARS_SIZEGRIP = 0x0100;
27constexpr size_t SBARS_TOOLTIPS = 0x0800;
28#endif
29
36constexpr size_t SBARS_ELLIPSIZE = 0x1000;
43constexpr size_t SBARS_LEFT = 0x2000;
50constexpr size_t SBARS_BOTTOM = 0x4000;
57constexpr size_t SBARS_RIGHT = 0x8000;
constexpr size_t SBARS_RIGHT
Specifies that the status bar is right position. The default value is top.
Definition status_bar_styles.h:57
constexpr size_t SBARS_LEFT
Specifies that the status bar is left position. The default value is top.
Definition status_bar_styles.h:43
constexpr size_t SBARS_BOTTOM
Specifies that the status bar is bottom position. The default value is top.
Definition status_bar_styles.h:50
constexpr size_t SBARS_ELLIPSIZE
Replace the end of the status texts with an ellipsis when the status text widths exceed status bar or...
Definition status_bar_styles.h:36
constexpr size_t SBARS_SIZEGRIP
The status bar control will include a sizing grip at the right end of the status bar....
Definition status_bar_styles.h:20
constexpr size_t SBARS_TOOLTIPS
Use this style to enable tooltips.
Definition status_bar_styles.h:27