2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2014-12-01 10:47:38 +00:00
|
|
|
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include "style.h"
|
|
|
|
#include "lang.h"
|
|
|
|
|
|
|
|
#include "settingswidget.h"
|
|
|
|
#include "mainwidget.h"
|
|
|
|
#include "application.h"
|
|
|
|
#include "boxes/photocropbox.h"
|
|
|
|
#include "boxes/connectionbox.h"
|
2015-02-03 15:02:46 +00:00
|
|
|
#include "boxes/backgroundbox.h"
|
2014-05-30 08:53:19 +00:00
|
|
|
#include "boxes/addcontactbox.h"
|
|
|
|
#include "boxes/emojibox.h"
|
|
|
|
#include "boxes/confirmbox.h"
|
|
|
|
#include "boxes/downloadpathbox.h"
|
2014-10-22 18:39:03 +00:00
|
|
|
#include "boxes/usernamebox.h"
|
2014-12-19 21:20:30 +00:00
|
|
|
#include "boxes/languagebox.h"
|
2015-03-02 12:34:16 +00:00
|
|
|
#include "boxes/passcodebox.h"
|
|
|
|
#include "boxes/autolockbox.h"
|
2015-04-02 10:33:19 +00:00
|
|
|
#include "boxes/sessionsbox.h"
|
2014-12-20 21:33:08 +00:00
|
|
|
#include "langloaderplain.h"
|
2014-05-30 08:53:19 +00:00
|
|
|
#include "gui/filedialog.h"
|
|
|
|
|
2014-11-22 09:45:04 +00:00
|
|
|
#include "localstorage.h"
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
Slider::Slider(QWidget *parent, const style::slider &st, int32 count, int32 sel) : QWidget(parent),
|
|
|
|
_count(count), _sel(snap(sel, 0, _count)), _wasSel(_sel), _st(st), _pressed(false) {
|
2014-06-15 12:31:03 +00:00
|
|
|
resize(_st.width, _st.bar.pxHeight());
|
2014-05-30 08:53:19 +00:00
|
|
|
setCursor(style::cur_pointer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Slider::mousePressEvent(QMouseEvent *e) {
|
|
|
|
_pressed = true;
|
|
|
|
mouseMoveEvent(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Slider::mouseMoveEvent(QMouseEvent *e) {
|
|
|
|
if (_pressed) {
|
2014-06-15 12:31:03 +00:00
|
|
|
int32 newSel = snap(qRound((_count - 1) * float64(e->pos().x() - _st.bar.pxWidth() / 2) / (width() - _st.bar.pxWidth())), 0, _count - 1);
|
2014-05-30 08:53:19 +00:00
|
|
|
if (newSel != _sel) {
|
|
|
|
_sel = newSel;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Slider::mouseReleaseEvent(QMouseEvent *e) {
|
|
|
|
_pressed = false;
|
|
|
|
if (_sel != _wasSel) {
|
|
|
|
emit changed(_wasSel);
|
|
|
|
_wasSel = _sel;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int32 Slider::selected() const {
|
|
|
|
return _sel;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Slider::setSelected(int32 sel) {
|
|
|
|
if (_sel != sel) {
|
|
|
|
_sel = sel;
|
|
|
|
emit changed(_wasSel);
|
|
|
|
_wasSel = _sel;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Slider::paintEvent(QPaintEvent *e) {
|
|
|
|
QPainter p(this);
|
|
|
|
|
2014-07-06 03:32:21 +00:00
|
|
|
p.fillRect(0, (height() - _st.thikness) / 2, width(), _st.thikness, _st.color->b);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-06-15 12:31:03 +00:00
|
|
|
int32 x = qFloor(_sel * float64(width() - _st.bar.pxWidth()) / (_count - 1)), y = (height() - _st.bar.pxHeight()) / 2;
|
2014-05-30 08:53:19 +00:00
|
|
|
p.drawPixmap(QPoint(x, y), App::sprite(), _st.bar);
|
|
|
|
}
|
|
|
|
|
|
|
|
QString scaleLabel(DBIScale scale) {
|
|
|
|
switch (scale) {
|
|
|
|
case dbisOne: return qsl("100%");
|
|
|
|
case dbisOneAndQuarter: return qsl("125%");
|
|
|
|
case dbisOneAndHalf: return qsl("150%");
|
|
|
|
case dbisTwo: return qsl("200%");
|
|
|
|
}
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool scaleIs(DBIScale scale) {
|
2014-06-14 19:32:11 +00:00
|
|
|
return cRealScale() == scale || (cRealScale() == dbisAuto && cScreenScale() == scale);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
SettingsInner::SettingsInner(SettingsWidget *parent) : QWidget(parent),
|
2014-10-22 19:44:30 +00:00
|
|
|
_self(App::self()),
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
// profile
|
2014-10-22 18:39:03 +00:00
|
|
|
_nameCache(self() ? self()->name : QString()),
|
2014-06-14 19:32:11 +00:00
|
|
|
_uploadPhoto(this, lang(lng_settings_upload), st::btnSetUpload),
|
|
|
|
_cancelPhoto(this, lang(lng_cancel)), _nameOver(false), _photoOver(false), a_photo(0),
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-10-22 18:39:03 +00:00
|
|
|
// contact info
|
|
|
|
_phoneText(self() ? App::formatPhone(self()->phone) : QString()),
|
2015-02-09 13:26:59 +00:00
|
|
|
_chooseUsername(this, (self() && !self()->username.isEmpty()) ? ('@' + self()->username) : lang(lng_settings_choose_username)),
|
2014-10-22 18:39:03 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
// notifications
|
|
|
|
_desktopNotify(this, lang(lng_settings_desktop_notify), cDesktopNotify()),
|
2014-07-18 10:37:34 +00:00
|
|
|
_senderName(this, lang(lng_settings_show_name), cNotifyView() <= dbinvShowName),
|
|
|
|
_messagePreview(this, lang(lng_settings_show_preview), cNotifyView() <= dbinvShowPreview),
|
2014-05-30 08:53:19 +00:00
|
|
|
_soundNotify(this, lang(lng_settings_sound_notify), cSoundNotify()),
|
|
|
|
|
|
|
|
// general
|
2014-12-20 17:49:18 +00:00
|
|
|
_changeLanguage(this, lang(lng_settings_change_lang)),
|
2014-05-30 08:53:19 +00:00
|
|
|
_autoUpdate(this, lang(lng_settings_auto_update), cAutoUpdate()),
|
|
|
|
_checkNow(this, lang(lng_settings_check_now)),
|
|
|
|
_restartNow(this, lang(lng_settings_update_now)),
|
|
|
|
|
2015-01-15 14:22:15 +00:00
|
|
|
_supportTray(cSupportTray()),
|
2014-05-30 08:53:19 +00:00
|
|
|
_workmodeTray(this, lang(lng_settings_workmode_tray), (cWorkMode() == dbiwmTrayOnly || cWorkMode() == dbiwmWindowAndTray)),
|
|
|
|
_workmodeWindow(this, lang(lng_settings_workmode_window), (cWorkMode() == dbiwmWindowOnly || cWorkMode() == dbiwmWindowAndTray)),
|
|
|
|
|
|
|
|
_autoStart(this, lang(lng_settings_auto_start), cAutoStart()),
|
|
|
|
_startMinimized(this, lang(lng_settings_start_min), cStartMinimized()),
|
2014-07-18 10:37:34 +00:00
|
|
|
_sendToMenu(this, lang(lng_settings_add_sendto), cSendToMenu()),
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-12-18 18:40:49 +00:00
|
|
|
_dpiAutoScale(this, lng_settings_scale_auto(lt_cur, scaleLabel(cScreenScale())), (cConfigScale() == dbisAuto)),
|
2014-05-30 08:53:19 +00:00
|
|
|
_dpiSlider(this, st::dpiSlider, dbisScaleCount - 1, cEvalScale(cConfigScale()) - 1),
|
|
|
|
_dpiWidth1(st::dpiFont1->m.width(scaleLabel(dbisOne))),
|
|
|
|
_dpiWidth2(st::dpiFont2->m.width(scaleLabel(dbisOneAndQuarter))),
|
|
|
|
_dpiWidth3(st::dpiFont3->m.width(scaleLabel(dbisOneAndHalf))),
|
|
|
|
_dpiWidth4(st::dpiFont4->m.width(scaleLabel(dbisTwo))),
|
|
|
|
|
|
|
|
// chat options
|
|
|
|
_replaceEmojis(this, lang(lng_settings_replace_emojis), cReplaceEmojis()),
|
|
|
|
_viewEmojis(this, lang(lng_settings_view_emojis)),
|
|
|
|
|
|
|
|
_enterSend(this, qsl("send_key"), 0, lang(lng_settings_send_enter), !cCtrlEnter()),
|
2014-06-16 09:31:10 +00:00
|
|
|
_ctrlEnterSend(this, qsl("send_key"), 1, lang((cPlatform() == dbipMac) ? lng_settings_send_cmdenter : lng_settings_send_ctrlenter), cCtrlEnter()),
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
_dontAskDownloadPath(this, lang(lng_download_path_dont_ask), !cAskDownloadPath()),
|
2014-12-19 21:20:30 +00:00
|
|
|
_downloadPathWidth(st::linkFont->m.width(lang(lng_download_path_label)) + st::linkFont->spacew),
|
2014-09-30 14:11:09 +00:00
|
|
|
_downloadPathEdit(this, cDownloadPath().isEmpty() ? lang(lng_download_path_default) : ((cDownloadPath() == qsl("tmp")) ? lang(lng_download_path_temp) : st::linkFont->m.elidedText(QDir::toNativeSeparators(cDownloadPath()), Qt::ElideRight, st::setWidth - st::setVersionLeft - _downloadPathWidth))),
|
2014-05-30 08:53:19 +00:00
|
|
|
_downloadPathClear(this, lang(lng_download_path_clear)),
|
|
|
|
_tempDirClearingWidth(st::linkFont->m.width(lang(lng_download_path_clearing))),
|
|
|
|
_tempDirClearedWidth(st::linkFont->m.width(lang(lng_download_path_cleared))),
|
|
|
|
_tempDirClearFailedWidth(st::linkFont->m.width(lang(lng_download_path_clear_failed))),
|
|
|
|
|
2015-02-03 15:02:46 +00:00
|
|
|
// chat background
|
|
|
|
_backFromGallery(this, lang(lng_settings_bg_from_gallery)),
|
|
|
|
_backFromFile(this, lang(lng_settings_bg_from_file)),
|
|
|
|
_tileBackground(this, lang(lng_settings_bg_tile), cTileBackground()),
|
|
|
|
_needBackgroundUpdate(false),
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-11-22 09:45:04 +00:00
|
|
|
// local storage
|
2015-01-02 14:55:24 +00:00
|
|
|
_localStorageClear(this, lang(lng_local_storage_clear)),
|
|
|
|
_localStorageHeight(1),
|
|
|
|
_storageClearingWidth(st::linkFont->m.width(lang(lng_local_storage_clearing))),
|
|
|
|
_storageClearedWidth(st::linkFont->m.width(lang(lng_local_storage_cleared))),
|
|
|
|
_storageClearFailedWidth(st::linkFont->m.width(lang(lng_local_storage_clear_failed))),
|
2014-11-22 09:45:04 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
// advanced
|
2015-03-02 12:34:16 +00:00
|
|
|
_passcodeEdit(this, lang(cHasPasscode() ? lng_passcode_change : lng_passcode_turn_on)),
|
|
|
|
_passcodeTurnOff(this, lang(lng_passcode_turn_off)),
|
|
|
|
_autoLock(this, (cAutoLock() % 3600) ? lng_passcode_autolock_minutes(lt_count, cAutoLock() / 60) : lng_passcode_autolock_hours(lt_count, cAutoLock() / 3600)),
|
|
|
|
_autoLockText(lang(psIdleSupported() ? lng_passcode_autolock_away : lng_passcode_autolock_inactive) + ' '),
|
|
|
|
_autoLockWidth(st::linkFont->m.width(_autoLockText)),
|
2015-04-02 10:33:19 +00:00
|
|
|
_passwordEdit(this, lang(lng_cloud_password_set)),
|
|
|
|
_passwordTurnOff(this, lang(lng_passcode_turn_off)),
|
|
|
|
_hasPasswordRecovery(false),
|
2014-12-18 18:40:49 +00:00
|
|
|
_connectionType(this, lng_connection_auto(lt_type, QString())),
|
2015-03-02 12:34:16 +00:00
|
|
|
_connectionTypeText(lang(lng_connection_type) + ' '),
|
|
|
|
_connectionTypeWidth(st::linkFont->m.width(_connectionTypeText)),
|
2015-04-02 10:33:19 +00:00
|
|
|
_showSessions(this, lang(lng_settings_show_sessions)),
|
|
|
|
_logOut(this, lang(lng_settings_logout), st::btnLogout)
|
2014-05-30 08:53:19 +00:00
|
|
|
{
|
2014-10-22 18:39:03 +00:00
|
|
|
if (self()) {
|
2014-05-30 08:53:19 +00:00
|
|
|
_nameText.setText(st::setNameFont, _nameCache, _textNameOptions);
|
2014-10-22 18:39:03 +00:00
|
|
|
PhotoData *selfPhoto = self()->photoId ? App::photo(self()->photoId) : 0;
|
|
|
|
if (selfPhoto && selfPhoto->date) _photoLink = TextLinkPtr(new PhotoLink(selfPhoto, self()));
|
2015-04-02 10:33:19 +00:00
|
|
|
MTP::send(MTPusers_GetFullUser(self()->inputUser), rpcDone(&SettingsInner::gotFullSelf), RPCFailHandlerPtr(), 0, 10);
|
|
|
|
onReloadPassword();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
connect(App::main(), SIGNAL(peerPhotoChanged(PeerData *)), this, SLOT(peerUpdated(PeerData *)));
|
|
|
|
connect(App::main(), SIGNAL(peerNameChanged(PeerData *, const PeerData::Names &, const PeerData::NameFirstChars &)), this, SLOT(peerUpdated(PeerData *)));
|
2015-04-02 10:33:19 +00:00
|
|
|
|
|
|
|
connect(App::app(), SIGNAL(applicationStateChanged(Qt::ApplicationState)), this, SLOT(onReloadPassword(Qt::ApplicationState)));
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// profile
|
|
|
|
connect(&_uploadPhoto, SIGNAL(clicked()), this, SLOT(onUpdatePhoto()));
|
|
|
|
connect(&_cancelPhoto, SIGNAL(clicked()), this, SLOT(onUpdatePhotoCancel()));
|
|
|
|
|
|
|
|
connect(App::app(), SIGNAL(peerPhotoDone(PeerId)), this, SLOT(onPhotoUpdateDone(PeerId)));
|
|
|
|
connect(App::app(), SIGNAL(peerPhotoFail(PeerId)), this, SLOT(onPhotoUpdateFail(PeerId)));
|
|
|
|
|
2014-10-22 18:39:03 +00:00
|
|
|
// contact info
|
|
|
|
connect(&_chooseUsername, SIGNAL(clicked()), this, SLOT(onUsername()));
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
// notifications
|
2014-07-18 10:37:34 +00:00
|
|
|
_senderName.setDisabled(!_desktopNotify.checked());
|
|
|
|
_messagePreview.setDisabled(_senderName.disabled() || !_senderName.checked());
|
2014-05-30 08:53:19 +00:00
|
|
|
connect(&_desktopNotify, SIGNAL(changed()), this, SLOT(onDesktopNotify()));
|
2014-07-18 10:37:34 +00:00
|
|
|
connect(&_senderName, SIGNAL(changed()), this, SLOT(onSenderName()));
|
|
|
|
connect(&_messagePreview, SIGNAL(changed()), this, SLOT(onMessagePreview()));
|
2014-05-30 08:53:19 +00:00
|
|
|
connect(&_soundNotify, SIGNAL(changed()), this, SLOT(onSoundNotify()));
|
|
|
|
|
|
|
|
// general
|
2014-12-19 21:20:30 +00:00
|
|
|
connect(&_changeLanguage, SIGNAL(clicked()), this, SLOT(onChangeLanguage()));
|
2014-05-30 08:53:19 +00:00
|
|
|
connect(&_autoUpdate, SIGNAL(changed()), this, SLOT(onAutoUpdate()));
|
|
|
|
connect(&_checkNow, SIGNAL(clicked()), this, SLOT(onCheckNow()));
|
|
|
|
connect(&_restartNow, SIGNAL(clicked()), this, SLOT(onRestartNow()));
|
|
|
|
|
|
|
|
connect(&_workmodeTray, SIGNAL(changed()), this, SLOT(onWorkmodeTray()));
|
|
|
|
connect(&_workmodeWindow, SIGNAL(changed()), this, SLOT(onWorkmodeWindow()));
|
|
|
|
|
|
|
|
_startMinimized.setDisabled(!_autoStart.checked());
|
|
|
|
connect(&_autoStart, SIGNAL(changed()), this, SLOT(onAutoStart()));
|
|
|
|
connect(&_startMinimized, SIGNAL(changed()), this, SLOT(onStartMinimized()));
|
2014-07-18 10:37:34 +00:00
|
|
|
connect(&_sendToMenu, SIGNAL(changed()), this, SLOT(onSendToMenu()));
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
connect(&_dpiAutoScale, SIGNAL(changed()), this, SLOT(onScaleAuto()));
|
|
|
|
connect(&_dpiSlider, SIGNAL(changed(int32)), this, SLOT(onScaleChange()));
|
|
|
|
|
2015-02-09 23:29:02 +00:00
|
|
|
_curVersionText = lng_settings_current_version(lt_version, QString::fromWCharArray(AppVersionStr) + (DevChannel ? " dev" : "")) + ' ';
|
2014-05-30 08:53:19 +00:00
|
|
|
_curVersionWidth = st::linkFont->m.width(_curVersionText);
|
|
|
|
_newVersionText = lang(lng_settings_update_ready) + ' ';
|
|
|
|
_newVersionWidth = st::linkFont->m.width(_newVersionText);
|
|
|
|
|
|
|
|
connect(App::app(), SIGNAL(updateChecking()), this, SLOT(onUpdateChecking()));
|
|
|
|
connect(App::app(), SIGNAL(updateLatest()), this, SLOT(onUpdateLatest()));
|
|
|
|
connect(App::app(), SIGNAL(updateDownloading(qint64,qint64)), this, SLOT(onUpdateDownloading(qint64,qint64)));
|
|
|
|
connect(App::app(), SIGNAL(updateReady()), this, SLOT(onUpdateReady()));
|
|
|
|
connect(App::app(), SIGNAL(updateFailed()), this, SLOT(onUpdateFailed()));
|
|
|
|
|
|
|
|
// chat options
|
|
|
|
connect(&_replaceEmojis, SIGNAL(changed()), this, SLOT(onReplaceEmojis()));
|
|
|
|
connect(&_viewEmojis, SIGNAL(clicked()), this, SLOT(onViewEmojis()));
|
|
|
|
|
|
|
|
connect(&_enterSend, SIGNAL(changed()), this, SLOT(onEnterSend()));
|
|
|
|
connect(&_ctrlEnterSend, SIGNAL(changed()), this, SLOT(onCtrlEnterSend()));
|
|
|
|
|
|
|
|
connect(&_dontAskDownloadPath, SIGNAL(changed()), this, SLOT(onDontAskDownloadPath()));
|
|
|
|
connect(&_downloadPathEdit, SIGNAL(clicked()), this, SLOT(onDownloadPathEdit()));
|
|
|
|
connect(&_downloadPathClear, SIGNAL(clicked()), this, SLOT(onDownloadPathClear()));
|
|
|
|
switch (App::wnd()->tempDirState()) {
|
|
|
|
case Window::TempDirEmpty: _tempDirClearState = TempDirEmpty; break;
|
|
|
|
case Window::TempDirExists: _tempDirClearState = TempDirExists; break;
|
|
|
|
case Window::TempDirRemoving: _tempDirClearState = TempDirClearing; break;
|
|
|
|
}
|
2014-11-22 09:45:04 +00:00
|
|
|
connect(App::wnd(), SIGNAL(tempDirCleared(int)), this, SLOT(onTempDirCleared(int)));
|
|
|
|
connect(App::wnd(), SIGNAL(tempDirClearFailed(int)), this, SLOT(onTempDirClearFailed(int)));
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-02-03 15:02:46 +00:00
|
|
|
// chat background
|
|
|
|
if (!cChatBackground()) App::initBackground();
|
|
|
|
updateChatBackground();
|
|
|
|
connect(&_backFromGallery, SIGNAL(clicked()), this, SLOT(onBackFromGallery()));
|
|
|
|
connect(&_backFromFile, SIGNAL(clicked()), this, SLOT(onBackFromFile()));
|
|
|
|
connect(&_tileBackground, SIGNAL(changed()), this, SLOT(onTileBackground()));
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-11-22 09:45:04 +00:00
|
|
|
// local storage
|
2015-01-02 14:55:24 +00:00
|
|
|
connect(&_localStorageClear, SIGNAL(clicked()), this, SLOT(onLocalStorageClear()));
|
|
|
|
switch (App::wnd()->localStorageState()) {
|
|
|
|
case Window::TempDirEmpty: _storageClearState = TempDirEmpty; break;
|
|
|
|
case Window::TempDirExists: _storageClearState = TempDirExists; break;
|
|
|
|
case Window::TempDirRemoving: _storageClearState = TempDirClearing; break;
|
2014-11-22 09:45:04 +00:00
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
// advanced
|
2015-03-02 12:34:16 +00:00
|
|
|
connect(&_passcodeEdit, SIGNAL(clicked()), this, SLOT(onPasscode()));
|
|
|
|
connect(&_passcodeTurnOff, SIGNAL(clicked()), this, SLOT(onPasscodeOff()));
|
|
|
|
connect(&_autoLock, SIGNAL(clicked()), this, SLOT(onAutoLock()));
|
2015-04-02 10:33:19 +00:00
|
|
|
connect(&_passwordEdit, SIGNAL(clicked()), this, SLOT(onPassword()));
|
|
|
|
connect(&_passwordTurnOff, SIGNAL(clicked()), this, SLOT(onPasswordOff()));
|
2014-05-30 08:53:19 +00:00
|
|
|
connect(&_connectionType, SIGNAL(clicked()), this, SLOT(onConnectionType()));
|
2015-04-02 10:33:19 +00:00
|
|
|
connect(&_showSessions, SIGNAL(clicked()), this, SLOT(onShowSessions()));
|
2014-11-18 12:40:43 +00:00
|
|
|
connect(&_logOut, SIGNAL(clicked()), App::wnd(), SLOT(onLogout()));
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
if (App::main()) {
|
|
|
|
connect(App::main(), SIGNAL(peerUpdated(PeerData*)), this, SLOT(peerUpdated(PeerData*)));
|
|
|
|
}
|
|
|
|
|
|
|
|
updateOnlineDisplay();
|
|
|
|
|
|
|
|
switch (App::app()->updatingState()) {
|
|
|
|
case Application::UpdatingDownload:
|
|
|
|
setUpdatingState(UpdatingDownload, true);
|
|
|
|
setDownloadProgress(App::app()->updatingReady(), App::app()->updatingSize());
|
|
|
|
break;
|
|
|
|
case Application::UpdatingReady: setUpdatingState(UpdatingReady, true); break;
|
|
|
|
default: setUpdatingState(UpdatingNone, true); break;
|
|
|
|
}
|
|
|
|
|
|
|
|
updateConnectionType();
|
|
|
|
|
|
|
|
setMouseTracking(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::peerUpdated(PeerData *data) {
|
2014-10-22 18:39:03 +00:00
|
|
|
if (self() && data == self()) {
|
|
|
|
if (self()->photoId) {
|
|
|
|
PhotoData *selfPhoto = App::photo(self()->photoId);
|
2014-05-30 08:53:19 +00:00
|
|
|
if (selfPhoto->date) {
|
2014-10-22 18:39:03 +00:00
|
|
|
_photoLink = TextLinkPtr(new PhotoLink(selfPhoto, self()));
|
2014-05-30 08:53:19 +00:00
|
|
|
} else {
|
|
|
|
_photoLink = TextLinkPtr();
|
2014-10-22 18:39:03 +00:00
|
|
|
MTP::send(MTPusers_GetFullUser(self()->inputUser), rpcDone(&SettingsInner::gotFullSelf));
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_photoLink = TextLinkPtr();
|
|
|
|
}
|
|
|
|
|
2014-10-22 18:39:03 +00:00
|
|
|
if (_nameCache != self()->name) {
|
|
|
|
_nameCache = self()->name;
|
2014-05-30 08:53:19 +00:00
|
|
|
_nameText.setText(st::setNameFont, _nameCache, _textNameOptions);
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::paintEvent(QPaintEvent *e) {
|
2015-02-03 15:02:46 +00:00
|
|
|
bool animateBackground = false;
|
|
|
|
if (App::main() && App::main()->chatBackgroundLoading()) {
|
|
|
|
App::main()->checkChatBackground();
|
|
|
|
if (App::main()->chatBackgroundLoading()) {
|
|
|
|
animateBackground = true;
|
|
|
|
} else {
|
|
|
|
updateChatBackground();
|
|
|
|
}
|
|
|
|
} else if (_needBackgroundUpdate) {
|
|
|
|
updateChatBackground();
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
QPainter p(this);
|
|
|
|
|
|
|
|
p.setClipRect(e->rect());
|
|
|
|
|
|
|
|
int32 top = 0;
|
2014-10-22 18:39:03 +00:00
|
|
|
if (self()) {
|
2014-05-30 08:53:19 +00:00
|
|
|
// profile
|
|
|
|
top += st::setTop;
|
|
|
|
|
|
|
|
_nameText.drawElided(p, _uploadPhoto.x() + st::setNameLeft, top + st::setNameTop, _uploadPhoto.width() - st::setNameLeft);
|
|
|
|
if (!_cancelPhoto.isHidden()) {
|
|
|
|
p.setFont(st::linkFont->f);
|
|
|
|
p.setPen(st::black->p);
|
2014-10-22 18:39:03 +00:00
|
|
|
p.drawText(_uploadPhoto.x() + st::setStatusLeft, _cancelPhoto.y() + st::linkFont->ascent, lang(lng_settings_uploading_photo));
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (_photoLink) {
|
2014-10-22 18:39:03 +00:00
|
|
|
p.drawPixmap(_left, top, self()->photo->pix(st::setPhotoSize));
|
2014-05-30 08:53:19 +00:00
|
|
|
} else {
|
|
|
|
if (a_photo.current() < 1) {
|
|
|
|
p.drawPixmap(QPoint(_left, top), App::sprite(), st::setPhotoImg);
|
|
|
|
}
|
|
|
|
if (a_photo.current() > 0) {
|
|
|
|
p.setOpacity(a_photo.current());
|
|
|
|
p.drawPixmap(QPoint(_left, top), App::sprite(), st::setOverPhotoImg);
|
|
|
|
p.setOpacity(1);
|
|
|
|
}
|
|
|
|
}
|
2014-10-22 18:39:03 +00:00
|
|
|
|
|
|
|
p.setFont(st::setStatusFont->f);
|
|
|
|
bool connecting = App::wnd()->connectingVisible();
|
|
|
|
p.setPen((connecting ? st::profileOfflineColor : st::profileOnlineColor)->p);
|
|
|
|
p.drawText(_uploadPhoto.x() + st::setStatusLeft, top + st::setStatusTop + st::setStatusFont->ascent, lang(connecting ? lng_status_connecting : lng_status_online));
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
top += st::setPhotoSize;
|
|
|
|
|
|
|
|
if (!_errorText.isEmpty()) {
|
|
|
|
p.setFont(st::setErrFont->f);
|
|
|
|
p.setPen(st::setErrColor->p);
|
|
|
|
p.drawText(QRect(_uploadPhoto.x(), _uploadPhoto.y() + _uploadPhoto.height() + st::setLittleSkip, _uploadPhoto.width(), st::setErrFont->height), _errorText, style::al_center);
|
|
|
|
}
|
|
|
|
|
2014-10-22 18:39:03 +00:00
|
|
|
// contact info
|
|
|
|
p.setFont(st::setHeaderFont->f);
|
|
|
|
p.setPen(st::setHeaderColor->p);
|
|
|
|
p.drawText(_left + st::setHeaderLeft, top + st::setHeaderTop + st::setHeaderFont->ascent, lang(lng_settings_section_contact_info));
|
|
|
|
top += st::setHeaderSkip;
|
|
|
|
|
|
|
|
p.setFont(st::linkFont->f);
|
|
|
|
p.setPen(st::black->p);
|
|
|
|
p.drawText(_left, top + st::linkFont->ascent, lang(lng_settings_phone_number));
|
2015-02-09 13:26:59 +00:00
|
|
|
p.drawText(_left + st::setContactInfoLeft, top + st::linkFont->ascent, _phoneText);
|
2014-10-22 18:39:03 +00:00
|
|
|
top += st::linkFont->height + st::setLittleSkip;
|
|
|
|
|
|
|
|
p.drawText(_left, top + st::linkFont->ascent, lang(lng_settings_username));
|
|
|
|
top += st::linkFont->height;
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
// notifications
|
|
|
|
p.setFont(st::setHeaderFont->f);
|
|
|
|
p.setPen(st::setHeaderColor->p);
|
|
|
|
p.drawText(_left + st::setHeaderLeft, top + st::setHeaderTop + st::setHeaderFont->ascent, lang(lng_settings_section_notify));
|
|
|
|
top += st::setHeaderSkip;
|
|
|
|
|
|
|
|
top += _desktopNotify.height() + st::setLittleSkip;
|
2014-07-18 10:37:34 +00:00
|
|
|
top += _senderName.height() + st::setLittleSkip;
|
|
|
|
top += _messagePreview.height() + st::setSectionSkip;
|
2014-05-30 08:53:19 +00:00
|
|
|
top += _soundNotify.height();
|
|
|
|
}
|
|
|
|
|
|
|
|
// general
|
|
|
|
p.setFont(st::setHeaderFont->f);
|
|
|
|
p.setPen(st::setHeaderColor->p);
|
|
|
|
p.drawText(_left + st::setHeaderLeft, top + st::setHeaderTop + st::setHeaderFont->ascent, lang(lng_settings_section_general));
|
|
|
|
top += st::setHeaderSkip;
|
|
|
|
|
|
|
|
top += _autoUpdate.height();
|
|
|
|
QString textToDraw;
|
|
|
|
if (cAutoUpdate()) {
|
|
|
|
switch (_updatingState) {
|
|
|
|
case UpdatingNone: textToDraw = _curVersionText; break;
|
|
|
|
case UpdatingCheck: textToDraw = lang(lng_settings_update_checking); break;
|
|
|
|
case UpdatingLatest: textToDraw = lang(lng_settings_latest_installed); break;
|
|
|
|
case UpdatingDownload: textToDraw = _newVersionDownload; break;
|
|
|
|
case UpdatingReady: textToDraw = _newVersionText; break;
|
|
|
|
case UpdatingFail: textToDraw = lang(lng_settings_update_fail); break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
textToDraw = _curVersionText;
|
|
|
|
}
|
|
|
|
p.setFont(st::linkFont->f);
|
|
|
|
p.setPen(st::setVersionColor->p);
|
|
|
|
p.drawText(_left + st::setVersionLeft, top + st::setVersionTop + st::linkFont->ascent, textToDraw);
|
|
|
|
top += st::setVersionHeight;
|
|
|
|
|
2014-06-15 12:31:03 +00:00
|
|
|
if (cPlatform() == dbipWindows) {
|
|
|
|
top += _workmodeTray.height() + st::setLittleSkip;
|
|
|
|
top += _workmodeWindow.height() + st::setSectionSkip;
|
|
|
|
|
|
|
|
top += _autoStart.height() + st::setLittleSkip;
|
2014-07-18 10:37:34 +00:00
|
|
|
top += _startMinimized.height() + st::setSectionSkip;
|
|
|
|
|
|
|
|
top += _sendToMenu.height();
|
2015-01-15 14:22:15 +00:00
|
|
|
} else if (_supportTray) {
|
2014-09-20 21:31:03 +00:00
|
|
|
top += _workmodeTray.height();
|
|
|
|
}
|
|
|
|
|
2014-06-15 12:31:03 +00:00
|
|
|
if (!cRetina()) {
|
|
|
|
p.setFont(st::setHeaderFont->f);
|
|
|
|
p.setPen(st::setHeaderColor->p);
|
|
|
|
p.drawText(_left + st::setHeaderLeft, top + st::setHeaderTop + st::setHeaderFont->ascent, lang(lng_settings_scale_label));
|
|
|
|
top += st::setHeaderSkip;
|
|
|
|
top += _dpiAutoScale.height() + st::setLittleSkip;
|
|
|
|
|
|
|
|
top += _dpiSlider.height() + st::dpiFont4->height;
|
|
|
|
int32 sLeft = _dpiSlider.x() + _dpiWidth1 / 2, sWidth = _dpiSlider.width();
|
|
|
|
float64 sStep = (sWidth - _dpiWidth1 / 2 - _dpiWidth4 / 2) / float64(dbisScaleCount - 2);
|
|
|
|
p.setFont(st::dpiFont1->f);
|
|
|
|
|
|
|
|
p.setPen((scaleIs(dbisOne) ? st::dpiActive : st::dpiInactive)->p);
|
|
|
|
p.drawText(sLeft + qRound(0 * sStep) - _dpiWidth1 / 2, top - (st::dpiFont4->height - st::dpiFont1->height) / 2 - st::dpiFont1->descent, scaleLabel(dbisOne));
|
|
|
|
p.setFont(st::dpiFont2->f);
|
|
|
|
p.setPen((scaleIs(dbisOneAndQuarter) ? st::dpiActive : st::dpiInactive)->p);
|
|
|
|
p.drawText(sLeft + qRound(1 * sStep) - _dpiWidth2 / 2, top - (st::dpiFont4->height - st::dpiFont2->height) / 2 - st::dpiFont2->descent, scaleLabel(dbisOneAndQuarter));
|
|
|
|
p.setFont(st::dpiFont3->f);
|
|
|
|
p.setPen((scaleIs(dbisOneAndHalf) ? st::dpiActive : st::dpiInactive)->p);
|
|
|
|
p.drawText(sLeft + qRound(2 * sStep) - _dpiWidth3 / 2, top - (st::dpiFont4->height - st::dpiFont3->height) / 2 - st::dpiFont3->descent, scaleLabel(dbisOneAndHalf));
|
|
|
|
p.setFont(st::dpiFont4->f);
|
|
|
|
p.setPen((scaleIs(dbisTwo) ? st::dpiActive : st::dpiInactive)->p);
|
|
|
|
p.drawText(sLeft + qRound(3 * sStep) - _dpiWidth4 / 2, top - (st::dpiFont4->height - st::dpiFont4->height) / 2 - st::dpiFont4->descent, scaleLabel(dbisTwo));
|
|
|
|
p.setFont(st::linkFont->f);
|
|
|
|
}
|
|
|
|
|
2014-10-22 18:39:03 +00:00
|
|
|
if (self()) {
|
2014-05-30 08:53:19 +00:00
|
|
|
// chat options
|
|
|
|
p.setFont(st::setHeaderFont->f);
|
|
|
|
p.setPen(st::setHeaderColor->p);
|
|
|
|
p.drawText(_left + st::setHeaderLeft, top + st::setHeaderTop + st::setHeaderFont->ascent, lang(lng_settings_section_chat));
|
|
|
|
top += st::setHeaderSkip;
|
|
|
|
|
|
|
|
top += _replaceEmojis.height() + st::setSectionSkip;
|
|
|
|
top += _enterSend.height() + st::setLittleSkip;
|
|
|
|
top += _ctrlEnterSend.height() + st::setSectionSkip;
|
|
|
|
|
|
|
|
top += _dontAskDownloadPath.height();
|
|
|
|
if (!cAskDownloadPath()) {
|
|
|
|
top += st::setLittleSkip;
|
|
|
|
p.setFont(st::linkFont->f);
|
|
|
|
p.setPen(st::black->p);
|
|
|
|
p.drawText(_left + st::setVersionLeft, top + st::linkFont->ascent, lang(lng_download_path_label));
|
2014-09-30 14:11:09 +00:00
|
|
|
if (cDownloadPath() == qsl("tmp")) {
|
2014-05-30 08:53:19 +00:00
|
|
|
QString clearText;
|
|
|
|
int32 clearWidth = 0;
|
|
|
|
switch (_tempDirClearState) {
|
|
|
|
case TempDirClearing: clearText = lang(lng_download_path_clearing); clearWidth = _tempDirClearingWidth; break;
|
|
|
|
case TempDirCleared: clearText = lang(lng_download_path_cleared); clearWidth = _tempDirClearedWidth; break;
|
|
|
|
case TempDirClearFailed: clearText = lang(lng_download_path_clear_failed); clearWidth = _tempDirClearFailedWidth; break;
|
|
|
|
}
|
|
|
|
if (clearWidth) {
|
|
|
|
p.drawText(_left + st::setWidth - clearWidth, top + st::linkFont->ascent, clearText);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
top += _downloadPathEdit.height();
|
|
|
|
}
|
|
|
|
top += st::setSectionSkip;
|
|
|
|
|
2015-02-03 15:02:46 +00:00
|
|
|
// chat background
|
|
|
|
p.setFont(st::setHeaderFont->f);
|
|
|
|
p.setPen(st::setHeaderColor->p);
|
|
|
|
p.drawText(_left + st::setHeaderLeft, top + st::setHeaderTop + st::setHeaderFont->ascent, lang(lng_settings_section_background));
|
|
|
|
top += st::setHeaderSkip;
|
|
|
|
|
|
|
|
if (animateBackground) {
|
|
|
|
const QPixmap &pix = App::main()->newBackgroundThumb()->pixBlurred(st::setBackgroundSize);
|
|
|
|
|
|
|
|
p.drawPixmap(_left, top, st::setBackgroundSize, st::setBackgroundSize, pix, 0, (pix.height() - st::setBackgroundSize) / 2, st::setBackgroundSize, st::setBackgroundSize);
|
|
|
|
|
|
|
|
uint64 dt = getms();
|
|
|
|
int32 cnt = int32(st::photoLoaderCnt), period = int32(st::photoLoaderPeriod), t = dt % period, delta = int32(st::photoLoaderDelta);
|
|
|
|
|
|
|
|
int32 x = _left + (st::setBackgroundSize - st::mediaviewLoader.width()) / 2;
|
|
|
|
int32 y = top + (st::setBackgroundSize - st::mediaviewLoader.height()) / 2;
|
|
|
|
p.fillRect(x, y, st::mediaviewLoader.width(), st::mediaviewLoader.height(), st::photoLoaderBg->b);
|
|
|
|
|
|
|
|
x += (st::mediaviewLoader.width() - cnt * st::mediaviewLoaderPoint.width() - (cnt - 1) * st::mediaviewLoaderSkip) / 2;
|
|
|
|
y += (st::mediaviewLoader.height() - st::mediaviewLoaderPoint.height()) / 2;
|
|
|
|
QColor c(st::white->c);
|
|
|
|
QBrush b(c);
|
|
|
|
for (int32 i = 0; i < cnt; ++i) {
|
|
|
|
t -= delta;
|
|
|
|
while (t < 0) t += period;
|
|
|
|
|
|
|
|
float64 alpha = (t >= st::photoLoaderDuration1 + st::photoLoaderDuration2) ? 0 : ((t > st::photoLoaderDuration1 ? ((st::photoLoaderDuration1 + st::photoLoaderDuration2 - t) / st::photoLoaderDuration2) : (t / st::photoLoaderDuration1)));
|
|
|
|
c.setAlphaF(st::photoLoaderAlphaMin + alpha * (1 - st::photoLoaderAlphaMin));
|
|
|
|
b.setColor(c);
|
|
|
|
p.fillRect(x + i * (st::mediaviewLoaderPoint.width() + st::mediaviewLoaderSkip), y, st::mediaviewLoaderPoint.width(), st::mediaviewLoaderPoint.height(), b);
|
|
|
|
}
|
|
|
|
QTimer::singleShot(AnimationTimerDelta, this, SLOT(updateBackgroundRect()));
|
|
|
|
} else {
|
|
|
|
p.drawPixmap(_left, top, _background);
|
|
|
|
}
|
|
|
|
top += st::setBackgroundSize;
|
|
|
|
top += st::setLittleSkip;
|
|
|
|
top += _tileBackground.height();
|
2014-11-22 09:45:04 +00:00
|
|
|
|
|
|
|
// local storage
|
|
|
|
p.setFont(st::setHeaderFont->f);
|
|
|
|
p.setPen(st::setHeaderColor->p);
|
|
|
|
p.drawText(_left + st::setHeaderLeft, top + st::setHeaderTop + st::setHeaderFont->ascent, lang(lng_settings_section_cache));
|
|
|
|
|
|
|
|
p.setFont(st::linkFont->f);
|
|
|
|
p.setPen(st::black->p);
|
|
|
|
QString clearText;
|
|
|
|
int32 clearWidth = 0;
|
2015-01-02 14:55:24 +00:00
|
|
|
switch (_storageClearState) {
|
|
|
|
case TempDirClearing: clearText = lang(lng_local_storage_clearing); clearWidth = _storageClearingWidth; break;
|
|
|
|
case TempDirCleared: clearText = lang(lng_local_storage_cleared); clearWidth = _storageClearedWidth; break;
|
|
|
|
case TempDirClearFailed: clearText = lang(lng_local_storage_clear_failed); clearWidth = _storageClearFailedWidth; break;
|
2014-11-22 09:45:04 +00:00
|
|
|
}
|
|
|
|
if (clearWidth) {
|
2015-01-02 14:55:24 +00:00
|
|
|
p.drawText(_left + st::setWidth - clearWidth, top + st::setHeaderTop + st::setHeaderFont->ascent, clearText);
|
|
|
|
}
|
|
|
|
|
|
|
|
top += st::setHeaderSkip;
|
|
|
|
|
|
|
|
int32 cntImages = Local::hasImages() + Local::hasStickers(), cntAudios = Local::hasAudios();
|
|
|
|
if (cntImages > 0 && cntAudios > 0) {
|
|
|
|
if (_localStorageHeight != 2) {
|
|
|
|
cntAudios = 0;
|
|
|
|
QTimer::singleShot(0, this, SLOT(onUpdateLocalStorage()));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (_localStorageHeight != 1) {
|
|
|
|
QTimer::singleShot(0, this, SLOT(onUpdateLocalStorage()));
|
|
|
|
}
|
2014-11-22 09:45:04 +00:00
|
|
|
}
|
2015-01-02 14:55:24 +00:00
|
|
|
if (cntImages > 0) {
|
|
|
|
QString cnt = lng_settings_images_cached(lt_count, cntImages, lt_size, formatSizeText(Local::storageImagesSize() + Local::storageStickersSize()));
|
|
|
|
p.drawText(_left + st::setHeaderLeft, top + st::linkFont->ascent, cnt);
|
|
|
|
}
|
|
|
|
if (_localStorageHeight == 2) top += _localStorageClear.height() + st::setLittleSkip;
|
|
|
|
if (cntAudios > 0) {
|
|
|
|
QString cnt = lng_settings_audios_cached(lt_count, cntAudios, lt_size, formatSizeText(Local::storageAudiosSize()));
|
|
|
|
p.drawText(_left + st::setHeaderLeft, top + st::linkFont->ascent, cnt);
|
|
|
|
} else if (cntImages <= 0) {
|
|
|
|
p.drawText(_left + st::setHeaderLeft, top + st::linkFont->ascent, lang(lng_settings_no_data_cached));
|
|
|
|
}
|
|
|
|
top += _localStorageClear.height();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2014-11-22 09:45:04 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
// advanced
|
|
|
|
p.setFont(st::setHeaderFont->f);
|
|
|
|
p.setPen(st::setHeaderColor->p);
|
|
|
|
p.drawText(_left + st::setHeaderLeft, top + st::setHeaderTop + st::setHeaderFont->ascent, lang(lng_settings_section_advanced));
|
|
|
|
top += st::setHeaderSkip;
|
2014-11-22 09:45:04 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
p.setFont(st::linkFont->f);
|
|
|
|
p.setPen(st::black->p);
|
2015-03-02 12:34:16 +00:00
|
|
|
if (self()) {
|
|
|
|
top += _passcodeEdit.height() + st::setLittleSkip;
|
|
|
|
if (cHasPasscode()) {
|
|
|
|
p.drawText(_left, top + st::linkFont->ascent, _autoLockText);
|
|
|
|
top += _autoLock.height() + st::setLittleSkip;
|
|
|
|
}
|
2015-04-02 10:33:19 +00:00
|
|
|
if (!_waitingConfirm.isEmpty()) p.drawText(_left, top + st::linkFont->ascent, _waitingConfirm);
|
|
|
|
top += _passwordEdit.height() + st::setLittleSkip;
|
2015-03-02 12:34:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
p.drawText(_left, _connectionType.y() + st::linkFont->ascent, _connectionTypeText);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::resizeEvent(QResizeEvent *e) {
|
|
|
|
_left = (width() - st::setWidth) / 2;
|
|
|
|
|
|
|
|
int32 top = 0;
|
|
|
|
|
2014-10-22 18:39:03 +00:00
|
|
|
if (self()) {
|
2014-05-30 08:53:19 +00:00
|
|
|
// profile
|
|
|
|
top += st::setTop;
|
|
|
|
top += st::setPhotoSize;
|
|
|
|
_uploadPhoto.move(_left + st::setWidth - _uploadPhoto.width(), top - _uploadPhoto.height());
|
|
|
|
_cancelPhoto.move(_left + st::setWidth - _cancelPhoto.width(), top - _uploadPhoto.height() + st::btnSetUpload.textTop + st::btnSetUpload.font->ascent - st::linkFont->ascent);
|
|
|
|
|
2014-10-22 18:39:03 +00:00
|
|
|
// contact info
|
|
|
|
top += st::setHeaderSkip;
|
|
|
|
top += st::linkFont->height + st::setLittleSkip;
|
2015-02-09 13:26:59 +00:00
|
|
|
_chooseUsername.move(_left + st::setContactInfoLeft, top); top += st::linkFont->height;
|
2014-10-22 18:39:03 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
// notifications
|
|
|
|
top += st::setHeaderSkip;
|
|
|
|
_desktopNotify.move(_left, top); top += _desktopNotify.height() + st::setLittleSkip;
|
2014-07-18 10:37:34 +00:00
|
|
|
_senderName.move(_left, top); top += _senderName.height() + st::setLittleSkip;
|
|
|
|
_messagePreview.move(_left, top); top += _messagePreview.height() + st::setSectionSkip;
|
2014-05-30 08:53:19 +00:00
|
|
|
_soundNotify.move(_left, top); top += _soundNotify.height();
|
|
|
|
}
|
|
|
|
|
|
|
|
// general
|
|
|
|
top += st::setHeaderSkip;
|
2014-12-19 21:20:30 +00:00
|
|
|
_changeLanguage.move(_left + st::setWidth - _changeLanguage.width(), top - st::setHeaderSkip + st::setHeaderTop + st::setHeaderFont->ascent - st::linkFont->ascent);
|
2014-05-30 08:53:19 +00:00
|
|
|
_autoUpdate.move(_left, top);
|
2014-06-17 05:37:53 +00:00
|
|
|
_checkNow.move(_left + st::setWidth - _checkNow.width(), top + st::cbDefFlat.textTop); top += _autoUpdate.height();
|
2014-05-30 08:53:19 +00:00
|
|
|
_restartNow.move(_left + st::setWidth - _restartNow.width(), top + st::setVersionTop);
|
|
|
|
top += st::setVersionHeight;
|
|
|
|
|
2014-06-15 12:31:03 +00:00
|
|
|
if (cPlatform() == dbipWindows) {
|
|
|
|
_workmodeTray.move(_left, top); top += _workmodeTray.height() + st::setLittleSkip;
|
|
|
|
_workmodeWindow.move(_left, top); top += _workmodeWindow.height() + st::setSectionSkip;
|
|
|
|
|
|
|
|
_autoStart.move(_left, top); top += _autoStart.height() + st::setLittleSkip;
|
2014-07-18 10:37:34 +00:00
|
|
|
_startMinimized.move(_left, top); top += _startMinimized.height() + st::setSectionSkip;
|
|
|
|
|
|
|
|
_sendToMenu.move(_left, top); top += _sendToMenu.height();
|
2015-01-15 14:22:15 +00:00
|
|
|
} else if (_supportTray) {
|
2014-09-20 21:31:03 +00:00
|
|
|
_workmodeTray.move(_left, top); top += _workmodeTray.height();
|
|
|
|
}
|
2014-06-15 12:31:03 +00:00
|
|
|
if (!cRetina()) {
|
|
|
|
top += st::setHeaderSkip;
|
|
|
|
_dpiAutoScale.move(_left, top); top += _dpiAutoScale.height() + st::setLittleSkip;
|
|
|
|
_dpiSlider.move(_left, top); top += _dpiSlider.height() + st::dpiFont4->height;
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
// chat options
|
2014-10-22 18:39:03 +00:00
|
|
|
if (self()) {
|
2014-05-30 08:53:19 +00:00
|
|
|
top += st::setHeaderSkip;
|
|
|
|
_viewEmojis.move(_left + st::setWidth - _viewEmojis.width(), top + st::cbDefFlat.textTop);
|
|
|
|
_replaceEmojis.move(_left, top); top += _replaceEmojis.height() + st::setSectionSkip;
|
|
|
|
_enterSend.move(_left, top); top += _enterSend.height() + st::setLittleSkip;
|
|
|
|
_ctrlEnterSend.move(_left, top); top += _ctrlEnterSend.height() + st::setSectionSkip;
|
|
|
|
_dontAskDownloadPath.move(_left, top); top += _dontAskDownloadPath.height();
|
|
|
|
if (!cAskDownloadPath()) {
|
|
|
|
top += st::setLittleSkip;
|
|
|
|
_downloadPathEdit.move(_left + st::setVersionLeft + _downloadPathWidth, top);
|
2014-09-30 14:11:09 +00:00
|
|
|
if (cDownloadPath() == qsl("tmp")) {
|
2014-05-30 08:53:19 +00:00
|
|
|
_downloadPathClear.move(_left + st::setWidth - _downloadPathClear.width(), top);
|
|
|
|
}
|
|
|
|
top += _downloadPathEdit.height();
|
|
|
|
}
|
|
|
|
top += st::setSectionSkip;
|
2015-02-03 15:02:46 +00:00
|
|
|
|
|
|
|
// chat background
|
|
|
|
top += st::setHeaderSkip;
|
|
|
|
_backFromGallery.move(_left + st::setBackgroundSize + st::setLittleSkip, top);
|
|
|
|
_backFromFile.move(_left + st::setBackgroundSize + st::setLittleSkip, top + _backFromGallery.height() + st::setLittleSkip);
|
|
|
|
top += st::setBackgroundSize;
|
|
|
|
|
|
|
|
top += st::setLittleSkip;
|
|
|
|
_tileBackground.move(_left, top); top += _tileBackground.height();
|
2014-11-22 09:45:04 +00:00
|
|
|
|
|
|
|
// local storage
|
2015-01-02 14:55:24 +00:00
|
|
|
_localStorageClear.move(_left + st::setWidth - _localStorageClear.width(), top + st::setHeaderTop + st::setHeaderFont->ascent - st::linkFont->ascent);
|
2014-11-22 09:45:04 +00:00
|
|
|
top += st::setHeaderSkip;
|
2015-01-02 14:55:24 +00:00
|
|
|
if ((Local::hasImages() || Local::hasStickers()) && Local::hasAudios()) {
|
|
|
|
_localStorageHeight = 2;
|
|
|
|
top += _localStorageClear.height() + st::setLittleSkip;
|
|
|
|
} else {
|
|
|
|
_localStorageHeight = 1;
|
|
|
|
}
|
|
|
|
top += _localStorageClear.height();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// advanced
|
|
|
|
top += st::setHeaderSkip;
|
2015-03-02 12:34:16 +00:00
|
|
|
if (self()) {
|
|
|
|
_passcodeEdit.move(_left, top);
|
|
|
|
_passcodeTurnOff.move(_left + st::setWidth - _passcodeTurnOff.width(), top); top += _passcodeTurnOff.height() + st::setLittleSkip;
|
|
|
|
if (cHasPasscode()) {
|
|
|
|
_autoLock.move(_left + _autoLockWidth, top); top += _autoLock.height() + st::setLittleSkip;
|
|
|
|
}
|
2015-04-02 10:33:19 +00:00
|
|
|
_passwordEdit.move(_left, top);
|
|
|
|
_passwordTurnOff.move(_left + st::setWidth - _passwordTurnOff.width(), top); top += _passwordTurnOff.height() + st::setLittleSkip;
|
2015-03-02 12:34:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_connectionType.move(_left + _connectionTypeWidth, top); top += _connectionType.height() + st::setLittleSkip;
|
2014-10-22 18:39:03 +00:00
|
|
|
if (self()) {
|
2015-04-02 10:33:19 +00:00
|
|
|
_showSessions.move(_left, top); top += _showSessions.height() + st::setSectionSkip;
|
2014-05-30 08:53:19 +00:00
|
|
|
_logOut.move(_left, top);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::keyPressEvent(QKeyEvent *e) {
|
2014-12-18 18:40:49 +00:00
|
|
|
if (e->key() == Qt::Key_Escape || e->key() == Qt::Key_Back) {
|
2014-05-30 08:53:19 +00:00
|
|
|
App::wnd()->showSettings();
|
|
|
|
}
|
2015-04-02 10:33:19 +00:00
|
|
|
_secretText += e->text().toLower();
|
|
|
|
int32 size = _secretText.size(), from = 0;
|
|
|
|
while (size > from) {
|
|
|
|
QStringRef str(_secretText.midRef(from));
|
|
|
|
if (str == QLatin1String("debugmode")) {
|
|
|
|
QString text = cDebug() ? qsl("Do you want to disable DEBUG logs?") : qsl("Do you want to enable DEBUG logs?\n\nAll network events will be logged.");
|
|
|
|
ConfirmBox *box = new ConfirmBox(text);
|
|
|
|
connect(box, SIGNAL(confirmed()), App::app(), SLOT(onSwitchDebugMode()));
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
from = size;
|
|
|
|
break;
|
|
|
|
} else if (str == QLatin1String("testmode")) {
|
|
|
|
QString text = cTestMode() ? qsl("Do you want to disable TEST mode?") : qsl("Do you want to enable TEST mode?\n\nYou will be switched to test cloud.");
|
|
|
|
ConfirmBox *box = new ConfirmBox(text);
|
|
|
|
connect(box, SIGNAL(confirmed()), App::app(), SLOT(onSwitchTestMode()));
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
from = size;
|
|
|
|
break;
|
|
|
|
} else if (qsl("debugmode").startsWith(str) || qsl("testmode").startsWith(str)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
++from;
|
|
|
|
}
|
|
|
|
_secretText = (size > from) ? _secretText.mid(from) : QString();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::mouseMoveEvent(QMouseEvent *e) {
|
2014-10-22 18:39:03 +00:00
|
|
|
if (!self()) {
|
2014-05-30 08:53:19 +00:00
|
|
|
setCursor(style::cur_default);
|
|
|
|
} else {
|
|
|
|
bool nameOver = QRect(_uploadPhoto.x() + st::setNameLeft, st::setTop + st::setNameTop, qMin(_uploadPhoto.width() - int(st::setNameLeft), _nameText.maxWidth()), st::setNameFont->height).contains(e->pos());
|
|
|
|
if (nameOver != _nameOver) {
|
|
|
|
_nameOver = nameOver;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool photoOver = QRect(_left, st::setTop, st::setPhotoSize, st::setPhotoSize).contains(e->pos());
|
|
|
|
if (photoOver != _photoOver) {
|
|
|
|
_photoOver = photoOver;
|
|
|
|
if (!_photoLink) {
|
|
|
|
a_photo.start(_photoOver ? 1 : 0);
|
|
|
|
anim::start(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setCursor((_nameOver || _photoOver) ? style::cur_pointer : style::cur_default);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::mousePressEvent(QMouseEvent *e) {
|
|
|
|
mouseMoveEvent(e);
|
2014-10-22 18:39:03 +00:00
|
|
|
if (!self()) {
|
2014-05-30 08:53:19 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (QRect(_uploadPhoto.x() + st::setNameLeft, st::setTop + st::setNameTop, qMin(_uploadPhoto.width() - int(st::setNameLeft), _nameText.maxWidth()), st::setNameFont->height).contains(e->pos())) {
|
2014-10-22 18:39:03 +00:00
|
|
|
App::wnd()->showLayer(new AddContactBox(self()));
|
2014-05-30 08:53:19 +00:00
|
|
|
} else if (QRect(_left, st::setTop, st::setPhotoSize, st::setPhotoSize).contains(e->pos())) {
|
|
|
|
if (_photoLink) {
|
2014-10-22 18:39:03 +00:00
|
|
|
App::photo(self()->photoId)->full->load();
|
2014-05-30 08:53:19 +00:00
|
|
|
_photoLink->onClick(e->button());
|
|
|
|
} else {
|
|
|
|
onUpdatePhoto();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::contextMenuEvent(QContextMenuEvent *e) {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SettingsInner::animStep(float64 ms) {
|
|
|
|
float64 dt = ms / st::setPhotoDuration;
|
|
|
|
bool res = true;
|
|
|
|
if (dt >= 1) {
|
|
|
|
res = false;
|
|
|
|
a_photo.finish();
|
|
|
|
} else {
|
|
|
|
a_photo.update(dt, anim::linear);
|
|
|
|
}
|
|
|
|
update(_left, st::setTop, st::setPhotoSize, st::setPhotoSize);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::updateSize(int32 newWidth) {
|
|
|
|
if (_logOut.isHidden()) {
|
|
|
|
resize(newWidth, _connectionType.geometry().bottom() + st::setBottom);
|
|
|
|
} else {
|
|
|
|
resize(newWidth, _logOut.geometry().bottom() + st::setBottom);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::updateOnlineDisplay() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::updateConnectionType() {
|
|
|
|
switch (cConnectionType()) {
|
|
|
|
case dbictAuto: {
|
|
|
|
QString transport = MTP::dctransport();
|
|
|
|
if (transport.isEmpty()) {
|
|
|
|
_connectionType.setText(lang(lng_connection_auto_connecting));
|
|
|
|
} else {
|
2014-12-18 18:40:49 +00:00
|
|
|
_connectionType.setText(lng_connection_auto(lt_type, transport));
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case dbictHttpProxy: _connectionType.setText(lang(lng_connection_http_proxy)); break;
|
|
|
|
case dbictTcpProxy: _connectionType.setText(lang(lng_connection_tcp_proxy)); break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-02 12:34:16 +00:00
|
|
|
void SettingsInner::passcodeChanged() {
|
|
|
|
resizeEvent(0);
|
|
|
|
_passcodeEdit.setText(lang(cHasPasscode() ? lng_passcode_change : lng_passcode_turn_on));
|
|
|
|
_autoLock.setText((cAutoLock() % 3600) ? lng_passcode_autolock_minutes(lt_count, cAutoLock() / 60) : lng_passcode_autolock_hours(lt_count, cAutoLock() / 3600));
|
2015-04-02 10:33:19 +00:00
|
|
|
// _passwordEdit.setText()
|
2015-03-02 12:34:16 +00:00
|
|
|
showAll();
|
|
|
|
}
|
|
|
|
|
2015-02-03 15:02:46 +00:00
|
|
|
void SettingsInner::updateBackgroundRect() {
|
|
|
|
update(_left, _tileBackground.y() - st::setLittleSkip - st::setBackgroundSize, st::setBackgroundSize, st::setBackgroundSize);
|
|
|
|
}
|
|
|
|
|
2014-10-22 18:39:03 +00:00
|
|
|
void SettingsInner::gotFullSelf(const MTPUserFull &selfFull) {
|
|
|
|
if (!self()) return;
|
|
|
|
App::feedPhoto(selfFull.c_userFull().vprofile_photo);
|
2014-11-05 17:43:32 +00:00
|
|
|
App::feedUsers(MTP_vector<MTPUser>(1, selfFull.c_userFull().vuser));
|
2014-10-22 18:39:03 +00:00
|
|
|
PhotoData *selfPhoto = self()->photoId ? App::photo(self()->photoId) : 0;
|
2014-05-30 08:53:19 +00:00
|
|
|
if (selfPhoto && selfPhoto->date) {
|
2014-10-22 18:39:03 +00:00
|
|
|
_photoLink = TextLinkPtr(new PhotoLink(selfPhoto, self()));
|
2014-05-30 08:53:19 +00:00
|
|
|
} else {
|
|
|
|
_photoLink = TextLinkPtr();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
void SettingsInner::gotPassword(const MTPaccount_Password &result) {
|
|
|
|
_waitingConfirm = QString();
|
|
|
|
|
|
|
|
switch (result.type()) {
|
|
|
|
case mtpc_account_noPassword: {
|
|
|
|
const MTPDaccount_noPassword &d(result.c_account_noPassword());
|
|
|
|
_curPasswordSalt = QByteArray();
|
|
|
|
_hasPasswordRecovery = false;
|
|
|
|
_curPasswordHint = QString();
|
|
|
|
_newPasswordSalt = qba(d.vnew_salt);
|
|
|
|
QString pattern = qs(d.vemail_unconfirmed_pattern);
|
|
|
|
if (!pattern.isEmpty()) _waitingConfirm = lng_cloud_password_waiting(lt_email, pattern);
|
|
|
|
} break;
|
|
|
|
|
|
|
|
case mtpc_account_password: {
|
|
|
|
const MTPDaccount_password &d(result.c_account_password());
|
|
|
|
_curPasswordSalt = qba(d.vcurrent_salt);
|
|
|
|
_hasPasswordRecovery = d.vhas_recovery.v;
|
|
|
|
_curPasswordHint = qs(d.vhint);
|
|
|
|
_newPasswordSalt = qba(d.vnew_salt);
|
|
|
|
QString pattern = qs(d.vemail_unconfirmed_pattern);
|
|
|
|
if (!pattern.isEmpty()) _waitingConfirm = lng_cloud_password_waiting(lt_email, pattern);
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
_waitingConfirm = st::linkFont->m.elidedText(_waitingConfirm, Qt::ElideRight, st::setWidth - _passwordTurnOff.width());
|
|
|
|
_passwordEdit.setText(lang(_curPasswordSalt.isEmpty() ? lng_cloud_password_set : lng_cloud_password_edit));
|
|
|
|
showAll();
|
|
|
|
update();
|
|
|
|
|
|
|
|
_newPasswordSalt.resize(_newPasswordSalt.size() + 8);
|
|
|
|
memset_rand(_newPasswordSalt.data() + _newPasswordSalt.size() - 8, 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::offPasswordDone(const MTPBool &result) {
|
|
|
|
onReloadPassword();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SettingsInner::offPasswordFail(const RPCError &error) {
|
2015-04-04 20:01:34 +00:00
|
|
|
if (error.type().startsWith(qsl("FLOOD_WAIT_"))) return false;
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
onReloadPassword();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-10-22 18:39:03 +00:00
|
|
|
void SettingsInner::usernameChanged() {
|
2015-02-09 13:26:59 +00:00
|
|
|
_chooseUsername.setText((self() && !self()->username.isEmpty()) ? ('@' + self()->username) : lang(lng_settings_choose_username));
|
2014-10-22 18:39:03 +00:00
|
|
|
showAll();
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void SettingsInner::showAll() {
|
|
|
|
// profile
|
2014-10-22 18:39:03 +00:00
|
|
|
if (self()) {
|
|
|
|
if (App::app()->isPhotoUpdating(self()->id)) {
|
2014-05-30 08:53:19 +00:00
|
|
|
_cancelPhoto.show();
|
|
|
|
_uploadPhoto.hide();
|
|
|
|
} else {
|
|
|
|
_cancelPhoto.hide();
|
|
|
|
_uploadPhoto.show();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_uploadPhoto.hide();
|
|
|
|
_cancelPhoto.hide();
|
|
|
|
}
|
|
|
|
|
2014-10-22 18:39:03 +00:00
|
|
|
// contact info
|
|
|
|
if (self()) {
|
2015-02-09 13:26:59 +00:00
|
|
|
_chooseUsername.show();
|
2014-10-22 18:39:03 +00:00
|
|
|
} else {
|
|
|
|
_chooseUsername.hide();
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
// notifications
|
2014-10-22 18:39:03 +00:00
|
|
|
if (self()) {
|
2014-05-30 08:53:19 +00:00
|
|
|
_desktopNotify.show();
|
2014-07-18 10:37:34 +00:00
|
|
|
_senderName.show();
|
|
|
|
_messagePreview.show();
|
2014-05-30 08:53:19 +00:00
|
|
|
_soundNotify.show();
|
|
|
|
} else {
|
|
|
|
_desktopNotify.hide();
|
2014-07-18 10:37:34 +00:00
|
|
|
_senderName.hide();
|
|
|
|
_messagePreview.hide();
|
2014-05-30 08:53:19 +00:00
|
|
|
_soundNotify.hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
// general
|
2014-12-19 21:20:30 +00:00
|
|
|
_changeLanguage.show();
|
2014-05-30 08:53:19 +00:00
|
|
|
_autoUpdate.show();
|
|
|
|
setUpdatingState(_updatingState, true);
|
2014-06-15 12:31:03 +00:00
|
|
|
if (cPlatform() == dbipWindows) {
|
|
|
|
_workmodeTray.show();
|
|
|
|
_workmodeWindow.show();
|
|
|
|
|
|
|
|
_autoStart.show();
|
|
|
|
_startMinimized.show();
|
2014-07-18 10:37:34 +00:00
|
|
|
|
|
|
|
_sendToMenu.show();
|
2014-06-15 12:31:03 +00:00
|
|
|
} else {
|
2015-01-15 14:22:15 +00:00
|
|
|
if (_supportTray) {
|
2014-09-20 21:31:03 +00:00
|
|
|
_workmodeTray.show();
|
|
|
|
} else {
|
|
|
|
_workmodeTray.hide();
|
|
|
|
}
|
2014-06-15 12:31:03 +00:00
|
|
|
_workmodeWindow.hide();
|
|
|
|
|
|
|
|
_autoStart.hide();
|
|
|
|
_startMinimized.hide();
|
2014-07-18 10:37:34 +00:00
|
|
|
|
2014-07-18 11:12:18 +00:00
|
|
|
_sendToMenu.hide();
|
2014-07-18 10:37:34 +00:00
|
|
|
}
|
2014-06-15 12:31:03 +00:00
|
|
|
if (cRetina()) {
|
|
|
|
_dpiSlider.hide();
|
|
|
|
_dpiAutoScale.hide();
|
|
|
|
} else {
|
|
|
|
_dpiSlider.show();
|
|
|
|
_dpiAutoScale.show();
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
// chat options
|
2014-10-22 18:39:03 +00:00
|
|
|
if (self()) {
|
2014-05-30 08:53:19 +00:00
|
|
|
_replaceEmojis.show();
|
|
|
|
if (cReplaceEmojis()) {
|
|
|
|
_viewEmojis.show();
|
|
|
|
} else {
|
|
|
|
_viewEmojis.hide();
|
|
|
|
}
|
|
|
|
_enterSend.show();
|
|
|
|
_ctrlEnterSend.show();
|
|
|
|
_dontAskDownloadPath.show();
|
|
|
|
if (cAskDownloadPath()) {
|
|
|
|
_downloadPathEdit.hide();
|
|
|
|
_downloadPathClear.hide();
|
|
|
|
} else {
|
|
|
|
_downloadPathEdit.show();
|
2014-09-30 14:11:09 +00:00
|
|
|
if (cDownloadPath() == qsl("tmp") && _tempDirClearState == TempDirExists) { // dir exists, not clearing right now
|
2014-05-30 08:53:19 +00:00
|
|
|
_downloadPathClear.show();
|
|
|
|
} else {
|
|
|
|
_downloadPathClear.hide();
|
|
|
|
}
|
|
|
|
}
|
2014-11-22 09:45:04 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
} else {
|
|
|
|
_replaceEmojis.hide();
|
|
|
|
_viewEmojis.hide();
|
|
|
|
_enterSend.hide();
|
|
|
|
_ctrlEnterSend.hide();
|
|
|
|
_dontAskDownloadPath.hide();
|
|
|
|
_downloadPathEdit.hide();
|
|
|
|
_downloadPathClear.hide();
|
2014-11-22 09:45:04 +00:00
|
|
|
}
|
|
|
|
|
2015-02-03 15:02:46 +00:00
|
|
|
// chat background
|
|
|
|
if (self()) {
|
|
|
|
_backFromGallery.show();
|
|
|
|
_backFromFile.show();
|
|
|
|
_tileBackground.show();
|
|
|
|
} else {
|
|
|
|
_backFromGallery.hide();
|
|
|
|
_backFromFile.hide();
|
|
|
|
_tileBackground.hide();
|
|
|
|
}
|
|
|
|
|
2014-11-22 09:45:04 +00:00
|
|
|
// local storage
|
2015-01-02 14:55:24 +00:00
|
|
|
if (self() && _storageClearState == TempDirExists) {
|
|
|
|
_localStorageClear.show();
|
2014-11-22 09:45:04 +00:00
|
|
|
} else {
|
2015-01-02 14:55:24 +00:00
|
|
|
_localStorageClear.hide();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// advanced
|
2014-10-22 18:39:03 +00:00
|
|
|
if (self()) {
|
2015-03-02 12:34:16 +00:00
|
|
|
_passcodeEdit.show();
|
|
|
|
if (cHasPasscode()) {
|
|
|
|
_autoLock.show();
|
|
|
|
_passcodeTurnOff.show();
|
|
|
|
} else {
|
|
|
|
_autoLock.hide();
|
|
|
|
_passcodeTurnOff.hide();
|
|
|
|
}
|
2015-04-02 10:33:19 +00:00
|
|
|
if (_waitingConfirm.isEmpty()) {
|
|
|
|
_passwordEdit.show();
|
2014-05-30 08:53:19 +00:00
|
|
|
} else {
|
2015-04-02 10:33:19 +00:00
|
|
|
_passwordEdit.hide();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2015-04-02 10:33:19 +00:00
|
|
|
if (_curPasswordSalt.isEmpty() && _waitingConfirm.isEmpty()) {
|
|
|
|
_passwordTurnOff.hide();
|
|
|
|
} else {
|
|
|
|
_passwordTurnOff.show();
|
|
|
|
}
|
|
|
|
_showSessions.show();
|
2014-05-30 08:53:19 +00:00
|
|
|
_logOut.show();
|
|
|
|
} else {
|
2015-03-02 12:34:16 +00:00
|
|
|
_passcodeEdit.hide();
|
|
|
|
_autoLock.hide();
|
|
|
|
_passcodeTurnOff.hide();
|
2015-04-02 10:33:19 +00:00
|
|
|
_passwordEdit.hide();
|
|
|
|
_passwordTurnOff.hide();
|
|
|
|
_showSessions.hide();
|
2014-05-30 08:53:19 +00:00
|
|
|
_logOut.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::saveError(const QString &str) {
|
|
|
|
_errorText = str;
|
|
|
|
resizeEvent(0);
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onUpdatePhotoCancel() {
|
2014-10-22 18:39:03 +00:00
|
|
|
if (self()) {
|
|
|
|
App::app()->cancelPhotoUpdate(self()->id);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
showAll();
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onUpdatePhoto() {
|
|
|
|
saveError();
|
|
|
|
|
|
|
|
QStringList imgExtensions(cImgExtensions());
|
|
|
|
QString filter(qsl("Image files (*") + imgExtensions.join(qsl(" *")) + qsl(");;All files (*.*)"));
|
|
|
|
|
|
|
|
QImage img;
|
|
|
|
QString file;
|
|
|
|
QByteArray remoteContent;
|
|
|
|
if (filedialogGetOpenFile(file, remoteContent, lang(lng_choose_images), filter)) {
|
|
|
|
if (!remoteContent.isEmpty()) {
|
|
|
|
img = App::readImage(remoteContent);
|
|
|
|
} else {
|
|
|
|
if (!file.isEmpty()) {
|
|
|
|
img = App::readImage(file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (img.isNull() || img.width() > 10 * img.height() || img.height() > 10 * img.width()) {
|
|
|
|
saveError(lang(lng_bad_photo));
|
|
|
|
return;
|
|
|
|
}
|
2014-10-22 18:39:03 +00:00
|
|
|
PhotoCropBox *box = new PhotoCropBox(img, self()->id);
|
2014-05-30 08:53:19 +00:00
|
|
|
connect(box, SIGNAL(closed()), this, SLOT(onPhotoUpdateStart()));
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
}
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
void SettingsInner::onShowSessions() {
|
|
|
|
SessionsBox *box = new SessionsBox();
|
2014-12-19 21:20:30 +00:00
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onChangeLanguage() {
|
2014-12-20 21:33:08 +00:00
|
|
|
if ((_changeLanguage.clickModifiers() & Qt::ShiftModifier) && (_changeLanguage.clickModifiers() & Qt::AltModifier)) {
|
|
|
|
QString file;
|
|
|
|
QByteArray arr;
|
|
|
|
if (filedialogGetOpenFile(file, arr, qsl("Choose language .strings file"), qsl("Language files (*.strings)"))) {
|
|
|
|
_testlang = QFileInfo(file).absoluteFilePath();
|
|
|
|
LangLoaderPlain loader(_testlang, LangLoaderRequest(lng_sure_save_language, lng_cancel, lng_continue));
|
|
|
|
if (loader.errors().isEmpty()) {
|
|
|
|
LangLoaderResult result = loader.found();
|
|
|
|
QString text = result.value(lng_sure_save_language, langOriginal(lng_sure_save_language)),
|
|
|
|
save = result.value(lng_continue, langOriginal(lng_continue)),
|
|
|
|
cancel = result.value(lng_cancel, langOriginal(lng_cancel));
|
|
|
|
ConfirmBox *box = new ConfirmBox(text, save, cancel);
|
|
|
|
connect(box, SIGNAL(confirmed()), this, SLOT(onSaveTestLang()));
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
} else {
|
2015-01-05 20:17:33 +00:00
|
|
|
App::wnd()->showLayer(new ConfirmBox("Custom lang failed :(\n\nError: " + loader.errors(), true, lang(lng_close)));
|
2014-12-20 21:33:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
App::wnd()->showLayer(new LanguageBox());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onSaveTestLang() {
|
|
|
|
cSetLangFile(_testlang);
|
|
|
|
cSetLang(languageTest);
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeSettings();
|
2014-12-20 21:33:08 +00:00
|
|
|
cSetRestarting(true);
|
|
|
|
App::quit();
|
2014-12-19 21:20:30 +00:00
|
|
|
}
|
|
|
|
|
2015-01-02 14:55:24 +00:00
|
|
|
void SettingsInner::onUpdateLocalStorage() {
|
|
|
|
resizeEvent(0);
|
|
|
|
updateSize(width());
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void SettingsInner::onAutoUpdate() {
|
|
|
|
cSetAutoUpdate(!cAutoUpdate());
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeSettings();
|
2014-05-30 08:53:19 +00:00
|
|
|
resizeEvent(0);
|
|
|
|
if (cAutoUpdate()) {
|
|
|
|
App::app()->startUpdateCheck();
|
|
|
|
if (_updatingState == UpdatingNone) {
|
|
|
|
_checkNow.show();
|
|
|
|
} else if (_updatingState == UpdatingReady) {
|
|
|
|
_restartNow.show();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
App::app()->stopUpdate();
|
|
|
|
_restartNow.hide();
|
|
|
|
_checkNow.hide();
|
|
|
|
}
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onCheckNow() {
|
|
|
|
if (!cAutoUpdate()) return;
|
|
|
|
|
|
|
|
cSetLastUpdateCheck(0);
|
|
|
|
App::app()->startUpdateCheck();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onRestartNow() {
|
|
|
|
psCheckReadyUpdate();
|
|
|
|
if (_updatingState == UpdatingReady) {
|
|
|
|
cSetRestartingUpdate(true);
|
|
|
|
} else {
|
|
|
|
cSetRestarting(true);
|
2014-12-19 21:20:30 +00:00
|
|
|
cSetRestartingToSettings(true);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
App::quit();
|
|
|
|
}
|
|
|
|
|
2015-03-02 12:34:16 +00:00
|
|
|
void SettingsInner::onPasscode() {
|
|
|
|
PasscodeBox *box = new PasscodeBox();
|
|
|
|
connect(box, SIGNAL(closed()), this, SLOT(passcodeChanged()));
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onPasscodeOff() {
|
|
|
|
PasscodeBox *box = new PasscodeBox(true);
|
|
|
|
connect(box, SIGNAL(closed()), this, SLOT(passcodeChanged()));
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
}
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
void SettingsInner::onPassword() {
|
|
|
|
PasscodeBox *box = new PasscodeBox(_newPasswordSalt, _curPasswordSalt, _hasPasswordRecovery, _curPasswordHint);
|
|
|
|
connect(box, SIGNAL(reloadPassword()), this, SLOT(onReloadPassword()));
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onPasswordOff() {
|
|
|
|
if (_curPasswordSalt.isEmpty()) {
|
|
|
|
_passwordTurnOff.hide();
|
|
|
|
|
|
|
|
// int32 flags = MTPDaccount_passwordInputSettings::flag_new_salt | MTPDaccount_passwordInputSettings::flag_new_password_hash | MTPDaccount_passwordInputSettings::flag_hint | MTPDaccount_passwordInputSettings::flag_email;
|
|
|
|
int32 flags = MTPDaccount_passwordInputSettings::flag_email;
|
|
|
|
MTPaccount_PasswordInputSettings settings(MTP_account_passwordInputSettings(MTP_int(flags), MTP_string(QByteArray()), MTP_string(QByteArray()), MTP_string(QString()), MTP_string(QString())));
|
|
|
|
MTP::send(MTPaccount_UpdatePasswordSettings(MTP_string(QByteArray()), settings), rpcDone(&SettingsInner::offPasswordDone), rpcFail(&SettingsInner::offPasswordFail));
|
|
|
|
} else {
|
|
|
|
PasscodeBox *box = new PasscodeBox(_newPasswordSalt, _curPasswordSalt, _hasPasswordRecovery, _curPasswordHint, true);
|
|
|
|
connect(box, SIGNAL(reloadPassword()), this, SLOT(onReloadPassword()));
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onReloadPassword(Qt::ApplicationState state) {
|
|
|
|
if (state == Qt::ApplicationActive) {
|
|
|
|
MTP::send(MTPaccount_GetPassword(), rpcDone(&SettingsInner::gotPassword));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-02 12:34:16 +00:00
|
|
|
void SettingsInner::onAutoLock() {
|
|
|
|
AutoLockBox *box = new AutoLockBox();
|
|
|
|
connect(box, SIGNAL(closed()), this, SLOT(passcodeChanged()));
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void SettingsInner::onConnectionType() {
|
|
|
|
ConnectionBox *box = new ConnectionBox();
|
|
|
|
connect(box, SIGNAL(closed()), this, SLOT(updateConnectionType()), Qt::QueuedConnection);
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
}
|
|
|
|
|
2014-10-22 18:39:03 +00:00
|
|
|
void SettingsInner::onUsername() {
|
|
|
|
UsernameBox *box = new UsernameBox();
|
|
|
|
connect(box, SIGNAL(closed()), this, SLOT(usernameChanged()));
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void SettingsInner::onWorkmodeTray() {
|
2014-09-20 21:31:03 +00:00
|
|
|
if ((!_workmodeTray.checked() || cPlatform() != dbipWindows) && !_workmodeWindow.checked()) {
|
2014-05-30 08:53:19 +00:00
|
|
|
_workmodeWindow.setChecked(true);
|
|
|
|
}
|
|
|
|
DBIWorkMode newMode = (_workmodeTray.checked() && _workmodeWindow.checked()) ? dbiwmWindowAndTray : (_workmodeTray.checked() ? dbiwmTrayOnly : dbiwmWindowOnly);
|
|
|
|
if (cWorkMode() != newMode && (newMode == dbiwmWindowAndTray || newMode == dbiwmTrayOnly)) {
|
|
|
|
cSetSeenTrayTooltip(false);
|
|
|
|
}
|
|
|
|
cSetWorkMode(newMode);
|
|
|
|
App::wnd()->psUpdateWorkmode();
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeSettings();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onWorkmodeWindow() {
|
|
|
|
if (!_workmodeTray.checked() && !_workmodeWindow.checked()) {
|
|
|
|
_workmodeTray.setChecked(true);
|
|
|
|
}
|
|
|
|
DBIWorkMode newMode = (_workmodeTray.checked() && _workmodeWindow.checked()) ? dbiwmWindowAndTray : (_workmodeTray.checked() ? dbiwmTrayOnly : dbiwmWindowOnly);
|
|
|
|
if (cWorkMode() != newMode && (newMode == dbiwmWindowAndTray || newMode == dbiwmTrayOnly)) {
|
|
|
|
cSetSeenTrayTooltip(false);
|
|
|
|
}
|
|
|
|
cSetWorkMode(newMode);
|
|
|
|
App::wnd()->psUpdateWorkmode();
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeSettings();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onAutoStart() {
|
|
|
|
_startMinimized.setDisabled(!_autoStart.checked());
|
|
|
|
cSetAutoStart(_autoStart.checked());
|
|
|
|
if (!_autoStart.checked() && _startMinimized.checked()) {
|
|
|
|
psAutoStart(false);
|
|
|
|
_startMinimized.setChecked(false);
|
|
|
|
} else {
|
|
|
|
psAutoStart(_autoStart.checked());
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeSettings();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onStartMinimized() {
|
|
|
|
cSetStartMinimized(_startMinimized.checked());
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeSettings();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2014-07-18 10:37:34 +00:00
|
|
|
void SettingsInner::onSendToMenu() {
|
|
|
|
cSetSendToMenu(_sendToMenu.checked());
|
|
|
|
psSendToMenu(_sendToMenu.checked());
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeSettings();
|
2014-07-18 10:37:34 +00:00
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void SettingsInner::onScaleAuto() {
|
|
|
|
DBIScale newScale = _dpiAutoScale.checked() ? dbisAuto : cEvalScale(cConfigScale());
|
|
|
|
if (newScale == cScreenScale()) {
|
|
|
|
if (newScale != cScale()) {
|
|
|
|
newScale = cScale();
|
|
|
|
} else {
|
|
|
|
switch (newScale) {
|
|
|
|
case dbisOne: newScale = dbisOneAndQuarter; break;
|
|
|
|
case dbisOneAndQuarter: newScale = dbisOne; break;
|
|
|
|
case dbisOneAndHalf: newScale = dbisOneAndQuarter; break;
|
|
|
|
case dbisTwo: newScale = dbisOneAndHalf; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setScale(newScale);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onScaleChange() {
|
|
|
|
DBIScale newScale = dbisAuto;
|
|
|
|
switch (_dpiSlider.selected()) {
|
|
|
|
case 0: newScale = dbisOne; break;
|
|
|
|
case 1: newScale = dbisOneAndQuarter; break;
|
|
|
|
case 2: newScale = dbisOneAndHalf; break;
|
|
|
|
case 3: newScale = dbisTwo; break;
|
|
|
|
}
|
|
|
|
if (newScale == cScreenScale()) {
|
|
|
|
newScale = dbisAuto;
|
|
|
|
}
|
|
|
|
setScale(newScale);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::setScale(DBIScale newScale) {
|
|
|
|
if (cConfigScale() == newScale) return;
|
|
|
|
|
|
|
|
cSetConfigScale(newScale);
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeSettings();
|
2014-05-30 08:53:19 +00:00
|
|
|
App::wnd()->getTitle()->showUpdateBtn();
|
|
|
|
if (newScale == dbisAuto && !_dpiAutoScale.checked()) {
|
|
|
|
_dpiAutoScale.setChecked(true);
|
|
|
|
} else if (newScale != dbisAuto && _dpiAutoScale.checked()) {
|
|
|
|
_dpiAutoScale.setChecked(false);
|
|
|
|
}
|
|
|
|
if (newScale == dbisAuto) newScale = cScreenScale();
|
|
|
|
if (_dpiSlider.selected() != newScale - 1) {
|
|
|
|
_dpiSlider.setSelected(newScale - 1);
|
|
|
|
}
|
|
|
|
if (cEvalScale(cConfigScale()) != cEvalScale(cRealScale())) {
|
|
|
|
ConfirmBox *box = new ConfirmBox(lang(lng_settings_need_restart), lang(lng_settings_restart_now), lang(lng_settings_restart_later));
|
|
|
|
connect(box, SIGNAL(confirmed()), this, SLOT(onRestartNow()));
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onSoundNotify() {
|
|
|
|
cSetSoundNotify(_soundNotify.checked());
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeUserSettings();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onDesktopNotify() {
|
|
|
|
cSetDesktopNotify(_desktopNotify.checked());
|
|
|
|
if (!_desktopNotify.checked()) {
|
2014-07-06 03:32:21 +00:00
|
|
|
App::wnd()->notifyClear();
|
2014-07-18 10:37:34 +00:00
|
|
|
_senderName.setDisabled(true);
|
|
|
|
_messagePreview.setDisabled(true);
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeUserSettings();
|
2014-07-18 10:37:34 +00:00
|
|
|
} else {
|
|
|
|
_senderName.setDisabled(false);
|
|
|
|
_messagePreview.setDisabled(!_senderName.checked());
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeUserSettings();
|
2014-07-18 10:37:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onSenderName() {
|
|
|
|
_messagePreview.setDisabled(!_senderName.checked());
|
|
|
|
if (!_senderName.checked() && _messagePreview.checked()) {
|
|
|
|
_messagePreview.setChecked(false);
|
|
|
|
} else {
|
|
|
|
if (_messagePreview.checked()) {
|
|
|
|
cSetNotifyView(dbinvShowPreview);
|
|
|
|
} else if (_senderName.checked()) {
|
|
|
|
cSetNotifyView(dbinvShowName);
|
|
|
|
} else {
|
|
|
|
cSetNotifyView(dbinvShowNothing);
|
|
|
|
}
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeUserSettings();
|
2014-07-18 10:37:34 +00:00
|
|
|
App::wnd()->notifyUpdateAll();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onMessagePreview() {
|
|
|
|
if (_messagePreview.checked()) {
|
|
|
|
cSetNotifyView(dbinvShowPreview);
|
|
|
|
} else if (_senderName.checked()) {
|
|
|
|
cSetNotifyView(dbinvShowName);
|
|
|
|
} else {
|
|
|
|
cSetNotifyView(dbinvShowNothing);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeUserSettings();
|
2014-07-18 10:37:34 +00:00
|
|
|
App::wnd()->notifyUpdateAll();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onReplaceEmojis() {
|
|
|
|
cSetReplaceEmojis(_replaceEmojis.checked());
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeUserSettings();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
if (_replaceEmojis.checked()) {
|
|
|
|
_viewEmojis.show();
|
|
|
|
} else {
|
|
|
|
_viewEmojis.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onViewEmojis() {
|
|
|
|
App::wnd()->showLayer(new EmojiBox());
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onEnterSend() {
|
|
|
|
if (_enterSend.checked()) {
|
|
|
|
cSetCtrlEnter(false);
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeUserSettings();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onCtrlEnterSend() {
|
|
|
|
if (_ctrlEnterSend.checked()) {
|
|
|
|
cSetCtrlEnter(true);
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeUserSettings();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-03 15:02:46 +00:00
|
|
|
void SettingsInner::onBackFromGallery() {
|
|
|
|
BackgroundBox *box = new BackgroundBox();
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onBackFromFile() {
|
|
|
|
QStringList imgExtensions(cImgExtensions());
|
|
|
|
QString filter(qsl("Image files (*") + imgExtensions.join(qsl(" *")) + qsl(");;All files (*.*)"));
|
|
|
|
|
|
|
|
QImage img;
|
|
|
|
QString file;
|
|
|
|
QByteArray remoteContent;
|
|
|
|
if (filedialogGetOpenFile(file, remoteContent, lang(lng_choose_images), filter)) {
|
|
|
|
if (!remoteContent.isEmpty()) {
|
|
|
|
img = App::readImage(remoteContent);
|
|
|
|
} else {
|
|
|
|
if (!file.isEmpty()) {
|
|
|
|
img = App::readImage(file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (img.isNull() || img.width() <= 0 || img.height() <= 0) return;
|
|
|
|
|
|
|
|
if (img.width() > 4096 * img.height()) {
|
|
|
|
img = img.copy((img.width() - 4096 * img.height()) / 2, 0, 4096 * img.height(), img.height());
|
|
|
|
} else if (img.height() > 4096 * img.width()) {
|
|
|
|
img = img.copy(0, (img.height() - 4096 * img.width()) / 2, img.width(), 4096 * img.width());
|
|
|
|
}
|
|
|
|
|
|
|
|
App::initBackground(-1, img);
|
|
|
|
_tileBackground.setChecked(false);
|
|
|
|
updateChatBackground();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::updateChatBackground() {
|
2015-02-03 16:44:54 +00:00
|
|
|
int32 size = st::setBackgroundSize * cIntRetinaFactor();
|
|
|
|
QImage back(size, size, QImage::Format_ARGB32_Premultiplied);
|
|
|
|
back.setDevicePixelRatio(cRetinaFactor());
|
2015-02-03 15:02:46 +00:00
|
|
|
{
|
|
|
|
QPainter p(&back);
|
|
|
|
const QPixmap &pix(*cChatBackground());
|
|
|
|
int sx = (pix.width() > pix.height()) ? ((pix.width() - pix.height()) / 2) : 0;
|
|
|
|
int sy = (pix.height() > pix.width()) ? ((pix.height() - pix.width()) / 2) : 0;
|
|
|
|
int s = (pix.width() > pix.height()) ? pix.height() : pix.width();
|
|
|
|
p.setRenderHint(QPainter::SmoothPixmapTransform);
|
|
|
|
p.drawPixmap(0, 0, st::setBackgroundSize, st::setBackgroundSize, pix, sx, sy, s, s);
|
|
|
|
}
|
|
|
|
_background = QPixmap::fromImage(back);
|
2015-02-03 16:44:54 +00:00
|
|
|
_background.setDevicePixelRatio(cRetinaFactor());
|
2015-02-03 15:02:46 +00:00
|
|
|
_needBackgroundUpdate = false;
|
2015-02-03 16:44:54 +00:00
|
|
|
updateBackgroundRect();
|
2015-02-03 15:02:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::needBackgroundUpdate(bool tile) {
|
|
|
|
_needBackgroundUpdate = true;
|
|
|
|
_tileBackground.setChecked(tile);
|
|
|
|
updateChatBackground();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onTileBackground() {
|
|
|
|
if (cTileBackground() != _tileBackground.checked()) {
|
|
|
|
cSetTileBackground(_tileBackground.checked());
|
2015-02-03 16:44:54 +00:00
|
|
|
if (App::main()) App::main()->clearCachedBackground();
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeUserSettings();
|
2015-02-03 15:02:46 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onDontAskDownloadPath() {
|
|
|
|
cSetAskDownloadPath(!_dontAskDownloadPath.checked());
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeUserSettings();
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
showAll();
|
|
|
|
resizeEvent(0);
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onDownloadPathEdit() {
|
|
|
|
DownloadPathBox *box = new DownloadPathBox();
|
|
|
|
connect(box, SIGNAL(closed()), this, SLOT(onDownloadPathEdited()));
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onDownloadPathEdited() {
|
2014-09-30 14:11:09 +00:00
|
|
|
QString path;
|
|
|
|
if (cDownloadPath().isEmpty()) {
|
|
|
|
path = lang(lng_download_path_default);
|
|
|
|
} else if (cDownloadPath() == qsl("tmp")) {
|
|
|
|
path = lang(lng_download_path_temp);
|
|
|
|
} else {
|
|
|
|
path = st::linkFont->m.elidedText(QDir::toNativeSeparators(cDownloadPath()), Qt::ElideRight, st::setWidth - st::setVersionLeft - _downloadPathWidth);
|
|
|
|
}
|
|
|
|
_downloadPathEdit.setText(path);
|
2014-05-30 08:53:19 +00:00
|
|
|
showAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onDownloadPathClear() {
|
|
|
|
ConfirmBox *box = new ConfirmBox(lang(lng_sure_clear_downloads));
|
|
|
|
connect(box, SIGNAL(confirmed()), this, SLOT(onDownloadPathClearSure()));
|
|
|
|
App::wnd()->showLayer(box);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onDownloadPathClearSure() {
|
|
|
|
App::wnd()->hideLayer();
|
2014-11-22 09:45:04 +00:00
|
|
|
App::wnd()->tempDirDelete(Local::ClearManagerDownloads);
|
2014-05-30 08:53:19 +00:00
|
|
|
_tempDirClearState = TempDirClearing;
|
|
|
|
showAll();
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2015-01-02 14:55:24 +00:00
|
|
|
void SettingsInner::onLocalStorageClear() {
|
|
|
|
App::wnd()->tempDirDelete(Local::ClearManagerStorage);
|
|
|
|
_storageClearState = TempDirClearing;
|
2014-05-30 08:53:19 +00:00
|
|
|
showAll();
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2014-11-22 09:45:04 +00:00
|
|
|
void SettingsInner::onTempDirCleared(int task) {
|
|
|
|
if (task & Local::ClearManagerDownloads) {
|
|
|
|
_tempDirClearState = TempDirCleared;
|
2015-01-02 14:55:24 +00:00
|
|
|
} else if (task & Local::ClearManagerStorage) {
|
|
|
|
_storageClearState = TempDirCleared;
|
2014-11-22 09:45:04 +00:00
|
|
|
}
|
|
|
|
showAll();
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onTempDirClearFailed(int task) {
|
|
|
|
if (task & Local::ClearManagerDownloads) {
|
|
|
|
_tempDirClearState = TempDirClearFailed;
|
2015-01-02 14:55:24 +00:00
|
|
|
} else if (task & Local::ClearManagerStorage) {
|
|
|
|
_storageClearState = TempDirClearFailed;
|
2014-11-22 09:45:04 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
showAll();
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::setUpdatingState(UpdatingState state, bool force) {
|
|
|
|
if (_updatingState != state || force) {
|
|
|
|
_updatingState = state;
|
|
|
|
if (cAutoUpdate()) {
|
|
|
|
switch (state) {
|
|
|
|
case UpdatingNone:
|
|
|
|
case UpdatingLatest: _checkNow.show(); _restartNow.hide(); break;
|
|
|
|
case UpdatingReady: _checkNow.hide(); _restartNow.show(); break;
|
|
|
|
case UpdatingCheck:
|
|
|
|
case UpdatingDownload:
|
|
|
|
case UpdatingFail: _checkNow.hide(); _restartNow.hide(); break;
|
|
|
|
}
|
|
|
|
update(0, _restartNow.y() - 10, width(), _restartNow.height() + 20);
|
|
|
|
} else {
|
|
|
|
_checkNow.hide();
|
|
|
|
_restartNow.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::setDownloadProgress(qint64 ready, qint64 total) {
|
|
|
|
qint64 readyTenthMb = (ready * 10 / (1024 * 1024)), totalTenthMb = (total * 10 / (1024 * 1024));
|
|
|
|
QString readyStr = QString::number(readyTenthMb / 10) + '.' + QString::number(readyTenthMb % 10);
|
|
|
|
QString totalStr = QString::number(totalTenthMb / 10) + '.' + QString::number(totalTenthMb % 10);
|
2014-12-18 18:40:49 +00:00
|
|
|
QString res = lng_settings_downloading(lt_ready, readyStr, lt_total, totalStr);
|
2014-05-30 08:53:19 +00:00
|
|
|
if (_newVersionDownload != res) {
|
|
|
|
_newVersionDownload = res;
|
|
|
|
if (cAutoUpdate()) {
|
|
|
|
update(0, _restartNow.y() - 10, width(), _restartNow.height() + 20);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onUpdateChecking() {
|
|
|
|
setUpdatingState(UpdatingCheck);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onUpdateLatest() {
|
|
|
|
setUpdatingState(UpdatingLatest);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onUpdateDownloading(qint64 ready, qint64 total) {
|
|
|
|
setUpdatingState(UpdatingDownload);
|
|
|
|
setDownloadProgress(ready, total);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onUpdateReady() {
|
|
|
|
setUpdatingState(UpdatingReady);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onUpdateFailed() {
|
|
|
|
setUpdatingState(UpdatingFail);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onPhotoUpdateStart() {
|
|
|
|
showAll();
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onPhotoUpdateFail(PeerId peer) {
|
2014-10-22 18:39:03 +00:00
|
|
|
if (!self() || self()->id != peer) return;
|
2014-05-30 08:53:19 +00:00
|
|
|
saveError(lang(lng_bad_photo));
|
|
|
|
showAll();
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsInner::onPhotoUpdateDone(PeerId peer) {
|
2014-10-22 18:39:03 +00:00
|
|
|
if (!self() || self()->id != peer) return;
|
2014-05-30 08:53:19 +00:00
|
|
|
showAll();
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
SettingsWidget::SettingsWidget(Window *parent) : QWidget(parent),
|
2014-05-30 08:53:19 +00:00
|
|
|
_scroll(this, st::setScroll), _inner(this), _close(this, st::setClose) {
|
|
|
|
_scroll.setWidget(&_inner);
|
|
|
|
|
|
|
|
connect(App::wnd(), SIGNAL(resized(const QSize &)), this, SLOT(onParentResize(const QSize &)));
|
|
|
|
connect(&_close, SIGNAL(clicked()), App::wnd(), SLOT(showSettings()));
|
|
|
|
|
|
|
|
setGeometry(QRect(0, st::titleHeight, Application::wnd()->width(), Application::wnd()->height() - st::titleHeight));
|
|
|
|
|
|
|
|
showAll();
|
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
void SettingsWidget::onParentResize(const QSize &newSize) {
|
2014-05-30 08:53:19 +00:00
|
|
|
resize(newSize);
|
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
void SettingsWidget::animShow(const QPixmap &bgAnimCache, bool back) {
|
2014-05-30 08:53:19 +00:00
|
|
|
_bgAnimCache = bgAnimCache;
|
|
|
|
|
|
|
|
anim::stop(this);
|
|
|
|
showAll();
|
2014-06-14 19:32:11 +00:00
|
|
|
_animCache = myGrab(this, rect());
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
a_coord = back ? anim::ivalue(-st::introSlideShift, 0) : anim::ivalue(st::introSlideShift, 0);
|
|
|
|
a_alpha = anim::fvalue(0, 1);
|
|
|
|
a_bgCoord = back ? anim::ivalue(0, st::introSlideShift) : anim::ivalue(0, -st::introSlideShift);
|
|
|
|
a_bgAlpha = anim::fvalue(1, 0);
|
|
|
|
|
|
|
|
hideAll();
|
|
|
|
anim::start(this);
|
|
|
|
show();
|
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
bool SettingsWidget::animStep(float64 ms) {
|
2014-05-30 08:53:19 +00:00
|
|
|
float64 fullDuration = st::introSlideDelta + st::introSlideDuration, dt = ms / fullDuration;
|
|
|
|
float64 dt1 = (ms > st::introSlideDuration) ? 1 : (ms / st::introSlideDuration), dt2 = (ms > st::introSlideDelta) ? (ms - st::introSlideDelta) / (st::introSlideDuration) : 0;
|
|
|
|
bool res = true;
|
|
|
|
if (dt2 >= 1) {
|
|
|
|
res = false;
|
|
|
|
a_bgCoord.finish();
|
|
|
|
a_bgAlpha.finish();
|
|
|
|
a_coord.finish();
|
|
|
|
a_alpha.finish();
|
|
|
|
|
|
|
|
_animCache = _bgAnimCache = QPixmap();
|
|
|
|
|
|
|
|
showAll();
|
|
|
|
_inner.setFocus();
|
|
|
|
} else {
|
|
|
|
a_bgCoord.update(dt1, st::introHideFunc);
|
|
|
|
a_bgAlpha.update(dt1, st::introAlphaHideFunc);
|
|
|
|
a_coord.update(dt2, st::introShowFunc);
|
|
|
|
a_alpha.update(dt2, st::introAlphaShowFunc);
|
|
|
|
}
|
|
|
|
update();
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
void SettingsWidget::paintEvent(QPaintEvent *e) {
|
2014-05-30 08:53:19 +00:00
|
|
|
QRect r(e->rect());
|
|
|
|
bool trivial = (rect() == r);
|
|
|
|
|
|
|
|
QPainter p(this);
|
|
|
|
if (!trivial) {
|
|
|
|
p.setClipRect(r);
|
|
|
|
}
|
|
|
|
if (animating()) {
|
|
|
|
p.setOpacity(a_bgAlpha.current());
|
|
|
|
p.drawPixmap(a_bgCoord.current(), 0, _bgAnimCache);
|
|
|
|
p.setOpacity(a_alpha.current());
|
|
|
|
p.drawPixmap(a_coord.current(), 0, _animCache);
|
|
|
|
} else {
|
|
|
|
p.fillRect(rect(), st::setBG->b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
void SettingsWidget::showAll() {
|
2014-05-30 08:53:19 +00:00
|
|
|
_scroll.show();
|
|
|
|
_inner.show();
|
|
|
|
_inner.showAll();
|
2014-12-12 16:27:03 +00:00
|
|
|
if (cWideMode()) {
|
|
|
|
_close.show();
|
|
|
|
} else {
|
|
|
|
_close.hide();
|
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
void SettingsWidget::hideAll() {
|
2014-05-30 08:53:19 +00:00
|
|
|
_scroll.hide();
|
|
|
|
_close.hide();
|
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
void SettingsWidget::resizeEvent(QResizeEvent *e) {
|
2014-05-30 08:53:19 +00:00
|
|
|
_scroll.resize(size());
|
|
|
|
_inner.updateSize(width());
|
|
|
|
_close.move(st::setClosePos.x(), st::setClosePos.y());
|
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
void SettingsWidget::dragEnterEvent(QDragEnterEvent *e) {
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
void SettingsWidget::dropEvent(QDropEvent *e) {
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2014-12-12 16:27:03 +00:00
|
|
|
void SettingsWidget::updateWideMode() {
|
|
|
|
if (cWideMode()) {
|
|
|
|
_close.show();
|
|
|
|
} else {
|
|
|
|
_close.hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
void SettingsWidget::updateOnlineDisplay() {
|
2014-05-30 08:53:19 +00:00
|
|
|
_inner.updateOnlineDisplay();
|
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
void SettingsWidget::updateConnectionType() {
|
2014-05-30 08:53:19 +00:00
|
|
|
_inner.updateConnectionType();
|
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
void SettingsWidget::rpcInvalidate() {
|
|
|
|
_inner.rpcInvalidate();
|
|
|
|
}
|
|
|
|
|
2014-10-22 18:39:03 +00:00
|
|
|
void SettingsWidget::usernameChanged() {
|
|
|
|
_inner.usernameChanged();
|
|
|
|
}
|
|
|
|
|
2015-02-03 15:02:46 +00:00
|
|
|
void SettingsWidget::setInnerFocus() {
|
|
|
|
_inner.setFocus();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SettingsWidget::needBackgroundUpdate(bool tile) {
|
|
|
|
_inner.needBackgroundUpdate(tile);
|
|
|
|
}
|
|
|
|
|
2014-08-01 11:09:46 +00:00
|
|
|
SettingsWidget::~SettingsWidget() {
|
2014-05-30 08:53:19 +00:00
|
|
|
if (App::wnd()) App::wnd()->noSettings(this);
|
|
|
|
}
|