cutter/src/common/Configuration.h

126 lines
2.9 KiB
C
Raw Normal View History

#ifndef CONFIGURATION_H
#define CONFIGURATION_H
#include <QSettings>
#include <QFont>
2018-03-04 17:42:02 +00:00
#include <Cutter.h>
#define Config() (Configuration::instance())
2017-10-15 07:14:05 +00:00
#define ConfigColor(x) Config()->getColor(x)
enum ColorFlags {
LightFlag = 1,
DarkFlag = 2
};
struct CutterQtTheme {
QString name;
ColorFlags flag;
};
extern const QList<CutterQtTheme> kCutterQtThemesList;
class Configuration : public QObject
{
Q_OBJECT
private:
QSettings s;
static Configuration *mPtr;
2017-12-03 12:10:09 +00:00
void loadInitial();
2017-11-20 11:23:37 +00:00
// Colors
2018-12-21 16:30:46 +00:00
void loadBaseThemeNative();
void loadBaseThemeDark();
void loadNativeTheme();
2017-11-20 11:23:37 +00:00
void loadDarkTheme();
void setColor(const QString &name, const QColor &color);
2017-10-15 07:14:05 +00:00
// Asm Options
void applySavedAsmOptions();
public:
// Functions
Configuration();
2018-03-21 20:32:32 +00:00
static Configuration *instance();
2017-12-03 12:10:09 +00:00
void resetAll();
2018-10-31 16:07:53 +00:00
// Languages
QLocale getCurrLocale() const;
void setLocale(const QLocale &l);
bool setLocaleByName(const QString &language);
2019-01-19 20:54:02 +00:00
QStringList getAvailableTranslations();
2018-10-31 16:07:53 +00:00
// Fonts
const QFont getFont() const;
void setFont(const QFont &font);
2017-10-15 07:14:05 +00:00
// Colors
bool windowColorIsDark();
void setLastThemeOf(const CutterQtTheme &currQtTheme, const QString& theme);
QString getLastThemeOf(const CutterQtTheme &currQtTheme) const;
2017-10-15 07:14:05 +00:00
const QColor getColor(const QString &name) const;
void setTheme(int theme);
int getTheme()
2018-03-21 20:32:32 +00:00
{
return s.value("ColorPalette", 0).toInt();
2018-03-21 20:32:32 +00:00
}
2017-10-15 07:14:05 +00:00
2018-12-24 15:12:08 +00:00
const CutterQtTheme *getCurrentTheme();
2018-03-25 16:58:34 +00:00
QString getDirProjects();
void setDirProjects(const QString &dir);
2018-03-25 16:58:34 +00:00
QString getRecentFolder();
void setRecentFolder(const QString &dir);
2018-07-07 08:47:46 +00:00
void setNewFileLastClicked(int lastClicked);
int getNewFileLastClicked();
2018-02-12 12:22:53 +00:00
// Images
QString getLogoFile();
// Asm Options
void resetToDefaultAsmOptions();
2017-12-19 16:00:42 +00:00
// Graph
2018-03-21 20:32:32 +00:00
int getGraphBlockMaxChars() const
{
2018-07-01 08:59:10 +00:00
return s.value("graph.maxcols", 100).toInt();
2018-03-21 20:32:32 +00:00
}
void setGraphBlockMaxChars(int ch)
{
s.setValue("graph.maxcols", ch);
}
2017-12-19 16:00:42 +00:00
QString getColorTheme() const { return s.value("theme", "cutter").toString(); }
void setColorTheme(const QString &theme);
/*!
* \brief Get the value of a config var either from r2 or settings, depending on the key.
*/
QVariant getConfigVar(const QString &key);
bool getConfigBool(const QString &key);
int getConfigInt(const QString &key);
QString getConfigString(const QString &key);
/*!
* \brief Set the value of a config var either to r2 or settings, depending on the key.
*/
void setConfig(const QString &key, const QVariant &value);
2019-01-19 20:54:02 +00:00
bool isFirstExecution();
/*!
* \brief Get list of available translation directories (depends on configuration and OS)
* \return list of directories
*/
QStringList getTranslationsDirectories() const;
signals:
void fontsUpdated();
2017-11-20 11:23:37 +00:00
void colorsUpdated();
};
#endif // CONFIGURATION_H