summaryrefslogtreecommitdiff
path: root/src/plugins/languageclient/languageclientutils.cpp
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@qt.io>2019-01-18 13:12:13 +0100
committerDavid Schulz <david.schulz@qt.io>2019-01-25 09:49:25 +0000
commit49bd5b6c500ff7bda41173be54207c29c21b5055 (patch)
treed4a357fe1dfe19f557076c52fd3ac87aef1a8dd3 /src/plugins/languageclient/languageclientutils.cpp
parent1562674a060d190cd64fc438870f9d03bed4bd13 (diff)
downloadqt-creator-49bd5b6c500ff7bda41173be54207c29c21b5055.tar.gz
LSP: add a convenient function returning a TextDocument
...for a Utils::FileName Change-Id: If490eba29a50f20c2f19f741e60f09244ee73cb6 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/languageclient/languageclientutils.cpp')
-rw-r--r--src/plugins/languageclient/languageclientutils.cpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/plugins/languageclient/languageclientutils.cpp b/src/plugins/languageclient/languageclientutils.cpp
new file mode 100644
index 0000000000..cbfb91ccc9
--- /dev/null
+++ b/src/plugins/languageclient/languageclientutils.cpp
@@ -0,0 +1,38 @@
+/****************************************************************************
+**
+** Copyright (C) 2019 The Qt Company Ltd.
+** Contact: https://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 https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3 as published by the Free Software
+** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-3.0.html.
+**
+****************************************************************************/
+
+#include "languageclientutils.h"
+
+#include <texteditor/textdocument.h>
+#include <coreplugin/editormanager/documentmodel.h>
+
+using namespace LanguageClient;
+using namespace LanguageServerProtocol;
+
+TextEditor::TextDocument *LanguageClient::textDocumentForFileName(const Utils::FileName &fileName)
+{
+ return qobject_cast<TextEditor::TextDocument *>(
+ Core::DocumentModel::documentForFilePath(fileName.toString()));
+}