mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-20 15:07:17 -04:00
Added Dialog windows for "configuration successful" "no configuration" and "update OS" for Onboarding. Refactor Dialog window implementation and usage of DialogMetadata in other applications.
24 lines
677 B
C++
24 lines
677 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include "Dialog.hpp"
|
|
|
|
#include <module-apps/application-onboarding/presenter/EULALicenseWindowPresenter.hpp>
|
|
|
|
#include <module-gui/gui/widgets/Label.hpp>
|
|
#include <module-gui/gui/widgets/Text.hpp>
|
|
#include <module-gui/gui/input/InputEvent.hpp>
|
|
|
|
namespace app::onBoarding
|
|
{
|
|
class NoConfigurationDialogWindow : public gui::Dialog
|
|
{
|
|
public:
|
|
explicit NoConfigurationDialogWindow(app::Application *app);
|
|
|
|
bool onInput(const gui::InputEvent &inputEvent) override;
|
|
};
|
|
} // namespace app::onBoarding
|