mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-20 23:17:35 -04:00
Single api to rule i18n all calls to localistaion in cpp files unified cut off ass many dependencies in i18n header as possible
40 lines
1.3 KiB
C++
40 lines
1.3 KiB
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "BatteryText.hpp"
|
|
#include "Label.hpp"
|
|
#include <Utils.hpp>
|
|
#include "Style.hpp"
|
|
|
|
namespace gui::top_bar
|
|
{
|
|
BatteryText::BatteryText(Item *parent, uint32_t x, uint32_t y, uint32_t w, uint32_t h)
|
|
: BatteryBase(parent, x, y, w, h)
|
|
{
|
|
label = new Label(this, 0, 0, 0, 0);
|
|
label->setFilled(false);
|
|
label->setBorderColor(gui::ColorNoColor);
|
|
label->setFont(style::header::status_bar::battery::font);
|
|
label->setAlignment(gui::Alignment(gui::Alignment::Horizontal::Right, gui::Alignment::Vertical::Bottom));
|
|
|
|
setMinimumSize(style::header::status_bar::battery::maxX, style::header::status_bar::height);
|
|
label->setMaximumSize(style::header::status_bar::battery::maxX, style::header::status_bar::height);
|
|
}
|
|
|
|
void BatteryText::showBatteryLevel(std::uint32_t percentage)
|
|
{
|
|
label->setText(utils::to_string(percentage) + " %");
|
|
}
|
|
|
|
void BatteryText::showBatteryCharging()
|
|
{
|
|
label->setText(utils::translate("topbar_battery_charging"));
|
|
}
|
|
|
|
void BatteryText::showBatteryChargingDone()
|
|
{
|
|
label->setText(utils::translate("topbar_battery_plugged"));
|
|
}
|
|
|
|
} // namespace gui::top_bar
|