7namespace hi::inline v1 {
11enum class keyboard_focus_group {
32 all = normal | menu | toolbar,
35[[nodiscard]]
constexpr keyboard_focus_group operator&(keyboard_focus_group
const &lhs, keyboard_focus_group
const &rhs)
noexcept
37 return static_cast<keyboard_focus_group
>(to_underlying(lhs) & to_underlying(rhs));
40[[nodiscard]]
constexpr keyboard_focus_group
operator|(keyboard_focus_group
const &lhs, keyboard_focus_group
const &rhs)
noexcept
42 return static_cast<keyboard_focus_group
>(to_underlying(lhs) | to_underlying(rhs));
45[[nodiscard]]
constexpr bool any(keyboard_focus_group group)
noexcept
47 return static_cast<bool>(to_underlying(group));
constexpr alignment operator|(horizontal_alignment lhs, vertical_alignment rhs) noexcept
Combine vertical and horizontal alignment.
Definition alignment.hpp:200