/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms and ** conditions see http://www.qt.io/terms-conditions. For further information ** use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #include "glsleditor.h" #include "glsleditorconstants.h" #include "glsleditorplugin.h" #include "glslhighlighter.h" #include "glslhoverhandler.h" #include "glslautocompleter.h" #include "glslcompletionassist.h" #include "glslindenter.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace TextEditor; using namespace GLSL; namespace GlslEditor { namespace Internal { enum { UPDATE_DOCUMENT_DEFAULT_INTERVAL = 150 }; class CreateRanges: protected Visitor { QTextDocument *textDocument; Document::Ptr glslDocument; public: CreateRanges(QTextDocument *textDocument, Document::Ptr glslDocument) : textDocument(textDocument), glslDocument(glslDocument) {} void operator()(AST *ast) { accept(ast); } protected: using GLSL::Visitor::visit; virtual void endVisit(CompoundStatementAST *ast) { if (ast->symbol) { QTextCursor tc(textDocument); tc.setPosition(ast->start); tc.setPosition(ast->end, QTextCursor::KeepAnchor); glslDocument->addRange(tc, ast->symbol); } } }; // // GlslEditorWidget // class GlslEditorWidget : public TextEditorWidget { public: GlslEditorWidget(); int editorRevision() const; bool isOutdated() const; QSet identifiers() const; AssistInterface *createAssistInterface(AssistKind assistKind, AssistReason reason) const override; private: void updateDocumentNow(); void setSelectedElements(); QString wordUnderCursor() const; QTimer m_updateDocumentTimer; QComboBox *m_outlineCombo; Document::Ptr m_glslDocument; }; GlslEditorWidget::GlslEditorWidget() { setAutoCompleter(new GlslCompleter); m_outlineCombo = 0; m_updateDocumentTimer.setInterval(UPDATE_DOCUMENT_DEFAULT_INTERVAL); m_updateDocumentTimer.setSingleShot(true); connect(&m_updateDocumentTimer, &QTimer::timeout, this, &GlslEditorWidget::updateDocumentNow); connect(this, &QPlainTextEdit::textChanged, [this]() { m_updateDocumentTimer.start(); }); m_outlineCombo = new QComboBox; m_outlineCombo->setMinimumContentsLength(22); // ### m_outlineCombo->setModel(m_outlineModel); QTreeView *treeView = new QTreeView; treeView->header()->hide(); treeView->setItemsExpandable(false); treeView->setRootIsDecorated(false); m_outlineCombo->setView(treeView); treeView->expandAll(); //m_outlineCombo->setSizeAdjustPolicy(QComboBox::AdjustToContents); // Make the combo box prefer to expand QSizePolicy policy = m_outlineCombo->sizePolicy(); policy.setHorizontalPolicy(QSizePolicy::Expanding); m_outlineCombo->setSizePolicy(policy); insertExtraToolBarWidget(TextEditorWidget::Left, m_outlineCombo); // if (m_modelManager) { // m_semanticHighlighter->setModelManager(m_modelManager); // connect(m_modelManager, SIGNAL(documentUpdated(GLSL::Document::Ptr)), // this, SLOT(onDocumentUpdated(GLSL::Document::Ptr))); // connect(m_modelManager, SIGNAL(libraryInfoUpdated(QString,GLSL::LibraryInfo)), // this, SLOT(forceSemanticRehighlight())); // connect(this->document(), SIGNAL(modificationChanged(bool)), this, SLOT(modificationChanged(bool))); // } } int GlslEditorWidget::editorRevision() const { //return document()->revision(); return 0; } bool GlslEditorWidget::isOutdated() const { // if (m_semanticInfo.revision() != editorRevision()) // return true; return false; } QString GlslEditorWidget::wordUnderCursor() const { QTextCursor tc = textCursor(); const QChar ch = document()->characterAt(tc.position() - 1); // make sure that we're not at the start of the next word. if (ch.isLetterOrNumber() || ch == QLatin1Char('_')) tc.movePosition(QTextCursor::Left); tc.movePosition(QTextCursor::StartOfWord); tc.movePosition(QTextCursor::EndOfWord, QTextCursor::KeepAnchor); const QString word = tc.selectedText(); return word; } void GlslEditorWidget::updateDocumentNow() { m_updateDocumentTimer.stop(); int variant = languageVariant(textDocument()->mimeType()); const QString contents = toPlainText(); // get the code from the editor const QByteArray preprocessedCode = contents.toLatin1(); // ### use the QtCreator C++ preprocessor. Document::Ptr doc(new Document()); doc->_engine = new Engine(); Parser parser(doc->_engine, preprocessedCode.constData(), preprocessedCode.size(), variant); TranslationUnitAST *ast = parser.parse(); if (ast != 0 || extraSelections(CodeWarningsSelection).isEmpty()) { Semantic sem; Scope *globalScope = new Namespace(); doc->_globalScope = globalScope; const GlslEditorPlugin::InitFile *file = GlslEditorPlugin::shaderInit(variant); sem.translationUnit(file->ast, globalScope, file->engine); if (variant & Lexer::Variant_VertexShader) { file = GlslEditorPlugin::vertexShaderInit(variant); sem.translationUnit(file->ast, globalScope, file->engine); } if (variant & Lexer::Variant_FragmentShader) { file = GlslEditorPlugin::fragmentShaderInit(variant); sem.translationUnit(file->ast, globalScope, file->engine); } sem.translationUnit(ast, globalScope, doc->_engine); CreateRanges createRanges(document(), doc); createRanges(ast); QTextCharFormat errorFormat; errorFormat.setUnderlineStyle(QTextCharFormat::SingleUnderline); errorFormat.setUnderlineColor(Qt::red); QTextCharFormat warningFormat; warningFormat.setUnderlineStyle(QTextCharFormat::SingleUnderline); warningFormat.setUnderlineColor(Qt::darkYellow); QList sels; QSet errors; foreach (const DiagnosticMessage &m, doc->_engine->diagnosticMessages()) { if (! m.line()) continue; else if (errors.contains(m.line())) continue; errors.insert(m.line()); QTextCursor cursor(document()->findBlockByNumber(m.line() - 1)); cursor.movePosition(QTextCursor::EndOfBlock, QTextCursor::KeepAnchor); QTextEdit::ExtraSelection sel; sel.cursor = cursor; sel.format = m.isError() ? errorFormat : warningFormat; sel.format.setToolTip(m.message()); sels.append(sel); } setExtraSelections(CodeWarningsSelection, sels); m_glslDocument = doc; } } int languageVariant(const QString &type) { int variant = 0; bool isVertex = false; bool isFragment = false; bool isDesktop = false; if (type.isEmpty()) { // ### Before file has been opened, so don't know the mime type. isVertex = true; isFragment = true; } else if (type == QLatin1String("text/x-glsl") || type == QLatin1String("application/x-glsl")) { isVertex = true; isFragment = true; isDesktop = true; } else if (type == QLatin1String("text/x-glsl-vert")) { isVertex = true; isDesktop = true; } else if (type == QLatin1String("text/x-glsl-frag")) { isFragment = true; isDesktop = true; } else if (type == QLatin1String("text/x-glsl-es-vert")) { isVertex = true; } else if (type == QLatin1String("text/x-glsl-es-frag")) { isFragment = true; } if (isDesktop) variant |= Lexer::Variant_GLSL_120; else variant |= Lexer::Variant_GLSL_ES_100; if (isVertex) variant |= Lexer::Variant_VertexShader; if (isFragment) variant |= Lexer::Variant_FragmentShader; return variant; } AssistInterface *GlslEditorWidget::createAssistInterface( AssistKind kind, AssistReason reason) const { if (kind == Completion) return new GlslCompletionAssistInterface(document(), position(), textDocument()->filePath().toString(), reason, textDocument()->mimeType(), m_glslDocument); return TextEditorWidget::createAssistInterface(kind, reason); } // // GlslEditorFactory // GlslEditorFactory::GlslEditorFactory() { setId(Constants::C_GLSLEDITOR_ID); setDisplayName(qApp->translate("OpenWith::Editors", Constants::C_GLSLEDITOR_DISPLAY_NAME)); addMimeType(Constants::GLSL_MIMETYPE); addMimeType(Constants::GLSL_MIMETYPE_VERT); addMimeType(Constants::GLSL_MIMETYPE_FRAG); addMimeType(Constants::GLSL_MIMETYPE_VERT_ES); addMimeType(Constants::GLSL_MIMETYPE_FRAG_ES); setDocumentCreator([]() { return new TextDocument(Constants::C_GLSLEDITOR_ID); }); setEditorWidgetCreator([]() { return new GlslEditorWidget; }); setIndenterCreator([]() { return new GlslIndenter; }); setSyntaxHighlighterCreator([]() { return new GlslHighlighter; }); setCommentStyle(Utils::CommentDefinition::CppStyle); setCompletionAssistProvider(new GlslCompletionAssistProvider); setParenthesesMatchingEnabled(true); setMarksVisible(true); setCodeFoldingSupported(true); setEditorActionHandlers(TextEditorActionHandler::Format | TextEditorActionHandler::UnCommentSelection | TextEditorActionHandler::UnCollapseAll); addHoverHandler(new GlslHoverHandler); } } // namespace Internal } // namespace GlslEditor