2009-09-13 11:36:45 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
2011-10-31 07:41:07 +00:00
|
|
|
Copyright (C) 2009, 2011 Martin Gräßlin <mgraesslin@kde.org>
|
2009-09-13 11:36:45 +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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
// own
|
|
|
|
#include "layoutconfig.h"
|
2011-11-10 13:28:06 +00:00
|
|
|
#include "thumbnailitem.h"
|
2011-10-31 07:41:07 +00:00
|
|
|
#include <QtDeclarative/qdeclarative.h>
|
|
|
|
#include <QtDeclarative/QDeclarativeContext>
|
|
|
|
#include <QtDeclarative/QDeclarativeEngine>
|
|
|
|
#include <QtGui/QGraphicsObject>
|
|
|
|
#include <kdeclarative.h>
|
2012-02-12 14:15:54 +00:00
|
|
|
#include <KDE/KConfigGroup>
|
2011-10-31 07:41:07 +00:00
|
|
|
#include <KDE/KDesktopFile>
|
|
|
|
#include <KDE/KGlobal>
|
|
|
|
#include <KDE/KIcon>
|
|
|
|
#include <KDE/KIconEffect>
|
|
|
|
#include <KDE/KIconLoader>
|
|
|
|
#include <KDE/KLocalizedString>
|
|
|
|
#include <KDE/KService>
|
2012-02-12 14:15:54 +00:00
|
|
|
#include <KDE/KServiceTypeTrader>
|
2011-10-31 07:41:07 +00:00
|
|
|
#include <KDE/KStandardDirs>
|
2009-09-13 11:36:45 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
namespace TabBox
|
|
|
|
{
|
|
|
|
|
2011-10-31 07:41:07 +00:00
|
|
|
LayoutConfig::LayoutConfig(QWidget* parent)
|
|
|
|
: QDeclarativeView(parent)
|
|
|
|
, m_layoutsModels(new LayoutModel(this))
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-10-31 07:41:07 +00:00
|
|
|
setAttribute(Qt::WA_TranslucentBackground);
|
|
|
|
QPalette pal = palette();
|
|
|
|
pal.setColor(backgroundRole(), Qt::transparent);
|
|
|
|
setPalette(pal);
|
|
|
|
setMinimumSize(QSize(500, 500));
|
|
|
|
setResizeMode(QDeclarativeView::SizeRootObjectToView);
|
|
|
|
foreach (const QString &importPath, KGlobal::dirs()->findDirs("module", "imports")) {
|
|
|
|
engine()->addImportPath(importPath);
|
|
|
|
}
|
|
|
|
foreach (const QString &importPath, KGlobal::dirs()->findDirs("data", "kwin/tabbox")) {
|
|
|
|
engine()->addImportPath(importPath);
|
|
|
|
}
|
|
|
|
ExampleClientModel *model = new ExampleClientModel(this);
|
|
|
|
engine()->addImageProvider(QLatin1String("client"), new TabBoxImageProvider(model));
|
|
|
|
KDeclarative kdeclarative;
|
|
|
|
kdeclarative.setDeclarativeEngine(engine());
|
|
|
|
kdeclarative.initialize();
|
|
|
|
kdeclarative.setupBindings();
|
2011-11-10 13:28:06 +00:00
|
|
|
qmlRegisterType<ThumbnailItem>("org.kde.kwin", 0, 1, "ThumbnailItem");
|
2011-10-31 07:41:07 +00:00
|
|
|
rootContext()->setContextProperty("clientModel", model);
|
|
|
|
rootContext()->setContextProperty("layoutModel", m_layoutsModels);
|
|
|
|
setSource(KStandardDirs::locate("data", "kwin/kcm_kwintabbox/main.qml"));
|
|
|
|
}
|
2009-09-13 11:36:45 +00:00
|
|
|
|
2011-10-31 07:41:07 +00:00
|
|
|
LayoutConfig::~LayoutConfig()
|
|
|
|
{
|
|
|
|
}
|
2009-09-13 11:36:45 +00:00
|
|
|
|
2011-10-31 07:41:07 +00:00
|
|
|
void LayoutConfig::setLayout(const QString &layoutName)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-10-31 07:41:07 +00:00
|
|
|
const QModelIndex index = m_layoutsModels->indexForLayoutName(layoutName);
|
|
|
|
const int row = (index.isValid()) ? index.row() : -1;
|
|
|
|
if (QObject *item = rootObject()->findChild<QObject*>("view")) {
|
|
|
|
item->setProperty("currentIndex", row);
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-09-13 11:36:45 +00:00
|
|
|
|
2011-10-31 07:41:07 +00:00
|
|
|
QString LayoutConfig::selectedLayout() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-10-31 07:41:07 +00:00
|
|
|
int row = 0;
|
|
|
|
if (QObject *item = rootObject()->findChild<QObject*>("view")) {
|
|
|
|
row = item->property("currentIndex").toInt();
|
|
|
|
}
|
|
|
|
const QModelIndex index = m_layoutsModels->index(row);
|
|
|
|
if (!index.isValid()) {
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
return m_layoutsModels->data(index, Qt::UserRole+2).toString();
|
|
|
|
}
|
2009-09-13 11:36:45 +00:00
|
|
|
|
2011-10-31 07:41:07 +00:00
|
|
|
TabBoxImageProvider::TabBoxImageProvider(QAbstractListModel* model)
|
|
|
|
: QDeclarativeImageProvider(QDeclarativeImageProvider::Pixmap)
|
|
|
|
, m_model(model)
|
|
|
|
{
|
|
|
|
}
|
2009-09-13 11:36:45 +00:00
|
|
|
|
2011-10-31 07:41:07 +00:00
|
|
|
QPixmap TabBoxImageProvider::requestPixmap(const QString &id, QSize *size, const QSize &requestedSize)
|
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
QStringList parts = id.split('/');
|
|
|
|
const int index = parts.first().toInt(&ok);
|
|
|
|
if (!ok) {
|
|
|
|
return QDeclarativeImageProvider::requestPixmap(id, size, requestedSize);
|
|
|
|
}
|
|
|
|
QSize s(32, 32);
|
|
|
|
if (requestedSize.isValid()) {
|
|
|
|
s = requestedSize;
|
|
|
|
}
|
|
|
|
*size = s;
|
|
|
|
QPixmap icon(KIcon(m_model->data(m_model->index(index), Qt::UserRole+3).toString()).pixmap(s));
|
|
|
|
if (parts.size() > 2) {
|
|
|
|
KIconEffect *effect = KIconLoader::global()->iconEffect();
|
|
|
|
KIconLoader::States state = KIconLoader::DefaultState;
|
|
|
|
if (parts.at(2) == QLatin1String("selected")) {
|
|
|
|
state = KIconLoader::ActiveState;
|
|
|
|
} else if (parts.at(2) == QLatin1String("disabled")) {
|
|
|
|
state = KIconLoader::DisabledState;
|
|
|
|
}
|
|
|
|
icon = effect->apply(icon, KIconLoader::Desktop, state);
|
|
|
|
}
|
|
|
|
return icon;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-09-13 11:36:45 +00:00
|
|
|
|
2011-10-31 07:41:07 +00:00
|
|
|
ExampleClientModel::ExampleClientModel (QObject* parent)
|
|
|
|
: QAbstractListModel (parent)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-10-31 07:41:07 +00:00
|
|
|
QHash<int, QByteArray> roles;
|
|
|
|
roles[Qt::UserRole] = "caption";
|
|
|
|
roles[Qt::UserRole+1] = "minimized";
|
|
|
|
roles[Qt::UserRole+2] = "desktopName";
|
2011-11-10 13:28:06 +00:00
|
|
|
roles[Qt::UserRole+4] = "windowId";
|
2011-10-31 07:41:07 +00:00
|
|
|
setRoleNames(roles);
|
|
|
|
init();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-09-13 11:36:45 +00:00
|
|
|
|
2011-10-31 07:41:07 +00:00
|
|
|
ExampleClientModel::~ExampleClientModel()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
}
|
2009-09-13 11:36:45 +00:00
|
|
|
|
2011-10-31 07:41:07 +00:00
|
|
|
void ExampleClientModel::init()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-10-31 07:41:07 +00:00
|
|
|
QList<QString> applications;
|
|
|
|
applications << "konqbrowser" << "KMail2" << "systemsettings" << "dolphin";
|
|
|
|
|
|
|
|
foreach (const QString& application, applications) {
|
|
|
|
KService::Ptr service = KService::serviceByStorageId("kde4-" + application + ".desktop");
|
|
|
|
if (service) {
|
|
|
|
m_nameList << service->entryPath();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2011-10-31 07:41:07 +00:00
|
|
|
}
|
2009-09-13 11:36:45 +00:00
|
|
|
|
2011-10-31 07:41:07 +00:00
|
|
|
QVariant ExampleClientModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
|
|
|
if (!index.isValid()) {
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
switch (role) {
|
|
|
|
case Qt::DisplayRole:
|
|
|
|
case Qt::UserRole:
|
|
|
|
return KDesktopFile(m_nameList.at(index.row())).readName();
|
|
|
|
case Qt::UserRole+1:
|
|
|
|
return false;
|
|
|
|
case Qt::UserRole+2:
|
|
|
|
return i18nc("An example Desktop Name", "Desktop 1");
|
|
|
|
case Qt::UserRole+3:
|
|
|
|
return KDesktopFile(m_nameList.at(index.row())).readIcon();
|
2011-11-10 13:28:06 +00:00
|
|
|
case Qt::UserRole+4:
|
|
|
|
const QString desktopFile = KDesktopFile(m_nameList.at(index.row())).fileName().split('/').last();
|
|
|
|
if (desktopFile == "konqbrowser.desktop") {
|
|
|
|
return ThumbnailItem::Konqueror;
|
|
|
|
} else if (desktopFile == "KMail2.desktop") {
|
|
|
|
return ThumbnailItem::KMail;
|
|
|
|
} else if (desktopFile == "systemsettings.desktop") {
|
|
|
|
return ThumbnailItem::Systemsettings;
|
|
|
|
} else if (desktopFile == "dolphin.desktop") {
|
|
|
|
return ThumbnailItem::Dolphin;
|
|
|
|
}
|
|
|
|
return 0;
|
2011-10-31 07:41:07 +00:00
|
|
|
}
|
|
|
|
return QVariant();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
|
|
|
|
2011-10-31 07:41:07 +00:00
|
|
|
int ExampleClientModel::rowCount(const QModelIndex &parent) const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-10-31 07:41:07 +00:00
|
|
|
Q_UNUSED(parent)
|
|
|
|
return m_nameList.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
LayoutModel::LayoutModel(QObject *parent)
|
|
|
|
: QAbstractListModel(parent)
|
|
|
|
{
|
|
|
|
QHash<int, QByteArray> roles;
|
|
|
|
roles[Qt::UserRole] = "name";
|
|
|
|
roles[Qt::UserRole+1] = "sourcePath";
|
|
|
|
setRoleNames(roles);
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
LayoutModel::~LayoutModel()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void LayoutModel::init()
|
|
|
|
{
|
2012-02-12 14:15:54 +00:00
|
|
|
KService::List offers = KServiceTypeTrader::self()->query("KWin/WindowSwitcher");
|
|
|
|
foreach (KService::Ptr service, offers) {
|
|
|
|
const QString pluginName = service->property("X-KDE-PluginInfo-Name").toString();
|
|
|
|
if (service->property("X-Plasma-API").toString() != "declarativeappletscript") {
|
|
|
|
continue;
|
|
|
|
}
|
2012-02-16 08:56:36 +00:00
|
|
|
if (service->property("X-KWin-Exclude-Listing").toBool()) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-02-12 14:15:54 +00:00
|
|
|
const QString scriptName = service->property("X-Plasma-MainScript").toString();
|
|
|
|
const QString scriptFile = KStandardDirs::locate("data", "kwin/tabbox/" + pluginName + "/contents/" + scriptName);
|
|
|
|
if (scriptFile.isNull()) {
|
|
|
|
continue;
|
2011-10-31 07:41:07 +00:00
|
|
|
}
|
2012-02-12 14:15:54 +00:00
|
|
|
m_nameList << service->name();
|
|
|
|
m_pathList << scriptFile;
|
|
|
|
m_layoutList << pluginName;
|
2011-10-31 07:41:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant LayoutModel::data (const QModelIndex& index, int role) const
|
|
|
|
{
|
|
|
|
if (!index.isValid()) {
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
switch (role) {
|
|
|
|
case Qt::DisplayRole:
|
|
|
|
case Qt::UserRole:
|
|
|
|
return m_nameList.at(index.row());
|
|
|
|
case Qt::UserRole + 1:
|
|
|
|
return m_pathList.at(index.row());
|
|
|
|
case Qt::UserRole + 2:
|
|
|
|
return m_layoutList.at(index.row());
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
int LayoutModel::rowCount (const QModelIndex& parent) const
|
|
|
|
{
|
|
|
|
Q_UNUSED(parent)
|
|
|
|
return m_nameList.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
QModelIndex LayoutModel::indexForLayoutName(const QString &name) const
|
|
|
|
{
|
|
|
|
// fallback for default
|
2012-02-12 14:15:54 +00:00
|
|
|
QString normalizedName = name.toLower().replace(' ', '_');
|
2011-10-31 07:41:07 +00:00
|
|
|
if (name == "Default" || name.isEmpty()) {
|
2012-02-12 14:15:54 +00:00
|
|
|
normalizedName = "informative";
|
2011-10-31 07:41:07 +00:00
|
|
|
}
|
|
|
|
for (int i=0; i<m_layoutList.size(); ++i) {
|
2012-02-12 14:15:54 +00:00
|
|
|
if (normalizedName == m_layoutList.at(i)) {
|
2011-10-31 07:41:07 +00:00
|
|
|
return index(i);
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2011-10-31 07:41:07 +00:00
|
|
|
return QModelIndex();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-09-13 11:36:45 +00:00
|
|
|
|
|
|
|
} // namespace KWin
|
|
|
|
} // namespace TabBox
|
|
|
|
|