/* This file is part of KDevelop Copyright 2001-2002 Matthias Hoelzer-Kluepfel Copyright 2001-2002 Bernd Gehrmann Copyright 2001 Sandy Meier Copyright 2002 Daniel Engelschalt Copyright 2002 Simon Hausmann Copyright 2002-2003 Roberto Raggi Copyright 2003 Mario Scalas Copyright 2003 Harald Fernengel Copyright 2003,2006-2007 Hamish Rodda Copyright 2004 Alexander Dymo Copyright 2006 Adam Treat Copyright 2007 Andreas Pakulat 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 #include #include #include 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: DUContextContext(const IndexedDUContext& context); virtual ~DUContextContext(); ///Returns the represented DUContext IndexedDUContext context() const; int type() const; protected: void setContext(IndexedDUContext context); private: class Private; Private *d; 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. */ DeclarationContext(const IndexedDeclaration& declaration, const DocumentRange& use = DocumentRange::invalid(), const IndexedDUContext& context = IndexedDUContext()); ///Computes the items under the cursor DeclarationContext(KTextEditor::View* view, KTextEditor::Cursor position); /**Destructor.*/ virtual ~DeclarationContext(); /// Returns the type of this context. virtual int type() const; ///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() returnes the used declaration, and context() the context ///that surrounds the use. DocumentRange use() const; private: class Private; Private *d; Q_DISABLE_COPY(DeclarationContext) }; } #endif