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
|
/*
SPDX-FileCopyrightText: 2012 Marco Martin <mart@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include <KLocalizedString>
#include <QApplication>
#include <QAction>
#include <QCommandLineParser>
#include <QDBusConnection>
#include <QDBusMessage>
#include <QDebug>
#include <QQuickWindow>
#include <QSessionManager>
#include <QSurfaceFormat>
#include <QUrl>
#include <KAboutData>
#include <KAuthorized>
#include <KDBusService>
#include <KRunner/RunnerManager>
#include <PlasmaQuick/SharedQmlEngine>
#include <iostream>
#include <qqmlengine.h>
#include "view.h"
using namespace Qt::StringLiterals;
int main(int argc, char **argv)
{
auto format = QSurfaceFormat::defaultFormat();
format.setOption(QSurfaceFormat::ResetNotification);
QSurfaceFormat::setDefaultFormat(format);
QCommandLineParser parser;
// this is needed to fake window position so Plasma Dialog sets correct borders
qputenv("QT_WAYLAND_DISABLE_FIXED_POSITIONS", {});
// this variable controls whether to reconnect or exit if the compositor dies, given plasmashell does a lot of
// bespoke wayland code disable for now. Consider re-enabling when layer-shell support lands
qunsetenv("QT_WAYLAND_RECONNECT");
QQuickWindow::setDefaultAlphaBuffer(true);
QApplication app(argc, argv);
qunsetenv("QT_WAYLAND_DISABLE_FIXED_POSITIONS");
qputenv("QT_WAYLAND_RECONNECT", "1");
KLocalizedString::setApplicationDomain(QByteArrayLiteral("krunner"));
// TODO: Make it a QGuiApplication once we don't depend on KDELibs4Support
// QGuiApplication app(argc, argv);
KAboutData aboutData(u"krunner"_s, i18n("KRunner"), QStringLiteral(PROJECT_VERSION), i18n("Run Command interface"), KAboutLicense::GPL);
KAboutData::setApplicationData(aboutData);
app.setQuitOnLastWindowClosed(false);
app.setQuitLockEnabled(false);
QCommandLineOption clipboardOption({u"c"_s, u"clipboard"_s}, i18n("Use the clipboard contents as query for KRunner"));
QCommandLineOption daemonOption({u"d"_s, u"daemon"_s}, i18n("Start KRunner in the background, don't show it."));
QCommandLineOption replaceOption({u"replace"_s}, i18n("Replace an existing instance"));
QCommandLineOption runnerId({u"runner"_s}, i18n("Show only results from the given plugin"), u"runner"_s);
QCommandLineOption listOption({u"list"_s}, i18n("List available plugins"));
parser.addOption(clipboardOption);
parser.addOption(daemonOption);
parser.addOption(replaceOption);
parser.addOption(runnerId);
parser.addOption(listOption);
parser.addPositionalArgument(u"query"_s, i18n("The query to run, only used if -c is not provided"));
aboutData.setupCommandLine(&parser);
parser.process(app);
aboutData.processCommandLine(&parser);
if (parser.isSet(listOption)) {
const auto runners = KRunner::RunnerManager::runnerMetaDataList();
const QString headline = i18nc("Header for command line output", "Available KRunner plugins, pluginId");
QString separator;
separator.fill(u'-', headline.length());
std::cout << qPrintable(headline) << std::endl << qPrintable(separator) << std::endl;
for (const auto &data : runners) {
std::cout << qPrintable(data.name()) << ": " << qPrintable(data.pluginId()) << std::endl;
}
return 0;
}
if (!KAuthorized::authorize(u"run_command"_s)) {
return -1;
}
KDBusService service(KDBusService::Unique | KDBusService::StartupOption(parser.isSet(replaceOption) ? KDBusService::Replace : 0));
auto disableSessionManagement = [](QSessionManager &sm) {
sm.setRestartHint(QSessionManager::RestartNever);
};
QObject::connect(&app, &QGuiApplication::commitDataRequest, disableSessionManagement);
QObject::connect(&app, &QGuiApplication::saveStateRequest, disableSessionManagement);
PlasmaQuick::SharedQmlEngine sharedEngine;
// It is important this to be done before the view is created, as it creates internally a framesvgitem for the background
// that needs to use the current plasma theme
sharedEngine.engine()->setProperty("_kirigamiTheme", u"KirigamiPlasmaStyle"_s);
sharedEngine.setInitializationDelayed(true);
View view(&sharedEngine);
auto updateVisibility = [&]() {
const QString query = parser.positionalArguments().value(0);
const bool hasSingleRunnerModeId = parser.isSet(runnerId);
if (parser.isSet(daemonOption)) {
view.setVisible(false);
} else if (parser.isSet(clipboardOption)) {
view.displayWithClipboardContents();
} else if (!query.isEmpty()) {
if (hasSingleRunnerModeId) {
view.querySingleRunner(parser.value(runnerId), query);
} else {
view.query(query);
}
} else if (hasSingleRunnerModeId) {
view.displaySingleRunner(parser.value(runnerId));
} else {
view.toggleDisplay();
}
};
updateVisibility();
QObject::connect(&service, &KDBusService::activateRequested, &view, [&](const QStringList &arguments) {
parser.parse(arguments);
updateVisibility();
});
QObject::connect(&service, &KDBusService::activateActionRequested, &view, [&view](const QString &action, const QVariant ¶meter) {
if (action == QLatin1String("RunClipboard")) {
view.displayWithClipboardContents();
} else if (action == QLatin1String("Query")) {
view.query(parameter.toString());
}
});
return app.exec();
}
|