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 {
23 high = 0b1,
25 low = 0b10,
27 critical = 0b100,
29 charging = 0b1000,
31 no_system_battery = 0b10000000,
33 unknown = 0b11111111,
34 };
35 }
36}
37
41};
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition enum_collection.h:19
battery_charge_status
Defines identifiers that indicate the current battery charge level or charging state information....
Definition battery_charge_status.h:21
@ 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:36