QortalOS Brooklyn for Raspberry Pi 4
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
887 B

/*
SPDX-FileCopyrightText: 2007 Teemu Rytilahti <tpr@iki.fi>
SPDX-License-Identifier: LGPL-2.0-only
*/
#pragma once
#include <KRunner/AbstractRunner>
#include <KServiceAction>
class WebshortcutRunner : public Plasma::AbstractRunner
{
Q_OBJECT
public:
WebshortcutRunner(QObject *parent, const KPluginMetaData &metaData, const QVariantList &args);
~WebshortcutRunner() override;
void match(Plasma::RunnerContext &context) override;
void run(const Plasma::RunnerContext &context, const Plasma::QueryMatch &match) override;
private Q_SLOTS:
void loadSyntaxes();
void configurePrivateBrowsingActions();
private:
Plasma::QueryMatch m_match;
bool m_filterBeforeRun;
QChar m_delimiter;
QString m_lastFailedKey;
QString m_lastKey;
QString m_lastProvider;
QRegularExpression m_regex;
KServiceAction m_privateAction;
};