xtd 0.2.0
Loading...
Searching...
No Matches
tool_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 TBSTYLE_TOOLTIPS = 0x00000100;
27constexpr size_t TBSTYLE_WRAPABLE = 0x00000200;
34constexpr size_t TBSTYLE_ALTDRAG = 0x00000400;
41constexpr size_t TBSTYLE_FLAT = 0x00000800;
48constexpr size_t TBSTYLE_LIST = 0x00001000;
55constexpr size_t TBSTYLE_CUSTOMERASE = 0x00002000;
62constexpr size_t TBSTYLE_REGISTERDROP = 0x00004000;
69constexpr size_t TBSTYLE_TRANSPARENT = 0x00008000;
70#endif
71
78constexpr size_t TBSTYLE_SHOWTEXT = 0x00020000;
85constexpr size_t TBSTYLE_TEXTRIGHTALIGN = 0x00040000;
92constexpr size_t TBSTYLE_LEFT = 0x00080000;
99constexpr size_t TBSTYLE_BOTTOM = 0x00100000;
106constexpr size_t TBSTYLE_RIGHT = 0x00200000;
113constexpr size_t TBSTYLE_NOSHOWICON = 0x00400000;
120constexpr size_t TBSTYLE_NODIVIDER = 0x00800000;
constexpr size_t TBSTYLE_RIGHT
Specifies that the tool bar is right position. The default value is top.
Definition tool_bar_styles.h:106
constexpr size_t TBSTYLE_NODIVIDER
Specifies that the tool bar divider is no visible.
Definition tool_bar_styles.h:120
constexpr size_t TBSTYLE_SHOWTEXT
Specifies that the tool bar button texts are visible.
Definition tool_bar_styles.h:78
constexpr size_t TBSTYLE_LIST
Creates a flat toolbar with button text to the right of the bitmap. Otherwise, this style is identica...
Definition tool_bar_styles.h:48
constexpr size_t TBSTYLE_LEFT
Specifies that the tool bar is left position. The default value is top.
Definition tool_bar_styles.h:92
constexpr size_t TBSTYLE_NOSHOWICON
Specifies that the tool bar icon is no visible.
Definition tool_bar_styles.h:113
constexpr size_t TBSTYLE_TOOLTIPS
Creates a tooltip control that an application can use to display descriptive text for the buttons in ...
Definition tool_bar_styles.h:20
constexpr size_t TBSTYLE_TRANSPARENT
Creates a transparent toolbar. In a transparent toolbar, the toolbar is transparent but the buttons a...
Definition tool_bar_styles.h:69
constexpr size_t TBSTYLE_WRAPABLE
Creates a toolbar that can have multiple lines of buttons. Toolbar buttons can "wrap" to the next lin...
Definition tool_bar_styles.h:27
constexpr size_t TBSTYLE_TEXTRIGHTALIGN
Specifies that the tool bar button texts are right-aligned. The default value is bottom aligned.
Definition tool_bar_styles.h:85
constexpr size_t TBSTYLE_REGISTERDROP
Generates TBN_GETOBJECT notification codes to request drop target objects when the cursor passes over...
Definition tool_bar_styles.h:62
constexpr size_t TBSTYLE_FLAT
Creates a flat toolbar. In a flat toolbar, both the toolbar and the buttons are transparent and hot-t...
Definition tool_bar_styles.h:41
constexpr size_t TBSTYLE_BOTTOM
Specifies that the tool bar is bottom position. The default value is top.
Definition tool_bar_styles.h:99
constexpr size_t TBSTYLE_ALTDRAG
Allows users to change a toolbar button's position by dragging it while holding down the ALT key....
Definition tool_bar_styles.h:34
constexpr size_t TBSTYLE_CUSTOMERASE
Generates NM_CUSTOMDRAW notification codes when the toolbar processes WM_ERASEBKGND messages.
Definition tool_bar_styles.h:55