|
| enum | wxAuiToolBarStyle {
wxAUI_TB_TEXT = 1 << 0
,
wxAUI_TB_NO_TOOLTIPS = 1 << 1
,
wxAUI_TB_NO_AUTORESIZE = 1 << 2
,
wxAUI_TB_GRIPPER = 1 << 3
,
wxAUI_TB_OVERFLOW = 1 << 4
,
wxAUI_TB_VERTICAL = 1 << 5
,
wxAUI_TB_HORZ_LAYOUT = 1 << 6
,
wxAUI_TB_HORIZONTAL = 1 << 7
,
wxAUI_TB_PLAIN_BACKGROUND = 1 << 8
,
wxAUI_TB_VERT_LAYOUT_DOWN = 1 << 9
,
wxAUI_TB_VERT_LAYOUT_UP = 1 << 10
,
wxAUI_TB_HORZ_TEXT = (wxAUI_TB_HORZ_LAYOUT | wxAUI_TB_TEXT)
,
wxAUI_TB_VERT_TEXT_DOWN = (wxAUI_TB_VERT_LAYOUT_DOWN | wxAUI_TB_TEXT)
,
wxAUI_TB_VERT_TEXT_UP = (wxAUI_TB_VERT_LAYOUT_UP | wxAUI_TB_TEXT)
,
wxAUI_TB_ROTATE_ICON_WITH_TEXT = 1 << 11
,
wxAUI_ORIENTATION_MASK = (wxAUI_TB_VERTICAL | wxAUI_TB_HORIZONTAL)
,
wxAUI_TB_DEFAULT_STYLE = 0
} |
| | wxAuiToolBarStyle is part of the wxAUI class framework, used to define the appearance of a wxAuiToolBar. More...
|
| |
| enum | wxAuiToolBarArtSetting {
wxAUI_TBART_SEPARATOR_SIZE = 0
,
wxAUI_TBART_GRIPPER_SIZE = 1
,
wxAUI_TBART_OVERFLOW_SIZE = 2
,
wxAUI_TBART_DROPDOWN_SIZE = 3
} |
| | wxAuiToolBarArtSetting More...
|
| |
| enum | wxAuiToolBarToolTextOrientation {
wxAUI_TBTOOL_TEXT_LEFT = 0
,
wxAUI_TBTOOL_TEXT_RIGHT = 1
,
wxAUI_TBTOOL_TEXT_TOP = 2
,
wxAUI_TBTOOL_TEXT_BOTTOM = 3
} |
| | wxAuiToolBarToolTextOrientation More...
|
| |
| enum class | wxAuiTextDirection {
wxAuiTextDirection::LeftToRight
,
wxAuiTextDirection::TopToBottom
,
wxAuiTextDirection::BottomToTop
} |
| | Direction of the text in wxAuiToolBar items. More...
|
| |