mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-02-06 20:33:00 -05:00
23 lines
624 B
C++
23 lines
624 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 TestPopupWindow : public AppWindow
|
|
{
|
|
public:
|
|
TestPopupWindow(app::ApplicationCommon *app, const std::string &name);
|
|
|
|
void onBeforeShow(ShowMode mode, SwitchData *data) override;
|
|
bool onInput(const InputEvent &inputEvent) override;
|
|
void rebuild() override;
|
|
void buildInterface() override;
|
|
void destroyInterface() override{};
|
|
};
|
|
|
|
}; // namespace gui
|