2007-04-29 17:35:43 +00:00
|
|
|
/*
|
2010-01-19 13:56:57 +00:00
|
|
|
This is the new kwindecoration kcontrol module
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:56:57 +00:00
|
|
|
Copyright (c) 2001
|
|
|
|
Karol Szwed <gallium@kde.org>
|
|
|
|
http://gallium.n3.net/
|
|
|
|
Copyright 2009, 2010 Martin Gräßlin <kde@martin-graesslin.com>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:56:57 +00:00
|
|
|
Supports new kwin configuration plugins, and titlebar button position
|
|
|
|
modification via dnd interface.
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:56:57 +00:00
|
|
|
Based on original "kwintheme" (Window Borders)
|
|
|
|
Copyright (C) 2001 Rik Hemsley (rikkus) <rik@kde.org>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
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 2 of the License, or
|
|
|
|
(at your option) 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, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
*/
|
2010-01-19 13:44:22 +00:00
|
|
|
// own
|
2009-12-27 14:59:39 +00:00
|
|
|
#include "kwindecoration.h"
|
2010-01-19 13:44:22 +00:00
|
|
|
#include "buttonsconfigdialog.h"
|
2010-04-23 19:44:50 +00:00
|
|
|
#include "configdialog.h"
|
2010-01-19 13:44:22 +00:00
|
|
|
#include "decorationmodel.h"
|
2012-01-12 10:28:02 +00:00
|
|
|
#include "auroraetheme.h"
|
2010-01-19 13:44:22 +00:00
|
|
|
// Qt
|
2007-04-29 17:35:43 +00:00
|
|
|
#include <QtDBus/QtDBus>
|
2012-01-12 10:28:02 +00:00
|
|
|
#include <QtDeclarative/QDeclarativeContext>
|
|
|
|
#include <QtDeclarative/QDeclarativeEngine>
|
|
|
|
#include <QtDeclarative/QDeclarativeView>
|
2010-01-19 13:44:22 +00:00
|
|
|
#include <QtGui/QSortFilterProxyModel>
|
2012-01-13 09:11:45 +00:00
|
|
|
#include <QtGui/QGraphicsObject>
|
2010-01-19 13:44:22 +00:00
|
|
|
// KDE
|
|
|
|
#include <KAboutData>
|
|
|
|
#include <KDialog>
|
|
|
|
#include <KLocale>
|
|
|
|
#include <KNS3/DownloadDialog>
|
2012-01-12 10:28:02 +00:00
|
|
|
#include <KDE/KStandardDirs>
|
2007-08-28 12:42:05 +00:00
|
|
|
#include <KPluginFactory>
|
2012-01-12 10:28:02 +00:00
|
|
|
#include <qdeclarative.h>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
// KCModule plugin interface
|
|
|
|
// =========================
|
2007-08-28 12:42:05 +00:00
|
|
|
K_PLUGIN_FACTORY(KWinDecoFactory,
|
2011-01-30 14:34:42 +00:00
|
|
|
registerPlugin<KWin::KWinDecorationModule>();
|
|
|
|
)
|
2007-08-28 12:42:05 +00:00
|
|
|
K_EXPORT_PLUGIN(KWinDecoFactory("kcmkwindecoration"))
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:44:22 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KWinDecorationForm::KWinDecorationForm(QWidget* parent)
|
|
|
|
: QWidget(parent)
|
2010-01-19 13:44:22 +00:00
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
setupUi(this);
|
2010-01-19 13:44:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-28 12:42:05 +00:00
|
|
|
KWinDecorationModule::KWinDecorationModule(QWidget* parent, const QVariantList &)
|
2010-01-19 13:44:22 +00:00
|
|
|
: KCModule(KWinDecoFactory::componentData(), parent)
|
|
|
|
, kwinConfig(KSharedConfig::openConfig("kwinrc"))
|
2011-01-30 14:34:42 +00:00
|
|
|
, m_showTooltips(false)
|
|
|
|
, m_configLoaded(false)
|
2012-01-13 10:48:04 +00:00
|
|
|
, m_decorationButtons(new DecorationButtons(this))
|
2007-04-29 17:35:43 +00:00
|
|
|
{
|
2012-01-12 10:28:02 +00:00
|
|
|
qmlRegisterType<Aurorae::AuroraeTheme>("org.kde.kwin.aurorae", 0, 1, "AuroraeTheme");
|
2011-01-30 14:34:42 +00:00
|
|
|
m_ui = new KWinDecorationForm(this);
|
|
|
|
m_ui->configureDecorationButton->setIcon(KIcon("configure"));
|
|
|
|
m_ui->configureButtonsButton->setIcon(KIcon("configure"));
|
|
|
|
m_ui->ghnsButton->setIcon(KIcon("get-hot-new-stuff"));
|
|
|
|
QVBoxLayout* layout = new QVBoxLayout(this);
|
|
|
|
layout->addWidget(m_ui);
|
2010-01-19 13:44:22 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KConfigGroup style(kwinConfig, "Style");
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:44:22 +00:00
|
|
|
// Set up the decoration lists and other UI settings
|
2011-01-30 14:34:42 +00:00
|
|
|
m_model = new DecorationModel(kwinConfig, this);
|
|
|
|
m_proxyModel = new QSortFilterProxyModel(this);
|
|
|
|
m_proxyModel->setSourceModel(m_model);
|
|
|
|
m_proxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive);
|
2012-01-12 10:28:02 +00:00
|
|
|
m_ui->decorationList->setResizeMode(QDeclarativeView::SizeRootObjectToView);
|
2012-01-20 10:11:45 +00:00
|
|
|
m_ui->decorationList->setAttribute(Qt::WA_TranslucentBackground);
|
|
|
|
QPalette pal = m_ui->decorationList->palette();
|
|
|
|
pal.setColor(m_ui->decorationList->backgroundRole(), Qt::transparent);
|
|
|
|
m_ui->decorationList->setPalette(pal);
|
2012-01-12 10:28:02 +00:00
|
|
|
foreach (const QString &importPath, KGlobal::dirs()->findDirs("module", "imports")) {
|
|
|
|
m_ui->decorationList->engine()->addImportPath(importPath);
|
|
|
|
}
|
|
|
|
m_ui->decorationList->rootContext()->setContextProperty("decorationModel", m_proxyModel);
|
2012-01-13 10:48:04 +00:00
|
|
|
m_ui->decorationList->rootContext()->setContextProperty("options", m_decorationButtons);
|
2012-01-12 10:28:02 +00:00
|
|
|
m_ui->decorationList->rootContext()->setContextProperty("auroraeSource", KStandardDirs::locate("data", "kwin/aurorae/aurorae.qml"));
|
|
|
|
m_ui->decorationList->setSource(KStandardDirs::locate("data", "kwin/kcm_kwindecoration/main.qml"));
|
2011-01-30 14:34:42 +00:00
|
|
|
|
|
|
|
readConfig(style);
|
|
|
|
|
2012-01-12 10:28:02 +00:00
|
|
|
connect(m_ui->decorationList->rootObject(), SIGNAL(currentIndexChanged()), SLOT(slotSelectionChanged()));
|
|
|
|
connect(m_ui->decorationList->rootObject(), SIGNAL(widthChanged()), m_model, SLOT(regeneratePreviews()));
|
2011-01-30 14:34:42 +00:00
|
|
|
connect(m_ui->configureButtonsButton, SIGNAL(clicked(bool)), this, SLOT(slotConfigureButtons()));
|
|
|
|
connect(m_ui->ghnsButton, SIGNAL(clicked(bool)), SLOT(slotGHNSClicked()));
|
|
|
|
connect(m_ui->searchEdit, SIGNAL(textChanged(QString)), m_proxyModel, SLOT(setFilterFixedString(QString)));
|
|
|
|
connect(m_ui->configureDecorationButton, SIGNAL(clicked(bool)), SLOT(slotConfigureDecoration()));
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:56:57 +00:00
|
|
|
KAboutData *about =
|
2011-01-30 14:34:42 +00:00
|
|
|
new KAboutData(I18N_NOOP("kcmkwindecoration"), 0,
|
|
|
|
ki18n("Window Decoration Control Module"),
|
|
|
|
0, KLocalizedString(), KAboutData::License_GPL,
|
|
|
|
ki18n("(c) 2001 Karol Szwed"));
|
2010-01-19 13:56:57 +00:00
|
|
|
about->addAuthor(ki18n("Karol Szwed"), KLocalizedString(), "gallium@kde.org");
|
|
|
|
setAboutData(about);
|
2012-01-12 10:28:02 +00:00
|
|
|
m_model->regeneratePreviews();
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
KWinDecorationModule::~KWinDecorationModule()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2012-01-12 10:28:02 +00:00
|
|
|
int KWinDecorationModule::itemWidth() const
|
|
|
|
{
|
|
|
|
return m_ui->decorationList->rootObject()->property("width").toInt();
|
|
|
|
}
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
// This is the selection handler setting
|
|
|
|
void KWinDecorationModule::slotSelectionChanged()
|
|
|
|
{
|
2010-01-19 13:56:57 +00:00
|
|
|
emit KCModule::changed(true);
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reads the kwin config settings, and sets all UI controls to those settings
|
|
|
|
// Updating the config plugin if required
|
2011-01-30 14:34:42 +00:00
|
|
|
void KWinDecorationModule::readConfig(const KConfigGroup & conf)
|
2007-04-29 17:35:43 +00:00
|
|
|
{
|
2010-01-19 13:44:22 +00:00
|
|
|
m_showTooltips = conf.readEntry("ShowToolTips", true);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:56:57 +00:00
|
|
|
// Find the corresponding decoration name to that of
|
|
|
|
// the current plugin library name
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
QString libraryName = conf.readEntry("PluginLib",
|
|
|
|
((QPixmap::defaultDepth() > 8) ? "kwin3_oxygen" : "kwin3_plastik"));
|
2010-01-19 13:44:22 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (libraryName.isEmpty()) {
|
|
|
|
// Selected decoration doesn't exist, use the default
|
|
|
|
libraryName = ((QPixmap::defaultDepth() > 8) ? "kwin3_oxygen" : "kwin3_plastik");
|
|
|
|
}
|
2010-01-19 13:44:22 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
const int bsize = conf.readEntry("BorderSize", (int)BorderNormal);
|
2010-01-19 13:44:22 +00:00
|
|
|
BorderSize borderSize = BorderNormal;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (bsize >= BorderTiny && bsize < BordersCount)
|
|
|
|
borderSize = static_cast< BorderSize >(bsize);
|
|
|
|
if (libraryName == "kwin3_aurorae") {
|
|
|
|
KConfig auroraeConfig("auroraerc");
|
|
|
|
KConfigGroup group(&auroraeConfig, "Engine");
|
|
|
|
const QString themeName = group.readEntry("ThemeName", "example-deco");
|
|
|
|
const QModelIndex index = m_proxyModel->mapFromSource(m_model->indexOfAuroraeName(themeName));
|
|
|
|
if (index.isValid()) {
|
2012-01-12 10:28:02 +00:00
|
|
|
m_ui->decorationList->rootObject()->setProperty("currentIndex", index.row());
|
2010-01-19 13:44:22 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
} else {
|
|
|
|
const QModelIndex index = m_proxyModel->mapFromSource(m_model->indexOfLibrary(libraryName));
|
|
|
|
if (index.isValid()) {
|
|
|
|
m_model->setBorderSize(index, borderSize);
|
2012-01-12 10:28:02 +00:00
|
|
|
m_ui->decorationList->rootObject()->setProperty("currentIndex", index.row());
|
2010-01-19 13:44:22 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:56:57 +00:00
|
|
|
// Buttons tab
|
|
|
|
// ============
|
2012-01-13 10:48:04 +00:00
|
|
|
m_decorationButtons->setCustomPositions(conf.readEntry("CustomButtonPositions", false));
|
2010-01-19 13:56:57 +00:00
|
|
|
// Menu and onAllDesktops buttons are default on LHS
|
2012-01-13 10:48:04 +00:00
|
|
|
m_decorationButtons->setLeftButtons(conf.readEntry("ButtonsOnLeft", KDecorationOptions::defaultTitleButtonsLeft()));
|
2010-01-19 13:56:57 +00:00
|
|
|
// Help, Minimize, Maximize and Close are default on RHS
|
2012-01-13 10:48:04 +00:00
|
|
|
m_decorationButtons->setRightButtons(conf.readEntry("ButtonsOnRight", KDecorationOptions::defaultTitleButtonsRight()));
|
2011-01-30 14:34:42 +00:00
|
|
|
if (m_configLoaded)
|
2012-01-13 10:48:04 +00:00
|
|
|
m_model->changeButtons(m_decorationButtons);
|
2011-01-30 14:34:42 +00:00
|
|
|
else {
|
2010-01-19 13:44:22 +00:00
|
|
|
m_configLoaded = true;
|
2012-01-13 10:48:04 +00:00
|
|
|
m_model->setButtons(m_decorationButtons->customPositions(), m_decorationButtons->leftButtons(), m_decorationButtons->rightButtons());
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:56:57 +00:00
|
|
|
emit KCModule::changed(false);
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Writes the selected user configuration to the kwin config file
|
2011-01-30 14:34:42 +00:00
|
|
|
void KWinDecorationModule::writeConfig(KConfigGroup & conf)
|
2007-04-29 17:35:43 +00:00
|
|
|
{
|
2012-01-12 10:28:02 +00:00
|
|
|
const QModelIndex index = m_proxyModel->mapToSource(m_proxyModel->index(m_ui->decorationList->rootObject()->property("currentIndex").toInt(), 0));
|
2011-01-30 14:34:42 +00:00
|
|
|
const QString libName = m_model->data(index, DecorationModel::LibraryNameRole).toString();
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:56:57 +00:00
|
|
|
// General settings
|
|
|
|
conf.writeEntry("PluginLib", libName);
|
2012-01-13 10:48:04 +00:00
|
|
|
conf.writeEntry("CustomButtonPositions", m_decorationButtons->customPositions());
|
2011-01-30 14:34:42 +00:00
|
|
|
conf.writeEntry("ShowToolTips", m_showTooltips);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:56:57 +00:00
|
|
|
// Button settings
|
2012-01-13 10:48:04 +00:00
|
|
|
conf.writeEntry("ButtonsOnLeft", m_decorationButtons->leftButtons());
|
|
|
|
conf.writeEntry("ButtonsOnRight", m_decorationButtons->rightButtons());
|
2011-01-30 14:34:42 +00:00
|
|
|
conf.writeEntry("BorderSize",
|
|
|
|
static_cast<int>(m_model->data(index, DecorationModel::BorderSizeRole).toInt()));
|
|
|
|
|
|
|
|
if (m_model->data(index, DecorationModel::TypeRole).toInt() == DecorationModelData::AuroraeDecoration) {
|
|
|
|
KConfig auroraeConfig("auroraerc");
|
|
|
|
KConfigGroup group(&auroraeConfig, "Engine");
|
|
|
|
group.writeEntry("ThemeName", m_model->data(index, DecorationModel::AuroraeNameRole).toString());
|
2010-01-19 13:44:22 +00:00
|
|
|
group.sync();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:56:57 +00:00
|
|
|
// We saved, so tell kcmodule that there have been no new user changes made.
|
|
|
|
emit KCModule::changed(false);
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Virutal functions required by KCModule
|
|
|
|
void KWinDecorationModule::load()
|
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
const KConfigGroup config(kwinConfig, "Style");
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:44:22 +00:00
|
|
|
// Reset by re-reading the config
|
2011-01-30 14:34:42 +00:00
|
|
|
readConfig(config);
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void KWinDecorationModule::save()
|
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
KConfigGroup config(kwinConfig, "Style");
|
|
|
|
writeConfig(config);
|
2010-01-19 13:44:22 +00:00
|
|
|
config.sync();
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2007-04-30 11:32:47 +00:00
|
|
|
// Send signal to all kwin instances
|
|
|
|
QDBusMessage message =
|
2008-01-30 16:08:23 +00:00
|
|
|
QDBusMessage::createSignal("/KWin", "org.kde.KWin", "reloadConfig");
|
2007-04-30 11:32:47 +00:00
|
|
|
QDBusConnection::sessionBus().send(message);
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void KWinDecorationModule::defaults()
|
|
|
|
{
|
2010-01-19 13:56:57 +00:00
|
|
|
// Set the KDE defaults
|
2010-01-19 13:44:22 +00:00
|
|
|
m_showTooltips = true;
|
2011-01-30 14:34:42 +00:00
|
|
|
const QModelIndex index = m_proxyModel->mapFromSource(m_model->indexOfName(i18n("Oxygen")));
|
|
|
|
if (index.isValid())
|
2012-01-12 10:28:02 +00:00
|
|
|
m_ui->decorationList->rootObject()->setProperty("currentIndex", index.row());
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2012-01-13 10:48:04 +00:00
|
|
|
m_decorationButtons->resetToDefaults();
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2012-01-13 10:48:04 +00:00
|
|
|
m_model->changeButtons(m_decorationButtons);
|
2010-01-19 13:44:22 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
emit changed(true);
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QString KWinDecorationModule::quickHelp() const
|
|
|
|
{
|
2011-01-30 14:34:42 +00:00
|
|
|
return i18n("<h1>Window Manager Decoration</h1>"
|
|
|
|
"<p>This module allows you to choose the window border decorations, "
|
|
|
|
"as well as titlebar button positions and custom decoration options.</p>"
|
|
|
|
"To choose a theme for your window decoration click on its name and apply your choice by clicking the \"Apply\" button below."
|
|
|
|
" If you do not want to apply your choice you can click the \"Reset\" button to discard your changes."
|
|
|
|
"<p>You can configure each theme. There are different options specific for each theme.</p>"
|
|
|
|
"<p>On the \"Buttons\" tab check the \"Use custom titlebar button positions\" box "
|
|
|
|
"and you can change the positions of the buttons to your liking.</p>");
|
2007-04-29 17:35:43 +00:00
|
|
|
}
|
|
|
|
|
2010-01-19 13:44:22 +00:00
|
|
|
void KWinDecorationModule::slotConfigureButtons()
|
|
|
|
{
|
2012-01-13 10:48:04 +00:00
|
|
|
QPointer< KWinDecorationButtonsConfigDialog > configDialog = new KWinDecorationButtonsConfigDialog(m_decorationButtons, m_showTooltips, this);
|
2011-01-30 14:34:42 +00:00
|
|
|
if (configDialog->exec() == KDialog::Accepted) {
|
2012-01-13 10:48:04 +00:00
|
|
|
m_decorationButtons->setCustomPositions(configDialog->customPositions());
|
2010-01-19 13:44:22 +00:00
|
|
|
m_showTooltips = configDialog->showTooltips();
|
2012-01-13 10:48:04 +00:00
|
|
|
m_decorationButtons->setLeftButtons(configDialog->buttonsLeft());
|
|
|
|
m_decorationButtons->setRightButtons(configDialog->buttonsRight());
|
|
|
|
m_model->changeButtons(m_decorationButtons);
|
2011-01-30 14:34:42 +00:00
|
|
|
emit changed(true);
|
|
|
|
}
|
2010-01-19 13:44:22 +00:00
|
|
|
|
|
|
|
delete configDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
void KWinDecorationModule::slotGHNSClicked()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
QPointer<KNS3::DownloadDialog> downloadDialog = new KNS3::DownloadDialog("aurorae.knsrc", this);
|
|
|
|
if (downloadDialog->exec() == KDialog::Accepted) {
|
|
|
|
if (!downloadDialog->changedEntries().isEmpty()) {
|
2012-01-12 10:28:02 +00:00
|
|
|
const QModelIndex index = m_proxyModel->mapToSource(m_proxyModel->index(m_ui->decorationList->rootObject()->property("currentIndex").toInt(), 0));
|
2011-01-30 14:34:42 +00:00
|
|
|
const QString libraryName = m_model->data(index, DecorationModel::LibraryNameRole).toString();
|
|
|
|
bool aurorae = m_model->data(index, DecorationModel::TypeRole).toInt() == DecorationModelData::AuroraeDecoration;
|
|
|
|
const QString auroraeName = m_model->data(index, DecorationModel::AuroraeNameRole).toString();
|
2010-01-19 13:44:22 +00:00
|
|
|
m_model->reload();
|
2011-01-30 14:34:42 +00:00
|
|
|
if (aurorae) {
|
|
|
|
const QModelIndex proxyIndex = m_proxyModel->mapFromSource(m_model->indexOfAuroraeName(auroraeName));
|
|
|
|
if (proxyIndex.isValid())
|
2012-01-12 10:28:02 +00:00
|
|
|
m_ui->decorationList->rootObject()->setProperty("currentIndex", proxyIndex.row());
|
2011-01-30 14:34:42 +00:00
|
|
|
} else {
|
|
|
|
const QModelIndex proxyIndex = m_proxyModel->mapFromSource(m_model->indexOfLibrary(libraryName));
|
|
|
|
if (proxyIndex.isValid())
|
2012-01-12 10:28:02 +00:00
|
|
|
m_ui->decorationList->rootObject()->setProperty("currentIndex", proxyIndex.row());
|
2010-01-19 13:44:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
delete downloadDialog;
|
|
|
|
}
|
2010-01-19 13:44:22 +00:00
|
|
|
|
2010-04-23 19:44:50 +00:00
|
|
|
void KWinDecorationModule::slotConfigureDecoration()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-01-12 10:28:02 +00:00
|
|
|
const QModelIndex index = m_proxyModel->mapToSource(m_proxyModel->index(m_ui->decorationList->rootObject()->property("currentIndex").toInt(), 0));
|
2010-04-23 19:44:50 +00:00
|
|
|
bool reload = false;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (index.data(DecorationModel::TypeRole).toInt() == DecorationModelData::AuroraeDecoration) {
|
|
|
|
QPointer< KDialog > dlg = new KDialog(this);
|
|
|
|
dlg->setCaption(i18n("Decoration Options"));
|
|
|
|
dlg->setButtons(KDialog::Ok | KDialog::Cancel);
|
|
|
|
KWinAuroraeConfigForm *form = new KWinAuroraeConfigForm(dlg);
|
|
|
|
dlg->setMainWidget(form);
|
|
|
|
form->borderSizesCombo->setCurrentIndex(index.data(DecorationModel::BorderSizeRole).toInt());
|
|
|
|
form->buttonSizesCombo->setCurrentIndex(index.data(DecorationModel::ButtonSizeRole).toInt());
|
|
|
|
if (dlg->exec() == KDialog::Accepted) {
|
|
|
|
m_model->setData(index, form->borderSizesCombo->currentIndex(), DecorationModel::BorderSizeRole);
|
|
|
|
m_model->setData(index, form->buttonSizesCombo->currentIndex(), DecorationModel::ButtonSizeRole);
|
2010-04-23 19:44:50 +00:00
|
|
|
reload = true;
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
delete dlg;
|
|
|
|
} else {
|
|
|
|
QString name = index.data(DecorationModel::LibraryNameRole).toString();
|
|
|
|
QList< QVariant > borderSizes = index.data(DecorationModel::BorderSizesRole).toList();
|
2010-04-23 19:44:50 +00:00
|
|
|
const KDecorationDefines::BorderSize size =
|
2011-01-30 14:34:42 +00:00
|
|
|
static_cast<KDecorationDefines::BorderSize>(index.data(DecorationModel::BorderSizeRole).toInt());
|
2010-04-23 19:44:50 +00:00
|
|
|
QPointer< KWinDecorationConfigDialog > configDialog =
|
2011-01-30 14:34:42 +00:00
|
|
|
new KWinDecorationConfigDialog(name, borderSizes, size, this);
|
|
|
|
if (configDialog->exec() == KDialog::Accepted) {
|
|
|
|
m_model->setData(index, configDialog->borderSize(), DecorationModel::BorderSizeRole);
|
2010-04-23 19:44:50 +00:00
|
|
|
reload = true;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-23 19:44:50 +00:00
|
|
|
|
|
|
|
delete configDialog;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
|
|
|
if (reload) {
|
2010-04-23 19:44:50 +00:00
|
|
|
// Send signal to all kwin instances
|
|
|
|
QDBusMessage message = QDBusMessage::createSignal("/KWin", "org.kde.KWin", "reloadConfig");
|
|
|
|
QDBusConnection::sessionBus().send(message);
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-04-23 19:44:50 +00:00
|
|
|
|
2012-01-13 10:48:04 +00:00
|
|
|
DecorationButtons::DecorationButtons(QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, m_customPositions(false)
|
|
|
|
, m_leftButtons(KDecorationOptions::defaultTitleButtonsLeft())
|
|
|
|
, m_rightButtons(KDecorationOptions::defaultTitleButtonsRight())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DecorationButtons::~DecorationButtons()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DecorationButtons::customPositions() const
|
|
|
|
{
|
|
|
|
return m_customPositions;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString &DecorationButtons::leftButtons() const
|
|
|
|
{
|
|
|
|
return m_leftButtons;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString &DecorationButtons::rightButtons() const
|
|
|
|
{
|
|
|
|
return m_rightButtons;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DecorationButtons::setCustomPositions(bool set)
|
|
|
|
{
|
|
|
|
if (m_customPositions == set) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_customPositions = set;
|
|
|
|
emit customPositionsChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DecorationButtons::setLeftButtons(const QString &leftButtons)
|
|
|
|
{
|
|
|
|
if (m_leftButtons == leftButtons) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_leftButtons = leftButtons;
|
|
|
|
emit leftButtonsChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DecorationButtons::setRightButtons (const QString &rightButtons)
|
|
|
|
{
|
|
|
|
if (m_rightButtons == rightButtons) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_rightButtons = rightButtons;
|
|
|
|
emit rightButtonsChanged();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DecorationButtons::resetToDefaults()
|
|
|
|
{
|
|
|
|
setCustomPositions(false);
|
|
|
|
setLeftButtons(KDecorationOptions::defaultTitleButtonsLeft());
|
|
|
|
setRightButtons(KDecorationOptions::defaultTitleButtonsRight());
|
|
|
|
}
|
|
|
|
|
2010-01-19 13:44:22 +00:00
|
|
|
} // namespace KWin
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
#include "kwindecoration.moc"
|