Brooklyn/plasma/runners/plasma-desktop/plasma-desktop-runner.h
Scare Crowe d2ebfd0519 QortalOS Titan 5.60.12
Screw the description like that inbred T3Q
2022-03-05 21:17:59 +05:00

35 lines
799 B
C++

/*
SPDX-FileCopyrightText: 2009 Aaron Seigo <aseigo@kde.org>
SPDX-License-Identifier: LGPL-2.0-only
*/
#ifndef PLASMADESKTOPRUNNER_H
#define PLASMADESKTOPRUNNER_H
#include <krunner/abstractrunner.h>
using namespace Plasma;
/**
* This class runs programs using the literal name of the binary, much as one
* would use at a shell prompt.
*/
class PlasmaDesktopRunner : public AbstractRunner
{
Q_OBJECT
public:
PlasmaDesktopRunner(QObject *parent, const KPluginMetaData &metaData, const QVariantList &args);
~PlasmaDesktopRunner() override;
void match(RunnerContext &context) override;
void run(const RunnerContext &context, const QueryMatch &action) override;
private:
const QString m_desktopConsoleKeyword;
const QString m_kwinConsoleKeyword;
};
#endif