blob: d51410381acee4d6d6fb5e7c80ab7b6e5697d94d (
plain)
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
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "core_global.h"
#include <QObject>
#include <QMap>
#include <QList>
#include <QString>
namespace Core {
class ExternalTool;
class CORE_EXPORT ExternalToolManager : public QObject
{
Q_OBJECT
public:
ExternalToolManager();
~ExternalToolManager() override;
static ExternalToolManager *instance();
static QMap<QString, QList<ExternalTool *> > toolsByCategory();
static QMap<QString, ExternalTool *> toolsById();
static void setToolsByCategory(const QMap<QString, QList<ExternalTool *> > &tools);
static void emitReplaceSelectionRequested(const QString &output);
signals:
void replaceSelectionRequested(const QString &text);
};
} // namespace Core
|