mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
ae26b835b6
Things that were once singletons are no longer singletons, but are instead stored in the "Application" singleton Some singletons still remain, and some renaming/renamespacing is left
36 lines
775 B
C++
36 lines
775 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
namespace chatterino {
|
|
namespace singletons {
|
|
|
|
class PathManager
|
|
{
|
|
PathManager(int argc, char **argv);
|
|
friend class Application;
|
|
|
|
public:
|
|
// %APPDATA%/chatterino or ExecutablePath for portable mode
|
|
QString settingsFolderPath;
|
|
|
|
// %APPDATA%/chatterino/Custom or ExecutablePath/Custom for portable mode
|
|
QString customFolderPath;
|
|
|
|
// %APPDATA%/chatterino/Cache or ExecutablePath/Cache for portable mode
|
|
QString cacheFolderPath;
|
|
|
|
// Logs
|
|
QString logsFolderPath;
|
|
QString channelsLogsFolderPath;
|
|
QString whispersLogsFolderPath;
|
|
QString mentionsLogsFolderPath;
|
|
|
|
QString appPathHash;
|
|
|
|
bool createFolder(const QString &folderPath);
|
|
};
|
|
|
|
} // namespace singletons
|
|
} // namespace chatterino
|