aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/glsleditor/glsleditorplugin.cpp
blob: c7f5c816173e96f2817ceeda273bbdf7be12b1be (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "glsleditor.h"
#include "glsleditorconstants.h"
#include "glsleditortr.h"

#include <coreplugin/actionmanager/actioncontainer.h>
#include <coreplugin/actionmanager/actionmanager.h>
#include <coreplugin/actionmanager/command.h>
#include <coreplugin/coreconstants.h>
#include <coreplugin/editormanager/editormanager.h>
#include <coreplugin/icore.h>

#include <extensionsystem/iplugin.h>

#include <texteditor/texteditorconstants.h>

#include <utils/fsengine/fileiconprovider.h>
#include <utils/mimeconstants.h>

#include <QMenu>

using namespace Core;
using namespace Utils;

namespace GlslEditor::Internal {

class GlslEditorPlugin final : public ExtensionSystem::IPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "GLSLEditor.json")

public:
    void initialize() final
    {
        setupGlslEditorFactory();

        ActionContainer *contextMenu = ActionManager::createMenu(Constants::M_CONTEXT);
        ActionContainer *glslToolsMenu = ActionManager::createMenu(Id(Constants::M_TOOLS_GLSL));
        glslToolsMenu->setOnAllDisabledBehavior(ActionContainer::Hide);
        QMenu *menu = glslToolsMenu->menu();
        //: GLSL sub-menu in the Tools menu
        menu->setTitle(Tr::tr("GLSL"));
        ActionManager::actionContainer(Core::Constants::M_TOOLS)->addMenu(glslToolsMenu);

        // Insert marker for "Refactoring" menu:
        Command *sep = contextMenu->addSeparator();
        sep->action()->setObjectName(Constants::M_REFACTORING_MENU_INSERTION_POINT);
        contextMenu->addSeparator();

        Command *cmd = ActionManager::command(TextEditor::Constants::UN_COMMENT_SELECTION);
        contextMenu->addAction(cmd);
    }

    void extensionsInitialized() final
    {
        using namespace Utils::Constants;
        FileIconProvider::registerIconOverlayForMimeType(":/glsleditor/images/glslfile.png",
                                                         GLSL_MIMETYPE);
        FileIconProvider::registerIconOverlayForMimeType(":/glsleditor/images/glslfile.png",
                                                         GLSL_VERT_MIMETYPE);
        FileIconProvider::registerIconOverlayForMimeType(":/glsleditor/images/glslfile.png",
                                                         GLSL_FRAG_MIMETYPE);
        FileIconProvider::registerIconOverlayForMimeType(":/glsleditor/images/glslfile.png",
                                                         GLSL_ES_VERT_MIMETYPE);
        FileIconProvider::registerIconOverlayForMimeType(":/glsleditor/images/glslfile.png",
                                                         GLSL_ES_FRAG_MIMETYPE);
    }
};

} // GlslEditor::Internal

#include "glsleditorplugin.moc"