mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-08-26 12:27:12 +00:00
Added LocalStorageBox for watching info and clearing local storage. Local passcode and cloud password state display and editing done. Temporary download location clearing link added. Crash fixed in local storage clear + app close, now waiting for the clearing thread to quit. Some design improvements and testing.
131 lines
4.4 KiB
C++
131 lines
4.4 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 "settings/settings_advanced_widget.h"
|
|
|
|
#include "styles/style_settings.h"
|
|
#include "lang.h"
|
|
#include "boxes/connectionbox.h"
|
|
#include "boxes/confirmbox.h"
|
|
#include "boxes/aboutbox.h"
|
|
#include "boxes/localstoragebox.h"
|
|
#include "mainwindow.h"
|
|
|
|
namespace Settings {
|
|
|
|
AdvancedWidget::AdvancedWidget(QWidget *parent, UserData *self) : BlockWidget(parent, self, lang(lng_settings_section_advanced_settings)) {
|
|
createControls();
|
|
#ifndef TDESKTOP_DISABLE_NETWORK_PROXY
|
|
subscribe(Global::RefConnectionTypeChanged(), [this]() {
|
|
connectionTypeUpdated();
|
|
});
|
|
#endif // TDESKTOP_DISABLE_NETWORK_PROXY
|
|
}
|
|
|
|
void AdvancedWidget::createControls() {
|
|
style::margins marginSmall(0, 0, 0, st::settingsSmallSkip);
|
|
style::margins marginLarge(0, 0, 0, st::settingsLargeSkip);
|
|
|
|
style::margins marginLocalStorage = ([&marginSmall, &marginLarge]() {
|
|
#ifndef TDESKTOP_DISABLE_NETWORK_PROXY
|
|
return marginSmall;
|
|
#else // TDESKTOP_DISABLE_NETWORK_PROXY
|
|
return marginLarge;
|
|
#endif // TDESKTOP_DISABLE_NETWORK_PROXY
|
|
})();
|
|
if (self()) {
|
|
addChildRow(_manageLocalStorage, marginLocalStorage, lang(lng_settings_manage_local_storage), SLOT(onManageLocalStorage()));
|
|
}
|
|
|
|
#ifndef TDESKTOP_DISABLE_NETWORK_PROXY
|
|
addChildRow(_connectionType, marginLarge, lang(lng_connection_type), lang(lng_connection_auto_connecting), LabeledLink::Type::Primary, SLOT(onConnectionType()));
|
|
connectionTypeUpdated();
|
|
#endif // TDESKTOP_DISABLE_NETWORK_PROXY
|
|
|
|
if (self()) {
|
|
addChildRow(_askQuestion, marginSmall, lang(lng_settings_ask_question), SLOT(onAskQuestion()));
|
|
}
|
|
addChildRow(_telegramFAQ, marginLarge, lang(lng_settings_faq), SLOT(onTelegramFAQ()));
|
|
if (self()) {
|
|
addChildRow(_logOut, marginSmall, lang(lng_settings_logout), SLOT(onLogOut()));
|
|
}
|
|
}
|
|
|
|
void AdvancedWidget::onManageLocalStorage() {
|
|
Ui::showLayer(new LocalStorageBox());
|
|
}
|
|
|
|
#ifndef TDESKTOP_DISABLE_NETWORK_PROXY
|
|
void AdvancedWidget::connectionTypeUpdated() {
|
|
QString connection;
|
|
switch (Global::ConnectionType()) {
|
|
case dbictAuto: {
|
|
QString transport = MTP::dctransport();
|
|
connection = transport.isEmpty() ? lang(lng_connection_auto_connecting) : lng_connection_auto(lt_transport, transport);
|
|
} break;
|
|
case dbictHttpProxy:
|
|
case dbictTcpProxy: {
|
|
QString transport = MTP::dctransport();
|
|
connection = transport.isEmpty() ? lang(lng_connection_proxy_connecting) : lng_connection_proxy(lt_transport, transport);
|
|
} break;
|
|
}
|
|
_connectionType->link()->setText(connection);
|
|
resizeToWidth(width());
|
|
}
|
|
|
|
void AdvancedWidget::onConnectionType() {
|
|
Ui::showLayer(new ConnectionBox());
|
|
}
|
|
#endif // TDESKTOP_DISABLE_NETWORK_PROXY
|
|
|
|
void AdvancedWidget::onAskQuestion() {
|
|
ConfirmBox *box = new ConfirmBox(lang(lng_settings_ask_sure), lang(lng_settings_ask_ok), st::defaultBoxButton, lang(lng_settings_faq_button));
|
|
connect(box, SIGNAL(confirmed()), this, SLOT(onAskQuestionSure()));
|
|
connect(box, SIGNAL(cancelPressed()), this, SLOT(onTelegramFAQ()));
|
|
Ui::showLayer(box);
|
|
}
|
|
|
|
void AdvancedWidget::onAskQuestionSure() {
|
|
if (_supportGetRequest) return;
|
|
_supportGetRequest = MTP::send(MTPhelp_GetSupport(), rpcDone(&AdvancedWidget::supportGot));
|
|
}
|
|
|
|
void AdvancedWidget::supportGot(const MTPhelp_Support &support) {
|
|
if (!App::main()) return;
|
|
|
|
if (support.type() == mtpc_help_support) {
|
|
if (auto user = App::feedUsers(MTP_vector<MTPUser>(1, support.c_help_support().vuser))) {
|
|
Ui::showPeerHistory(user, ShowAtUnreadMsgId);
|
|
}
|
|
}
|
|
}
|
|
|
|
void AdvancedWidget::onTelegramFAQ() {
|
|
QDesktopServices::openUrl(telegramFaqLink());
|
|
}
|
|
|
|
void AdvancedWidget::onLogOut() {
|
|
App::wnd()->onLogout();
|
|
}
|
|
|
|
|
|
} // namespace Settings
|