You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
/** |
|
* SPDX-FileCopyrightText: Copyright 2023 Open Mobile Platform LLC <community@omp.ru> |
|
* SPDX-License-Identifier: BSD-3-Clause |
|
*/ |
|
#include <QStandardPaths> |
|
|
|
#include "xdga_directories.h" |
|
|
|
char *getCacheLocation() |
|
{ |
|
return QStandardPaths::writableLocation(QStandardPaths::CacheLocation).toUtf8().data(); |
|
} |
|
|
|
char *getAppDataLocation() |
|
{ |
|
return QStandardPaths::writableLocation(QStandardPaths::AppDataLocation).toUtf8().data(); |
|
} |
|
|
|
char *getDocumentsLocation() |
|
{ |
|
return QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation).toUtf8().data(); |
|
} |
|
|
|
char *getDownloadLocation() |
|
{ |
|
return QStandardPaths::writableLocation(QStandardPaths::DownloadLocation).toUtf8().data(); |
|
} |
|
|
|
char *getMusicLocation() |
|
{ |
|
return QStandardPaths::writableLocation(QStandardPaths::MusicLocation).toUtf8().data(); |
|
} |
|
|
|
char *getPicturesLocation() |
|
{ |
|
return QStandardPaths::writableLocation(QStandardPaths::PicturesLocation).toUtf8().data(); |
|
} |
|
|
|
char *getGenericDataLocation() |
|
{ |
|
return QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation).toUtf8().data(); |
|
} |
|
|
|
char *getMoviesLocation() |
|
{ |
|
return QStandardPaths::writableLocation(QStandardPaths::MoviesLocation).toUtf8().data(); |
|
}
|
|
|