org.kde.koala
Interface KEditSignals


public interface KEditSignals


Method Summary
 void CursorPositionChanged()
          This signal is emitted whenever the cursor position changes.
 void gotUrlDrop(org.kde.qt.QDropEvent e)
          This signal is emitted if the user dropped a URL over the text editor QMultiLineEdit widget.
 void toggle_overwrite_signal()
          This signal is emitted if the user toggles from insert to overwrite mode or vice versa.
 

Method Detail

gotUrlDrop

void gotUrlDrop(org.kde.qt.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.


CursorPositionChanged

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.


toggle_overwrite_signal

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.