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.
55 lines
1.2 KiB
55 lines
1.2 KiB
//
|
|
// C++ Interface: jscodecompletion
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: ian reinhart geiser <geiseri@kde.org>, (C) 2004
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
#ifndef JSCODECOMPLETION_H
|
|
#define JSCODECOMPLETION_H
|
|
|
|
#include <tqobject.h>
|
|
#include <tdevelop/codemodel.h>
|
|
#include <tdevelop/kdevplugin.h>
|
|
#include <tdevelop/kdevlanguagesupport.h>
|
|
|
|
#include <tdetexteditor/editinterface.h>
|
|
#include <tdetexteditor/viewcursorinterface.h>
|
|
#include <tdetexteditor/codecompletioninterface.h>
|
|
|
|
/**
|
|
The code completion engine for Javascript.
|
|
|
|
@author ian reinhart geiser
|
|
*/
|
|
class JSCodeCompletion : public TQObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
JSCodeCompletion(TQObject *parent = 0, const char *name = 0);
|
|
|
|
~JSCodeCompletion();
|
|
void setActiveEditorPart(KParts::Part* editorPart);
|
|
TQValueList<KTextEditor::CompletionEntry> getVars(const TQString& textHint);
|
|
|
|
public slots:
|
|
void cursorPositionChanged();
|
|
void completionBoxHidden();
|
|
void completionBoxAbort();
|
|
|
|
private:
|
|
bool m_argWidgetShow;
|
|
bool m_completionBoxShow;
|
|
KTextEditor::EditInterface *m_editInterface;
|
|
KTextEditor::CodeCompletionInterface *m_codeInterface;
|
|
KTextEditor::ViewCursorInterface *m_cursorInterface;
|
|
|
|
};
|
|
|
|
#endif
|