xtd - Reference Guide  0.1.2
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
radio_button_state.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/ustring.h>
6
8namespace xtd {
10 namespace forms {
12 namespace visual_styles {
20 enum class radio_button_state {
37 };
38
40 inline std::ostream& operator<<(std::ostream& os, radio_button_state value) {return os << to_string(value, {{radio_button_state::unchecked_normal, "unchecked_normal"}, {radio_button_state::unchecked_hot, "unchecked_hot"}, {radio_button_state::unchecked_pressed, "unchecked_pressed"}, {radio_button_state::unchecked_disabled, "unchecked_disabled"}, {radio_button_state::checked_normal, "checked_normal"}, {radio_button_state::checked_hot, "checked_hot"}, {radio_button_state::checked_pressed, "checked_pressed"}, {radio_button_state::checked_disabled, "checked_disabled"}});}
41 inline std::wostream& operator<<(std::wostream& os, radio_button_state value) {return os << to_string(value, {{radio_button_state::unchecked_normal, L"unchecked_normal"}, {radio_button_state::unchecked_hot, L"unchecked_hot"}, {radio_button_state::unchecked_pressed, L"unchecked_pressed"}, {radio_button_state::unchecked_disabled, L"unchecked_disabled"}, {radio_button_state::checked_normal, L"checked_normal"}, {radio_button_state::checked_hot, L"checked_hot"}, {radio_button_state::checked_pressed, L"checked_pressed"}, {radio_button_state::checked_disabled, L"checked_disabled"}});}
43 }
44 }
45}
std::string to_string(const value_t &value, const std::string &fmt, const std::locale &loc)
Convert a specified value into a string with specified format and locale.
Definition to_string.h:37
radio_button_state
Specifies the visual state of a radio button that is drawn with visual styles.
Definition radio_button_state.h:20
@ unchecked_normal
The radio button is unchecked.
@ checked_normal
The radio button is checked.
@ checked_disabled
The radio button is checked and disabled.
@ unchecked_pressed
The radio button is unchecked and pressed.
@ checked_hot
The radio button is checked and hot.
@ unchecked_hot
The radio button is unchecked and hot.
@ unchecked_disabled
The radio button is unchecked and disabled.
@ checked_pressed
The radio button is checked and pressed.
@ unchecked_normal
The check box is unchecked.
@ checked_normal
The check box is checked.
@ checked_disabled
The check box is checked and disabled.
@ unchecked_pressed
The check box is unchecked and pressed.
@ checked_hot
The check box is checked and hot.
@ unchecked_hot
The check box is unchecked and hot.
@ unchecked_disabled
The check box is unchecked and disabled.
@ checked_pressed
The check box is checked and pressed.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition about_box.h:13
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition system_report.h:17
Contains xtd::ustring class.