2022-03-31 21:32:22 +00:00
|
|
|
/*
|
|
|
|
* Squawk messenger.
|
|
|
|
* Copyright (C) 2019 Yury Gubich <blue@macaw.me>
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-11-06 23:57:08 +00:00
|
|
|
#pragma once
|
2022-02-17 17:26:15 +00:00
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QStandardPaths>
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QDir>
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QDebug>
|
2022-02-18 21:27:09 +00:00
|
|
|
#include <QRegularExpression>
|
2022-02-17 17:26:15 +00:00
|
|
|
|
2022-02-18 21:27:09 +00:00
|
|
|
namespace Shared {
|
2022-02-17 17:26:15 +00:00
|
|
|
|
|
|
|
QString downloadsPathCheck();
|
2022-02-19 18:31:49 +00:00
|
|
|
QString downloadsPathCheck(QString path);
|
2022-02-17 17:26:15 +00:00
|
|
|
QString defaultDownloadsPath();
|
|
|
|
|
2022-02-18 21:27:09 +00:00
|
|
|
QString getAbsoluteWritablePath(const QString& path);
|
|
|
|
QString resolvePath(QString path);
|
2022-02-19 18:31:49 +00:00
|
|
|
QString squawkifyPath(QString path);
|
|
|
|
bool isSubdirectoryOfSettings(const QString& path);
|
2022-02-17 17:26:15 +00:00
|
|
|
|
|
|
|
}
|