diff --git a/language/interfaces/editorcontext.cpp b/language/interfaces/editorcontext.cpp index 819c019bf4..c48c807494 100644 --- a/language/interfaces/editorcontext.cpp +++ b/language/interfaces/editorcontext.cpp @@ -1,91 +1,96 @@ /* This file is part of KDevelop Copyright 2006 Adam Treat Copyright 2007 Andreas Pakulat Copyright 2008 David Nolden This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "editorcontext.h" #include #include #include namespace KDevelop { class EditorContextPrivate { public: EditorContextPrivate( KTextEditor::View* view, const KTextEditor::Cursor& position ) : m_view( view ) { m_url = view->document()->url(); m_position = position; m_currentLine = view->document()->line(m_position.line()); int wordStart = m_position.column(); int wordEnd = m_position.column(); while(wordStart > 0 && wordStart < m_currentLine.length() && (m_currentLine[wordStart-1].isLetterOrNumber() || m_currentLine[wordStart-1] == '_')) --wordStart; while(wordEnd >= 0 && wordEnd < m_currentLine.length() && (m_currentLine[wordEnd].isLetterOrNumber() || m_currentLine[wordEnd] == '_')) ++wordEnd; } QUrl m_url; KTextEditor::Cursor m_position; QString m_currentLine, m_currentWord; KTextEditor::View* m_view; }; EditorContext::EditorContext( KTextEditor::View* view, const KTextEditor::Cursor& position ) : DeclarationContext( view, position ), d( new EditorContextPrivate( view, position ) ) {} EditorContext::~EditorContext() { delete d; } int EditorContext::type() const { return Context::EditorContext; } QUrl EditorContext::url() const { return d->m_url; } +QList EditorContext::urls() const +{ + return {d->m_url}; +} + KTextEditor::Cursor EditorContext::position() const { return d->m_position; } QString EditorContext::currentLine() const { return d->m_currentLine; } QString EditorContext::currentWord() const { return d->m_currentWord; } KTextEditor::View* EditorContext::view() const { return d->m_view; } } diff --git a/language/interfaces/editorcontext.h b/language/interfaces/editorcontext.h index 91c4bfb626..8155bc81c6 100644 --- a/language/interfaces/editorcontext.h +++ b/language/interfaces/editorcontext.h @@ -1,81 +1,82 @@ /* This file is part of KDevelop Copyright 2006 Adam Treat Copyright 2007 Andreas Pakulat Copyright 2008 David Nolden This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef KDEVPLATFORM_EDITORCONTEXT_H #define KDEVPLATFORM_EDITORCONTEXT_H #include "codecontext.h" namespace KTextEditor { class View; class Cursor; } class QUrl; namespace KDevelop { /**A context for the KTextEditor.*/ class KDEVPLATFORMLANGUAGE_EXPORT EditorContext: public DeclarationContext { public: /** * Builds a context for a KTextEditor part. * @param view The view for the editor context. * @param position The cursor position. */ EditorContext( KTextEditor::View* view, const KTextEditor::Cursor& position ); /**Destructor.*/ virtual ~EditorContext(); virtual int type() const override; /**@return The url for the file which this context was invoked for.*/ QUrl url() const; + QList urls() const override; /**@return The cursor position.*/ KTextEditor::Cursor position() const; /**@return A QString with the content of the line which this context was invoked for.*/ QString currentLine() const; /**@return A QString containing the word near to the cursor when this context object was created.*/ QString currentWord() const; /** * Returns the associated view. */ KTextEditor::View* view() const; private: class EditorContextPrivate* const d; EditorContext( const EditorContext & ); EditorContext &operator=( const EditorContext & ); }; } #endif