xtd - Reference Guide
0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
xtd.forms
include
xtd
forms
loading_indicator_style.h
Go to the documentation of this file.
1
4
#pragma once
5
#include <
xtd/ustring.h
>
6
8
namespace
xtd
{
10
namespace
forms
{
18
enum class
loading_indicator_style
{
20
dots
= 0,
22
standard
,
24
system
,
25
};
26
28
inline
std::ostream& operator<<(std::ostream& os,
loading_indicator_style
value) {
return
os <<
to_string
(value, {{
loading_indicator_style::dots
,
"dots"
}, {
loading_indicator_style::standard
,
"standard"
}, {
loading_indicator_style::system
,
"system"
}});}
29
inline
std::wostream& operator<<(std::wostream& os,
loading_indicator_style
value) {
return
os <<
to_string
(value, {{
loading_indicator_style::dots
, L
"dots"
}, {
loading_indicator_style::standard
, L
"standard"
}, {
loading_indicator_style::system
, L
"system"
}});}
31
}
32
}
xtd::to_string
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
xtd::forms::loading_indicator_style
loading_indicator_style
Specifies the appearance of a loading indicator control.
Definition:
loading_indicator_style.h:18
xtd::forms::loading_indicator_style::system
@ system
The appearance of the control is determined by the user's operating system.
xtd::forms::loading_indicator_style::standard
@ standard
The control appears with standard style.
xtd::forms::loading_indicator_style::dots
@ dots
The control appears with dots style.
xtd::forms::dialog_style::system
@ system
System style dialog.
xtd::forms::dialog_style::standard
@ standard
Standard style dialog.
xtd::forms
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition:
about_box.h:13
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition:
system_report.h:17
ustring.h
Contains xtd::ustring class.
Generated on Sat Jan 28 2023 18:12:26 for xtd - Reference Guide by
Gammasoft
. All rights reserved.