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"
|
2016-04-12 21:31:28 +00:00
|
|
|
#include "mainwindow.h"
|
2016-11-11 13:46:04 +00:00
|
|
|
#include "ui/widgets/checkbox.h"
|
2016-11-15 11:56:49 +00:00
|
|
|
#include "styles/style_boxes.h"
|
2015-03-02 12:34:16 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
void AutoLockBox::prepare() {
|
2017-05-30 15:21:05 +00:00
|
|
|
setTitle(langFactory(lng_passcode_autolock));
|
2015-03-02 12:34:16 +00:00
|
|
|
|
2017-05-30 15:21:05 +00:00
|
|
|
addButton(langFactory(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 };
|
|
|
|
|
|
|
|
auto group = std::make_shared<Ui::RadiobuttonGroup>(Global::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) {
|
2018-11-01 07:10:15 +00:00
|
|
|
_options.emplace_back(this, group, seconds, (seconds % 3600) ? lng_passcode_autolock_minutes(lt_count, seconds / 60) : lng_passcode_autolock_hours(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) {
|
|
|
|
Global::SetAutoLock(seconds);
|
|
|
|
Local::writeUserSettings();
|
|
|
|
Global::RefLocalPasscodeChanged().notify();
|
2015-03-02 12:34:16 +00:00
|
|
|
|
2017-08-04 14:54:32 +00:00
|
|
|
Auth().checkAutoLock();
|
2016-12-13 17:07:56 +00:00
|
|
|
closeBox();
|
2015-03-02 12:34:16 +00:00
|
|
|
}
|