2017-05-16 21:46:45 +03:00
|
|
|
#pragma once
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
#include <QColor>
|
|
|
|
#include <QHash>
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
namespace ui
|
|
|
|
{
|
2017-08-20 13:47:22 +03:00
|
|
|
enum class AvatarType { Icon, Image, Letter };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-05-19 19:55:38 +03:00
|
|
|
namespace sidebar
|
|
|
|
{
|
|
|
|
static const int SmallSize = 60;
|
|
|
|
static const int NormalSize = 300;
|
|
|
|
}
|
2017-04-06 02:06:42 +03:00
|
|
|
// Default font size.
|
|
|
|
const int FontSize = 16;
|
|
|
|
|
|
|
|
// Default avatar size. Width and height.
|
|
|
|
const int AvatarSize = 40;
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
enum class ButtonPreset { FlatPreset, CheckablePreset };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
enum class RippleStyle { CenteredRipple, PositionedRipple, NoRipple };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
enum class OverlayStyle { NoOverlay, TintedOverlay, GrayOverlay };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
enum class Role { Default, Primary, Secondary };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
enum class ButtonIconPlacement { LeftIcon, RightIcon };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
enum class ProgressType { DeterminateProgress, IndeterminateProgress };
|
2017-04-06 02:06:42 +03:00
|
|
|
|
2017-05-08 00:51:03 +03:00
|
|
|
enum class Color {
|
2017-04-06 02:06:42 +03:00
|
|
|
Black,
|
|
|
|
BrightWhite,
|
|
|
|
FadedWhite,
|
|
|
|
MediumWhite,
|
|
|
|
DarkGreen,
|
|
|
|
LightGreen,
|
|
|
|
BrightGreen,
|
|
|
|
Gray,
|
|
|
|
Red,
|
|
|
|
Blue,
|
|
|
|
Transparent
|
|
|
|
};
|
|
|
|
|
2017-08-20 13:47:22 +03:00
|
|
|
} // namespace ui
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
class Theme : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit Theme(QObject *parent = 0);
|
|
|
|
~Theme();
|
|
|
|
|
|
|
|
QColor getColor(const QString &key) const;
|
|
|
|
|
|
|
|
void setColor(const QString &key, const QColor &color);
|
2017-05-08 00:51:03 +03:00
|
|
|
void setColor(const QString &key, ui::Color color);
|
2017-04-06 02:06:42 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
QColor rgba(int r, int g, int b, qreal a) const;
|
|
|
|
|
|
|
|
QHash<QString, QColor> colors_;
|
|
|
|
};
|