2018-03-12 09:41:16 +00:00
|
|
|
#ifndef THEME_H
|
|
|
|
#define THEME_H
|
|
|
|
#include <QColor>
|
2018-03-14 06:43:16 +00:00
|
|
|
#include <QString>
|
2018-03-26 12:41:46 +00:00
|
|
|
#include <map>
|
2018-03-12 09:41:16 +00:00
|
|
|
|
|
|
|
class Theme
|
|
|
|
{
|
|
|
|
public:
|
2018-03-26 12:41:46 +00:00
|
|
|
static QColor red;
|
|
|
|
static QColor green;
|
|
|
|
static QColor blue;
|
|
|
|
static float normalAlpha;
|
|
|
|
static float checkedAlpha;
|
2018-03-29 01:46:43 +00:00
|
|
|
static float branchAlpha;
|
2018-03-26 12:41:46 +00:00
|
|
|
static float fillAlpha;
|
2018-03-30 07:41:29 +00:00
|
|
|
static float edgeAlpha;
|
2018-03-26 12:41:46 +00:00
|
|
|
static int skeletonNodeBorderSize;
|
|
|
|
static int skeletonEdgeWidth;
|
2018-03-14 06:43:16 +00:00
|
|
|
static QString tabButtonSelectedStylesheet;
|
|
|
|
static QString tabButtonStylesheet;
|
2018-03-26 12:41:46 +00:00
|
|
|
static std::map<QString, QString> nextSideColorNameMap;
|
|
|
|
static std::map<QString, QColor> sideColorNameToColorMap;
|
2018-03-12 09:41:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|