mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-21 15:38:23 -04:00
64 lines
2.5 KiB
C++
64 lines
2.5 KiB
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "Lock.hpp"
|
|
#include "PhoneLockBox.hpp"
|
|
|
|
namespace gui
|
|
{
|
|
constexpr auto timeToUnlock = 10;
|
|
|
|
void PhoneLockBox::buildLockBox(unsigned int pinSize)
|
|
{
|
|
LockWindow->buildImages("pin_lock", "pin_lock_info");
|
|
PhoneLockBaseBox::buildLockBox(pinSize);
|
|
}
|
|
|
|
void PhoneLockBox::setVisibleStateBlocked()
|
|
{
|
|
LockWindow->setText("app_desktop_screen_blocked_info", LockWindow::TextType::Primary);
|
|
LockWindow->setImagesVisible(false, true);
|
|
LockWindow->setBottomBarWidgetsActive(false, true, false);
|
|
}
|
|
|
|
void PhoneLockBox::setVisibleStateInputRequired(InputActionType type)
|
|
{
|
|
LockWindow->pinLabelsBox->setVisible(true);
|
|
LockWindow->setText("app_desktop_screen_enter_passcode_to_unlock", LockWindow::TextType::Primary, true);
|
|
LockWindow->setImagesVisible(true, false);
|
|
LockWindow->setBottomBarWidgetsActive(false, false, true);
|
|
}
|
|
|
|
void PhoneLockBox::setVisibleStateInputInvalid(InputErrorType type, unsigned int value)
|
|
{
|
|
switch (type) {
|
|
case LockBox::InputErrorType::InvalidInput:
|
|
LockWindow->setTitleBar(false, false);
|
|
if (value == 1) {
|
|
LockWindow->setText(
|
|
"app_desktop_screen_wrong_passcode_last_attempt", LockWindow::TextType::Primary, true);
|
|
LockWindow->setText("app_desktop_screen_wrong_passcode_last_attempt_warning",
|
|
LockWindow::TextType::Secondary,
|
|
true,
|
|
{{LockWindow->getToken(LockWindow::Token::Mins), timeToUnlock}});
|
|
}
|
|
else {
|
|
LockWindow->setText("app_desktop_screen_wrong_passcode",
|
|
LockWindow::TextType::Primary,
|
|
true,
|
|
{{LockWindow->getToken(LockWindow::Token::Attempts), static_cast<int>(value)}});
|
|
}
|
|
break;
|
|
|
|
case LockBox::InputErrorType::NewInputConfirmFailed:
|
|
LOG_ERROR("No use case for NewPasscodeConfirmFailed");
|
|
break;
|
|
case LockBox::InputErrorType::UnhandledError:
|
|
LOG_ERROR("No use case for UnhandledError");
|
|
break;
|
|
}
|
|
LockWindow->setImagesVisible(false, true);
|
|
LockWindow->setBottomBarWidgetsActive(false, true, true);
|
|
}
|
|
} // namespace gui
|