2018-09-05 19:05:49 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
|
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
|
|
*/
|
|
|
|
#include "settings/settings_main.h"
|
|
|
|
|
|
|
|
#include "settings/settings_common.h"
|
2018-09-06 13:48:01 +00:00
|
|
|
#include "settings/settings_codes.h"
|
2018-10-07 11:42:09 +00:00
|
|
|
#include "settings/settings_chat.h"
|
2022-04-01 11:53:23 +00:00
|
|
|
#include "settings/settings_information.h"
|
|
|
|
#include "settings/settings_notifications.h"
|
|
|
|
#include "settings/settings_privacy_security.h"
|
|
|
|
#include "settings/settings_advanced.h"
|
|
|
|
#include "settings/settings_folders.h"
|
|
|
|
#include "settings/settings_calls.h"
|
2022-05-18 18:53:25 +00:00
|
|
|
#include "settings/settings_premium.h"
|
2018-09-05 21:01:50 +00:00
|
|
|
#include "boxes/language_box.h"
|
2022-02-08 17:25:24 +00:00
|
|
|
#include "boxes/username_box.h"
|
2021-10-18 21:36:55 +00:00
|
|
|
#include "ui/boxes/confirm_box.h"
|
2018-09-06 10:18:49 +00:00
|
|
|
#include "boxes/about_box.h"
|
2018-09-05 19:05:49 +00:00
|
|
|
#include "ui/wrap/vertical_layout.h"
|
2020-03-24 07:26:08 +00:00
|
|
|
#include "ui/wrap/slide_wrap.h"
|
2022-02-08 17:25:24 +00:00
|
|
|
#include "ui/wrap/padding_wrap.h"
|
2018-09-05 21:01:50 +00:00
|
|
|
#include "ui/widgets/labels.h"
|
|
|
|
#include "ui/widgets/discrete_sliders.h"
|
2019-11-02 17:06:47 +00:00
|
|
|
#include "ui/widgets/buttons.h"
|
2022-02-08 17:25:24 +00:00
|
|
|
#include "ui/text/text_utilities.h"
|
|
|
|
#include "ui/toast/toast.h"
|
|
|
|
#include "ui/special_buttons.h"
|
2018-09-05 19:39:35 +00:00
|
|
|
#include "info/profile/info_profile_cover.h"
|
2019-01-04 11:09:48 +00:00
|
|
|
#include "data/data_user.h"
|
2019-01-18 12:27:37 +00:00
|
|
|
#include "data/data_session.h"
|
2019-09-03 15:24:51 +00:00
|
|
|
#include "data/data_cloud_themes.h"
|
2020-03-18 10:07:11 +00:00
|
|
|
#include "data/data_chat_filters.h"
|
2022-06-14 05:00:47 +00:00
|
|
|
#include "data/data_peer_values.h" // Data::AmPremiumValue
|
2018-09-05 19:05:49 +00:00
|
|
|
#include "lang/lang_keys.h"
|
2020-09-30 09:11:44 +00:00
|
|
|
#include "lang/lang_instance.h"
|
2018-09-05 21:01:50 +00:00
|
|
|
#include "storage/localstorage.h"
|
2019-07-24 11:45:24 +00:00
|
|
|
#include "main/main_session.h"
|
2020-06-18 18:04:16 +00:00
|
|
|
#include "main/main_session_settings.h"
|
2020-03-18 10:07:11 +00:00
|
|
|
#include "main/main_account.h"
|
|
|
|
#include "main/main_app_config.h"
|
2018-09-06 10:18:49 +00:00
|
|
|
#include "apiwrap.h"
|
2022-02-08 17:25:24 +00:00
|
|
|
#include "api/api_peer_photo.h"
|
2021-08-02 19:06:33 +00:00
|
|
|
#include "api/api_cloud_password.h"
|
2020-07-03 16:53:24 +00:00
|
|
|
#include "api/api_global_privacy.h"
|
2021-08-02 19:06:33 +00:00
|
|
|
#include "api/api_sensitive_content.h"
|
2022-05-31 17:11:59 +00:00
|
|
|
#include "api/api_premium.h"
|
2022-02-08 17:25:24 +00:00
|
|
|
#include "info/profile/info_profile_values.h"
|
2021-06-13 07:37:52 +00:00
|
|
|
#include "window/window_controller.h"
|
2019-07-24 11:13:51 +00:00
|
|
|
#include "window/window_session_controller.h"
|
2020-10-28 21:29:48 +00:00
|
|
|
#include "core/click_handler_types.h"
|
2022-01-27 12:48:51 +00:00
|
|
|
#include "core/application.h"
|
2019-09-26 10:55:35 +00:00
|
|
|
#include "base/call_delayed.h"
|
2022-02-08 17:25:24 +00:00
|
|
|
#include "base/platform/base_platform_info.h"
|
2019-09-13 06:06:02 +00:00
|
|
|
#include "facades.h"
|
2018-09-05 19:05:49 +00:00
|
|
|
#include "styles/style_settings.h"
|
2022-02-08 17:25:24 +00:00
|
|
|
#include "styles/style_boxes.h"
|
|
|
|
#include "styles/style_info.h"
|
|
|
|
|
|
|
|
#include <QtGui/QGuiApplication>
|
|
|
|
#include <QtGui/QClipboard>
|
2018-09-05 19:05:49 +00:00
|
|
|
|
|
|
|
namespace Settings {
|
2022-02-08 17:25:24 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
class Cover final : public Ui::FixedHeightWidget {
|
|
|
|
public:
|
|
|
|
Cover(
|
|
|
|
QWidget *parent,
|
|
|
|
not_null<Window::SessionController*> controller,
|
|
|
|
not_null<UserData*> user);
|
|
|
|
~Cover();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void setupChildGeometry();
|
|
|
|
void initViewers();
|
|
|
|
void refreshStatusText();
|
|
|
|
void refreshNameGeometry(int newWidth);
|
|
|
|
void refreshPhoneGeometry(int newWidth);
|
|
|
|
void refreshUsernameGeometry(int newWidth);
|
|
|
|
|
|
|
|
const not_null<Window::SessionController*> _controller;
|
|
|
|
const not_null<UserData*> _user;
|
|
|
|
|
|
|
|
object_ptr<Ui::UserpicButton> _userpic;
|
|
|
|
object_ptr<Ui::FlatLabel> _name = { nullptr };
|
|
|
|
object_ptr<Ui::FlatLabel> _phone = { nullptr };
|
|
|
|
object_ptr<Ui::FlatLabel> _username = { nullptr };
|
2022-06-14 05:00:47 +00:00
|
|
|
object_ptr<Ui::RpWidget> _badge = { nullptr };
|
2022-02-08 17:25:24 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
Cover::Cover(
|
|
|
|
QWidget *parent,
|
|
|
|
not_null<Window::SessionController*> controller,
|
|
|
|
not_null<UserData*> user)
|
|
|
|
: FixedHeightWidget(
|
|
|
|
parent,
|
|
|
|
st::settingsPhotoTop
|
|
|
|
+ st::infoProfilePhoto.size.height()
|
|
|
|
+ st::settingsPhotoBottom)
|
|
|
|
, _controller(controller)
|
|
|
|
, _user(user)
|
|
|
|
, _userpic(
|
|
|
|
this,
|
|
|
|
controller,
|
|
|
|
_user,
|
|
|
|
Ui::UserpicButton::Role::OpenPhoto,
|
|
|
|
st::infoProfilePhoto)
|
|
|
|
, _name(this, st::infoProfileNameLabel)
|
|
|
|
, _phone(this, st::defaultFlatLabel)
|
|
|
|
, _username(this, st::infoProfileMegagroupStatusLabel) {
|
|
|
|
_user->updateFull();
|
|
|
|
|
|
|
|
_name->setSelectable(true);
|
|
|
|
_name->setContextCopyText(tr::lng_profile_copy_fullname(tr::now));
|
|
|
|
|
2022-05-10 04:17:46 +00:00
|
|
|
_phone->setSelectable(true);
|
|
|
|
_phone->setContextCopyText(tr::lng_profile_copy_phone(tr::now));
|
|
|
|
|
2022-02-08 17:25:24 +00:00
|
|
|
initViewers();
|
|
|
|
setupChildGeometry();
|
|
|
|
|
|
|
|
_userpic->switchChangePhotoOverlay(_user->isSelf());
|
|
|
|
_userpic->uploadPhotoRequests(
|
|
|
|
) | rpl::start_with_next([=] {
|
|
|
|
_user->session().api().peerPhoto().upload(
|
|
|
|
_user,
|
|
|
|
_userpic->takeResultImage());
|
|
|
|
}, _userpic->lifetime());
|
2022-06-14 05:00:47 +00:00
|
|
|
|
|
|
|
Data::AmPremiumValue(
|
|
|
|
&controller->session()
|
|
|
|
) | rpl::start_with_next([=](bool hasPremium) {
|
|
|
|
if (hasPremium && !_badge) {
|
|
|
|
const auto icon = &st::infoPremiumStar;
|
|
|
|
_badge.create(this);
|
|
|
|
_badge->show();
|
|
|
|
_badge->resize(icon->size());
|
|
|
|
_badge->paintRequest(
|
|
|
|
) | rpl::start_with_next([icon, check = _badge.data()] {
|
|
|
|
Painter p(check);
|
|
|
|
icon->paint(p, 0, 0, check->width());
|
|
|
|
}, _badge->lifetime());
|
|
|
|
} else if (!hasPremium && _badge) {
|
|
|
|
_badge.destroy();
|
|
|
|
}
|
|
|
|
}, lifetime());
|
2022-02-08 17:25:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Cover::~Cover() = default;
|
|
|
|
|
|
|
|
void Cover::setupChildGeometry() {
|
|
|
|
using namespace rpl::mappers;
|
|
|
|
widthValue(
|
|
|
|
) | rpl::start_with_next([=](int newWidth) {
|
|
|
|
_userpic->moveToLeft(
|
|
|
|
st::settingsPhotoLeft,
|
|
|
|
st::settingsPhotoTop,
|
|
|
|
newWidth);
|
|
|
|
refreshNameGeometry(newWidth);
|
|
|
|
refreshPhoneGeometry(newWidth);
|
|
|
|
refreshUsernameGeometry(newWidth);
|
|
|
|
}, lifetime());
|
|
|
|
}
|
|
|
|
|
|
|
|
void Cover::initViewers() {
|
|
|
|
Info::Profile::NameValue(
|
|
|
|
_user
|
|
|
|
) | rpl::start_with_next([=](const TextWithEntities &value) {
|
|
|
|
_name->setText(value.text);
|
|
|
|
refreshNameGeometry(width());
|
|
|
|
}, lifetime());
|
|
|
|
|
|
|
|
Info::Profile::PhoneValue(
|
|
|
|
_user
|
|
|
|
) | rpl::start_with_next([=](const TextWithEntities &value) {
|
|
|
|
_phone->setText(value.text);
|
|
|
|
refreshPhoneGeometry(width());
|
|
|
|
}, lifetime());
|
|
|
|
|
|
|
|
Info::Profile::UsernameValue(
|
|
|
|
_user
|
|
|
|
) | rpl::start_with_next([=](const TextWithEntities &value) {
|
|
|
|
_username->setMarkedText(Ui::Text::Link(value.text.isEmpty()
|
|
|
|
? tr::lng_settings_username_add(tr::now)
|
|
|
|
: value.text));
|
|
|
|
refreshUsernameGeometry(width());
|
|
|
|
}, lifetime());
|
|
|
|
|
|
|
|
_username->setClickHandlerFilter([=](auto&&...) {
|
|
|
|
const auto username = _user->userName();
|
|
|
|
if (username.isEmpty()) {
|
|
|
|
_controller->show(Box<UsernameBox>(&_user->session()));
|
|
|
|
} else {
|
|
|
|
QGuiApplication::clipboard()->setText(
|
|
|
|
_user->session().createInternalLinkFull(username));
|
2022-06-14 09:48:25 +00:00
|
|
|
Ui::Toast::Show(
|
|
|
|
Window::Show(_controller).toastParent(),
|
|
|
|
tr::lng_username_copied(tr::now));
|
2022-02-08 17:25:24 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void Cover::refreshNameGeometry(int newWidth) {
|
|
|
|
const auto nameLeft = st::settingsNameLeft;
|
|
|
|
const auto nameTop = st::settingsNameTop;
|
2022-06-14 05:00:47 +00:00
|
|
|
const auto nameWidth = newWidth
|
|
|
|
- nameLeft
|
|
|
|
- st::infoProfileNameRight
|
|
|
|
- (!_badge ? 0 : _badge->width() + st::infoVerifiedCheckPosition.x());
|
2022-02-08 17:25:24 +00:00
|
|
|
_name->resizeToNaturalWidth(nameWidth);
|
|
|
|
_name->moveToLeft(nameLeft, nameTop, newWidth);
|
2022-06-14 05:00:47 +00:00
|
|
|
|
|
|
|
if (_badge) {
|
|
|
|
const auto &pos = st::infoVerifiedCheckPosition;
|
|
|
|
const auto badgeLeft = nameLeft + _name->width() + pos.x();
|
|
|
|
const auto badgeTop = nameTop + pos.y();
|
|
|
|
_badge->moveToLeft(badgeLeft, badgeTop, newWidth);
|
|
|
|
}
|
2022-02-08 17:25:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Cover::refreshPhoneGeometry(int newWidth) {
|
|
|
|
const auto phoneLeft = st::settingsPhoneLeft;
|
|
|
|
const auto phoneTop = st::settingsPhoneTop;
|
|
|
|
const auto phoneWidth = newWidth - phoneLeft - st::infoProfileNameRight;
|
|
|
|
_phone->resizeToWidth(phoneWidth);
|
|
|
|
_phone->moveToLeft(phoneLeft, phoneTop, newWidth);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Cover::refreshUsernameGeometry(int newWidth) {
|
|
|
|
const auto usernameLeft = st::settingsUsernameLeft;
|
|
|
|
const auto usernameTop = st::settingsUsernameTop;
|
|
|
|
const auto usernameRight = st::infoProfileNameRight;
|
|
|
|
const auto usernameWidth = newWidth - usernameLeft - usernameRight;
|
|
|
|
_username->resizeToWidth(usernameWidth);
|
|
|
|
_username->moveToLeft(usernameLeft, usernameTop, newWidth);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
2018-09-05 21:01:50 +00:00
|
|
|
|
2018-09-17 10:52:34 +00:00
|
|
|
void SetupLanguageButton(
|
|
|
|
not_null<Ui::VerticalLayout*> container,
|
|
|
|
bool icon) {
|
2018-09-07 09:40:25 +00:00
|
|
|
const auto button = AddButtonWithLabel(
|
2018-09-05 21:01:50 +00:00
|
|
|
container,
|
2019-06-18 12:16:43 +00:00
|
|
|
tr::lng_settings_language(),
|
2019-06-19 11:22:25 +00:00
|
|
|
rpl::single(
|
2020-09-30 09:11:44 +00:00
|
|
|
Lang::GetInstance().id()
|
2019-06-19 11:22:25 +00:00
|
|
|
) | rpl::then(
|
2020-09-30 09:11:44 +00:00
|
|
|
Lang::GetInstance().idChanges()
|
|
|
|
) | rpl::map([] { return Lang::GetInstance().nativeName(); }),
|
2022-02-13 13:30:43 +00:00
|
|
|
icon ? st::settingsButton : st::settingsButtonNoIcon,
|
2022-02-09 10:43:07 +00:00
|
|
|
{ icon ? &st::settingsIconLanguage : nullptr, kIconDarkOrange });
|
2018-11-21 10:09:46 +00:00
|
|
|
const auto guard = Ui::CreateChild<base::binary_guard>(button.get());
|
2018-09-05 21:01:50 +00:00
|
|
|
button->addClickHandler([=] {
|
2018-09-27 14:27:31 +00:00
|
|
|
const auto m = button->clickModifiers();
|
|
|
|
if ((m & Qt::ShiftModifier) && (m & Qt::AltModifier)) {
|
2018-11-13 09:14:22 +00:00
|
|
|
Lang::CurrentCloudManager().switchToLanguage({ qsl("#custom") });
|
2018-09-27 14:27:31 +00:00
|
|
|
} else {
|
|
|
|
*guard = LanguageBox::Show();
|
|
|
|
}
|
2018-09-05 21:01:50 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-09-06 11:33:24 +00:00
|
|
|
void SetupSections(
|
2019-07-24 14:00:30 +00:00
|
|
|
not_null<Window::SessionController*> controller,
|
2018-09-06 11:33:24 +00:00
|
|
|
not_null<Ui::VerticalLayout*> container,
|
|
|
|
Fn<void(Type)> showOther) {
|
|
|
|
AddDivider(container);
|
|
|
|
AddSkip(container);
|
|
|
|
|
2018-09-10 12:18:39 +00:00
|
|
|
const auto addSection = [&](
|
2019-06-18 12:16:43 +00:00
|
|
|
rpl::producer<QString> label,
|
2018-09-10 12:18:39 +00:00
|
|
|
Type type,
|
2022-02-09 10:43:07 +00:00
|
|
|
IconDescriptor &&descriptor) {
|
2018-09-07 09:40:25 +00:00
|
|
|
AddButton(
|
2018-09-06 11:33:24 +00:00
|
|
|
container,
|
2019-06-18 12:16:43 +00:00
|
|
|
std::move(label),
|
2022-02-13 13:30:43 +00:00
|
|
|
st::settingsButton,
|
2022-02-09 10:43:07 +00:00
|
|
|
std::move(descriptor)
|
2022-05-23 14:46:15 +00:00
|
|
|
)->addClickHandler([=] {
|
|
|
|
if (type == PremiumId()) {
|
|
|
|
controller->setPremiumRef("settings");
|
|
|
|
}
|
|
|
|
showOther(type);
|
|
|
|
});
|
2018-09-06 11:33:24 +00:00
|
|
|
};
|
2019-07-24 14:00:30 +00:00
|
|
|
if (controller->session().supportMode()) {
|
|
|
|
SetupSupport(controller, container);
|
2018-10-07 11:42:09 +00:00
|
|
|
|
|
|
|
AddDivider(container);
|
|
|
|
AddSkip(container);
|
|
|
|
} else {
|
|
|
|
addSection(
|
2019-06-18 12:16:43 +00:00
|
|
|
tr::lng_settings_information(),
|
2022-04-01 11:53:23 +00:00
|
|
|
Information::Id(),
|
2022-02-13 13:30:43 +00:00
|
|
|
{ &st::settingsIconAccount, kIconLightOrange });
|
2018-10-07 11:42:09 +00:00
|
|
|
}
|
2018-09-10 12:18:39 +00:00
|
|
|
addSection(
|
2019-06-18 12:16:43 +00:00
|
|
|
tr::lng_settings_section_notify(),
|
2022-04-01 11:53:23 +00:00
|
|
|
Notifications::Id(),
|
2022-02-09 10:43:07 +00:00
|
|
|
{ &st::settingsIconNotifications, kIconRed });
|
2018-09-10 12:18:39 +00:00
|
|
|
addSection(
|
2019-06-18 12:16:43 +00:00
|
|
|
tr::lng_settings_section_privacy(),
|
2022-04-01 11:53:23 +00:00
|
|
|
PrivacySecurity::Id(),
|
2022-02-13 13:30:43 +00:00
|
|
|
{ &st::settingsIconLock, kIconGreen });
|
2018-09-10 12:18:39 +00:00
|
|
|
addSection(
|
2019-06-18 12:16:43 +00:00
|
|
|
tr::lng_settings_section_chat_settings(),
|
2022-04-01 11:53:23 +00:00
|
|
|
Chat::Id(),
|
2022-02-09 10:43:07 +00:00
|
|
|
{ &st::settingsIconChat, kIconLightBlue });
|
2020-03-24 07:26:08 +00:00
|
|
|
|
2020-03-24 08:58:47 +00:00
|
|
|
const auto preload = [=] {
|
|
|
|
controller->session().data().chatsFilters().requestSuggested();
|
|
|
|
};
|
2020-03-24 07:26:08 +00:00
|
|
|
const auto account = &controller->session().account();
|
|
|
|
const auto slided = container->add(
|
|
|
|
object_ptr<Ui::SlideWrap<Ui::SettingsButton>>(
|
|
|
|
container,
|
|
|
|
CreateButton(
|
|
|
|
container,
|
|
|
|
tr::lng_settings_section_filters(),
|
2022-02-13 13:30:43 +00:00
|
|
|
st::settingsButton,
|
2022-02-09 10:43:07 +00:00
|
|
|
{ &st::settingsIconFolders, kIconDarkBlue }))
|
|
|
|
)->setDuration(0);
|
2022-05-17 09:24:35 +00:00
|
|
|
if (controller->session().data().chatsFilters().has()
|
2020-06-18 18:04:16 +00:00
|
|
|
|| controller->session().settings().dialogsFiltersEnabled()) {
|
2020-03-24 07:26:08 +00:00
|
|
|
slided->show(anim::type::instant);
|
2020-03-24 08:58:47 +00:00
|
|
|
preload();
|
2020-03-24 07:26:08 +00:00
|
|
|
} else {
|
|
|
|
const auto enabled = [=] {
|
2020-03-24 08:58:47 +00:00
|
|
|
const auto result = account->appConfig().get<bool>(
|
2020-03-24 07:26:08 +00:00
|
|
|
"dialog_filters_enabled",
|
|
|
|
false);
|
2020-03-24 08:58:47 +00:00
|
|
|
if (result) {
|
|
|
|
preload();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
const auto preloadIfEnabled = [=](bool enabled) {
|
|
|
|
if (enabled) {
|
|
|
|
preload();
|
|
|
|
}
|
2020-03-24 07:26:08 +00:00
|
|
|
};
|
|
|
|
slided->toggleOn(
|
2022-03-11 05:55:21 +00:00
|
|
|
rpl::single(rpl::empty) | rpl::then(
|
2020-03-24 07:26:08 +00:00
|
|
|
account->appConfig().refreshed()
|
2020-03-24 08:58:47 +00:00
|
|
|
) | rpl::map(
|
|
|
|
enabled
|
|
|
|
) | rpl::before_next(preloadIfEnabled));
|
2020-03-18 10:07:11 +00:00
|
|
|
}
|
2020-03-24 07:26:08 +00:00
|
|
|
slided->entity()->setClickedCallback([=] {
|
2022-04-01 11:53:23 +00:00
|
|
|
showOther(Folders::Id());
|
2020-03-24 07:26:08 +00:00
|
|
|
});
|
|
|
|
|
2018-09-13 20:09:26 +00:00
|
|
|
addSection(
|
2019-06-18 12:16:43 +00:00
|
|
|
tr::lng_settings_advanced(),
|
2022-04-01 11:53:23 +00:00
|
|
|
Advanced::Id(),
|
2022-02-09 10:43:07 +00:00
|
|
|
{ &st::settingsIconGeneral, kIconPurple });
|
2022-02-09 10:43:32 +00:00
|
|
|
addSection(
|
|
|
|
tr::lng_settings_section_call_settings(),
|
2022-04-01 11:53:23 +00:00
|
|
|
Calls::Id(),
|
2022-02-09 10:43:32 +00:00
|
|
|
{ &st::settingsIconCalls, kIconGreen });
|
2018-09-06 11:33:24 +00:00
|
|
|
|
|
|
|
SetupLanguageButton(container);
|
|
|
|
|
2022-06-07 07:27:06 +00:00
|
|
|
if (controller->session().premiumPossible()) {
|
|
|
|
AddSkip(container);
|
|
|
|
AddDivider(container);
|
|
|
|
AddSkip(container);
|
2022-05-18 18:53:25 +00:00
|
|
|
|
2022-05-31 05:07:09 +00:00
|
|
|
const auto icon = &st::settingsPremiumIconStar;
|
|
|
|
auto gradient = QLinearGradient(
|
|
|
|
0,
|
|
|
|
icon->height(),
|
|
|
|
icon->width() + icon->width() / 3,
|
|
|
|
0 - icon->height() / 3);
|
|
|
|
gradient.setStops(QGradientStops{
|
|
|
|
{ 0.0, st::premiumButtonBg1->c },
|
|
|
|
{ 1.0, st::premiumButtonBg3->c },
|
|
|
|
});
|
|
|
|
addSection(
|
|
|
|
tr::lng_premium_summary_title(),
|
|
|
|
PremiumId(),
|
|
|
|
{ .icon = icon, .backgroundBrush = QBrush(gradient) });
|
|
|
|
}
|
2022-05-18 18:53:25 +00:00
|
|
|
|
2022-02-09 10:43:07 +00:00
|
|
|
AddSkip(container);
|
2018-09-06 11:33:24 +00:00
|
|
|
}
|
|
|
|
|
2018-09-11 18:07:04 +00:00
|
|
|
bool HasInterfaceScale() {
|
2018-10-15 19:42:10 +00:00
|
|
|
return true;
|
2018-09-11 18:07:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SetupInterfaceScale(
|
2021-06-13 07:37:52 +00:00
|
|
|
not_null<Window::Controller*> window,
|
2018-09-11 18:07:04 +00:00
|
|
|
not_null<Ui::VerticalLayout*> container,
|
|
|
|
bool icon) {
|
|
|
|
if (!HasInterfaceScale()) {
|
2018-09-05 21:01:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-21 10:09:46 +00:00
|
|
|
const auto toggled = Ui::CreateChild<rpl::event_stream<bool>>(
|
|
|
|
container.get());
|
2018-09-05 21:01:50 +00:00
|
|
|
|
2019-09-13 10:24:06 +00:00
|
|
|
const auto switched = (cConfigScale() == style::kScaleAuto);
|
2018-09-07 09:40:25 +00:00
|
|
|
const auto button = AddButton(
|
2018-09-05 21:01:50 +00:00
|
|
|
container,
|
2019-06-18 12:16:43 +00:00
|
|
|
tr::lng_settings_default_scale(),
|
2022-02-13 13:30:43 +00:00
|
|
|
icon ? st::settingsButton : st::settingsButtonNoIcon,
|
2022-05-24 03:14:52 +00:00
|
|
|
{ icon ? &st::settingsIconInterfaceScale : nullptr, kIconLightOrange }
|
2018-09-06 10:18:49 +00:00
|
|
|
)->toggleOn(toggled->events_starting_with_copy(switched));
|
2018-09-05 21:01:50 +00:00
|
|
|
|
|
|
|
const auto slider = container->add(
|
2018-09-06 10:18:49 +00:00
|
|
|
object_ptr<Ui::SettingsSlider>(container, st::settingsSlider),
|
2018-09-11 18:07:04 +00:00
|
|
|
icon ? st::settingsScalePadding : st::settingsBigScalePadding);
|
2018-09-05 21:01:50 +00:00
|
|
|
|
2019-05-25 10:06:12 +00:00
|
|
|
static const auto ScaleValues = [&] {
|
|
|
|
auto values = (cIntRetinaFactor() > 1)
|
|
|
|
? std::vector<int>{ 100, 110, 120, 130, 140, 150 }
|
|
|
|
: std::vector<int>{ 100, 125, 150, 200, 250, 300 };
|
2019-09-13 10:24:06 +00:00
|
|
|
if (cConfigScale() == style::kScaleAuto) {
|
2019-05-25 10:06:12 +00:00
|
|
|
return values;
|
|
|
|
}
|
|
|
|
if (ranges::find(values, cConfigScale()) == end(values)) {
|
|
|
|
values.push_back(cConfigScale());
|
|
|
|
}
|
|
|
|
return values;
|
|
|
|
}();
|
|
|
|
|
2018-10-15 11:44:48 +00:00
|
|
|
const auto sectionFromScale = [](int scale) {
|
2018-10-26 10:58:46 +00:00
|
|
|
scale = cEvalScale(scale);
|
2018-10-15 11:44:48 +00:00
|
|
|
auto result = 0;
|
|
|
|
for (const auto value : ScaleValues) {
|
2019-05-25 10:06:12 +00:00
|
|
|
if (scale == value) {
|
2018-10-15 11:44:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
++result;
|
|
|
|
}
|
|
|
|
return (result == ScaleValues.size()) ? (result - 1) : result;
|
|
|
|
};
|
2020-07-06 11:51:58 +00:00
|
|
|
const auto inSetScale = container->lifetime().make_state<bool>();
|
|
|
|
const auto setScale = [=](int scale, const auto &repeatSetScale) -> void {
|
|
|
|
if (*inSetScale) {
|
|
|
|
return;
|
|
|
|
}
|
2018-09-05 21:01:50 +00:00
|
|
|
*inSetScale = true;
|
|
|
|
const auto guard = gsl::finally([=] { *inSetScale = false; });
|
|
|
|
|
2019-09-13 10:24:06 +00:00
|
|
|
toggled->fire(scale == style::kScaleAuto);
|
2018-10-15 11:44:48 +00:00
|
|
|
slider->setActiveSection(sectionFromScale(scale));
|
2018-10-26 10:58:46 +00:00
|
|
|
if (cEvalScale(scale) != cEvalScale(cConfigScale())) {
|
2018-09-05 21:01:50 +00:00
|
|
|
const auto confirmed = crl::guard(button, [=] {
|
2018-10-26 10:58:46 +00:00
|
|
|
cSetConfigScale(scale);
|
2018-09-05 21:01:50 +00:00
|
|
|
Local::writeSettings();
|
2022-01-27 12:48:51 +00:00
|
|
|
Core::Restart();
|
2018-09-05 21:01:50 +00:00
|
|
|
});
|
2022-03-01 13:15:23 +00:00
|
|
|
const auto cancelled = crl::guard(button, [=](Fn<void()> close) {
|
2019-09-26 10:55:35 +00:00
|
|
|
base::call_delayed(
|
2018-09-05 21:01:50 +00:00
|
|
|
st::defaultSettingsSlider.duration,
|
|
|
|
button,
|
2020-07-06 11:51:58 +00:00
|
|
|
[=] { repeatSetScale(cConfigScale(), repeatSetScale); });
|
2022-03-01 13:15:23 +00:00
|
|
|
close();
|
2018-09-05 21:01:50 +00:00
|
|
|
});
|
2022-02-27 08:23:20 +00:00
|
|
|
window->show(Ui::MakeConfirmBox({
|
|
|
|
.text = tr::lng_settings_need_restart(),
|
|
|
|
.confirmed = confirmed,
|
|
|
|
.cancelled = cancelled,
|
|
|
|
.confirmText = tr::lng_settings_restart_now(),
|
|
|
|
}));
|
2018-10-26 10:58:46 +00:00
|
|
|
} else if (scale != cConfigScale()) {
|
2018-09-05 21:01:50 +00:00
|
|
|
cSetConfigScale(scale);
|
|
|
|
Local::writeSettings();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-10-15 11:44:48 +00:00
|
|
|
const auto label = [](int scale) {
|
2021-10-25 15:04:48 +00:00
|
|
|
if constexpr (Platform::IsMac()) {
|
|
|
|
return QString::number(scale) + '%';
|
|
|
|
} else {
|
|
|
|
return QString::number(scale * cIntRetinaFactor()) + '%';
|
|
|
|
}
|
2018-09-05 21:01:50 +00:00
|
|
|
};
|
|
|
|
const auto scaleByIndex = [](int index) {
|
2018-10-15 11:44:48 +00:00
|
|
|
return *(ScaleValues.begin() + index);
|
2018-09-05 21:01:50 +00:00
|
|
|
};
|
|
|
|
|
2018-10-15 11:44:48 +00:00
|
|
|
for (const auto value : ScaleValues) {
|
|
|
|
slider->addSection(label(value));
|
|
|
|
}
|
|
|
|
slider->setActiveSectionFast(sectionFromScale(cConfigScale()));
|
2018-09-05 21:01:50 +00:00
|
|
|
slider->sectionActivated(
|
2018-10-26 10:58:46 +00:00
|
|
|
) | rpl::map([=](int section) {
|
|
|
|
return scaleByIndex(section);
|
2021-02-01 08:32:08 +00:00
|
|
|
}) | rpl::filter([=](int scale) {
|
|
|
|
return cEvalScale(scale) != cEvalScale(cConfigScale());
|
2018-10-26 10:58:46 +00:00
|
|
|
}) | rpl::start_with_next([=](int scale) {
|
2020-07-06 11:51:58 +00:00
|
|
|
setScale(
|
|
|
|
(scale == cScreenScale()) ? style::kScaleAuto : scale,
|
|
|
|
setScale);
|
2018-09-05 21:01:50 +00:00
|
|
|
}, slider->lifetime());
|
2018-10-26 10:58:46 +00:00
|
|
|
|
|
|
|
button->toggledValue(
|
|
|
|
) | rpl::map([](bool checked) {
|
2019-09-13 10:24:06 +00:00
|
|
|
return checked ? style::kScaleAuto : cEvalScale(cConfigScale());
|
2018-10-26 10:58:46 +00:00
|
|
|
}) | rpl::start_with_next([=](int scale) {
|
2020-07-06 11:51:58 +00:00
|
|
|
setScale(scale, setScale);
|
2018-10-26 10:58:46 +00:00
|
|
|
}, button->lifetime());
|
2018-09-05 21:01:50 +00:00
|
|
|
}
|
|
|
|
|
2018-09-20 17:56:45 +00:00
|
|
|
void OpenFaq() {
|
2020-10-28 21:29:48 +00:00
|
|
|
UrlClickHandler::Open(telegramFaqLink());
|
2018-09-20 17:56:45 +00:00
|
|
|
}
|
|
|
|
|
2018-09-11 18:07:04 +00:00
|
|
|
void SetupFaq(not_null<Ui::VerticalLayout*> container, bool icon) {
|
2018-09-07 09:40:25 +00:00
|
|
|
AddButton(
|
2018-09-06 10:18:49 +00:00
|
|
|
container,
|
2019-06-18 12:16:43 +00:00
|
|
|
tr::lng_settings_faq(),
|
2022-02-13 13:30:43 +00:00
|
|
|
icon ? st::settingsButton : st::settingsButtonNoIcon,
|
2022-02-09 10:43:07 +00:00
|
|
|
{ icon ? &st::settingsIconFaq : nullptr, kIconLightBlue }
|
2018-09-20 17:56:45 +00:00
|
|
|
)->addClickHandler(OpenFaq);
|
2018-09-11 18:07:04 +00:00
|
|
|
}
|
|
|
|
|
2019-07-24 14:00:30 +00:00
|
|
|
void SetupHelp(
|
|
|
|
not_null<Window::SessionController*> controller,
|
|
|
|
not_null<Ui::VerticalLayout*> container) {
|
2018-09-11 18:07:04 +00:00
|
|
|
AddDivider(container);
|
|
|
|
AddSkip(container);
|
|
|
|
|
|
|
|
SetupFaq(container);
|
2018-09-06 10:18:49 +00:00
|
|
|
|
2022-02-09 16:59:30 +00:00
|
|
|
AddButton(
|
|
|
|
container,
|
2022-02-27 13:32:36 +00:00
|
|
|
tr::lng_settings_features(),
|
2022-02-13 13:30:43 +00:00
|
|
|
st::settingsButton,
|
2022-02-09 16:59:30 +00:00
|
|
|
{ &st::settingsIconTips, kIconLightOrange }
|
|
|
|
)->setClickedCallback([=] {
|
|
|
|
UrlClickHandler::Open(tr::lng_telegram_features_url(tr::now));
|
|
|
|
});
|
|
|
|
|
2019-07-24 14:00:30 +00:00
|
|
|
const auto button = AddButton(
|
|
|
|
container,
|
|
|
|
tr::lng_settings_ask_question(),
|
2022-02-13 13:30:43 +00:00
|
|
|
st::settingsButton,
|
2022-02-09 16:59:30 +00:00
|
|
|
{ &st::settingsIconAskQuestion, kIconGreen });
|
2019-09-03 15:24:51 +00:00
|
|
|
const auto requestId = button->lifetime().make_state<mtpRequestId>();
|
|
|
|
button->lifetime().add([=] {
|
|
|
|
if (*requestId) {
|
|
|
|
controller->session().api().request(*requestId).cancel();
|
|
|
|
}
|
|
|
|
});
|
2019-07-24 14:00:30 +00:00
|
|
|
button->addClickHandler([=] {
|
|
|
|
const auto sure = crl::guard(button, [=] {
|
2019-09-03 15:24:51 +00:00
|
|
|
if (*requestId) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
*requestId = controller->session().api().request(
|
|
|
|
MTPhelp_GetSupport()
|
|
|
|
).done([=](const MTPhelp_Support &result) {
|
|
|
|
*requestId = 0;
|
|
|
|
result.match([&](const MTPDhelp_support &data) {
|
|
|
|
auto &owner = controller->session().data();
|
|
|
|
if (const auto user = owner.processUser(data.vuser())) {
|
|
|
|
Ui::showPeerHistory(user, ShowAtUnreadMsgId);
|
|
|
|
}
|
|
|
|
});
|
2021-11-26 20:46:53 +00:00
|
|
|
}).fail([=] {
|
2019-09-03 15:24:51 +00:00
|
|
|
*requestId = 0;
|
|
|
|
}).send();
|
2019-07-24 14:00:30 +00:00
|
|
|
});
|
2022-02-27 08:23:20 +00:00
|
|
|
auto box = Ui::MakeConfirmBox({
|
|
|
|
.text = tr::lng_settings_ask_sure(),
|
|
|
|
.confirmed = sure,
|
|
|
|
.cancelled = OpenFaq,
|
|
|
|
.confirmText = tr::lng_settings_ask_ok(),
|
|
|
|
.cancelText = tr::lng_settings_faq_button(),
|
|
|
|
.strictCancel = true,
|
|
|
|
});
|
2021-06-13 07:37:52 +00:00
|
|
|
controller->show(std::move(box));
|
2019-07-24 14:00:30 +00:00
|
|
|
});
|
2018-09-06 10:18:49 +00:00
|
|
|
}
|
|
|
|
|
2018-09-05 19:39:35 +00:00
|
|
|
Main::Main(
|
|
|
|
QWidget *parent,
|
2019-07-24 14:00:30 +00:00
|
|
|
not_null<Window::SessionController*> controller)
|
2018-09-05 19:05:49 +00:00
|
|
|
: Section(parent)
|
2019-07-24 14:00:30 +00:00
|
|
|
, _controller(controller) {
|
2018-09-05 19:39:35 +00:00
|
|
|
setupContent(controller);
|
2022-06-03 11:57:06 +00:00
|
|
|
_controller->session().api().premium().reload();
|
2018-09-05 19:05:49 +00:00
|
|
|
}
|
|
|
|
|
2022-04-13 08:05:10 +00:00
|
|
|
rpl::producer<QString> Main::title() {
|
2022-04-01 11:53:23 +00:00
|
|
|
return tr::lng_menu_settings();
|
|
|
|
}
|
|
|
|
|
2018-09-06 13:48:01 +00:00
|
|
|
void Main::keyPressEvent(QKeyEvent *e) {
|
2020-03-26 10:29:27 +00:00
|
|
|
crl::on_main(this, [=, text = e->text()]{
|
|
|
|
CodesFeedString(_controller, text);
|
|
|
|
});
|
2018-09-06 13:48:01 +00:00
|
|
|
return Section::keyPressEvent(e);
|
|
|
|
}
|
|
|
|
|
2019-06-06 10:21:40 +00:00
|
|
|
void Main::setupContent(not_null<Window::SessionController*> controller) {
|
2018-09-05 19:05:49 +00:00
|
|
|
const auto content = Ui::CreateChild<Ui::VerticalLayout>(this);
|
|
|
|
|
2022-02-28 20:25:55 +00:00
|
|
|
content->add(object_ptr<Cover>(
|
2018-09-05 19:39:35 +00:00
|
|
|
content,
|
2022-02-08 17:25:24 +00:00
|
|
|
controller,
|
|
|
|
controller->session().user()));
|
2018-09-05 19:39:35 +00:00
|
|
|
|
2019-07-24 14:00:30 +00:00
|
|
|
SetupSections(controller, content, [=](Type type) {
|
2018-09-06 11:33:24 +00:00
|
|
|
_showOther.fire_copy(type);
|
|
|
|
});
|
2018-09-11 18:07:04 +00:00
|
|
|
if (HasInterfaceScale()) {
|
|
|
|
AddDivider(content);
|
|
|
|
AddSkip(content);
|
2021-06-13 07:37:52 +00:00
|
|
|
SetupInterfaceScale(&controller->window(), content);
|
2018-09-11 18:07:04 +00:00
|
|
|
AddSkip(content);
|
|
|
|
}
|
2019-07-24 14:00:30 +00:00
|
|
|
SetupHelp(controller, content);
|
2018-09-05 21:01:50 +00:00
|
|
|
|
|
|
|
Ui::ResizeFitChild(this, content);
|
2018-09-09 12:10:54 +00:00
|
|
|
|
|
|
|
// If we load this in advance it won't jump when we open its' section.
|
2021-08-02 19:06:33 +00:00
|
|
|
controller->session().api().cloudPassword().reload();
|
2019-07-24 11:13:51 +00:00
|
|
|
controller->session().api().reloadContactSignupSilent();
|
2020-07-03 16:53:24 +00:00
|
|
|
controller->session().api().sensitiveContent().reload();
|
|
|
|
controller->session().api().globalPrivacy().reload();
|
2019-09-03 15:24:51 +00:00
|
|
|
controller->session().data().cloudThemes().refresh();
|
2018-09-05 21:01:50 +00:00
|
|
|
}
|
|
|
|
|
2018-09-05 19:05:49 +00:00
|
|
|
rpl::producer<Type> Main::sectionShowOther() {
|
|
|
|
return _showOther.events();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Settings
|