mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-16 04:05:53 +00:00
34 lines
770 B
C
34 lines
770 B
C
|
/*
|
||
|
SPDX-FileCopyrightText: 2009 Aaron Seigo <aseigo@kde.org>
|
||
|
SPDX-FileCopyrightText: 2016 Martin Gräßlin <mgraesslin@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: LGPL-2.0-only
|
||
|
*/
|
||
|
|
||
|
#ifndef KWINRUNNER_H
|
||
|
#define KWINRUNNER_H
|
||
|
|
||
|
#include <krunner/abstractrunner.h>
|
||
|
|
||
|
using namespace Plasma;
|
||
|
|
||
|
class KWinRunner : public AbstractRunner
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit KWinRunner(QObject *parent, const KPluginMetaData &metaData, const QVariantList &args);
|
||
|
~KWinRunner() override;
|
||
|
|
||
|
void match(RunnerContext &context) override;
|
||
|
void run(const RunnerContext &context, const QueryMatch &action) override;
|
||
|
|
||
|
private:
|
||
|
void checkAvailability(const QString &name, const QString &oldOwner, const QString &newOwner);
|
||
|
|
||
|
private:
|
||
|
bool m_enabled = false;
|
||
|
};
|
||
|
|
||
|
#endif
|