mirror of
https://github.com/vale981/tdesktop
synced 2025-03-06 18:21:42 -05:00
208 lines
5.8 KiB
C++
208 lines
5.8 KiB
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
|
Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
|
*/
|
|
#include "stdafx.h"
|
|
#include "passcodewidget.h"
|
|
|
|
#include "lang.h"
|
|
#include "localstorage.h"
|
|
#include "mainwindow.h"
|
|
#include "application.h"
|
|
#include "ui/text/text.h"
|
|
#include "ui/buttons/round_button.h"
|
|
#include "styles/style_boxes.h"
|
|
|
|
PasscodeWidget::PasscodeWidget(QWidget *parent) : TWidget(parent)
|
|
, _a_show(animation(this, &PasscodeWidget::step_show))
|
|
, _passcode(this, st::passcodeInput)
|
|
, _submit(this, lang(lng_passcode_submit), st::passcodeSubmit)
|
|
, _logout(this, lang(lng_passcode_logout)) {
|
|
_passcode->setEchoMode(QLineEdit::Password);
|
|
connect(_passcode, SIGNAL(changed()), this, SLOT(onChanged()));
|
|
connect(_passcode, SIGNAL(submitted(bool)), this, SLOT(onSubmit()));
|
|
|
|
_submit->setTextTransform(Ui::RoundButton::TextTransform::ToUpper);
|
|
_submit->setClickedCallback([this] { onSubmit(); });
|
|
_logout->setClickedCallback([] { App::wnd()->onLogout(); });
|
|
|
|
show();
|
|
_passcode->setFocus();
|
|
}
|
|
|
|
void PasscodeWidget::onSubmit() {
|
|
if (_passcode->text().isEmpty()) {
|
|
_passcode->notaBene();
|
|
return;
|
|
}
|
|
if (!passcodeCanTry()) {
|
|
_error = lang(lng_flood_error);
|
|
_passcode->notaBene();
|
|
update();
|
|
return;
|
|
}
|
|
|
|
if (App::main()) {
|
|
if (Local::checkPasscode(_passcode->text().toUtf8())) {
|
|
cSetPasscodeBadTries(0);
|
|
App::wnd()->clearPasscode();
|
|
} else {
|
|
cSetPasscodeBadTries(cPasscodeBadTries() + 1);
|
|
cSetPasscodeLastTry(getms(true));
|
|
onError();
|
|
return;
|
|
}
|
|
} else {
|
|
if (Local::readMap(_passcode->text().toUtf8()) != Local::ReadMapPassNeeded) {
|
|
cSetPasscodeBadTries(0);
|
|
|
|
MTP::start();
|
|
if (MTP::authedId()) {
|
|
App::wnd()->setupMain();
|
|
} else {
|
|
App::wnd()->setupIntro();
|
|
}
|
|
|
|
App::app()->checkMapVersion();
|
|
} else {
|
|
cSetPasscodeBadTries(cPasscodeBadTries() + 1);
|
|
cSetPasscodeLastTry(getms(true));
|
|
onError();
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
void PasscodeWidget::onError() {
|
|
_error = lang(lng_passcode_wrong);
|
|
_passcode->selectAll();
|
|
_passcode->notaBene();
|
|
update();
|
|
}
|
|
|
|
void PasscodeWidget::onChanged() {
|
|
if (!_error.isEmpty()) {
|
|
_error = QString();
|
|
update();
|
|
}
|
|
}
|
|
|
|
void PasscodeWidget::animShow(const QPixmap &bgAnimCache, bool back) {
|
|
if (App::app()) App::app()->mtpPause();
|
|
|
|
(back ? _cacheOver : _cacheUnder) = bgAnimCache;
|
|
|
|
_a_show.stop();
|
|
|
|
showAll();
|
|
(back ? _cacheUnder : _cacheOver) = myGrab(this);
|
|
hideAll();
|
|
|
|
a_coordUnder = back ? anim::ivalue(-st::slideShift, 0) : anim::ivalue(0, -st::slideShift);
|
|
a_coordOver = back ? anim::ivalue(0, width()) : anim::ivalue(width(), 0);
|
|
a_shadow = back ? anim::fvalue(1, 0) : anim::fvalue(0, 1);
|
|
_a_show.start();
|
|
|
|
show();
|
|
}
|
|
|
|
void PasscodeWidget::step_show(float64 ms, bool timer) {
|
|
float64 dt = ms / st::slideDuration;
|
|
if (dt >= 1) {
|
|
_a_show.stop();
|
|
|
|
a_coordUnder.finish();
|
|
a_coordOver.finish();
|
|
a_shadow.finish();
|
|
|
|
_cacheUnder = _cacheOver = QPixmap();
|
|
|
|
showAll();
|
|
if (App::wnd()) App::wnd()->setInnerFocus();
|
|
|
|
if (App::app()) App::app()->mtpUnpause();
|
|
|
|
Ui::showChatsList();
|
|
} else {
|
|
a_coordUnder.update(dt, st::slideFunction);
|
|
a_coordOver.update(dt, st::slideFunction);
|
|
a_shadow.update(dt, st::slideFunction);
|
|
}
|
|
if (timer) update();
|
|
}
|
|
|
|
void PasscodeWidget::stop_show() {
|
|
_a_show.stop();
|
|
}
|
|
|
|
void PasscodeWidget::showAll() {
|
|
_passcode->show();
|
|
_submit->show();
|
|
_logout->show();
|
|
}
|
|
|
|
void PasscodeWidget::hideAll() {
|
|
_passcode->hide();
|
|
_submit->hide();
|
|
_logout->hide();
|
|
}
|
|
|
|
void PasscodeWidget::paintEvent(QPaintEvent *e) {
|
|
bool trivial = (rect() == e->rect());
|
|
setMouseTracking(true);
|
|
|
|
Painter p(this);
|
|
if (!trivial) {
|
|
p.setClipRect(e->rect());
|
|
}
|
|
|
|
if (_a_show.animating()) {
|
|
if (a_coordOver.current() > 0) {
|
|
p.drawPixmap(QRect(0, 0, a_coordOver.current(), height()), _cacheUnder, QRect(-a_coordUnder.current() * cRetinaFactor(), 0, a_coordOver.current() * cRetinaFactor(), height() * cRetinaFactor()));
|
|
p.setOpacity(a_shadow.current());
|
|
p.fillRect(0, 0, a_coordOver.current(), height(), st::slideFadeOutBg);
|
|
p.setOpacity(1);
|
|
}
|
|
p.drawPixmap(a_coordOver.current(), 0, _cacheOver);
|
|
p.setOpacity(a_shadow.current());
|
|
st::slideShadow.fill(p, QRect(a_coordOver.current() - st::slideShadow.width(), 0, st::slideShadow.width(), height()));
|
|
} else {
|
|
p.fillRect(rect(), st::windowBg);
|
|
|
|
p.setFont(st::passcodeHeaderFont);
|
|
p.setPen(st::windowTextFg);
|
|
p.drawText(QRect(0, _passcode->y() - st::passcodeHeaderHeight, width(), st::passcodeHeaderHeight), lang(lng_passcode_enter), style::al_center);
|
|
|
|
if (!_error.isEmpty()) {
|
|
p.setFont(st::boxTextFont);
|
|
p.setPen(st::boxTextFgError);
|
|
p.drawText(QRect(0, _passcode->y() + _passcode->height(), width(), st::passcodeSubmitSkip), _error, style::al_center);
|
|
}
|
|
}
|
|
}
|
|
|
|
void PasscodeWidget::resizeEvent(QResizeEvent *e) {
|
|
_passcode->move((width() - _passcode->width()) / 2, (height() / 3));
|
|
_submit->move(_passcode->x(), _passcode->y() + _passcode->height() + st::passcodeSubmitSkip);
|
|
_logout->move(_passcode->x() + (_passcode->width() - _logout->width()) / 2, _submit->y() + _submit->height() + st::linkFont->ascent);
|
|
}
|
|
|
|
void PasscodeWidget::setInnerFocus() {
|
|
_passcode->setFocus();
|
|
}
|