All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.qt.gui.QPainterPath Maven / Gradle / Ivy

There is a newer version: 6.8.0
Show newest version
package io.qt.gui;

import io.qt.*;


/**
 * 

Container for painting operations, enabling graphical shapes to be constructed and reused

*

Java wrapper for Qt class QPainterPath

*/ public class QPainterPath extends QtObject implements java.lang.Cloneable { static { QtJambi_LibraryUtilities.initialize(); } /** *

Java wrapper for Qt enum QPainterPath::ElementType

*/ public enum ElementType implements QtEnumerator { /** *

Representing QPainterPath::MoveToElement

*/ MoveToElement(0), /** *

Representing QPainterPath::LineToElement

*/ LineToElement(1), /** *

Representing QPainterPath::CurveToElement

*/ CurveToElement(2), /** *

Representing QPainterPath::CurveToDataElement

*/ CurveToDataElement(3); static { QtJambi_LibraryUtilities.initialize(); } private ElementType(int value) { this.value = value; } /** * {@inheritDoc} */ public int value() { return value; } /** * Returns the corresponding enum entry for the given value. * @param value * @return enum entry */ public static @NonNull ElementType resolve(int value) { switch (value) { case 0: return MoveToElement; case 1: return LineToElement; case 2: return CurveToElement; case 3: return CurveToDataElement; default: throw new QNoSuchEnumValueException(value); } } private final int value; } /** *

QPainterPath::Element class specifies the position and type of a subpath

*

Java wrapper for Qt class QPainterPath::Element

*/ public static class Element extends QtObject implements java.lang.Cloneable { static { QtJambi_LibraryUtilities.initialize(); } /** *

See QPainterPath::Element::Element()

*/ public Element(){ super((QPrivateConstructor)null); initialize_native(this); } private native static void initialize_native(Element instance); /** *

See QPainterPath::Element::Element(QPainterPath::Element)

*/ public Element(io.qt.gui.QPainterPath.@NonNull Element other){ super((QPrivateConstructor)null); initialize_native(this, other); } private native static void initialize_native(Element instance, io.qt.gui.QPainterPath.Element other); /** *

See QPainterPath::Element::Element{qreal,qreal,QPainterPath::ElementType}

*/ public Element(double x, double y, io.qt.gui.QPainterPath.@NonNull ElementType type){ super((QPrivateConstructor)null); initialize_native(this, x, y, type); } private native static void initialize_native(Element instance, double x, double y, io.qt.gui.QPainterPath.ElementType type); /** *

See QPainterPath::Element::isCurveTo()const

*/ @QtUninvokable public final boolean isCurveTo(){ return isCurveTo_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native boolean isCurveTo_native_constfct(long __this__nativeId); /** *

See QPainterPath::Element::isLineTo()const

*/ @QtUninvokable public final boolean isLineTo(){ return isLineTo_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native boolean isLineTo_native_constfct(long __this__nativeId); /** *

See QPainterPath::Element::isMoveTo()const

*/ @QtUninvokable public final boolean isMoveTo(){ return isMoveTo_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native boolean isMoveTo_native_constfct(long __this__nativeId); /** *

See QPainterPath::Element::operator QPointF()const

*/ @QtUninvokable public final io.qt.core.@NonNull QPointF toPoint(){ return toPoint_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native io.qt.core.QPointF toPoint_native_constfct(long __this__nativeId); /** *

See QPainterPath::Element::operator==(QPainterPath::Element)const

*/ @QtUninvokable public final boolean equals(io.qt.gui.QPainterPath.@NonNull Element e){ return equals_native_cref_QPainterPath_Element_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(e)); } @QtUninvokable private native boolean equals_native_cref_QPainterPath_Element_constfct(long __this__nativeId, long e); /** *

The type of element

*

See QPainterPath::Element::type

*/ @QtUninvokable public final io.qt.gui.QPainterPath.@NonNull ElementType type(){ return io.qt.gui.QPainterPath.ElementType.resolve(type_native(QtJambi_LibraryUtilities.internal.nativeId(this))); } @QtUninvokable private native int type_native(long __this__nativeId); /** *

The x coordinate of the element's position

*

See QPainterPath::Element::x

*/ @QtUninvokable public final double x(){ return x_native(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native double x_native(long __this__nativeId); /** *

The y coordinate of the element's position

*

See QPainterPath::Element::y

*/ @QtUninvokable public final double y(){ return y_native(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native double y_native(long __this__nativeId); /** * Constructor for internal use only. * @param p expected to be null. * @hidden */ @NativeAccess protected Element(QPrivateConstructor p) { super(p); } /** *

See QPainterPath::Element::operator==(QPainterPath::Element)const

*/ @Override @QtUninvokable public boolean equals(Object other) { if (other instanceof io.qt.gui.QPainterPath.Element) { return equals((io.qt.gui.QPainterPath.Element) other); } return false; } /** * Returns the objects's hash code computed by qHash(QPainterPath::Element). */ @QtUninvokable @Override public int hashCode() { return hashCode_native(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native static int hashCode_native(long __this_nativeId); /** *

Creates and returns a copy of this object.

See QPainterPath::Element::Element(QPainterPath::Element)

*/ @QtUninvokable @Override public Element clone() { return clone_native(QtJambi_LibraryUtilities.internal.nativeId(this)); } private static native Element clone_native(long __this_nativeId); /** * @hidden *

Kotlin property getter. In Java use {@link #type()} instead.

*/ @QtUninvokable public final io.qt.gui.QPainterPath.@NonNull ElementType getType() { return type(); } /** * @hidden *

Kotlin property getter. In Java use {@link #x()} instead.

*/ @QtUninvokable public final double getX() { return x(); } /** * @hidden *

Kotlin property getter. In Java use {@link #y()} instead.

*/ @QtUninvokable public final double getY() { return y(); } } /** *

See QPainterPath::QPainterPath()

*/ public QPainterPath(){ super((QPrivateConstructor)null); initialize_native(this); } private native static void initialize_native(QPainterPath instance); /** *

See QPainterPath::QPainterPath(QPainterPath)

*/ public QPainterPath(io.qt.gui.@NonNull QPainterPath other){ super((QPrivateConstructor)null); initialize_native(this, other); } private native static void initialize_native(QPainterPath instance, io.qt.gui.QPainterPath other); /** *

See QPainterPath::QPainterPath(QPointF)

*/ public QPainterPath(io.qt.core.@NonNull QPointF startPoint){ super((QPrivateConstructor)null); initialize_native(this, startPoint); } private native static void initialize_native(QPainterPath instance, io.qt.core.QPointF startPoint); /** *

See QPainterPath::addEllipse(QPointF,qreal,qreal)

*/ @QtUninvokable public final void addEllipse(io.qt.core.@NonNull QPointF center, double rx, double ry){ addEllipse_native_cref_QPointF_qreal_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(center), rx, ry); } @QtUninvokable private native void addEllipse_native_cref_QPointF_qreal_qreal(long __this__nativeId, long center, double rx, double ry); /** *

See QPainterPath::addEllipse(QRectF)

*/ @QtUninvokable public final void addEllipse(io.qt.core.@NonNull QRectF rect){ addEllipse_native_cref_QRectF(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(rect)); } @QtUninvokable private native void addEllipse_native_cref_QRectF(long __this__nativeId, long rect); /** *

See QPainterPath::addEllipse(qreal,qreal,qreal,qreal)

*/ @QtUninvokable public final void addEllipse(double x, double y, double w, double h){ addEllipse_native_qreal_qreal_qreal_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), x, y, w, h); } @QtUninvokable private native void addEllipse_native_qreal_qreal_qreal_qreal(long __this__nativeId, double x, double y, double w, double h); /** *

See QPainterPath::addPath(QPainterPath)

*/ @QtUninvokable public final void addPath(io.qt.gui.@NonNull QPainterPath path){ addPath_native_cref_QPainterPath(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(path)); } @QtUninvokable private native void addPath_native_cref_QPainterPath(long __this__nativeId, long path); /** *

See QPainterPath::addPolygon(QPolygonF)

*/ @QtUninvokable public final void addPolygon(io.qt.gui.@NonNull QPolygonF polygon){ addPolygon_native_cref_QPolygonF(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(polygon)); } @QtUninvokable private native void addPolygon_native_cref_QPolygonF(long __this__nativeId, long polygon); /** *

See QPainterPath::addRect(QRectF)

*/ @QtUninvokable public final void addRect(io.qt.core.@NonNull QRectF rect){ addRect_native_cref_QRectF(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(rect)); } @QtUninvokable private native void addRect_native_cref_QRectF(long __this__nativeId, long rect); /** *

See QPainterPath::addRect(qreal,qreal,qreal,qreal)

*/ @QtUninvokable public final void addRect(double x, double y, double w, double h){ addRect_native_qreal_qreal_qreal_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), x, y, w, h); } @QtUninvokable private native void addRect_native_qreal_qreal_qreal_qreal(long __this__nativeId, double x, double y, double w, double h); /** *

See QPainterPath::addRegion(QRegion)

*/ @QtUninvokable public final void addRegion(io.qt.gui.@NonNull QRegion region){ addRegion_native_cref_QRegion(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(region)); } @QtUninvokable private native void addRegion_native_cref_QRegion(long __this__nativeId, long region); /** *

See QPainterPath::addRoundedRect(QRectF,qreal,qreal,Qt::SizeMode)

*/ @QtUninvokable public final void addRoundedRect(io.qt.core.@NonNull QRectF rect, double xRadius, double yRadius, io.qt.core.Qt.@NonNull SizeMode mode){ addRoundedRect_native_cref_QRectF_qreal_qreal_Qt_SizeMode(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(rect), xRadius, yRadius, mode.value()); } @QtUninvokable private native void addRoundedRect_native_cref_QRectF_qreal_qreal_Qt_SizeMode(long __this__nativeId, long rect, double xRadius, double yRadius, int mode); /** *

See QPainterPath::addRoundedRect(qreal,qreal,qreal,qreal,qreal,qreal,Qt::SizeMode)

*/ @QtUninvokable public final void addRoundedRect(double x, double y, double w, double h, double xRadius, double yRadius, io.qt.core.Qt.@NonNull SizeMode mode){ addRoundedRect_native_qreal_qreal_qreal_qreal_qreal_qreal_Qt_SizeMode(QtJambi_LibraryUtilities.internal.nativeId(this), x, y, w, h, xRadius, yRadius, mode.value()); } @QtUninvokable private native void addRoundedRect_native_qreal_qreal_qreal_qreal_qreal_qreal_Qt_SizeMode(long __this__nativeId, double x, double y, double w, double h, double xRadius, double yRadius, int mode); /** *

See QPainterPath::addText(QPointF,QFont,QString)

*/ @QtUninvokable public final void addText(io.qt.core.@NonNull QPointF point, io.qt.gui.@NonNull QFont f, java.lang.@NonNull String text){ addText_native_cref_QPointF_cref_QFont_cref_QString(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(point), QtJambi_LibraryUtilities.internal.checkedNativeId(f), text); } @QtUninvokable private native void addText_native_cref_QPointF_cref_QFont_cref_QString(long __this__nativeId, long point, long f, java.lang.String text); /** *

See QPainterPath::addText(qreal,qreal,QFont,QString)

*/ @QtUninvokable public final void addText(double x, double y, io.qt.gui.@NonNull QFont f, java.lang.@NonNull String text){ addText_native_qreal_qreal_cref_QFont_cref_QString(QtJambi_LibraryUtilities.internal.nativeId(this), x, y, QtJambi_LibraryUtilities.internal.checkedNativeId(f), text); } @QtUninvokable private native void addText_native_qreal_qreal_cref_QFont_cref_QString(long __this__nativeId, double x, double y, long f, java.lang.String text); /** *

See QPainterPath::angleAtPercent(qreal)const

*/ @QtUninvokable public final double angleAtPercent(double t){ return angleAtPercent_native_qreal_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), t); } @QtUninvokable private native double angleAtPercent_native_qreal_constfct(long __this__nativeId, double t); /** *

See QPainterPath::arcMoveTo(QRectF,qreal)

*/ @QtUninvokable public final void arcMoveTo(io.qt.core.@NonNull QRectF rect, double angle){ arcMoveTo_native_cref_QRectF_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(rect), angle); } @QtUninvokable private native void arcMoveTo_native_cref_QRectF_qreal(long __this__nativeId, long rect, double angle); /** *

See QPainterPath::arcMoveTo(qreal,qreal,qreal,qreal,qreal)

*/ @QtUninvokable public final void arcMoveTo(double x, double y, double w, double h, double angle){ arcMoveTo_native_qreal_qreal_qreal_qreal_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), x, y, w, h, angle); } @QtUninvokable private native void arcMoveTo_native_qreal_qreal_qreal_qreal_qreal(long __this__nativeId, double x, double y, double w, double h, double angle); /** *

See QPainterPath::arcTo(QRectF,qreal,qreal)

*/ @QtUninvokable public final void arcTo(io.qt.core.@NonNull QRectF rect, double startAngle, double arcLength){ arcTo_native_cref_QRectF_qreal_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(rect), startAngle, arcLength); } @QtUninvokable private native void arcTo_native_cref_QRectF_qreal_qreal(long __this__nativeId, long rect, double startAngle, double arcLength); /** *

See QPainterPath::arcTo(qreal,qreal,qreal,qreal,qreal,qreal)

*/ @QtUninvokable public final void arcTo(double x, double y, double w, double h, double startAngle, double arcLength){ arcTo_native_qreal_qreal_qreal_qreal_qreal_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), x, y, w, h, startAngle, arcLength); } @QtUninvokable private native void arcTo_native_qreal_qreal_qreal_qreal_qreal_qreal(long __this__nativeId, double x, double y, double w, double h, double startAngle, double arcLength); /** *

See QPainterPath::boundingRect()const

*/ @QtUninvokable public final io.qt.core.@NonNull QRectF boundingRect(){ return boundingRect_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native io.qt.core.QRectF boundingRect_native_constfct(long __this__nativeId); /** *

See QPainterPath::capacity()const

*/ @QtUninvokable public final int capacity(){ return capacity_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native int capacity_native_constfct(long __this__nativeId); /** *

See QPainterPath::clear()

*/ @QtUninvokable public final void clear(){ clear_native(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native void clear_native(long __this__nativeId); /** *

See QPainterPath::closeSubpath()

*/ @QtUninvokable public final void closeSubpath(){ closeSubpath_native(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native void closeSubpath_native(long __this__nativeId); /** *

See QPainterPath::connectPath(QPainterPath)

*/ @QtUninvokable public final void connectPath(io.qt.gui.@NonNull QPainterPath path){ connectPath_native_cref_QPainterPath(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(path)); } @QtUninvokable private native void connectPath_native_cref_QPainterPath(long __this__nativeId, long path); /** *

See QPainterPath::contains(QPainterPath)const

*/ @QtUninvokable public final boolean contains(io.qt.gui.@NonNull QPainterPath p){ return contains_native_cref_QPainterPath_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(p)); } @QtUninvokable private native boolean contains_native_cref_QPainterPath_constfct(long __this__nativeId, long p); /** *

See QPainterPath::contains(QPointF)const

*/ @QtUninvokable public final boolean contains(io.qt.core.@NonNull QPointF pt){ return contains_native_cref_QPointF_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(pt)); } @QtUninvokable private native boolean contains_native_cref_QPointF_constfct(long __this__nativeId, long pt); /** *

See QPainterPath::contains(QRectF)const

*/ @QtUninvokable public final boolean contains(io.qt.core.@NonNull QRectF rect){ return contains_native_cref_QRectF_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(rect)); } @QtUninvokable private native boolean contains_native_cref_QRectF_constfct(long __this__nativeId, long rect); /** *

See QPainterPath::controlPointRect()const

*/ @QtUninvokable public final io.qt.core.@NonNull QRectF controlPointRect(){ return controlPointRect_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native io.qt.core.QRectF controlPointRect_native_constfct(long __this__nativeId); /** *

See QPainterPath::cubicTo(QPointF,QPointF,QPointF)

*/ @QtUninvokable public final void cubicTo(io.qt.core.@NonNull QPointF ctrlPt1, io.qt.core.@NonNull QPointF ctrlPt2, io.qt.core.@NonNull QPointF endPt){ cubicTo_native_cref_QPointF_cref_QPointF_cref_QPointF(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(ctrlPt1), QtJambi_LibraryUtilities.internal.checkedNativeId(ctrlPt2), QtJambi_LibraryUtilities.internal.checkedNativeId(endPt)); } @QtUninvokable private native void cubicTo_native_cref_QPointF_cref_QPointF_cref_QPointF(long __this__nativeId, long ctrlPt1, long ctrlPt2, long endPt); /** *

See QPainterPath::cubicTo(qreal,qreal,qreal,qreal,qreal,qreal)

*/ @QtUninvokable public final void cubicTo(double ctrlPt1x, double ctrlPt1y, double ctrlPt2x, double ctrlPt2y, double endPtx, double endPty){ cubicTo_native_qreal_qreal_qreal_qreal_qreal_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), ctrlPt1x, ctrlPt1y, ctrlPt2x, ctrlPt2y, endPtx, endPty); } @QtUninvokable private native void cubicTo_native_qreal_qreal_qreal_qreal_qreal_qreal(long __this__nativeId, double ctrlPt1x, double ctrlPt1y, double ctrlPt2x, double ctrlPt2y, double endPtx, double endPty); /** *

See QPainterPath::currentPosition()const

*/ @QtUninvokable public final io.qt.core.@NonNull QPointF currentPosition(){ return currentPosition_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native io.qt.core.QPointF currentPosition_native_constfct(long __this__nativeId); /** *

See QPainterPath::elementAt(int)const

*/ @QtUninvokable public final io.qt.gui.QPainterPath.@NonNull Element elementAt(int i){ return elementAt_native_int_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), i); } @QtUninvokable private native io.qt.gui.QPainterPath.Element elementAt_native_int_constfct(long __this__nativeId, int i); /** *

See QPainterPath::elementCount()const

*/ @QtUninvokable public final int elementCount(){ return elementCount_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native int elementCount_native_constfct(long __this__nativeId); /** *

See QPainterPath::fillRule()const

*/ @QtUninvokable public final io.qt.core.Qt.@NonNull FillRule fillRule(){ return io.qt.core.Qt.FillRule.resolve(fillRule_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this))); } @QtUninvokable private native int fillRule_native_constfct(long __this__nativeId); /** *

See QPainterPath::intersected(QPainterPath)const

*/ @QtUninvokable public final io.qt.gui.@NonNull QPainterPath intersected(io.qt.gui.@NonNull QPainterPath r){ return intersected_native_cref_QPainterPath_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(r)); } @QtUninvokable private native io.qt.gui.QPainterPath intersected_native_cref_QPainterPath_constfct(long __this__nativeId, long r); /** *

See QPainterPath::intersects(QPainterPath)const

*/ @QtUninvokable public final boolean intersects(io.qt.gui.@NonNull QPainterPath p){ return intersects_native_cref_QPainterPath_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(p)); } @QtUninvokable private native boolean intersects_native_cref_QPainterPath_constfct(long __this__nativeId, long p); /** *

See QPainterPath::intersects(QRectF)const

*/ @QtUninvokable public final boolean intersects(io.qt.core.@NonNull QRectF rect){ return intersects_native_cref_QRectF_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(rect)); } @QtUninvokable private native boolean intersects_native_cref_QRectF_constfct(long __this__nativeId, long rect); /** *

See QPainterPath::isEmpty()const

*/ @QtUninvokable public final boolean isEmpty(){ return isEmpty_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native boolean isEmpty_native_constfct(long __this__nativeId); /** *

See QPainterPath::length()const

*/ @QtUninvokable public final double length(){ return length_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native double length_native_constfct(long __this__nativeId); /** *

See QPainterPath::lineTo(QPointF)

*/ @QtUninvokable public final void lineTo(io.qt.core.@NonNull QPointF p){ lineTo_native_cref_QPointF(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(p)); } @QtUninvokable private native void lineTo_native_cref_QPointF(long __this__nativeId, long p); /** *

See QPainterPath::lineTo(qreal,qreal)

*/ @QtUninvokable public final void lineTo(double x, double y){ lineTo_native_qreal_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), x, y); } @QtUninvokable private native void lineTo_native_qreal_qreal(long __this__nativeId, double x, double y); /** *

See QPainterPath::moveTo(QPointF)

*/ @QtUninvokable public final void moveTo(io.qt.core.@NonNull QPointF p){ moveTo_native_cref_QPointF(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(p)); } @QtUninvokable private native void moveTo_native_cref_QPointF(long __this__nativeId, long p); /** *

See QPainterPath::moveTo(qreal,qreal)

*/ @QtUninvokable public final void moveTo(double x, double y){ moveTo_native_qreal_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), x, y); } @QtUninvokable private native void moveTo_native_qreal_qreal(long __this__nativeId, double x, double y); /** *

See QPainterPath::operator&=(QPainterPath)

*/ @QtUninvokable public final void intersect(io.qt.gui.@NonNull QPainterPath other){ intersect_native_cref_QPainterPath(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other)); } @QtUninvokable private native void intersect_native_cref_QPainterPath(long __this__nativeId, long other); /** *

See operator*(QPainterPath,QTransform)

*/ @QtUninvokable public final io.qt.gui.@NonNull QPainterPath times(io.qt.gui.@NonNull QTransform m){ return times_native_cref_QTransform(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(m)); } @QtUninvokable private native io.qt.gui.QPainterPath times_native_cref_QTransform(long __this__nativeId, long m); /** *

See QPainterPath::operator+(QPainterPath)const

*/ @QtUninvokable public final io.qt.gui.@NonNull QPainterPath plus(io.qt.gui.@NonNull QPainterPath other){ return plus_native_cref_QPainterPath_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other)); } @QtUninvokable private native io.qt.gui.QPainterPath plus_native_cref_QPainterPath_constfct(long __this__nativeId, long other); /** *

See QPainterPath::operator+=(QPainterPath)

*/ @QtUninvokable public final @NonNull QPainterPath unite(io.qt.gui.@NonNull QPainterPath other){ return unite_native_cref_QPainterPath(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other)); } @QtUninvokable private native QPainterPath unite_native_cref_QPainterPath(long __this__nativeId, long other); /** *

See QPainterPath::operator-(QPainterPath)const

*/ @QtUninvokable public final io.qt.gui.@NonNull QPainterPath minus(io.qt.gui.@NonNull QPainterPath other){ return minus_native_cref_QPainterPath_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other)); } @QtUninvokable private native io.qt.gui.QPainterPath minus_native_cref_QPainterPath_constfct(long __this__nativeId, long other); /** *

See QPainterPath::operator-=(QPainterPath)

*/ @QtUninvokable public final @NonNull QPainterPath subtract(io.qt.gui.@NonNull QPainterPath other){ return subtract_native_cref_QPainterPath(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other)); } @QtUninvokable private native QPainterPath subtract_native_cref_QPainterPath(long __this__nativeId, long other); /** *

See operator<<(QDataStream&,QPainterPath)

*/ @QtUninvokable public void writeTo(io.qt.core.@StrictNonNull QDataStream arg__1){ java.util.Objects.requireNonNull(arg__1, "Argument 'arg__1': null not expected."); writeTo_native_ref_QDataStream(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1)); } @QtUninvokable private native void writeTo_native_ref_QDataStream(long __this__nativeId, long arg__1); /** *

See QPainterPath::operator=(QPainterPath)

*/ @QtUninvokable public final void assign(io.qt.gui.@NonNull QPainterPath other){ assign_native_cref_QPainterPath(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other)); } @QtUninvokable private native void assign_native_cref_QPainterPath(long __this__nativeId, long other); /** *

See QPainterPath::operator==(QPainterPath)const

*/ @QtUninvokable public final boolean equals(io.qt.gui.@NonNull QPainterPath other){ return equals_native_cref_QPainterPath_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other)); } @QtUninvokable private native boolean equals_native_cref_QPainterPath_constfct(long __this__nativeId, long other); /** *

See operator>>(QDataStream&,QPainterPath&)

*/ @QtUninvokable public void readFrom(io.qt.core.@StrictNonNull QDataStream arg__1){ java.util.Objects.requireNonNull(arg__1, "Argument 'arg__1': null not expected."); readFrom_native_ref_QDataStream(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(arg__1)); } @QtUninvokable private native void readFrom_native_ref_QDataStream(long __this__nativeId, long arg__1); /** *

See QPainterPath::percentAtLength(qreal)const

*/ @QtUninvokable public final double percentAtLength(double t){ return percentAtLength_native_qreal_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), t); } @QtUninvokable private native double percentAtLength_native_qreal_constfct(long __this__nativeId, double t); /** *

See QPainterPath::pointAtPercent(qreal)const

*/ @QtUninvokable public final io.qt.core.@NonNull QPointF pointAtPercent(double t){ return pointAtPercent_native_qreal_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), t); } @QtUninvokable private native io.qt.core.QPointF pointAtPercent_native_qreal_constfct(long __this__nativeId, double t); /** *

See QPainterPath::quadTo(QPointF,QPointF)

*/ @QtUninvokable public final void quadTo(io.qt.core.@NonNull QPointF ctrlPt, io.qt.core.@NonNull QPointF endPt){ quadTo_native_cref_QPointF_cref_QPointF(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(ctrlPt), QtJambi_LibraryUtilities.internal.checkedNativeId(endPt)); } @QtUninvokable private native void quadTo_native_cref_QPointF_cref_QPointF(long __this__nativeId, long ctrlPt, long endPt); /** *

See QPainterPath::quadTo(qreal,qreal,qreal,qreal)

*/ @QtUninvokable public final void quadTo(double ctrlPtx, double ctrlPty, double endPtx, double endPty){ quadTo_native_qreal_qreal_qreal_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), ctrlPtx, ctrlPty, endPtx, endPty); } @QtUninvokable private native void quadTo_native_qreal_qreal_qreal_qreal(long __this__nativeId, double ctrlPtx, double ctrlPty, double endPtx, double endPty); /** *

See QPainterPath::reserve(int)

*/ @QtUninvokable public final void reserve(int size){ reserve_native_int(QtJambi_LibraryUtilities.internal.nativeId(this), size); } @QtUninvokable private native void reserve_native_int(long __this__nativeId, int size); /** *

See QPainterPath::setElementPositionAt(int,qreal,qreal)

*/ @QtUninvokable public final void setElementPositionAt(int i, double x, double y){ setElementPositionAt_native_int_qreal_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), i, x, y); } @QtUninvokable private native void setElementPositionAt_native_int_qreal_qreal(long __this__nativeId, int i, double x, double y); /** *

See QPainterPath::setFillRule(Qt::FillRule)

*/ @QtUninvokable public final void setFillRule(io.qt.core.Qt.@NonNull FillRule fillRule){ setFillRule_native_Qt_FillRule(QtJambi_LibraryUtilities.internal.nativeId(this), fillRule.value()); } @QtUninvokable private native void setFillRule_native_Qt_FillRule(long __this__nativeId, int fillRule); /** *

See QPainterPath::simplified()const

*/ @QtUninvokable public final io.qt.gui.@NonNull QPainterPath simplified(){ return simplified_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native io.qt.gui.QPainterPath simplified_native_constfct(long __this__nativeId); /** *

See QPainterPath::slopeAtPercent(qreal)const

*/ @QtUninvokable public final double slopeAtPercent(double t){ return slopeAtPercent_native_qreal_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), t); } @QtUninvokable private native double slopeAtPercent_native_qreal_constfct(long __this__nativeId, double t); /** *

See QPainterPath::subtracted(QPainterPath)const

*/ @QtUninvokable public final io.qt.gui.@NonNull QPainterPath subtracted(io.qt.gui.@NonNull QPainterPath r){ return subtracted_native_cref_QPainterPath_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(r)); } @QtUninvokable private native io.qt.gui.QPainterPath subtracted_native_cref_QPainterPath_constfct(long __this__nativeId, long r); /** *

See QPainterPath::swap(QPainterPath&)

*/ @QtUninvokable public final void swap(io.qt.gui.@StrictNonNull QPainterPath other){ java.util.Objects.requireNonNull(other, "Argument 'other': null not expected."); swap_native_ref_QPainterPath(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(other)); } @QtUninvokable private native void swap_native_ref_QPainterPath(long __this__nativeId, long other); /** *

See QPainterPath::toFillPolygon(QTransform)const

*/ @QtUninvokable public final io.qt.gui.@NonNull QPolygonF toFillPolygon(io.qt.gui.@NonNull QTransform matrix){ return toFillPolygon_native_cref_QTransform_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(matrix)); } @QtUninvokable private native io.qt.gui.QPolygonF toFillPolygon_native_cref_QTransform_constfct(long __this__nativeId, long matrix); /** *

See QPainterPath::toFillPolygons(QTransform)const

*/ @QtUninvokable public final io.qt.core.@NonNull QList toFillPolygons(io.qt.gui.@NonNull QTransform matrix){ return toFillPolygons_native_cref_QTransform_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(matrix)); } @QtUninvokable private native io.qt.core.QList toFillPolygons_native_cref_QTransform_constfct(long __this__nativeId, long matrix); /** *

See QPainterPath::toReversed()const

*/ @QtUninvokable public final io.qt.gui.@NonNull QPainterPath toReversed(){ return toReversed_native_constfct(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native io.qt.gui.QPainterPath toReversed_native_constfct(long __this__nativeId); /** *

See QPainterPath::toSubpathPolygons(QTransform)const

*/ @QtUninvokable public final io.qt.core.@NonNull QList toSubpathPolygons(io.qt.gui.@NonNull QTransform matrix){ return toSubpathPolygons_native_cref_QTransform_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(matrix)); } @QtUninvokable private native io.qt.core.QList toSubpathPolygons_native_cref_QTransform_constfct(long __this__nativeId, long matrix); /** *

See QPainterPath::translate(QPointF)

*/ @QtUninvokable public final void translate(io.qt.core.@NonNull QPointF offset){ translate_native_cref_QPointF(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(offset)); } @QtUninvokable private native void translate_native_cref_QPointF(long __this__nativeId, long offset); /** *

See QPainterPath::translate(qreal,qreal)

*/ @QtUninvokable public final void translate(double dx, double dy){ translate_native_qreal_qreal(QtJambi_LibraryUtilities.internal.nativeId(this), dx, dy); } @QtUninvokable private native void translate_native_qreal_qreal(long __this__nativeId, double dx, double dy); /** *

See QPainterPath::translated(QPointF)const

*/ @QtUninvokable public final io.qt.gui.@NonNull QPainterPath translated(io.qt.core.@NonNull QPointF offset){ return translated_native_cref_QPointF_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(offset)); } @QtUninvokable private native io.qt.gui.QPainterPath translated_native_cref_QPointF_constfct(long __this__nativeId, long offset); /** *

See QPainterPath::translated(qreal,qreal)const

*/ @QtUninvokable public final io.qt.gui.@NonNull QPainterPath translated(double dx, double dy){ return translated_native_qreal_qreal_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), dx, dy); } @QtUninvokable private native io.qt.gui.QPainterPath translated_native_qreal_qreal_constfct(long __this__nativeId, double dx, double dy); /** *

See QPainterPath::united(QPainterPath)const

*/ @QtUninvokable public final io.qt.gui.@NonNull QPainterPath united(io.qt.gui.@NonNull QPainterPath r){ return united_native_cref_QPainterPath_constfct(QtJambi_LibraryUtilities.internal.nativeId(this), QtJambi_LibraryUtilities.internal.checkedNativeId(r)); } @QtUninvokable private native io.qt.gui.QPainterPath united_native_cref_QPainterPath_constfct(long __this__nativeId, long r); /** * Constructor for internal use only. * @param p expected to be null. * @hidden */ @NativeAccess protected QPainterPath(QPrivateConstructor p) { super(p); } /** *

See QPainterPath::operator==(QPainterPath)const

*/ @Override @QtUninvokable public boolean equals(Object other) { if (other instanceof io.qt.gui.QPainterPath) { return equals((io.qt.gui.QPainterPath) other); } return false; } /** * Returns the objects's hash code computed by qHash(QPainterPath). */ @QtUninvokable @Override public int hashCode() { return hashCode_native(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private native static int hashCode_native(long __this_nativeId); /** *

See operator<<(QDebug,QPainterPath)

*/ @QtUninvokable @Override public @NonNull String toString() { return toString_native(QtJambi_LibraryUtilities.internal.nativeId(this)); } @QtUninvokable private static native String toString_native(long __this_nativeId); /** *

Creates and returns a copy of this object.

See QPainterPath::QPainterPath(QPainterPath)

*/ @QtUninvokable @Override public QPainterPath clone() { return clone_native(QtJambi_LibraryUtilities.internal.nativeId(this)); } private static native QPainterPath clone_native(long __this_nativeId); /** *

Overloaded constructor for {@link #QPainterPath(io.qt.core.QPointF)}.

*/ public QPainterPath(io.qt.core.@NonNull QPoint startPoint) { this(new io.qt.core.QPointF(startPoint)); } /** *

Overloaded function for {@link #addEllipse(io.qt.core.QPointF, double, double)}.

*/ @QtUninvokable public final void addEllipse(io.qt.core.@NonNull QPoint center, double rx, double ry) { addEllipse(new io.qt.core.QPointF(center), rx, ry); } /** *

Overloaded function for {@link #addEllipse(io.qt.core.QRectF)}.

*/ @QtUninvokable public final void addEllipse(io.qt.core.@NonNull QRect rect) { addEllipse(new io.qt.core.QRectF(rect)); } /** *

Overloaded function for {@link #addRect(io.qt.core.QRectF)}.

*/ @QtUninvokable public final void addRect(io.qt.core.@NonNull QRect rect) { addRect(new io.qt.core.QRectF(rect)); } /** *

Overloaded function for {@link #addRegion(io.qt.gui.QRegion)}.

*/ @QtUninvokable public final void addRegion(io.qt.core.@NonNull QRect region) { addRegion(new io.qt.gui.QRegion(region)); } /** *

Overloaded function for {@link #addRegion(io.qt.gui.QRegion)}.

*/ @QtUninvokable public final void addRegion(io.qt.gui.@NonNull QPolygon region) { addRegion(new io.qt.gui.QRegion(region)); } /** *

Overloaded function for {@link #addRegion(io.qt.gui.QRegion)}.

*/ @QtUninvokable public final void addRegion(io.qt.gui.@NonNull QBitmap region) { addRegion(new io.qt.gui.QRegion(region)); } /** *

Overloaded function for {@link #addRoundedRect(io.qt.core.QRectF, double, double, io.qt.core.Qt.SizeMode)} * with mode = io.qt.core.Qt.SizeMode.AbsoluteSize.

*/ @QtUninvokable public final void addRoundedRect(io.qt.core.@NonNull QRectF rect, double xRadius, double yRadius) { addRoundedRect(rect, xRadius, yRadius, io.qt.core.Qt.SizeMode.AbsoluteSize); } /** *

Overloaded function for {@link #addRoundedRect(io.qt.core.QRect, double, double, io.qt.core.Qt.SizeMode)} * with mode = io.qt.core.Qt.SizeMode.AbsoluteSize.

*/ @QtUninvokable public final void addRoundedRect(io.qt.core.@NonNull QRect rect, double xRadius, double yRadius) { addRoundedRect(rect, xRadius, yRadius, io.qt.core.Qt.SizeMode.AbsoluteSize); } /** *

Overloaded function for {@link #addRoundedRect(io.qt.core.QRectF, double, double, io.qt.core.Qt.SizeMode)}.

*/ @QtUninvokable public final void addRoundedRect(io.qt.core.@NonNull QRect rect, double xRadius, double yRadius, io.qt.core.Qt.@NonNull SizeMode mode) { addRoundedRect(new io.qt.core.QRectF(rect), xRadius, yRadius, mode); } /** *

Overloaded function for {@link #addRoundedRect(double, double, double, double, double, double, io.qt.core.Qt.SizeMode)} * with mode = io.qt.core.Qt.SizeMode.AbsoluteSize.

*/ @QtUninvokable public final void addRoundedRect(double x, double y, double w, double h, double xRadius, double yRadius) { addRoundedRect(x, y, w, h, xRadius, yRadius, io.qt.core.Qt.SizeMode.AbsoluteSize); } /** *

Overloaded function for {@link #addText(io.qt.core.QPointF, io.qt.gui.QFont, java.lang.String)}.

*/ @QtUninvokable public final void addText(io.qt.core.@NonNull QPoint point, io.qt.gui.@NonNull QFont f, java.lang.@NonNull String text) { addText(new io.qt.core.QPointF(point), f, text); } /** *

Overloaded function for {@link #addText(io.qt.core.QPointF, io.qt.gui.QFont, java.lang.String)}.

*/ @QtUninvokable public final void addText(io.qt.core.@NonNull QPointF point, java.lang.@NonNull String f, java.lang.@NonNull String text) { addText(point, new io.qt.gui.QFont(f), text); } /** *

Overloaded function for {@link #addText(io.qt.core.QPointF, io.qt.gui.QFont, java.lang.String)}.

*/ @QtUninvokable public final void addText(io.qt.core.@NonNull QPoint point, java.lang.@NonNull String f, java.lang.@NonNull String text) { addText(new io.qt.core.QPointF(point), new io.qt.gui.QFont(f), text); } /** *

Overloaded function for {@link #addText(double, double, io.qt.gui.QFont, java.lang.String)}.

*/ @QtUninvokable public final void addText(double x, double y, java.lang.@NonNull String f, java.lang.@NonNull String text) { addText(x, y, new io.qt.gui.QFont(f), text); } /** *

Overloaded function for {@link #arcMoveTo(io.qt.core.QRectF, double)}.

*/ @QtUninvokable public final void arcMoveTo(io.qt.core.@NonNull QRect rect, double angle) { arcMoveTo(new io.qt.core.QRectF(rect), angle); } /** *

Overloaded function for {@link #arcTo(io.qt.core.QRectF, double, double)}.

*/ @QtUninvokable public final void arcTo(io.qt.core.@NonNull QRect rect, double startAngle, double arcLength) { arcTo(new io.qt.core.QRectF(rect), startAngle, arcLength); } /** *

Overloaded function for {@link #contains(io.qt.core.QPointF)}.

*/ @QtUninvokable public final boolean contains(io.qt.core.@NonNull QPoint pt) { return contains(new io.qt.core.QPointF(pt)); } /** *

Overloaded function for {@link #contains(io.qt.core.QRectF)}.

*/ @QtUninvokable public final boolean contains(io.qt.core.@NonNull QRect rect) { return contains(new io.qt.core.QRectF(rect)); } /** *

Overloaded function for {@link #cubicTo(io.qt.core.QPointF, io.qt.core.QPointF, io.qt.core.QPointF)}.

*/ @QtUninvokable public final void cubicTo(io.qt.core.@NonNull QPoint ctrlPt1, io.qt.core.@NonNull QPointF ctrlPt2, io.qt.core.@NonNull QPointF endPt) { cubicTo(new io.qt.core.QPointF(ctrlPt1), ctrlPt2, endPt); } /** *

Overloaded function for {@link #cubicTo(io.qt.core.QPointF, io.qt.core.QPointF, io.qt.core.QPointF)}.

*/ @QtUninvokable public final void cubicTo(io.qt.core.@NonNull QPointF ctrlPt1, io.qt.core.@NonNull QPoint ctrlPt2, io.qt.core.@NonNull QPointF endPt) { cubicTo(ctrlPt1, new io.qt.core.QPointF(ctrlPt2), endPt); } /** *

Overloaded function for {@link #cubicTo(io.qt.core.QPointF, io.qt.core.QPointF, io.qt.core.QPointF)}.

*/ @QtUninvokable public final void cubicTo(io.qt.core.@NonNull QPoint ctrlPt1, io.qt.core.@NonNull QPoint ctrlPt2, io.qt.core.@NonNull QPointF endPt) { cubicTo(new io.qt.core.QPointF(ctrlPt1), new io.qt.core.QPointF(ctrlPt2), endPt); } /** *

Overloaded function for {@link #cubicTo(io.qt.core.QPointF, io.qt.core.QPointF, io.qt.core.QPointF)}.

*/ @QtUninvokable public final void cubicTo(io.qt.core.@NonNull QPointF ctrlPt1, io.qt.core.@NonNull QPointF ctrlPt2, io.qt.core.@NonNull QPoint endPt) { cubicTo(ctrlPt1, ctrlPt2, new io.qt.core.QPointF(endPt)); } /** *

Overloaded function for {@link #cubicTo(io.qt.core.QPointF, io.qt.core.QPointF, io.qt.core.QPointF)}.

*/ @QtUninvokable public final void cubicTo(io.qt.core.@NonNull QPoint ctrlPt1, io.qt.core.@NonNull QPointF ctrlPt2, io.qt.core.@NonNull QPoint endPt) { cubicTo(new io.qt.core.QPointF(ctrlPt1), ctrlPt2, new io.qt.core.QPointF(endPt)); } /** *

Overloaded function for {@link #cubicTo(io.qt.core.QPointF, io.qt.core.QPointF, io.qt.core.QPointF)}.

*/ @QtUninvokable public final void cubicTo(io.qt.core.@NonNull QPointF ctrlPt1, io.qt.core.@NonNull QPoint ctrlPt2, io.qt.core.@NonNull QPoint endPt) { cubicTo(ctrlPt1, new io.qt.core.QPointF(ctrlPt2), new io.qt.core.QPointF(endPt)); } /** *

Overloaded function for {@link #cubicTo(io.qt.core.QPointF, io.qt.core.QPointF, io.qt.core.QPointF)}.

*/ @QtUninvokable public final void cubicTo(io.qt.core.@NonNull QPoint ctrlPt1, io.qt.core.@NonNull QPoint ctrlPt2, io.qt.core.@NonNull QPoint endPt) { cubicTo(new io.qt.core.QPointF(ctrlPt1), new io.qt.core.QPointF(ctrlPt2), new io.qt.core.QPointF(endPt)); } /** *

Overloaded function for {@link #intersects(io.qt.core.QRectF)}.

*/ @QtUninvokable public final boolean intersects(io.qt.core.@NonNull QRect rect) { return intersects(new io.qt.core.QRectF(rect)); } /** *

Overloaded function for {@link #lineTo(io.qt.core.QPointF)}.

*/ @QtUninvokable public final void lineTo(io.qt.core.@NonNull QPoint p) { lineTo(new io.qt.core.QPointF(p)); } /** *

Overloaded function for {@link #moveTo(io.qt.core.QPointF)}.

*/ @QtUninvokable public final void moveTo(io.qt.core.@NonNull QPoint p) { moveTo(new io.qt.core.QPointF(p)); } /** *

Overloaded function for {@link #quadTo(io.qt.core.QPointF, io.qt.core.QPointF)}.

*/ @QtUninvokable public final void quadTo(io.qt.core.@NonNull QPoint ctrlPt, io.qt.core.@NonNull QPointF endPt) { quadTo(new io.qt.core.QPointF(ctrlPt), endPt); } /** *

Overloaded function for {@link #quadTo(io.qt.core.QPointF, io.qt.core.QPointF)}.

*/ @QtUninvokable public final void quadTo(io.qt.core.@NonNull QPointF ctrlPt, io.qt.core.@NonNull QPoint endPt) { quadTo(ctrlPt, new io.qt.core.QPointF(endPt)); } /** *

Overloaded function for {@link #quadTo(io.qt.core.QPointF, io.qt.core.QPointF)}.

*/ @QtUninvokable public final void quadTo(io.qt.core.@NonNull QPoint ctrlPt, io.qt.core.@NonNull QPoint endPt) { quadTo(new io.qt.core.QPointF(ctrlPt), new io.qt.core.QPointF(endPt)); } /** *

Overloaded function for {@link #toFillPolygon(io.qt.gui.QTransform)} * with matrix = new io.qt.gui.QTransform().

*/ @QtUninvokable public final io.qt.gui.@NonNull QPolygonF toFillPolygon() { return toFillPolygon(new io.qt.gui.QTransform()); } /** *

Overloaded function for {@link #toFillPolygons(io.qt.gui.QTransform)} * with matrix = new io.qt.gui.QTransform().

*/ @QtUninvokable public final io.qt.core.@NonNull QList toFillPolygons() { return toFillPolygons(new io.qt.gui.QTransform()); } /** *

Overloaded function for {@link #toSubpathPolygons(io.qt.gui.QTransform)} * with matrix = new io.qt.gui.QTransform().

*/ @QtUninvokable public final io.qt.core.@NonNull QList toSubpathPolygons() { return toSubpathPolygons(new io.qt.gui.QTransform()); } /** *

Overloaded function for {@link #translate(io.qt.core.QPointF)}.

*/ @QtUninvokable public final void translate(io.qt.core.@NonNull QPoint offset) { translate(new io.qt.core.QPointF(offset)); } /** *

Overloaded function for {@link #translated(io.qt.core.QPointF)}.

*/ @QtUninvokable public final io.qt.gui.@NonNull QPainterPath translated(io.qt.core.@NonNull QPoint offset) { return translated(new io.qt.core.QPointF(offset)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy