xtd 0.2.0
Loading...
Searching...
No Matches
power_status.h
Go to the documentation of this file.
1
4#pragma once
5#include "../forms_export.h"
7#include "power_line_status.h"
8#include <xtd/object>
9#include <cstdint>
10
12namespace xtd {
14 namespace forms {
16 class system_information;
18
32 public:
34 power_status() = default;
35 power_status(const power_status&) = default;
36 power_status& operator =(const power_status&) = default;
38
40
46
49 int32 battery_full_life_time() const noexcept;
50
53 float battery_life_percent() const noexcept;
54
57 int32 battery_life_remaining() const noexcept;
58
64
65 private:
66 friend class system_information;
67 power_status(xtd::forms::battery_charge_status battery_charge_status, int32 battery_full_life_time, float battery_life_percent, int32 battery_life_remaining, xtd::forms::power_line_status power_line_status);
68 xtd::forms::battery_charge_status battery_charge_status_ = xtd::forms::battery_charge_status::unknown;
69 int32 battery_full_life_time_ = -1;
70 float battery_life_percent_ = 1.0f;
71 int32 battery_life_remaining_ = -1;
72 xtd::forms::power_line_status power_line_status_ = xtd::forms::power_line_status::unknown;
73 };
74 }
75}
Contains xtd::forms::battery_charge_status enum class.
Indicates current system power status information.
Definition power_status.h:31
xtd::forms::battery_charge_status battery_charge_status() const noexcept
Gets the current battery charge status.
Provides information about the current system environment.
Definition system_information.h:33
Supports all classes in the xtd class hierarchy and provides low-level services to derived classes....
Definition object.h:42
#define forms_export_
Define shared library export.
Definition forms_export.h:13
int32_t int32
Represents a 32-bit signed integer.
Definition int32.h:23
power_line_status
Specifies the system power status.
Definition power_line_status.h:21
battery_charge_status
Defines identifiers that indicate the current battery charge level or charging state information....
Definition battery_charge_status.h:23
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
Contains xtd::forms::power_line_status enum class.