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.
|
|
|
|
|
2015-10-03 13:16:42 +00:00
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2016-02-08 10:56:18 +00:00
|
|
|
Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#include "stdafx.h"
|
2016-10-28 09:20:24 +00:00
|
|
|
#include "boxes/downloadpathbox.h"
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-10-28 09:20:24 +00:00
|
|
|
#include "lang.h"
|
2015-03-02 12:34:16 +00:00
|
|
|
#include "localstorage.h"
|
2016-04-07 18:05:28 +00:00
|
|
|
#include "ui/filedialog.h"
|
2016-11-11 13:46:04 +00:00
|
|
|
#include "ui/widgets/checkbox.h"
|
|
|
|
#include "ui/widgets/buttons.h"
|
2015-11-26 17:34:52 +00:00
|
|
|
#include "pspecific.h"
|
2016-11-11 13:46:04 +00:00
|
|
|
#include "styles/style_boxes.h"
|
2015-11-26 17:34:52 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
DownloadPathBox::DownloadPathBox(QWidget *parent)
|
|
|
|
: _path(Global::DownloadPath())
|
2016-08-27 04:49:18 +00:00
|
|
|
, _pathBookmark(Global::DownloadPathBookmark())
|
2016-12-02 19:16:35 +00:00
|
|
|
, _default(this, qsl("dir_type"), 0, lang(lng_download_path_default_radio), _path.isEmpty(), st::defaultBoxCheckbox)
|
|
|
|
, _temp(this, qsl("dir_type"), 1, lang(lng_download_path_temp_radio), (_path == qsl("tmp")), st::defaultBoxCheckbox)
|
|
|
|
, _dir(this, qsl("dir_type"), 2, lang(lng_download_path_dir_radio), (!_path.isEmpty() && _path != qsl("tmp")), st::defaultBoxCheckbox)
|
2016-12-13 17:07:56 +00:00
|
|
|
, _pathLink(this, QString(), st::boxLinkButton) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadPathBox::prepare() {
|
|
|
|
addButton(lang(lng_connection_save), [this] { save(); });
|
|
|
|
addButton(lang(lng_cancel), [this] { closeBox(); });
|
2015-10-06 19:49:23 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
setTitle(lang(lng_download_path_header));
|
2015-10-06 19:49:23 +00:00
|
|
|
|
2016-10-28 09:20:24 +00:00
|
|
|
connect(_default, SIGNAL(changed()), this, SLOT(onChange()));
|
|
|
|
connect(_temp, SIGNAL(changed()), this, SLOT(onChange()));
|
|
|
|
connect(_dir, SIGNAL(changed()), this, SLOT(onChange()));
|
2015-10-06 19:49:23 +00:00
|
|
|
|
2016-10-28 09:20:24 +00:00
|
|
|
connect(_pathLink, SIGNAL(clicked()), this, SLOT(onEditPath()));
|
2015-10-06 19:49:23 +00:00
|
|
|
if (!_path.isEmpty() && _path != qsl("tmp")) {
|
|
|
|
setPathText(QDir::toNativeSeparators(_path));
|
|
|
|
}
|
2016-11-18 13:34:58 +00:00
|
|
|
updateControlsVisibility();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
2016-11-18 13:34:58 +00:00
|
|
|
void DownloadPathBox::updateControlsVisibility() {
|
|
|
|
_pathLink->setVisible(_dir->checked());
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
auto newHeight = st::boxOptionListPadding.top() + _default->heightNoMargins() + st::boxOptionListSkip + _temp->heightNoMargins() + st::boxOptionListSkip + _dir->heightNoMargins();
|
|
|
|
if (_dir->checked()) {
|
|
|
|
newHeight += st::downloadPathSkip + _pathLink->height();
|
|
|
|
}
|
|
|
|
newHeight += st::boxOptionListPadding.bottom();
|
2016-08-16 16:53:10 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
setDimensions(st::boxWideWidth, newHeight);
|
2015-04-02 10:33:19 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
void DownloadPathBox::resizeEvent(QResizeEvent *e) {
|
2016-12-13 17:07:56 +00:00
|
|
|
BoxContent::resizeEvent(e);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
_default->moveToLeft(st::boxPadding.left() + st::boxOptionListPadding.left(), st::boxOptionListPadding.top());
|
|
|
|
_temp->moveToLeft(st::boxPadding.left() + st::boxOptionListPadding.left(), _default->bottomNoMargins() + st::boxOptionListSkip);
|
|
|
|
_dir->moveToLeft(st::boxPadding.left() + st::boxOptionListPadding.left(), _temp->bottomNoMargins() + st::boxOptionListSkip);
|
|
|
|
auto inputx = st::boxPadding.left() + st::boxOptionListPadding.left() + st::defaultBoxCheckbox.textPosition.x();
|
|
|
|
auto inputy = _dir->bottomNoMargins() + st::downloadPathSkip;
|
2015-04-02 10:33:19 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
_pathLink->moveToLeft(inputx, inputy);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadPathBox::onChange() {
|
2016-10-28 09:20:24 +00:00
|
|
|
if (_dir->checked()) {
|
2014-09-30 14:11:09 +00:00
|
|
|
if (_path.isEmpty() || _path == qsl("tmp")) {
|
2016-10-28 09:20:24 +00:00
|
|
|
(_path.isEmpty() ? _default : _temp)->setChecked(true);
|
2014-05-30 08:53:19 +00:00
|
|
|
onEditPath();
|
2014-09-30 14:11:09 +00:00
|
|
|
if (!_path.isEmpty() && _path != qsl("tmp")) {
|
2016-10-28 09:20:24 +00:00
|
|
|
_dir->setChecked(true);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
} else {
|
2015-10-06 19:49:23 +00:00
|
|
|
setPathText(QDir::toNativeSeparators(_path));
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2016-10-28 09:20:24 +00:00
|
|
|
} else if (_temp->checked()) {
|
2014-09-30 14:11:09 +00:00
|
|
|
_path = qsl("tmp");
|
|
|
|
} else {
|
|
|
|
_path = QString();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2016-11-18 13:34:58 +00:00
|
|
|
updateControlsVisibility();
|
2014-05-30 08:53:19 +00:00
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DownloadPathBox::onEditPath() {
|
|
|
|
filedialogInit();
|
|
|
|
QString path, lastPath = cDialogLastPath();
|
2016-08-27 04:49:18 +00:00
|
|
|
if (!Global::DownloadPath().isEmpty() && Global::DownloadPath() != qstr("tmp")) {
|
|
|
|
cSetDialogLastPath(Global::DownloadPath().left(Global::DownloadPath().size() - (Global::DownloadPath().endsWith('/') ? 1 : 0)));
|
2014-09-22 03:52:37 +00:00
|
|
|
}
|
2014-05-30 08:53:19 +00:00
|
|
|
if (filedialogGetDir(path, lang(lng_download_path_choose))) {
|
|
|
|
if (!path.isEmpty()) {
|
|
|
|
_path = path + '/';
|
2015-11-26 17:34:52 +00:00
|
|
|
_pathBookmark = psDownloadPathBookmark(_path);
|
2015-10-06 19:49:23 +00:00
|
|
|
setPathText(QDir::toNativeSeparators(_path));
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
cSetDialogLastPath(lastPath);
|
|
|
|
}
|
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
void DownloadPathBox::save() {
|
2016-10-28 09:20:24 +00:00
|
|
|
Global::SetDownloadPath(_default->checked() ? QString() : (_temp->checked() ? qsl("tmp") : _path));
|
|
|
|
Global::SetDownloadPathBookmark((_default->checked() || _temp->checked()) ? QByteArray() : _pathBookmark);
|
2015-03-02 12:34:16 +00:00
|
|
|
Local::writeUserSettings();
|
2016-08-27 04:49:18 +00:00
|
|
|
Global::RefDownloadPathChanged().notify();
|
2016-12-13 17:07:56 +00:00
|
|
|
closeBox();
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2015-10-06 19:49:23 +00:00
|
|
|
|
|
|
|
void DownloadPathBox::setPathText(const QString &text) {
|
2016-12-13 17:07:56 +00:00
|
|
|
auto availw = st::boxWideWidth - st::boxPadding.left() - st::defaultBoxCheckbox.textPosition.x() - st::boxPadding.right();
|
2016-10-28 09:20:24 +00:00
|
|
|
_pathLink->setText(st::boxTextFont->elided(text, availw));
|
2015-10-06 19:49:23 +00:00
|
|
|
}
|