Module qtjambi
Package io.qt.widgets

Interface QGraphicsItem

All Superinterfaces:
QtObjectInterface
All Known Implementing Classes:
QAbstractGraphicsShapeItem, QChart, QGraphicsEllipseItem, QGraphicsItem.Impl, QGraphicsItemGroup, QGraphicsLineItem, QGraphicsObject, QGraphicsPathItem, QGraphicsPixmapItem, QGraphicsPolygonItem, QGraphicsProxyWidget, QGraphicsRectItem, QGraphicsSimpleTextItem, QGraphicsSvgItem, QGraphicsTextItem, QGraphicsVideoItem, QGraphicsWidget, QLegend, QPolarChart

public interface QGraphicsItem extends QtObjectInterface

The base class for all graphical items in a QGraphicsScene

Java wrapper for Qt class QGraphicsItem

Following functions are protected in the Qt interface, all implementations of this interface may implement these function:


@io.qt.QtUninvokable
protected final void addToIndex(){
    QGraphicsItem.MemberAccess.of(this).addToIndex();
}

@io.qt.QtUninvokable
protected final void prepareGeometryChange(){
    QGraphicsItem.MemberAccess.of(this).prepareGeometryChange();
}

@io.qt.QtUninvokable
protected final void removeFromIndex(){
    QGraphicsItem.MemberAccess.of(this).removeFromIndex();
}

@io.qt.QtUninvokable
protected final void updateMicroFocus(){
    QGraphicsItem.MemberAccess.of(this).updateMicroFocus();
}

@io.qt.QtUninvokable
protected void contextMenuEvent(io.qt.widgets.QGraphicsSceneContextMenuEvent event){
    QGraphicsItem.MemberAccess.of(this).contextMenuEvent(event);
}

@io.qt.QtUninvokable
protected void dragEnterEvent(io.qt.widgets.QGraphicsSceneDragDropEvent event){
    QGraphicsItem.MemberAccess.of(this).dragEnterEvent(event);
}

@io.qt.QtUninvokable
protected void dragLeaveEvent(io.qt.widgets.QGraphicsSceneDragDropEvent event){
    QGraphicsItem.MemberAccess.of(this).dragLeaveEvent(event);
}

@io.qt.QtUninvokable
protected void dragMoveEvent(io.qt.widgets.QGraphicsSceneDragDropEvent event){
    QGraphicsItem.MemberAccess.of(this).dragMoveEvent(event);
}

@io.qt.QtUninvokable
protected void dropEvent(io.qt.widgets.QGraphicsSceneDragDropEvent event){
    QGraphicsItem.MemberAccess.of(this).dropEvent(event);
}

@io.qt.QtUninvokable
protected java.lang.Object extension(java.lang.Object variant){
    return QGraphicsItem.MemberAccess.of(this).extension(variant);
}

@io.qt.QtUninvokable
protected void focusInEvent(io.qt.gui.QFocusEvent event){
    QGraphicsItem.MemberAccess.of(this).focusInEvent(event);
}

@io.qt.QtUninvokable
protected void focusOutEvent(io.qt.gui.QFocusEvent event){
    QGraphicsItem.MemberAccess.of(this).focusOutEvent(event);
}

@io.qt.QtUninvokable
protected void hoverEnterEvent(io.qt.widgets.QGraphicsSceneHoverEvent event){
    QGraphicsItem.MemberAccess.of(this).hoverEnterEvent(event);
}

@io.qt.QtUninvokable
protected void hoverLeaveEvent(io.qt.widgets.QGraphicsSceneHoverEvent event){
    QGraphicsItem.MemberAccess.of(this).hoverLeaveEvent(event);
}

@io.qt.QtUninvokable
protected void hoverMoveEvent(io.qt.widgets.QGraphicsSceneHoverEvent event){
    QGraphicsItem.MemberAccess.of(this).hoverMoveEvent(event);
}

@io.qt.QtUninvokable
protected void inputMethodEvent(io.qt.gui.QInputMethodEvent event){
    QGraphicsItem.MemberAccess.of(this).inputMethodEvent(event);
}

@io.qt.QtUninvokable
protected java.lang.Object inputMethodQuery(io.qt.core.Qt.InputMethodQuery query){
    return QGraphicsItem.MemberAccess.of(this).inputMethodQuery(query);
}

@io.qt.QtUninvokable
protected java.lang.Object itemChange(io.qt.widgets.QGraphicsItem.GraphicsItemChange change, java.lang.Object value){
    return QGraphicsItem.MemberAccess.of(this).itemChange(change, value);
}

@io.qt.QtUninvokable
protected void keyPressEvent(io.qt.gui.QKeyEvent event){
    QGraphicsItem.MemberAccess.of(this).keyPressEvent(event);
}

@io.qt.QtUninvokable
protected void keyReleaseEvent(io.qt.gui.QKeyEvent event){
    QGraphicsItem.MemberAccess.of(this).keyReleaseEvent(event);
}

@io.qt.QtUninvokable
protected void mouseDoubleClickEvent(io.qt.widgets.QGraphicsSceneMouseEvent event){
    QGraphicsItem.MemberAccess.of(this).mouseDoubleClickEvent(event);
}

@io.qt.QtUninvokable
protected void mouseMoveEvent(io.qt.widgets.QGraphicsSceneMouseEvent event){
    QGraphicsItem.MemberAccess.of(this).mouseMoveEvent(event);
}

@io.qt.QtUninvokable
protected void mousePressEvent(io.qt.widgets.QGraphicsSceneMouseEvent event){
    QGraphicsItem.MemberAccess.of(this).mousePressEvent(event);
}

@io.qt.QtUninvokable
protected void mouseReleaseEvent(io.qt.widgets.QGraphicsSceneMouseEvent event){
    QGraphicsItem.MemberAccess.of(this).mouseReleaseEvent(event);
}

@io.qt.QtUninvokable
protected boolean sceneEvent(io.qt.core.QEvent event){
    return QGraphicsItem.MemberAccess.of(this).sceneEvent(event);
}

@io.qt.QtUninvokable
protected boolean sceneEventFilter(io.qt.widgets.QGraphicsItem watched, io.qt.core.QEvent event){
    return QGraphicsItem.MemberAccess.of(this).sceneEventFilter(watched, event);
}

@io.qt.QtUninvokable
protected void setExtension(io.qt.widgets.QGraphicsItem.Extension extension, java.lang.Object variant){
    QGraphicsItem.MemberAccess.of(this).setExtension(extension, variant);
}

@io.qt.QtUninvokable
protected boolean supportsExtension(io.qt.widgets.QGraphicsItem.Extension extension){
    return QGraphicsItem.MemberAccess.of(this).supportsExtension(extension);
}

@io.qt.QtUninvokable
protected void wheelEvent(io.qt.widgets.QGraphicsSceneWheelEvent event){
    QGraphicsItem.MemberAccess.of(this).wheelEvent(event);
}