interfaces Library API Documentation

KTextEditor::CodeCompletionInterface Class Reference

This is an interface for the KTextEditor::View class. More...

#include <codecompletioninterface.h>

List of all members.

Public Methods

virtual void showArgHint (QStringList functionList, const QString &strWrapping, const QString &strDelimiter)=0
 This shows an argument hint.

virtual void showCompletionBox (QValueList< CompletionEntry > complList, int offset=0, bool casesensitive=true)=0
 This shows a completion list.

virtual void completionAborted ()=0
 This signal is emitted when the completion list disappears and no completion has been done.

virtual void completionDone ()=0
 This signal is emitted when the completion list disappears and a completion has been inserted into text.

virtual void completionDone (CompletionEntry)=0
 This signal is the same as completionDone(), but additionally it carries the information which completion item was used.

virtual void argHintHidden ()=0
 This signal is emitted when the argument hint disappears.

virtual void filterInsertString (CompletionEntry *, QString *)=0
 This signal is emitted just before a completion takes place.


Detailed Description

This is an interface for the KTextEditor::View class.

It can be used to show completion lists, i.e. lists that pop up while a user is typing. The user can then choose from the list or he can just keep typing. The completion list will disappear if an item is chosen, if no completion is available or if the user presses Esc etc. The contents of the list is automatically adapted to the string the user types.

There is another signal, which may be implmemented, but isn't documented here, because it would have been a BIC change and I'm not sure if it is really of need

void completionExtendedComment(CompletionEntry)

Definition at line 77 of file codecompletioninterface.h.


Member Function Documentation

virtual void KTextEditor::CodeCompletionInterface::showArgHint QStringList    functionList,
const QString   strWrapping,
const QString   strDelimiter
[pure virtual]
 

This shows an argument hint.

virtual void KTextEditor::CodeCompletionInterface::showCompletionBox QValueList< CompletionEntry   complList,
int    offset = 0,
bool    casesensitive = true
[pure virtual]
 

This shows a completion list.

offset is the real start of the text that should be completed. 0 means that the text starts at the current cursor position. if casesensitive is true, the popup will only contain completions that match the input text regarding case.

virtual void KTextEditor::CodeCompletionInterface::completionAborted   [pure virtual]
 

This signal is emitted when the completion list disappears and no completion has been done.

This is the case e.g. when the user presses Escape.

IMPORTANT: Please check if a connect to this signal worked, and implement some fallback when the implementation doesn't support it

IMPORTANT FOR IMPLEMENTERS: When you don't support this signal, please just override the inherited function, if you support it, declare it as a signal

virtual void KTextEditor::CodeCompletionInterface::completionDone   [pure virtual]
 

This signal is emitted when the completion list disappears and a completion has been inserted into text.

This is the case e.g. when the user presses Return on a selected item in the completion list.

IMPORTANT: Please check if a connect to this signal worked, and implement some fallback when the implementation doesn't support it

IMPORTANT FOR IMPLEMENTERS: When you don't support this signal, please just override the inherited function, if you support it, declare it as a signal

virtual void KTextEditor::CodeCompletionInterface::completionDone CompletionEntry    [pure virtual]
 

This signal is the same as completionDone(), but additionally it carries the information which completion item was used.

IMPORTANT: Please check if a connect to this signal worked, and implement some fallback when the implementation doesn't support it

IMPORTANT: The pointer to the CompleteionEntry, is only valid in the slots connected to this signal when the connected slots are left, the data element may be destroyed, depending on the implementation

IMPORTANT FOR IMPLEMENTERS: When you don't support this signal, please just override the inherited function, if you support it, declare it as a signal.

virtual void KTextEditor::CodeCompletionInterface::argHintHidden   [pure virtual]
 

This signal is emitted when the argument hint disappears.

This is the case e.g. when the user moves the cursor somewhere else.

IMPORTANT: Please check if a connect to this signal worked, and implement some fallback when the implementation doesn't support it

IMPORTANT FOR IMPLEMENTERS: When you don't support this signal, please just override the inherited function, if you support it, declare it as a signal

virtual void KTextEditor::CodeCompletionInterface::filterInsertString CompletionEntry  ,
QString  
[pure virtual]
 

This signal is emitted just before a completion takes place.

You can use it to modify the CompletionEntry. The modified entry will not be visible in the completion list (because that has just disappeared) but it will be used when the completion is inserted into the text.

IMPORTANT: Please check if a connect to this signal worked, and implement some fallback when the implementation doesn't support it

IMPORTANT FOR IMPLEMENTERS: When you don't support this signal, please just override the inherited function, if you support it, declare it as a signal


The documentation for this class was generated from the following files:
KDE Logo
This file is part of the documentation for kdelibs Version 3.1.0.
Documentation copyright © 1996-2002 the KDE developers.
Generated on Wed Oct 8 12:22:16 2003 by doxygen 1.2.18 written by Dimitri van Heesch, © 1997-2001