2015-03-02 12:34:16 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2015-03-02 12:34:16 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2015-03-02 12:34:16 +00:00
|
|
|
*/
|
2018-12-06 13:27:32 +00:00
|
|
|
#include "boxes/auto_lock_box.h"
|
2015-03-02 12:34:16 +00:00
|
|
|
|
2017-04-13 08:27:10 +00:00
|
|
|
#include "lang/lang_keys.h"
|
2017-03-04 10:23:56 +00:00
|
|
|
#include "storage/localstorage.h"
|
2020-06-08 15:56:52 +00:00
|
|
|
#include "core/application.h"
|
2016-04-12 21:31:28 +00:00
|
|
|
#include "mainwindow.h"
|
2016-11-11 13:46:04 +00:00
|
|
|
#include "ui/widgets/checkbox.h"
|
2019-09-13 06:06:02 +00:00
|
|
|
#include "facades.h"
|
2019-09-18 11:19:05 +00:00
|
|
|
#include "styles/style_layers.h"
|
2016-11-15 11:56:49 +00:00
|
|
|
#include "styles/style_boxes.h"
|
2015-03-02 12:34:16 +00:00
|
|
|
|
2019-07-24 14:00:30 +00:00
|
|
|
AutoLockBox::AutoLockBox(QWidget*, not_null<Main::Session*> session)
|
|
|
|
: _session(session) {
|
|
|
|
}
|
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
void AutoLockBox::prepare() {
|
2019-06-18 15:00:55 +00:00
|
|
|
setTitle(tr::lng_passcode_autolock());
|
2015-03-02 12:34:16 +00:00
|
|
|
|
2019-06-18 16:53:27 +00:00
|
|
|
addButton(tr::lng_box_ok(), [this] { closeBox(); });
|
2015-03-02 12:34:16 +00:00
|
|
|
|
2017-03-18 21:06:10 +00:00
|
|
|
auto options = { 60, 300, 3600, 18000 };
|
|
|
|
|
2020-06-18 18:04:16 +00:00
|
|
|
auto group = std::make_shared<Ui::RadiobuttonGroup>(
|
|
|
|
Core::App().settings().autoLock());
|
2018-11-01 07:10:15 +00:00
|
|
|
auto y = st::boxOptionListPadding.top() + st::autolockButton.margin.top();
|
2017-03-18 21:06:10 +00:00
|
|
|
auto count = int(options.size());
|
|
|
|
_options.reserve(count);
|
|
|
|
for (auto seconds : options) {
|
2019-06-19 16:39:25 +00:00
|
|
|
_options.emplace_back(this, group, seconds, (seconds % 3600) ? tr::lng_passcode_autolock_minutes(tr::now, lt_count, seconds / 60) : tr::lng_passcode_autolock_hours(tr::now, lt_count, seconds / 3600), st::autolockButton);
|
2017-07-04 13:59:00 +00:00
|
|
|
_options.back()->moveToLeft(st::boxPadding.left() + st::boxOptionListPadding.left(), y);
|
2016-12-13 17:07:56 +00:00
|
|
|
y += _options.back()->heightNoMargins() + st::boxOptionListSkip;
|
2015-03-02 12:34:16 +00:00
|
|
|
}
|
2017-03-18 21:06:10 +00:00
|
|
|
group->setChangedCallback([this](int value) { durationChanged(value); });
|
2015-03-02 12:34:16 +00:00
|
|
|
|
2018-11-01 07:10:15 +00:00
|
|
|
setDimensions(st::autolockWidth, st::boxOptionListPadding.top() + count * _options.back()->heightNoMargins() + (count - 1) * st::boxOptionListSkip + st::boxOptionListPadding.bottom() + st::boxPadding.bottom());
|
2015-03-02 12:34:16 +00:00
|
|
|
}
|
|
|
|
|
2017-03-18 21:06:10 +00:00
|
|
|
void AutoLockBox::durationChanged(int seconds) {
|
2020-06-18 18:04:16 +00:00
|
|
|
Core::App().settings().setAutoLock(seconds);
|
|
|
|
Core::App().saveSettingsDelayed();
|
2017-03-18 21:06:10 +00:00
|
|
|
Global::RefLocalPasscodeChanged().notify();
|
2015-03-02 12:34:16 +00:00
|
|
|
|
2020-06-08 15:56:52 +00:00
|
|
|
Core::App().checkAutoLock();
|
2016-12-13 17:07:56 +00:00
|
|
|
closeBox();
|
2015-03-02 12:34:16 +00:00
|
|
|
}
|