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.
tdebindings/kdejava/koala/org/kde/koala/TDEHTMLPartSignals.java

62 lines
2.2 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.TQRect;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQDataStream;
import org.kde.qt.TQObject;
import org.kde.qt.TQPoint;
import java.util.ArrayList;
import org.kde.qt.TQPainter;
import org.kde.qt.TQCustomEvent;
import org.kde.qt.TQCursor;
import org.kde.qt.TQVariant;
import org.kde.qt.TQWidget;
public interface TDEHTMLPartSignals {
/**
Emitted if the cursor is moved over an URL.
@short Emitted if the cursor is moved over an URL.
*/
void onURL(String url);
/**
Emitted when the user clicks the right mouse button on the document.
@short Emitted when the user clicks the right mouse button on the document.
*/
void popupMenu(String url, TQPoint point);
/**
This signal is emitted when the selection changes.
@short This signal is emitted when the selection changes.
*/
void selectionChanged();
/**
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.
@short This signal is emitted when an element retrieves the keyboard focus.
*/
void nodeActivated(Node arg1);
/**
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.
@param node node which the caret is in. This can be null if the caret
has been deactivated.
@param offset offset within the node. If the node is null, the offset
is meaningless.
@short
*/
void caretPositionChanged(Node node, long offset);
/**
If form notification is on, this will be emitted either for a form
submit or before the form submit according to the setting.
@short If form notification is on, this will be emitted either for a form submit or before the form submit according to the setting.
*/
void formSubmitNotification(String action, String url, byte[] formData, String target, String contentType, String boundary);
}