xtd 0.2.0
Loading...
Searching...
No Matches
battery_charge_status.h
Go to the documentation of this file.
1
4#pragma once
5#include <xtd/enum>
6
8namespace xtd {
10 namespace forms {
25 high = 0b1,
27 low = 0b10,
29 critical = 0b100,
31 charging = 0b1000,
33 no_system_battery = 0b10000000,
35 unknown = 0b11111111,
36 };
37 }
38}
39
43};
std::vector< xtd::collections::generic::key_value_pair< enum_t, xtd::string > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:22
battery_charge_status
Defines identifiers that indicate the current battery charge level or charging state information....
Definition battery_charge_status.h:23
@ charging
Indicates a battery is charging..
@ low
Indicates a low level of battery charge.
@ no_system_battery
Indicates that no battery is present.
@ critical
Indicates a critically low level of battery charge.
@ high
Indicates a high level of battery charge.
@ unknown
Indicates an unknown battery condition.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Provides the registration struct for enumerations.
Definition enum_register.h:38