From 60f45ab9b386468fec6880213c6d0f18998de3c3 Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 3 Feb 2017 13:17:40 +0300 Subject: [PATCH] Improved location coords precision when converting them to string. Also disabled some options for a packaged build. --- Telegram/SourceFiles/app.h | 2 +- Telegram/SourceFiles/application.cpp | 2 +- .../SourceFiles/boxes/downloadpathbox.cpp | 2 + .../history/history_location_manager.cpp | 12 +++- .../history/history_location_manager.h | 58 +++++++++++++------ .../SourceFiles/history/history_media_types.h | 2 +- .../inline_bots/inline_bot_result.cpp | 2 +- .../inline_bots/inline_bot_send_data.cpp | 4 +- Telegram/SourceFiles/localstorage.cpp | 6 +- Telegram/SourceFiles/pspecific_mac.cpp | 2 +- Telegram/SourceFiles/pspecific_win.cpp | 2 +- Telegram/SourceFiles/settings.cpp | 4 ++ .../settings_chat_settings_widget.cpp | 14 ++++- .../settings/settings_chat_settings_widget.h | 6 ++ .../settings/settings_general_widget.cpp | 26 +++++---- .../settings/settings_general_widget.h | 2 + Telegram/SourceFiles/ui/filedialog.cpp | 14 +++-- 17 files changed, 113 insertions(+), 47 deletions(-) diff --git a/Telegram/SourceFiles/app.h b/Telegram/SourceFiles/app.h index b1d9c326a..a702a9bb4 100644 --- a/Telegram/SourceFiles/app.h +++ b/Telegram/SourceFiles/app.h @@ -44,7 +44,7 @@ using GifItems = QHash; using PhotosData = QHash; using DocumentsData = QHash; -struct LocationCoords; +class LocationCoords; struct LocationData; namespace App { diff --git a/Telegram/SourceFiles/application.cpp b/Telegram/SourceFiles/application.cpp index e22461404..6e207326c 100644 --- a/Telegram/SourceFiles/application.cpp +++ b/Telegram/SourceFiles/application.cpp @@ -699,7 +699,7 @@ AppClass::AppClass() : QObject() { if (cLaunchMode() == LaunchModeAutoStart && !cAutoStart()) { psAutoStart(false, true); - application()->quit(); + App::quit(); return; } diff --git a/Telegram/SourceFiles/boxes/downloadpathbox.cpp b/Telegram/SourceFiles/boxes/downloadpathbox.cpp index 600d7b19e..a83f95a49 100644 --- a/Telegram/SourceFiles/boxes/downloadpathbox.cpp +++ b/Telegram/SourceFiles/boxes/downloadpathbox.cpp @@ -116,11 +116,13 @@ void DownloadPathBox::onEditPath() { } void DownloadPathBox::save() { +#ifndef OS_WIN_STORE Global::SetDownloadPath(_default->checked() ? QString() : (_temp->checked() ? qsl("tmp") : _path)); Global::SetDownloadPathBookmark((_default->checked() || _temp->checked()) ? QByteArray() : _pathBookmark); Local::writeUserSettings(); Global::RefDownloadPathChanged().notify(); closeBox(); +#endif // OS_WIN_STORE } void DownloadPathBox::setPathText(const QString &text) { diff --git a/Telegram/SourceFiles/history/history_location_manager.cpp b/Telegram/SourceFiles/history/history_location_manager.cpp index 31895fcdc..1557c22b5 100644 --- a/Telegram/SourceFiles/history/history_location_manager.cpp +++ b/Telegram/SourceFiles/history/history_location_manager.cpp @@ -25,6 +25,12 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org #include "lang.h" #include "pspecific.h" +namespace { + +constexpr auto kCoordPrecision = 8; + +} // namespace + QString LocationClickHandler::copyToClipboardContextItemText() const { return lang(lng_context_copy_link); } @@ -36,7 +42,7 @@ void LocationClickHandler::onClick(Qt::MouseButton button) const { } void LocationClickHandler::setup() { - QString latlon(qsl("%1,%2").arg(_coords.lat).arg(_coords.lon)); + auto latlon = _coords.latAsString() + ',' + _coords.lonAsString(); _text = qsl("https://maps.google.com/maps?q=") + latlon + qsl("&ll=") + latlon + qsl("&z=16"); } @@ -118,7 +124,7 @@ void LocationManager::getData(LocationData *data) { w = convertScale(w); h = convertScale(h); } - QString coords = qsl("%1,%2").arg(data->coords.lat).arg(data->coords.lon); + auto coords = data->coords.latAsString() + ',' + data->coords.lonAsString(); QString url = qsl("https://maps.googleapis.com/maps/api/staticmap?center=") + coords + qsl("&zoom=%1&size=%2x%3&maptype=roadmap&scale=%4&markers=color:red|size:big|").arg(zoom).arg(w).arg(h).arg(scale) + coords + qsl("&sensor=false"); QNetworkReply *reply = manager->get(QNetworkRequest(QUrl(url))); imageLoadings[reply] = data; @@ -224,7 +230,7 @@ void LocationManager::onFailed(QNetworkReply *reply) { imageLoadings.erase(i); } } - DEBUG_LOG(("Network Error: failed to get data for image link %1,%2 error %3").arg(d ? d->coords.lat : 0).arg(d ? d->coords.lon : 0).arg(reply->errorString())); + DEBUG_LOG(("Network Error: failed to get data for image link %1,%2 error %3").arg(d ? d->coords.latAsString() : QString()).arg(d ? d->coords.lonAsString() : QString()).arg(reply->errorString())); if (d) { failed(d); } diff --git a/Telegram/SourceFiles/history/history_location_manager.h b/Telegram/SourceFiles/history/history_location_manager.h index 79f362281..b3a28a265 100644 --- a/Telegram/SourceFiles/history/history_location_manager.h +++ b/Telegram/SourceFiles/history/history_location_manager.h @@ -24,30 +24,52 @@ void initLocationManager(); void reinitLocationManager(); void deinitLocationManager(); -struct LocationCoords { - LocationCoords() : lat(0), lon(0) { +class LocationCoords { +public: + LocationCoords() = default; + LocationCoords(float64 lat, float64 lon) : _lat(lat), _lon(lon) { } - LocationCoords(float64 lat, float64 lon) : lat(lat), lon(lon) { + LocationCoords(const MTPDgeoPoint &point) : _lat(point.vlat.v), _lon(point.vlong.v) { } - LocationCoords(const MTPDgeoPoint &point) : lat(point.vlat.v), lon(point.vlong.v) { + + QString latAsString() const { + return asString(_lat); } - float64 lat, lon; -}; -inline bool operator==(const LocationCoords &a, const LocationCoords &b) { - return (a.lat == b.lat) && (a.lon == b.lon); -} -inline bool operator<(const LocationCoords &a, const LocationCoords &b) { - return (a.lat < b.lat) || ((a.lat == b.lat) && (a.lon < b.lon)); -} -inline uint qHash(const LocationCoords &t, uint seed = 0) { + QString lonAsString() const { + return asString(_lon); + } + MTPGeoPoint toMTP() const { + return MTP_geoPoint(MTP_double(_lon), MTP_double(_lat)); + } + +private: + static QString asString(float64 value) { + static constexpr auto kPrecision = 6; + return QString::number(value, 'f', kPrecision); + } + + friend inline bool operator==(const LocationCoords &a, const LocationCoords &b) { + return (a._lat == b._lat) && (a._lon == b._lon); + } + + friend inline bool operator<(const LocationCoords &a, const LocationCoords &b) { + return (a._lat < b._lat) || ((a._lat == b._lat) && (a._lon < b._lon)); + } + + friend inline uint qHash(const LocationCoords &t, uint seed = 0) { #ifndef OS_MAC_OLD - return qHash(QtPrivate::QHashCombine().operator()(qHash(t.lat), t.lon), seed); + return qHash(QtPrivate::QHashCombine().operator()(qHash(t._lat), t._lon), seed); #else // OS_MAC_OLD - uint h1 = qHash(t.lat, seed); - uint h2 = qHash(t.lon, seed); - return ((h1 << 16) | (h1 >> 16)) ^ h2 ^ seed; + uint h1 = qHash(t._lat, seed); + uint h2 = qHash(t._lon, seed); + return ((h1 << 16) | (h1 >> 16)) ^ h2 ^ seed; #endif // OS_MAC_OLD -} + } + + float64 _lat = 0; + float64 _lon = 0; + +}; struct LocationData { LocationData(const LocationCoords &coords) : coords(coords), loading(false) { diff --git a/Telegram/SourceFiles/history/history_media_types.h b/Telegram/SourceFiles/history/history_media_types.h index 98b8fa8f2..fb14f022b 100644 --- a/Telegram/SourceFiles/history/history_media_types.h +++ b/Telegram/SourceFiles/history/history_media_types.h @@ -844,7 +844,7 @@ private: }; -struct LocationCoords; +class LocationCoords; struct LocationData; class HistoryLocation : public HistoryMedia { diff --git a/Telegram/SourceFiles/inline_bots/inline_bot_result.cpp b/Telegram/SourceFiles/inline_bots/inline_bot_result.cpp index c6b00235a..53c016b84 100644 --- a/Telegram/SourceFiles/inline_bots/inline_bot_result.cpp +++ b/Telegram/SourceFiles/inline_bots/inline_bot_result.cpp @@ -202,7 +202,7 @@ std_::unique_ptr Result::create(uint64 queryId, const MTPBotInlineResult w /= 2; h /= 2; } - QString coords = qsl("%1,%2").arg(location.lat).arg(location.lon); + auto coords = location.latAsString() + ',' + location.lonAsString(); QString url = qsl("https://maps.googleapis.com/maps/api/staticmap?center=") + coords + qsl("&zoom=%1&size=%2x%3&maptype=roadmap&scale=%4&markers=color:red|size:big|").arg(zoom).arg(w).arg(h).arg(scale) + coords + qsl("&sensor=false"); result->_locationThumb = ImagePtr(url); } diff --git a/Telegram/SourceFiles/inline_bots/inline_bot_send_data.cpp b/Telegram/SourceFiles/inline_bots/inline_bot_send_data.cpp index b7c47b033..11dfa7fa9 100644 --- a/Telegram/SourceFiles/inline_bots/inline_bot_send_data.cpp +++ b/Telegram/SourceFiles/inline_bots/inline_bot_send_data.cpp @@ -54,13 +54,13 @@ SendDataCommon::SentMTPMessageFields SendText::getSentMessageFields() const { SendDataCommon::SentMTPMessageFields SendGeo::getSentMessageFields() const { SentMTPMessageFields result; - result.media = MTP_messageMediaGeo(MTP_geoPoint(MTP_double(_location.lon), MTP_double(_location.lat))); + result.media = MTP_messageMediaGeo(_location.toMTP()); return result; } SendDataCommon::SentMTPMessageFields SendVenue::getSentMessageFields() const { SentMTPMessageFields result; - result.media = MTP_messageMediaVenue(MTP_geoPoint(MTP_double(_location.lon), MTP_double(_location.lat)), MTP_string(_title), MTP_string(_address), MTP_string(_provider), MTP_string(_venueId)); + result.media = MTP_messageMediaVenue(_location.toMTP(), MTP_string(_title), MTP_string(_address), MTP_string(_provider), MTP_string(_venueId)); return result; } diff --git a/Telegram/SourceFiles/localstorage.cpp b/Telegram/SourceFiles/localstorage.cpp index cb8440508..928ffed1d 100644 --- a/Telegram/SourceFiles/localstorage.cpp +++ b/Telegram/SourceFiles/localstorage.cpp @@ -1269,11 +1269,12 @@ bool _readSetting(quint32 blockId, QDataStream &stream, int version) { QString v; stream >> v; if (!_checkStreamStatus(stream)) return false; - +#ifndef OS_WIN_STORE if (!v.isEmpty() && v != qstr("tmp") && !v.endsWith('/')) v += '/'; Global::SetDownloadPath(v); Global::SetDownloadPathBookmark(QByteArray()); Global::RefDownloadPathChanged().notify(); +#endif // OS_WIN_STORE } break; case dbiDownloadPath: { @@ -1281,12 +1282,13 @@ bool _readSetting(quint32 blockId, QDataStream &stream, int version) { QByteArray bookmark; stream >> v >> bookmark; if (!_checkStreamStatus(stream)) return false; - +#ifndef OS_WIN_STORE if (!v.isEmpty() && v != qstr("tmp") && !v.endsWith('/')) v += '/'; Global::SetDownloadPath(v); Global::SetDownloadPathBookmark(bookmark); psDownloadPathEnableAccess(); Global::RefDownloadPathChanged().notify(); +#endif // OS_WIN_STORE } break; case dbiCompressPastedImage: { diff --git a/Telegram/SourceFiles/pspecific_mac.cpp b/Telegram/SourceFiles/pspecific_mac.cpp index 4b25860b4..1d24219ee 100644 --- a/Telegram/SourceFiles/pspecific_mac.cpp +++ b/Telegram/SourceFiles/pspecific_mac.cpp @@ -460,7 +460,7 @@ QByteArray psPathBookmark(const QString &path) { } bool psLaunchMaps(const LocationCoords &coords) { - return QDesktopServices::openUrl(qsl("https://maps.apple.com/?q=Point&z=16&ll=%1,%2").arg(coords.lat).arg(coords.lon)); + return QDesktopServices::openUrl(qsl("https://maps.apple.com/?q=Point&z=16&ll=%1,%2").arg(coords.latAsString()).arg(coords.lonAsString())); } QString strNotificationAboutThemeChange() { diff --git a/Telegram/SourceFiles/pspecific_win.cpp b/Telegram/SourceFiles/pspecific_win.cpp index e0e14172a..a1c24375c 100644 --- a/Telegram/SourceFiles/pspecific_win.cpp +++ b/Telegram/SourceFiles/pspecific_win.cpp @@ -1552,5 +1552,5 @@ void psWriteStackTrace() { } bool psLaunchMaps(const LocationCoords &coords) { - return QDesktopServices::openUrl(qsl("bingmaps:?lvl=16&collection=point.%1_%2_Point").arg(coords.lat).arg(coords.lon)); + return QDesktopServices::openUrl(qsl("bingmaps:?lvl=16&collection=point.%1_%2_Point").arg(coords.latAsString()).arg(coords.lonAsString())); } diff --git a/Telegram/SourceFiles/settings.cpp b/Telegram/SourceFiles/settings.cpp index 90f82748c..eebfbc1b6 100644 --- a/Telegram/SourceFiles/settings.cpp +++ b/Telegram/SourceFiles/settings.cpp @@ -144,7 +144,11 @@ void settingsParseArgs(int argc, char *argv[]) { switch (cPlatform()) { case dbipWindows: gUpdateURL = QUrl(qsl("http://tdesktop.com/win/tupdates/current")); +#ifndef OS_WIN_STORE gPlatformString = qsl("Windows"); +#else // OS_WIN_STORE + gPlatformString = qsl("WinStore"); +#endif // OS_WIN_STORE break; case dbipMac: gUpdateURL = QUrl(qsl("http://tdesktop.com/mac/tupdates/current")); diff --git a/Telegram/SourceFiles/settings/settings_chat_settings_widget.cpp b/Telegram/SourceFiles/settings/settings_chat_settings_widget.cpp index 5b560b039..2eafb64b0 100644 --- a/Telegram/SourceFiles/settings/settings_chat_settings_widget.cpp +++ b/Telegram/SourceFiles/settings/settings_chat_settings_widget.cpp @@ -63,6 +63,7 @@ int LabeledLink::resizeGetHeight(int newWidth) { return _label->height(); } +#ifndef OS_WIN_STORE DownloadPathState::DownloadPathState(QWidget *parent) : TWidget(parent) , _path(this, lang(lng_download_path_label), downloadPathText(), LabeledLink::Type::Secondary, SLOT(onDownloadPath())) , _clear(this, lang(lng_download_path_clear)) { @@ -146,6 +147,7 @@ void DownloadPathState::onTempDirClearFailed(int task) { } updateControls(); } +#endif // OS_WIN_STORE ChatSettingsWidget::ChatSettingsWidget(QWidget *parent, UserData *self) : BlockWidget(parent, self, lang(lng_settings_section_chat_settings)) { createControls(); @@ -164,12 +166,20 @@ void ChatSettingsWidget::createControls() { _viewList->hideFast(); } - addChildRow(_dontAskDownloadPath, marginSub, lang(lng_download_path_dont_ask), SLOT(onDontAskDownloadPath()), !Global::AskDownloadPath()); +#ifndef OS_WIN_STORE + auto pathMargin = marginSub; +#else // OS_WIN_STORE + auto pathMargin = marginSkip; +#endif // OS_WIN_STORE + addChildRow(_dontAskDownloadPath, pathMargin, lang(lng_download_path_dont_ask), SLOT(onDontAskDownloadPath()), !Global::AskDownloadPath()); + +#ifndef OS_WIN_STORE style::margins marginPath(st::defaultBoxCheckbox.textPosition.x(), 0, 0, st::settingsSkip); addChildRow(_downloadPath, marginPath, slidedPadding); if (Global::AskDownloadPath()) { _downloadPath->hideFast(); } +#endif // OS_WIN_STORE addChildRow(_sendByEnter, marginSmall, qsl("send_key"), 0, lang(lng_settings_send_enter), SLOT(onSendByEnter()), !cCtrlEnter()); addChildRow(_sendByCtrlEnter, marginSkip, qsl("send_key"), 1, lang((cPlatform() == dbipMac || cPlatform() == dbipMacOld) ? lng_settings_send_cmdenter : lng_settings_send_ctrlenter), SLOT(onSendByCtrlEnter()), cCtrlEnter()); @@ -195,11 +205,13 @@ void ChatSettingsWidget::onViewList() { void ChatSettingsWidget::onDontAskDownloadPath() { Global::SetAskDownloadPath(!_dontAskDownloadPath->checked()); Local::writeUserSettings(); +#ifndef OS_WIN_STORE if (_dontAskDownloadPath->checked()) { _downloadPath->slideDown(); } else { _downloadPath->slideUp(); } +#endif // OS_WIN_STORE } void ChatSettingsWidget::onSendByEnter() { diff --git a/Telegram/SourceFiles/settings/settings_chat_settings_widget.h b/Telegram/SourceFiles/settings/settings_chat_settings_widget.h index 0e69a1b9d..77699fe08 100644 --- a/Telegram/SourceFiles/settings/settings_chat_settings_widget.h +++ b/Telegram/SourceFiles/settings/settings_chat_settings_widget.h @@ -51,6 +51,7 @@ private: }; +#ifndef OS_WIN_STORE class DownloadPathState : public TWidget, private base::Subscriber { Q_OBJECT @@ -85,6 +86,7 @@ private: object_ptr _clear; }; +#endif // OS_WIN_STORE class ChatSettingsWidget : public BlockWidget { Q_OBJECT @@ -107,7 +109,11 @@ private: object_ptr _replaceEmoji = { nullptr }; object_ptr> _viewList = { nullptr }; object_ptr _dontAskDownloadPath = { nullptr }; + +#ifndef OS_WIN_STORE object_ptr> _downloadPath = { nullptr }; +#endif // OS_WIN_STORE + object_ptr _sendByEnter = { nullptr }; object_ptr _sendByCtrlEnter = { nullptr }; object_ptr _automaticMediaDownloadSettings = { nullptr }; diff --git a/Telegram/SourceFiles/settings/settings_general_widget.cpp b/Telegram/SourceFiles/settings/settings_general_widget.cpp index 847e9b35b..5614d42bb 100644 --- a/Telegram/SourceFiles/settings/settings_general_widget.cpp +++ b/Telegram/SourceFiles/settings/settings_general_widget.cpp @@ -189,19 +189,21 @@ void GeneralWidget::refreshControls() { if (cPlatform() == dbipWindows || cSupportTray()) { addChildRow(_enableTrayIcon, marginSmall, lang(lng_settings_workmode_tray), SLOT(onEnableTrayIcon()), (cWorkMode() == dbiwmTrayOnly || cWorkMode() == dbiwmWindowAndTray)); - if (cPlatform() == dbipWindows) { - addChildRow(_enableTaskbarIcon, marginLarge, lang(lng_settings_workmode_window), SLOT(onEnableTaskbarIcon()), (cWorkMode() == dbiwmWindowOnly || cWorkMode() == dbiwmWindowAndTray)); +#ifdef Q_OS_WIN + addChildRow(_enableTaskbarIcon, marginLarge, lang(lng_settings_workmode_window), SLOT(onEnableTaskbarIcon()), (cWorkMode() == dbiwmWindowOnly || cWorkMode() == dbiwmWindowAndTray)); - addChildRow(_autoStart, marginSmall, lang(lng_settings_auto_start), SLOT(onAutoStart()), cAutoStart()); - addChildRow(_startMinimized, marginLarge, slidedPadding, lang(lng_settings_start_min), SLOT(onStartMinimized()), (cStartMinimized() && !Global::LocalPasscode())); - subscribe(Global::RefLocalPasscodeChanged(), [this] { - _startMinimized->entity()->setChecked(cStartMinimized() && !Global::LocalPasscode()); - }); - if (!cAutoStart()) { - _startMinimized->hideFast(); - } - addChildRow(_addInSendTo, marginSmall, lang(lng_settings_add_sendto), SLOT(onAddInSendTo()), cSendToMenu()); +#ifndef OS_WIN_STORE + addChildRow(_autoStart, marginSmall, lang(lng_settings_auto_start), SLOT(onAutoStart()), cAutoStart()); + addChildRow(_startMinimized, marginLarge, slidedPadding, lang(lng_settings_start_min), SLOT(onStartMinimized()), (cStartMinimized() && !Global::LocalPasscode())); + subscribe(Global::RefLocalPasscodeChanged(), [this] { + _startMinimized->entity()->setChecked(cStartMinimized() && !Global::LocalPasscode()); + }); + if (!cAutoStart()) { + _startMinimized->hideFast(); } + addChildRow(_addInSendTo, marginSmall, lang(lng_settings_add_sendto), SLOT(onAddInSendTo()), cSendToMenu()); +#endif // OS_WIN_STORE +#endif // Q_OS_WIN } } @@ -295,6 +297,7 @@ void GeneralWidget::updateWorkmode() { Local::writeSettings(); } +#if defined Q_OS_WIN && !defined OS_WIN_STORE void GeneralWidget::onAutoStart() { cSetAutoStart(_autoStart->checked()); if (cAutoStart()) { @@ -332,5 +335,6 @@ void GeneralWidget::onAddInSendTo() { psSendToMenu(_addInSendTo->checked()); Local::writeSettings(); } +#endif // Q_OS_WIN && !OS_WIN_STORE } // namespace Settings diff --git a/Telegram/SourceFiles/settings/settings_general_widget.h b/Telegram/SourceFiles/settings/settings_general_widget.h index 75b185f2d..7b9579724 100644 --- a/Telegram/SourceFiles/settings/settings_general_widget.h +++ b/Telegram/SourceFiles/settings/settings_general_widget.h @@ -94,9 +94,11 @@ private slots: void onEnableTrayIcon(); void onEnableTaskbarIcon(); +#if defined Q_OS_WIN && !defined OS_WIN_STORE void onAutoStart(); void onStartMinimized(); void onAddInSendTo(); +#endif // Q_OS_WIN && !OS_WIN_STORE void onRestart(); diff --git a/Telegram/SourceFiles/ui/filedialog.cpp b/Telegram/SourceFiles/ui/filedialog.cpp index d114a9814..e85b6a89d 100644 --- a/Telegram/SourceFiles/ui/filedialog.cpp +++ b/Telegram/SourceFiles/ui/filedialog.cpp @@ -64,9 +64,9 @@ void filedialogInit() { cSetDialogHelperPath(temppath.absolutePath()); } } -#else +#else // Q_OS_WIN cSetDialogLastPath(QStandardPaths::writableLocation(QStandardPaths::DownloadLocation)); -#endif +#endif // Q_OS_WIN } } @@ -116,7 +116,8 @@ bool getFiles(QStringList &files, QByteArray &remoteContent, const QString &capt #endif // hack for fast non-native dialog create - QFileDialog dialog(App::wnd() ? App::wnd()->filedialogParent() : 0, caption, cDialogHelperPathFinal(), filter); + auto helperPath = cDialogHelperPathFinal(); + QFileDialog dialog(App::wnd() ? App::wnd()->filedialogParent() : 0, caption, helperPath, filter); dialog.setModal(true); if (type == Type::ReadFile || type == Type::ReadFiles) { @@ -132,7 +133,12 @@ bool getFiles(QStringList &files, QByteArray &remoteContent, const QString &capt } dialog.show(); - if (!cDialogLastPath().isEmpty()) dialog.setDirectory(cDialogLastPath()); + auto realLastPath = cDialogLastPath(); + if (realLastPath.isEmpty() || realLastPath.endsWith(qstr("/tdummy"))) { + realLastPath = QStandardPaths::writableLocation(QStandardPaths::DownloadLocation); + } + dialog.setDirectory(realLastPath); + if (type == Type::WriteFile) { QString toSelect(startFile); #ifdef Q_OS_WIN