/* * KDevelop Php Code Completion Support * * Copyright 2010 Niko Sams * * This program 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 program 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 General Public License for more details. * * You should have received a copy of the GNU General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef PHPCOMPLETIONCODEMODELITEM_H #define PHPCOMPLETIONCODEMODELITEM_H #include #include #include #include "context.h" #include "../duchain/completioncodemodel.h" namespace Php { struct CompletionCodeModelItem; class CodeCompletionContext; class KDEVPHPCOMPLETION_EXPORT CodeModelCompletionItem : public KDevelop::CompletionTreeItem { public: explicit CodeModelCompletionItem(const KDevelop::ParsingEnvironmentFilePointer &, const CompletionCodeModelItem &item); virtual QVariant data(const QModelIndex& index, int role, const KDevelop::CodeCompletionModel* model) const; virtual KTextEditor::CodeCompletionModel::CompletionProperties completionProperties() const; virtual void execute(KTextEditor::Document* document, const KTextEditor::Range& word); virtual KDevelop::DeclarationPointer declaration() const; protected: CompletionCodeModelItem m_item; KDevelop::ParsingEnvironmentFilePointer m_env; mutable KDevelop::DeclarationPointer m_decl; }; } #endif