mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-02 02:48:51 -05:00
This is not the best fix, as it most probably should be written differently in the first place
23 lines
653 B
C++
23 lines
653 B
C++
// Copyright (c) 2017-2022, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
#include <application-settings/windows/BaseSettingsWindow.hpp>
|
|
|
|
namespace gui
|
|
{
|
|
class SecurityMainWindow : public BaseSettingsWindow
|
|
{
|
|
public:
|
|
explicit SecurityMainWindow(app::ApplicationCommon *app);
|
|
|
|
private:
|
|
auto buildOptionsList() -> std::list<Option> override;
|
|
void onBeforeShow(ShowMode mode, SwitchData *data) override;
|
|
|
|
bool isPhoneLockEnabled;
|
|
OptionWindowDestroyer destroyer = OptionWindowDestroyer(*this);
|
|
};
|
|
} // namespace gui
|