mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-20 04:54:25 -04:00
27 lines
907 B
C++
27 lines
907 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 <application-desktop/windows/LockWindow.hpp>
|
|
#include <application-desktop/windows/ScreenLockBaseBox.hpp>
|
|
#include <application-settings-new/windows/ChangePasscodeWindow.hpp>
|
|
#include <application-settings-new/data/ChangePasscodeData.hpp>
|
|
#include <application-settings-new/widgets/ChangePasscodeLockHandler.hpp>
|
|
|
|
namespace gui
|
|
{
|
|
class ConfigurePasscodeWindow : public ChangePasscodeWindow
|
|
{
|
|
public:
|
|
explicit ConfigurePasscodeWindow(app::Application *app);
|
|
bool onInput(const InputEvent &inputEvent) override;
|
|
|
|
protected:
|
|
void buildBottomBar() override;
|
|
void buildTitleBar() override;
|
|
void processPasscode() override;
|
|
void setVisibleState() override;
|
|
};
|
|
} /* namespace gui */
|