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.
18 lines
479 B
C++
18 lines
479 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"
|
|
|
|
namespace app::onBoarding
|
|
{
|
|
class SkipDialogWindow : public gui::DialogYesNo
|
|
{
|
|
public:
|
|
explicit SkipDialogWindow(app::Application *app);
|
|
|
|
gui::top_bar::Configuration configureTopBar(gui::top_bar::Configuration appConfiguration) override;
|
|
};
|
|
} // namespace app::onBoarding
|