mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
136 lines
3.6 KiB
C++
136 lines
3.6 KiB
C++
/*
|
|
* Copyright 2009 by Chani Armitage <chani@kde.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Library General Public License as
|
|
* published by the Free Software Foundation; either version 2, 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 Library 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.
|
|
*/
|
|
|
|
#include "launch.h"
|
|
|
|
#include <QGraphicsSceneMouseEvent>
|
|
#include <QGraphicsSceneWheelEvent>
|
|
|
|
#include <KDebug>
|
|
#include <KIcon>
|
|
#include <KMenu>
|
|
|
|
#include <Plasma/DataEngine>
|
|
#include <Plasma/Containment>
|
|
#include <Plasma/ServiceJob>
|
|
|
|
AppLauncher::AppLauncher(QObject *parent, const QVariantList &args)
|
|
: Plasma::ContainmentActions(parent, args),
|
|
m_action(new QAction(this))
|
|
{
|
|
m_menu = new KMenu();
|
|
connect(m_menu, SIGNAL(triggered(QAction*)), this, SLOT(switchTo(QAction*)));
|
|
|
|
m_action->setMenu(m_menu);
|
|
}
|
|
|
|
AppLauncher::~AppLauncher()
|
|
{
|
|
delete m_menu;
|
|
}
|
|
|
|
void AppLauncher::init(const KConfigGroup &)
|
|
{
|
|
}
|
|
|
|
void AppLauncher::contextEvent(QEvent *event)
|
|
{
|
|
makeMenu();
|
|
m_menu->adjustSize();
|
|
m_menu->exec(popupPosition(m_menu->size(), event));
|
|
}
|
|
|
|
QList<QAction*> AppLauncher::contextualActions()
|
|
{
|
|
makeMenu();
|
|
|
|
QList<QAction*> list;
|
|
list << m_action;
|
|
return list;
|
|
}
|
|
|
|
void AppLauncher::makeMenu()
|
|
{
|
|
Plasma::DataEngine *apps = dataEngine("apps");
|
|
if (!apps->isValid()) {
|
|
return;
|
|
}
|
|
|
|
m_menu->clear();
|
|
|
|
//add the whole kmenu
|
|
Plasma::DataEngine::Data app = dataEngine("apps")->query("/");
|
|
const QStringList sources = app.value("entries").toStringList();
|
|
foreach (const QString &source, sources) {
|
|
addApp(m_menu, source);
|
|
}
|
|
}
|
|
|
|
bool AppLauncher::addApp(QMenu *menu, const QString &source)
|
|
{
|
|
if (source == "---") {
|
|
menu->addSeparator();
|
|
return false;
|
|
}
|
|
|
|
Plasma::DataEngine::Data app = dataEngine("apps")->query(source);
|
|
|
|
if (!app.value("display").toBool()) {
|
|
kDebug() << "hidden entry" << source;
|
|
return false;
|
|
}
|
|
QString name = app.value("name").toString();
|
|
if (name.isEmpty()) {
|
|
kDebug() << "failed source" << source;
|
|
return false;
|
|
}
|
|
|
|
name.replace("&", "&&"); //escaping
|
|
KIcon icon(app.value("iconName").toString());
|
|
|
|
if (app.value("isApp").toBool()) {
|
|
QAction *action = menu->addAction(icon, name);
|
|
action->setData(source);
|
|
} else { //ooh, it's actually a group!
|
|
QMenu *subMenu = menu->addMenu(icon, name);
|
|
bool hasEntries = false;
|
|
foreach (const QString &source, app.value("entries").toStringList()) {
|
|
hasEntries = addApp(subMenu, source) || hasEntries;
|
|
}
|
|
|
|
if (!hasEntries) {
|
|
delete subMenu;
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void AppLauncher::switchTo(QAction *action)
|
|
{
|
|
QString source = action->data().toString();
|
|
kDebug() << source;
|
|
Plasma::Service *service = dataEngine("apps")->serviceForSource(source);
|
|
if (service) {
|
|
Plasma::ServiceJob *job = service->startOperationCall(service->operationDescription("launch"));
|
|
connect(job, SIGNAL(finished(KJob*)), service, SLOT(deleteLater()));
|
|
}
|
|
}
|
|
|
|
#include "launch.moc"
|