org.kde.koala

Interface KEditSignals

public interface KEditSignals

Method Summary
voidCursorPositionChanged()
This signal is emitted whenever the cursor position changes.
voidgotUrlDrop(QDropEvent e)
This signal is emitted if the user dropped a URL over the text editor QMultiLineEdit widget.
voidtoggle_overwrite_signal()
This signal is emitted if the user toggles from insert to overwrite mode or vice versa.

Method Detail

CursorPositionChanged

public void CursorPositionChanged()
This signal is emitted whenever the cursor position changes. Use this in conjunction with currentLine(), currentColumn() if you need to know the cursor position.

UNKNOWN: This signal is emitted whenever the cursor position changes.

gotUrlDrop

public void gotUrlDrop(QDropEvent e)
This signal is emitted if the user dropped a URL over the text editor QMultiLineEdit widget. Note that the user can drop also Text on it, but this is already handled internally by QMultiLineEdit.

UNKNOWN: This signal is emitted if the user dropped a URL over the text editor QMultiLineEdit widget.

toggle_overwrite_signal

public void toggle_overwrite_signal()
This signal is emitted if the user toggles from insert to overwrite mode or vice versa. The user can do so by pressing the "Insert" button on a PC keyboard. This feature must be activated by calling setOverwriteEnabled(true) first.

UNKNOWN: This signal is emitted if the user toggles from insert to overwrite mode or vice versa.