aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/coreplugin/editormanager/iexternaleditor.h
blob: eaf1f64d4511b69c97e3cd32f239073b89e11be9 (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
36
37
38
39
40
41
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include "ieditorfactory.h"

#include <coreplugin/core_global.h>

#include <utils/id.h>

#include <QObject>

namespace Utils {
class FilePath;
class MimeType;
}

namespace Core {

class IExternalEditor;

using ExternalEditorList = QList<IExternalEditor *>;

class CORE_EXPORT IExternalEditor : public EditorType
{
    Q_OBJECT

public:
    explicit IExternalEditor();
    ~IExternalEditor() override;

    static const ExternalEditorList allExternalEditors();
    static const ExternalEditorList externalEditors(const Utils::MimeType &mimeType);

    IExternalEditor *asExternalEditor() override { return this; }

    virtual bool startEditor(const Utils::FilePath &filePath, QString *errorMessage) = 0;
};

} // namespace Core