1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
/* -*- Mode: C++; indent-tabs-mode: nil; tab-width: 4 -*-
* -*- coding: utf-8 -*-
*
* Copyright (C) 2023 KylinSoft Co., Ltd.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "style_helper.h"
#include <QApplication>
#include <QDBusMessage>
#include <QDBusConnection>
#include "usd_base_class.h"
#include "usd_global_define.h"
#define UKUI_STYLE "org.ukui.style"
const static QString s_styleName = "style-name";
const static QString s_fontSize = "system-font-size";
#define UKUI_CONTROL_CENTER_PERSONALISE "org.ukui.control-center.personalise"
const static QString s_opacity = "transparency";
Q_GLOBAL_STATIC(StyleHelper, s_styleHelper)
StyleHelper::StyleHelper(QObject *parent)
: QObject(parent)
, m_opacity(0.75)
, m_fontSize(11)
, m_isLightStyle(false)
, m_isTabletMode(false)
{
initStyleSettings();
initCurrentMode();
}
StyleHelper *StyleHelper::instance()
{
return s_styleHelper;
}
void StyleHelper::initStyleSettings()
{
QByteArray styleSchemaId(UKUI_STYLE);
if (QGSettings::isSchemaInstalled(styleSchemaId)) {
m_styleSettings = new QGSettings(styleSchemaId, "", this);
// connect(m_styleSettings, &QGSettings::changed, this, &StyleHelper::slotSettingsChanged);
if (m_styleSettings->keys().contains(s_styleName)) {
m_isLightStyle = (m_styleSettings->get(s_styleName).toString() != QStringLiteral("ukui-dark"));
}
if (m_styleSettings->keys().contains(s_fontSize)) {
m_fontSize = m_styleSettings->get(s_fontSize).toReal();
}
}
QByteArray opacityId(UKUI_CONTROL_CENTER_PERSONALISE);
if (QGSettings::isSchemaInstalled(opacityId)) {
m_opacitySettings = new QGSettings(opacityId, "", this);
// connect(m_opacitySettings, &QGSettings::changed, this, &StyleHelper::slotSettingsChanged);
if (m_opacitySettings->keys().contains(s_opacity)) {
m_opacity = m_opacitySettings->get(s_opacity).toReal();
}
}
}
void StyleHelper::initCurrentMode()
{
if (UsdBaseClass::isTablet()) {
QDBusMessage message = QDBusMessage::createMethodCall(DBUS_STATUSMANAGER_NAME,
DBUS_STATUSMANAGER_PATH,
DBUS_STATUSMANAGER_INTERFACE,
DBUS_STATUSMANAGER_GET_MODE);
QDBusMessage response = QDBusConnection::sessionBus().call(message);
if (response.type() == QDBusMessage::ReplyMessage) {
if(!response.arguments().isEmpty()) {
m_isTabletMode = response.arguments().takeFirst().toBool();
}
}
}
}
QColor StyleHelper::getColor(QPalette::ColorRole role, QPalette::ColorGroup group)
{
QPalette palette = QApplication::palette();
QColor color;
if (group == QPalette::Active) {
switch (role) {
case QPalette::Window:
color = m_isLightStyle ? QColor("#FFFFFF") : QColor("#262626");
break;
case QPalette::Button:
color = QColor(Qt::transparent);
break;
case QPalette::WindowText:
case QPalette::ButtonText:
color = m_isLightStyle ? QColor("#262626") : QColor("#FFFFFF");
break;
case QPalette::BrightText:
color = palette.color(role);
break;
case QPalette::Highlight:
color = m_isLightStyle ? QColor("#262626") : QColor("#FFFFFF");
color.setAlphaF(0.1);
break;
default:
break;
}
}
return color;
}
qreal StyleHelper::getOpacity() const
{
return m_opacity;
}
qreal StyleHelper::getFontSize() const
{
return m_fontSize;
}
bool StyleHelper::isLightStyle() const
{
return m_isLightStyle;
}
bool StyleHelper::isTabletMode() const
{
return m_isTabletMode;
}
|