You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.1 KiB
105 lines
3.1 KiB
/*
|
|
Copyright (C) 2005 by Nicolas Escuder <n.escuder@intra-links.com>
|
|
Copyright (C) 2001 by smeier@kdevelop.org
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
version 2, License as published by the Free Software Foundation.
|
|
|
|
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 Steet, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
|
|
#ifndef PHPCODECOMPLETION_H
|
|
#define PHPCODECOMPLETION_H
|
|
|
|
#include <codemodel.h>
|
|
|
|
#include <tqobject.h>
|
|
#include <kregexp.h>
|
|
#include <tdeparts/part.h>
|
|
|
|
#include <kdevmainwindow.h>
|
|
#include <kstatusbar.h>
|
|
|
|
#include <tdetexteditor/editinterface.h>
|
|
#include <tdetexteditor/viewcursorinterface.h>
|
|
#include <tdetexteditor/codecompletioninterface.h>
|
|
#include <tdetexteditor/selectioninterface.h>
|
|
|
|
|
|
class KDevCore;
|
|
class PHPSupportPart;
|
|
class PHPConfigData;
|
|
|
|
class FunctionCompletionEntry : public KTextEditor::CompletionEntry {
|
|
public:
|
|
TQString prototype;
|
|
};
|
|
|
|
class PHPCodeCompletion : public TQObject {
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
PHPCodeCompletion(PHPSupportPart *phpSupport, PHPConfigData *config);
|
|
~PHPCodeCompletion();
|
|
void setActiveEditorPart(KParts::Part *part);
|
|
|
|
public slots:
|
|
void cursorPositionChanged();
|
|
|
|
protected slots:
|
|
void argHintHided();
|
|
void completionBoxHided();
|
|
|
|
protected:
|
|
bool showCompletionBox(TQValueList<KTextEditor::CompletionEntry> list, unsigned long max);
|
|
|
|
bool checkForVariable(TQString line, int col);
|
|
bool checkForStaticFunction(TQString line, int col);
|
|
bool checkForNew(TQString line, int col);
|
|
bool checkForExtends(TQString line, int col);
|
|
bool checkForGlobalFunction(TQString line, int col);
|
|
|
|
bool checkForArgHint(TQString line, int col);
|
|
|
|
TQValueList<KTextEditor::CompletionEntry> getClasses(TQString name);
|
|
TQValueList<KTextEditor::CompletionEntry> getFunctionsAndVars(TQString classname, TQString str);
|
|
TQStringList getArguments(TQString classname, TQString function);
|
|
TQString getCurrentClassName();
|
|
TQString getClassName(TQString varName, TQString classname);
|
|
TQValueList<ClassDom> getClassByName(TQString classname);
|
|
|
|
void readGlobalPHPFunctionsFile();
|
|
void setStatusBar(TQString expr, TQString type);
|
|
|
|
private:
|
|
int m_currentLine;
|
|
TQValueList<FunctionCompletionEntry> m_globalFunctions;
|
|
|
|
PHPSupportPart* m_phpSupport;
|
|
PHPConfigData* m_config;
|
|
CodeModel* m_model;
|
|
|
|
bool m_argWidgetShow;
|
|
bool m_completionBoxShow;
|
|
|
|
KTextEditor::EditInterface *m_editInterface;
|
|
KTextEditor::CodeCompletionInterface *m_codeInterface;
|
|
KTextEditor::ViewCursorInterface *m_cursorInterface;
|
|
KTextEditor::SelectionInterface *m_selectionInterface;
|
|
|
|
TQString findDeclaration(TQString name, int line = -1);
|
|
};
|
|
|
|
#endif
|