matrixion/src/ui/Theme.h

43 lines
1.4 KiB
C
Raw Normal View History

// SPDX-FileCopyrightText: Nheko Contributors
2021-03-05 02:35:15 +03:00
//
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
2017-04-06 02:06:42 +03:00
#include <QColor>
2021-05-15 00:35:34 +03:00
#include <QPalette>
2023-06-19 02:54:47 +03:00
#include <QQmlEngine>
2017-04-06 02:06:42 +03:00
2022-10-10 15:38:29 +03:00
class Theme final : public QPalette
2017-04-06 02:06:42 +03:00
{
2021-09-18 01:22:33 +03:00
Q_GADGET
2023-06-19 02:54:47 +03:00
QML_ANONYMOUS
2021-09-18 01:22:33 +03:00
Q_PROPERTY(QColor sidebarBackground READ sidebarBackground CONSTANT)
Q_PROPERTY(QColor alternateButton READ alternateButton CONSTANT)
Q_PROPERTY(QColor separator READ separator CONSTANT)
Q_PROPERTY(QColor red READ red CONSTANT)
Q_PROPERTY(QColor green READ green CONSTANT)
Q_PROPERTY(QColor error READ error CONSTANT)
Q_PROPERTY(QColor orange READ orange CONSTANT)
2022-10-02 00:57:02 +03:00
Q_PROPERTY(QColor online READ online CONSTANT)
Q_PROPERTY(QColor unavailable READ unavailable CONSTANT)
2017-04-06 02:06:42 +03:00
public:
2021-09-18 01:22:33 +03:00
Theme() {}
2021-12-29 10:05:29 +03:00
explicit Theme(QStringView theme);
static QPalette paletteFromTheme(QStringView theme);
2017-04-06 02:06:42 +03:00
2021-09-18 01:22:33 +03:00
QColor sidebarBackground() const { return sidebarBackground_; }
QColor alternateButton() const { return alternateButton_; }
QColor separator() const { return separator_; }
QColor red() const { return red_; }
QColor green() const { return green_; }
QColor error() const { return error_; }
QColor orange() const { return orange_; }
2022-10-02 00:57:02 +03:00
QColor online() const { return QColor(0x00, 0xcc, 0x66); }
QColor unavailable() const { return QColor(0xff, 0x99, 0x33); }
2017-04-06 02:06:42 +03:00
private:
QColor sidebarBackground_, separator_, red_, green_, error_, orange_, alternateButton_;
2017-04-06 02:06:42 +03:00
};