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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
/* BEGIN_COMMON_COPYRIGHT_HEADER
* (c)LGPL2+
*
* LXQt - a lightweight, Qt based, desktop toolset
* https://lxqt-project.org
*
* Copyright: 2012 Razor team
* Authors:
* Alexander Sokoloff <sokoloff.a@gmail.com>
*
* This program or library is free software; you can redistribute it
* and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General
* Public License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*
* END_COMMON_COPYRIGHT_HEADER */
#include "lxqtthemeconfig.h"
#include "ui_lxqtthemeconfig.h"
#include <QTreeWidget>
#include <QStandardPaths>
#include <QProcess>
#include <QItemDelegate>
#include <QPainter>
#include <QMenu>
#include <QDesktopServices>
#include <QUrl>
#include <QDir>
#include <XdgDirs>
/*!
* \brief Simple delegate to draw system background color below decoration/icon
* (needed by System theme, which uses widget background and therefore provides semi-transparent preview)
*/
class ThemeDecorator : public QItemDelegate
{
public:
using QItemDelegate::QItemDelegate;
protected:
virtual void drawDecoration(QPainter * painter, const QStyleOptionViewItem & option, const QRect & rect, const QPixmap & pixmap) const override
{
//Note: can't use QItemDelegate::drawDecoration, because it is ignoring pixmap,
//if the icon is valid (and that is set in paint())
if (pixmap.isNull() || !rect.isValid())
return;
QPoint p = QStyle::alignedRect(option.direction, option.decorationAlignment, pixmap.size(), rect).topLeft();
painter->fillRect(QRect{p, pixmap.size()}, QApplication::palette().color(QPalette::Window));
painter->drawPixmap(p, pixmap);
}
};
LXQtThemeConfig::LXQtThemeConfig(LXQt::Settings *settings, StyleConfig *stylePage, QWidget *parent) :
QWidget(parent),
ui(new Ui::LXQtThemeConfig),
mSettings(settings),
mStylePage(stylePage)
{
ui->setupUi(this);
{
QScopedPointer<QAbstractItemDelegate> p{ui->lxqtThemeList->itemDelegate()};
ui->lxqtThemeList->setItemDelegate(new ThemeDecorator{this});
}
const QList<LXQt::LXQtTheme> themes = LXQt::LXQtTheme::allThemes();
for(const LXQt::LXQtTheme &theme : themes)
{
QString themeName = theme.name();
themeName[0] = themeName[0].toTitleCase();
if (theme.path().contains(XdgDirs::dataHome(false) + QStringLiteral("/")))
{
themeName += QStringLiteral(" ") + tr("(User Theme)");
}
QTreeWidgetItem *item = new QTreeWidgetItem(QStringList(themeName));
if (!theme.previewImage().isEmpty())
{
item->setIcon(0, QIcon(theme.previewImage()));
}
item->setSizeHint(0, QSize(42,42)); // make icons non-cropped
item->setData(0, Qt::UserRole, theme.name());
ui->lxqtThemeList->addTopLevelItem(item);
}
ui->lxqtThemeList->sortItems(0, Qt::AscendingOrder);
ui->lxqtThemeList->setContextMenuPolicy(Qt::CustomContextMenu);
initControls();
connect(ui->lxqtThemeList, &QTreeWidget::currentItemChanged, this, &LXQtThemeConfig::onCurrentItemChanged);
connect(ui->wallpaperOverride, &QAbstractButton::clicked, this, &LXQtThemeConfig::settingsChanged);
connect(ui->paletteOverride, &QAbstractButton::clicked, this, &LXQtThemeConfig::onPaletteOverrideChanged);
connect(ui->lxqtThemeList, &QTreeWidget::itemDoubleClicked, this, &LXQtThemeConfig::doubleClicked);
connect(ui->lxqtThemeList, &QWidget::customContextMenuRequested, this, &LXQtThemeConfig::contextMenu);
}
LXQtThemeConfig::~LXQtThemeConfig()
{
delete ui;
}
void LXQtThemeConfig::initControls()
{
QString currentTheme = mSettings->value(QStringLiteral("theme")).toString();
QTreeWidgetItemIterator it(ui->lxqtThemeList);
while (*it) {
if ((*it)->data(0, Qt::UserRole).toString() == currentTheme)
{
ui->lxqtThemeList->setCurrentItem((*it));
break;
}
++it;
}
ui->wallpaperOverride->setChecked(mSettings->value(QStringLiteral("wallpaper_override")).toBool());
ui->paletteOverride->setChecked(mSettings->value(QStringLiteral("palette_override")).toBool());
update();
}
void LXQtThemeConfig::applyLxqtTheme()
{
QTreeWidgetItem* item = ui->lxqtThemeList->currentItem();
if (!item)
return;
LXQt::LXQtTheme currentTheme{mSettings->value(QStringLiteral("theme")).toString()};
QVariant themeName = item->data(0, Qt::UserRole);
if(mSettings->value(QStringLiteral("theme")) != themeName)
mSettings->setValue(QStringLiteral("theme"), themeName);
if (ui->wallpaperOverride->isChecked())
{ // set the wallpaper
LXQt::LXQtTheme theme(themeName.toString());
if(theme.isValid()) {
QString wallpaper = theme.desktopBackground();
if(!wallpaper.isEmpty()) {
// call pcmanfm-qt to update wallpaper
QStringList args;
args << QStringLiteral("--set-wallpaper") << wallpaper;
QProcess::startDetached(QStringLiteral("pcmanfm-qt"), args);
}
}
}
if(mSettings->value(QStringLiteral("wallpaper_override")) != ui->wallpaperOverride->isChecked())
mSettings->setValue(QStringLiteral("wallpaper_override"), ui->wallpaperOverride->isChecked());
if(mSettings->value(QStringLiteral("palette_override")) != ui->paletteOverride->isChecked())
mSettings->setValue(QStringLiteral("palette_override"), ui->paletteOverride->isChecked());
}
void LXQtThemeConfig::doubleClicked(QTreeWidgetItem *item, int /*column*/)
{
if (!item)
return;
LXQt::LXQtTheme theme{item->data(0, Qt::UserRole).toString()};
if (!theme.isValid())
return;
// first try "qtxdg-mat"; fall back to QDesktopServices if we are not inside an LXQt session
if (!QProcess::startDetached(QStringLiteral("qtxdg-mat"), QStringList() << QStringLiteral("open") << theme.path()))
{
QDesktopServices::openUrl(QUrl(theme.path()));
}
}
void LXQtThemeConfig::contextMenu(const QPoint& p)
{
QMenu menu;
QAction *a = menu.addAction(tr("Open theme folder"));
connect(a, &QAction::triggered, [this, p] {
doubleClicked(ui->lxqtThemeList->itemAt(p), 0);
});
menu.exec(ui->lxqtThemeList->viewport()->mapToGlobal(p));
}
void LXQtThemeConfig::loadThemePalette()
{
QTreeWidgetItem* current = ui->lxqtThemeList->currentItem();
if (!ui->paletteOverride->isChecked() || !mStylePage || !current)
return;
QString themeName = current->data(0, Qt::UserRole).toString();
if (themeName.isEmpty())
return;
themeName[0] = themeName[0].toTitleCase(); // palette names should be as they appear in GUI
auto paths = QStandardPaths::standardLocations(QStandardPaths::GenericDataLocation);
paths.removeDuplicates();
for (const auto &path : std::as_const(paths))
{
QDir dir(path + QLatin1String("/lxqt/palettes"));
if (dir.exists())
{
if (dir.exists(themeName))
{
const QString palettePath = path + QStringLiteral("/lxqt/palettes/") + themeName;
mStylePage->loadPaletteFile(palettePath);
break;
}
}
}
}
void LXQtThemeConfig::onPaletteOverrideChanged(bool checked)
{
emit settingsChanged();
if (checked)
loadThemePalette();
}
void LXQtThemeConfig::onCurrentItemChanged(QTreeWidgetItem*, QTreeWidgetItem*)
{
emit settingsChanged();
if (ui->paletteOverride->isChecked())
loadThemePalette();
}
|