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 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
/* This file is part of KDevelop
Copyright 2001-2002 Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
Copyright 2001-2002 Bernd Gehrmann <bernd@kdevelop.org>
Copyright 2001 Sandy Meier <smeier@kdevelop.org>
Copyright 2002 Daniel Engelschalt <daniel.engelschalt@gmx.net>
Copyright 2002 Simon Hausmann <hausmann@kde.org>
Copyright 2002-2003 Roberto Raggi <roberto@kdevelop.org>
Copyright 2003 Mario Scalas <mario.scalas@libero.it>
Copyright 2003 Harald Fernengel <harry@kdevelop.org>
Copyright 2003,2006-2007 Hamish Rodda <rodda@kde.org>
Copyright 2004 Alexander Dymo <adymo@kdevelop.org>
Copyright 2006 Adam Treat <treat@kde.org>
Copyright 2007 Andreas Pakulat <apaku@gmx.org>
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_CODECONTEXT_H
#define KDEVPLATFORM_CODECONTEXT_H
#include <interfaces/context.h>
#include <language/editor/documentrange.h>
#include <language/duchain/declaration.h>
#include <language/duchain/indexedducontext.h>
namespace KTextEditor {
class View;
}
namespace KDevelop {
class IndexedDeclaration;
class IndexedDUContext;
/**
* A context that represents DUContexts. Before using this, first try casting to DeclarationContext, and use that if possible.
*/
class KDEVPLATFORMLANGUAGE_EXPORT DUContextContext
: public Context
{
public:
explicit DUContextContext(const IndexedDUContext& context);
~DUContextContext() override;
///Returns the represented DUContext
IndexedDUContext context() const;
int type() const override;
QList<QUrl> urls() const override;
protected:
void setContext(IndexedDUContext context);
private:
const QScopedPointer<class DUContextContextPrivate> d_ptr;
Q_DECLARE_PRIVATE(DUContextContext)
Q_DISABLE_COPY(DUContextContext)
};
/**
A context for definition-use chain objects.
*/
class KDEVPLATFORMLANGUAGE_EXPORT DeclarationContext
: public DUContextContext
{
public:
/**Builds the context.
* @param declaration The represented declaration.
* @param use If this context represents the use of a declaration, this should contain the exact use range.
* @param context If this represents a use, then this should be the context
* surrounding the use. Else it should be the context surrounding the declaration.
*/
explicit DeclarationContext(const IndexedDeclaration& declaration,
const DocumentRange& use = DocumentRange::invalid(),
const IndexedDUContext& context = IndexedDUContext());
///Computes the items under the cursor
DeclarationContext(KTextEditor::View* view, const KTextEditor::Cursor& position);
/**Destructor.*/
~DeclarationContext() override;
/// Returns the type of this context.
int type() const override;
///The referenced declaration
IndexedDeclaration declaration() const;
///If this code-context represents the use of a declaration, then this contains the exact position+range
///of that use. declaration() returns the used declaration, and context() the context
///that surrounds the use.
DocumentRange use() const;
private:
// TODO: fix constructor and make const
QScopedPointer<class DeclarationContextPrivate> d_ptr;
Q_DECLARE_PRIVATE(DeclarationContext)
Q_DISABLE_COPY(DeclarationContext)
};
}
#endif
|