mirror-chatterino2/appsettings.h
2017-01-18 04:33:30 +01:00

40 lines
546 B
C++

#ifndef APPSETTINGS_H
#define APPSETTINGS_H
#include "word.h"
class AppSettings
{
public:
static Word::Type
getWordTypeMask()
{
return wordTypeMask;
}
static bool isIgnoredEmote(const QString &emote);
static qreal
getEmoteScale()
{
return 1;
}
static qreal
getBadgeScale()
{
return 1;
}
static bool
getScaleEmotesByLineHeight()
{
return false;
}
private:
AppSettings();
static Word::Type wordTypeMask;
};
#endif // APPSETTINGS_H