mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-05-24 16:47:00 -04:00
20 lines
565 B
C++
20 lines
565 B
C++
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <AppWindow.hpp>
|
|
|
|
namespace gui
|
|
{
|
|
class ChargingBatteryWindow : public AppWindow
|
|
{
|
|
public:
|
|
ChargingBatteryWindow(app::ApplicationCommon *app, const std::string &name);
|
|
void rebuild() override;
|
|
void buildInterface() override;
|
|
void destroyInterface() override;
|
|
bool onInput(const InputEvent &inputEvent) override;
|
|
};
|
|
} /* namespace gui */
|