36 lines
883 B
C++
36 lines
883 B
C++
#ifndef THEME_H
|
|
#define THEME_H
|
|
#include <QColor>
|
|
#include <QString>
|
|
#include <map>
|
|
#include "QtAwesome.h"
|
|
|
|
class Theme
|
|
{
|
|
public:
|
|
static QColor red;
|
|
static QColor green;
|
|
static QColor blue;
|
|
static QColor white;
|
|
static QColor black;
|
|
static float normalAlpha;
|
|
static float checkedAlpha;
|
|
static float branchAlpha;
|
|
static float fillAlpha;
|
|
static float edgeAlpha;
|
|
static int skeletonNodeBorderSize;
|
|
static int skeletonEdgeWidth;
|
|
static QString tabButtonSelectedStylesheet;
|
|
static QString tabButtonStylesheet;
|
|
static std::map<QString, QString> nextSideColorNameMap;
|
|
static std::map<QString, QColor> sideColorNameToColorMap;
|
|
static QtAwesome *awesome();
|
|
static int toolIconFontSize;
|
|
static int toolIconSize;
|
|
static int previewImageSize;
|
|
static int miniIconFontSize;
|
|
static int miniIconSize;
|
|
};
|
|
|
|
#endif
|