/******************************************************************** KWin - the KDE window manager This file is part of the KDE project. Copyright (C) 2009, 2011 Martin Gräßlin 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 . *********************************************************************/ // own #include "layoutpreview.h" #include "thumbnailitem.h" #include #include #include #include #include #include #include #include #include namespace KWin { namespace TabBox { LayoutPreview::LayoutPreview(const QString &path, QObject *parent) : QObject(parent) , m_item(nullptr) { QQmlEngine *engine = new QQmlEngine(this); QQmlComponent *component = new QQmlComponent(engine, this); qmlRegisterType("org.kde.kwin", 2, 0, "ThumbnailItem"); qmlRegisterType("org.kde.kwin", 2, 0, "Switcher"); component->loadUrl(QUrl::fromLocalFile(path)); QObject *item = component->create(); auto findSwitcher = [item]() -> SwitcherItem* { if (!item) { return nullptr; } if (SwitcherItem *i = qobject_cast(item)) { return i; } else if (QQuickWindow *w = qobject_cast(item)) { return w->contentItem()->findChild(); } return item->findChild(); }; if (SwitcherItem *switcher = findSwitcher()) { m_item = switcher; switcher->setVisible(true); } auto findWindow = [item]() -> QQuickWindow* { if (!item) { return nullptr; } if (QQuickWindow *w = qobject_cast(item)) { return w; } return item->findChild(); }; if (QQuickWindow *w = findWindow()) { w->setKeyboardGrabEnabled(true); w->setMouseGrabEnabled(true); w->installEventFilter(this); } } LayoutPreview::~LayoutPreview() { } bool LayoutPreview::eventFilter(QObject *object, QEvent *event) { if (event->type() == QEvent::KeyPress) { QKeyEvent *keyEvent = dynamic_cast(event); if (keyEvent->key() == Qt::Key_Escape || keyEvent->key() == Qt::Key_Return || keyEvent->key() == Qt::Key_Enter || keyEvent->key() == Qt::Key_Space) { object->deleteLater(); deleteLater(); } if (m_item && keyEvent->key() == Qt::Key_Tab) { m_item->incrementIndex(); } if (m_item && keyEvent->key() == Qt::Key_Backtab) { m_item->decrementIndex(); } } else if (event->type() == QEvent::MouseButtonPress) { if (QWindow *w = qobject_cast(object)) { if (!w->geometry().contains(static_cast(event)->globalPos())) { object->deleteLater(); deleteLater(); } } } return QObject::eventFilter(object, event); } ExampleClientModel::ExampleClientModel (QObject* parent) : QAbstractListModel (parent) { QHash roles; roles[Qt::UserRole] = "caption"; roles[Qt::UserRole+1] = "minimized"; roles[Qt::UserRole + 3] = "icon"; roles[Qt::UserRole+2] = "desktopName"; roles[Qt::UserRole+4] = "windowId"; setRoleNames(roles); init(); } ExampleClientModel::~ExampleClientModel() { } void ExampleClientModel::init() { QList 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(); } } } 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 QIcon::fromTheme(KDesktopFile(m_nameList.at(index.row())).readIcon()); case Qt::UserRole+4: const QString desktopFile = KDesktopFile(m_nameList.at(index.row())).fileName().split('/').last(); if (desktopFile == "konqbrowser.desktop") { return WindowThumbnailItem::Konqueror; } else if (desktopFile == "KMail2.desktop") { return WindowThumbnailItem::KMail; } else if (desktopFile == "systemsettings.desktop") { return WindowThumbnailItem::Systemsettings; } else if (desktopFile == "dolphin.desktop") { return WindowThumbnailItem::Dolphin; } return 0; } return QVariant(); } int ExampleClientModel::rowCount(const QModelIndex &parent) const { Q_UNUSED(parent) return m_nameList.size(); } SwitcherItem::SwitcherItem(QObject *parent) : QObject(parent) , m_model(new ExampleClientModel(this)) , m_item(nullptr) , m_currentIndex(0) , m_visible(false) { } SwitcherItem::~SwitcherItem() { } void SwitcherItem::setVisible(bool visible) { if (m_visible == visible) { return; } m_visible = visible; emit visibleChanged(); } void SwitcherItem::setItem(QObject *item) { m_item = item; emit itemChanged(); } void SwitcherItem::setCurrentIndex(int index) { if (m_currentIndex == index) { return; } m_currentIndex = index; emit currentIndexChanged(m_currentIndex); } QRect SwitcherItem::screenGeometry() const { return qApp->desktop()->screenGeometry(qApp->desktop()->primaryScreen()); } void SwitcherItem::incrementIndex() { setCurrentIndex((m_currentIndex + 1) % m_model->rowCount()); } void SwitcherItem::decrementIndex() { int index = m_currentIndex -1; if (index < 0) { index = m_model->rowCount() -1; } setCurrentIndex(index); } } // namespace KWin } // namespace TabBox