org.kde.koala

Interface KHTMLPartSignals

public interface KHTMLPartSignals

Method Summary
voidcaretPositionChanged(Node node, long offset)
void docCreated(); /* This signal is emitted whenever the caret position has been changed.
voidformSubmitNotification(String action, String url, byte[] formData, String target, String contentType, String boundary)
If form notification is on, this will be emitted either for a form submit or before the form submit according to the setting.
voidnodeActivated(Node arg1)
This signal is emitted when an element retrieves the keyboard focus.
voidonURL(String url)
Emitted if the cursor is moved over an URL.
voidpopupMenu(String url, QPoint point)
Emitted when the user clicks the right mouse button on the document.
voidselectionChanged()
This signal is emitted when the selection changes.

Method Detail

caretPositionChanged

public void caretPositionChanged(Node node, long offset)
void docCreated(); /* This signal is emitted whenever the caret position has been changed. The signal transmits the position the DOM.Range way, the node and the zero-based offset within this node.

Parameters: node node which the caret is in. This can be null if the caret has been deactivated. offset offset within the node. If the node is null, the offset is meaningless.

UNKNOWN:

formSubmitNotification

public void formSubmitNotification(String action, String url, byte[] formData, String target, String contentType, String boundary)
If form notification is on, this will be emitted either for a form submit or before the form submit according to the setting.

UNKNOWN: If form notification is on, this will be emitted either for a form submit or before the form submit according to the setting.

nodeActivated

public void nodeActivated(Node arg1)
This signal is emitted when an element retrieves the keyboard focus. Note that the signal argument can be a null node if no element is active, meaning a node has explicitly been deactivated without a new one becoming active.

UNKNOWN: This signal is emitted when an element retrieves the keyboard focus.

onURL

public void onURL(String url)
Emitted if the cursor is moved over an URL.

UNKNOWN: Emitted if the cursor is moved over an URL.

popupMenu

public void popupMenu(String url, QPoint point)
Emitted when the user clicks the right mouse button on the document.

UNKNOWN: Emitted when the user clicks the right mouse button on the document.

selectionChanged

public void selectionChanged()
This signal is emitted when the selection changes.

UNKNOWN: This signal is emitted when the selection changes.