Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
QQuickEllipseShape Class Reference

#include <qquickellipseshape_p.h>

Inheritance diagram for QQuickEllipseShape:
Collaboration diagram for QQuickEllipseShape:

Public Types

enum class  BorderMode { Inside , Middle , Outside }
Public Types inherited from QQuickShape
enum  RendererType {
  UnknownRenderer , GeometryRenderer , NvprRenderer , SoftwareRenderer ,
  CurveRenderer
}
enum  Status { Null , Ready , Processing }
enum  ContainsMode { BoundingRectContains , FillContains }
enum  FillMode { NoResize , PreserveAspectFit , PreserveAspectCrop , Stretch }
enum  HAlignment { AlignLeft = Qt::AlignLeft , AlignRight = Qt::AlignRight , AlignHCenter = Qt::AlignHCenter }
enum  VAlignment { AlignTop = Qt::AlignTop , AlignBottom = Qt::AlignBottom , AlignVCenter = Qt::AlignVCenter }
Public Types inherited from QQuickItem
enum  Flag {
  ItemClipsChildrenToShape = 0x01 , ItemIsFocusScope = 0x04 , ItemHasContents = 0x08 , ItemAcceptsDrops = 0x10 ,
  ItemIsViewport = 0x20 , ItemObservesViewport = 0x40
}
 \qmltype Item \nativetype QQuickItem \inherits QtObject \inqmlmodule QtQuick More...
enum  ItemChange {
  ItemChildAddedChange , ItemChildRemovedChange , ItemSceneChange , ItemVisibleHasChanged ,
  ItemParentHasChanged , ItemOpacityHasChanged , ItemActiveFocusHasChanged , ItemRotationHasChanged ,
  ItemAntialiasingHasChanged , ItemDevicePixelRatioHasChanged , ItemEnabledHasChanged , ItemScaleHasChanged ,
  ItemTransformHasChanged
}
 Used in conjunction with QQuickItem::itemChange() to notify the item about certain types of changes. More...
enum  TransformOrigin {
  TopLeft , Top , TopRight , Left ,
  Center , Right , BottomLeft , Bottom ,
  BottomRight
}
 \variable QQuickItem::ItemChangeData::realValue The numeric value that has changed: \l {QQuickItem::opacity()}{opacity}, \l {QQuickItem::rotation()}{rotation}, or \l {QQuickItem::scale()}{scale}, or \l {QScreen::devicePixelRatio}{device pixel ratio}. More...

Signals

void innerArcRatioChanged ()
void cornerRadiusChanged ()
void hideLineChanged ()
void startAngleChanged ()
void sweepAngleChanged ()
void strokeColorChanged ()
void strokeWidthChanged ()
void fillColorChanged ()
void joinStyleChanged ()
void capStyleChanged ()
void fillRuleChanged ()
void strokeStyleChanged ()
void dashOffsetChanged ()
void dashPatternChanged ()
void gradientChanged ()
void borderModeChanged ()
Signals inherited from QQuickShape
void rendererChanged ()
void asynchronousChanged ()
void vendorExtensionsEnabledChanged ()
void statusChanged ()
 Q_REVISION (6, 6) void preferredRendererTypeChanged()
 Q_REVISION (6, 6) void boundingRectChanged()
 Q_REVISION (1, 11) void containsModeChanged()
 Q_REVISION (6, 7) void fillModeChanged()
 Q_REVISION (6, 7) void horizontalAlignmentChanged()
 Q_REVISION (6, 7) void verticalAlignmentChanged()
Signals inherited from QQuickItem
void childrenRectChanged (const QRectF &)
void baselineOffsetChanged (qreal)
void stateChanged (const QString &)
void focusChanged (bool)
void activeFocusChanged (bool)
Q_REVISION(6, 7) void focusPolicyChanged(Qt Q_REVISION (2, 1) void activeFocusOnTabChanged(bool)
void parentChanged (QQuickItem *)
void transformOriginChanged (TransformOrigin)
void smoothChanged (bool)
void antialiasingChanged (bool)
void clipChanged (bool)
 Q_REVISION (2, 1) void windowChanged(QQuickWindow *window)
void childrenChanged ()
void opacityChanged ()
void enabledChanged ()
void visibleChanged ()
void visibleChildrenChanged ()
void rotationChanged ()
void scaleChanged ()
void xChanged ()
void yChanged ()
void widthChanged ()
void heightChanged ()
void zChanged ()
void implicitWidthChanged ()
void implicitHeightChanged ()
 Q_REVISION (2, 11) void containmentMaskChanged()
 Q_REVISION (6, 0) void paletteChanged()
 Q_REVISION (6, 0) void paletteCreated()
Signals inherited from QObject
void destroyed (QObject *=nullptr)
 This signal is emitted immediately before the object obj is destroyed, after any instances of QPointer have been notified, and cannot be blocked.
void objectNameChanged (const QString &objectName, QPrivateSignal)
 This signal is emitted after the object's name has been changed.

Public Member Functions

 QQuickEllipseShape (QQuickItem *parent=nullptr)
 \qmltype EllipseShape \inqmlmodule QtQuick.Shapes.DesignHelpers
 ~QQuickEllipseShape () override
qreal sweepAngle () const
 \qmlproperty real QtQuick.Shapes.DesignHelpers::EllipseShape::sweepAngle
void setSweepAngle (qreal sweepAngle)
qreal startAngle () const
 \qmlproperty real QtQuick.Shapes.DesignHelpers::EllipseShape::startAngle
void setStartAngle (qreal startAngle)
qreal dashOffset () const
void setDashOffset (qreal offset)
qreal innerArcRatio () const
 \qmlproperty real QtQuick.Shapes.DesignHelpers::EllipseShape::innerArcRatio
void setInnerArcRatio (qreal innerArcRatio)
qreal cornerRadius () const
 \qmlproperty real QtQuick.Shapes.DesignHelpers::EllipseShape::cornerRadius
void setCornerRadius (qreal cornerRadius)
qreal strokeWidth () const
 \qmlproperty real QtQuick.Shapes.DesignHelpers::EllipseShape::strokeWidth
void setStrokeWidth (qreal width)
bool hideLine () const
void setHideLine (bool hideLine)
QColor fillColor () const
 \qmlproperty color QtQuick.Shapes.DesignHelpers::EllipseShape::fillColor
void setFillColor (const QColor &color)
QColor strokeColor () const
 \qmlproperty color QtQuick.Shapes.DesignHelpers::EllipseShape::strokeColor
void setStrokeColor (const QColor &color)
QQuickShapePath::CapStyle capStyle () const
void setCapStyle (QQuickShapePath::CapStyle style)
QQuickShapePath::JoinStyle joinStyle () const
void setJoinStyle (QQuickShapePath::JoinStyle style)
QQuickShapePath::StrokeStyle strokeStyle () const
void setStrokeStyle (QQuickShapePath::StrokeStyle style)
QQuickShapePath::FillRule fillRule () const
void setFillRule (QQuickShapePath::FillRule fillRule)
QVector< qrealdashPattern () const
void setDashPattern (const QVector< qreal > &array)
QQuickShapeGradientfillGradient () const
 \qmlproperty ShapeGradient QtQuick.Shapes.DesignHelpers::EllipseShape::fillGradient
void setFillGradient (QQuickShapeGradient *fillGradient)
void resetFillGradient ()
BorderMode borderMode () const
 \qmlproperty enumeration QtQuick.Shapes.DesignHelpers::EllipseShape::borderMode
void setBorderMode (BorderMode borderMode)
void resetBorderMode ()
Public Member Functions inherited from QQuickShape
 QQuickShape (QQuickItem *parent=nullptr)
 ~QQuickShape ()
RendererType rendererType () const
 \qmlproperty enumeration QtQuick.Shapes::Shape::rendererType \readonly
bool asynchronous () const
 \qmlproperty bool QtQuick.Shapes::Shape::asynchronous
void setAsynchronous (bool async)
 Q_REVISION (6, 6) RendererType preferredRendererType() const
 Q_REVISION (6, 6) void setPreferredRendererType(RendererType preferredType)
 Q_REVISION (6, 6) QRectF boundingRect() const override
bool vendorExtensionsEnabled () const
 \qmlproperty bool QtQuick.Shapes::Shape::vendorExtensionsEnabled
void setVendorExtensionsEnabled (bool enable)
Status status () const
 \qmlproperty enumeration QtQuick.Shapes::Shape::status \readonly
ContainsMode containsMode () const
 \qmlproperty enumeration QtQuick.Shapes::Shape::containsMode
void setContainsMode (ContainsMode containsMode)
bool contains (const QPointF &point) const override
 \qmlmethod bool QtQuick::Item::contains(point point)
QQmlListProperty< QObjectdata ()
 Q_REVISION (6, 7) FillMode fillMode() const
 Q_REVISION (6, 7) void setFillMode(FillMode new FillMode)
 Q_REVISION (6, 7) HAlignment horizontalAlignment() const
 Q_REVISION (6, 7) void setHorizontalAlignment(HAlignment new HorizontalAlignment)
 Q_REVISION (6, 7) VAlignment verticalAlignment() const
 Q_REVISION (6, 7) void setVerticalAlignment(VAlignment new VerticalAlignment)
Public Member Functions inherited from QQuickItem
 QQuickItem (QQuickItem *parent=nullptr)
 Constructs a QQuickItem with the given parent.
 ~QQuickItem () override
 Destroys the QQuickItem.
QQuickWindowwindow () const
 Returns the window in which this item is rendered.
QQuickItemparentItem () const
void setParentItem (QQuickItem *parent)
void stackBefore (const QQuickItem *)
 Moves this item to the index before the specified sibling item within the list of children.
void stackAfter (const QQuickItem *)
 Moves this item to the index after the specified sibling item within the list of children.
QRectF childrenRect ()
 \qmlpropertygroup QtQuick::Item::childrenRect \qmlproperty real QtQuick::Item::childrenRect.x \qmlproperty real QtQuick::Item::childrenRect.y \qmlproperty real QtQuick::Item::childrenRect.width \qmlproperty real QtQuick::Item::childrenRect.height \readonly
QList< QQuickItem * > childItems () const
 Returns the children of this item.
bool clip () const
 \qmlproperty bool QtQuick::Item::clip This property holds whether clipping is enabled.
void setClip (bool)
QString state () const
 \qmlproperty string QtQuick::Item::state
void setState (const QString &)
qreal baselineOffset () const
 \qmlproperty int QtQuick::Item::baselineOffset
void setBaselineOffset (qreal)
QQmlListProperty< QQuickTransformtransform ()
qreal x () const
qreal y () const
QPointF position () const
void setX (qreal)
void setY (qreal)
void setPosition (const QPointF &)
QBindable< qrealbindableX ()
QBindable< qrealbindableY ()
qreal width () const
void setWidth (qreal)
void resetWidth ()
void setImplicitWidth (qreal)
qreal implicitWidth () const
 Returns the width of the item that is implied by other properties that determine the content.
QBindable< qrealbindableWidth ()
qreal height () const
void setHeight (qreal)
void resetHeight ()
void setImplicitHeight (qreal)
qreal implicitHeight () const
QBindable< qrealbindableHeight ()
QSizeF size () const
void setSize (const QSizeF &size)
TransformOrigin transformOrigin () const
void setTransformOrigin (TransformOrigin)
QPointF transformOriginPoint () const
void setTransformOriginPoint (const QPointF &)
qreal z () const
void setZ (qreal)
qreal rotation () const
void setRotation (qreal)
qreal scale () const
void setScale (qreal)
qreal opacity () const
void setOpacity (qreal)
bool isVisible () const
void setVisible (bool)
bool isEnabled () const
void setEnabled (bool)
bool smooth () const
void setSmooth (bool)
bool activeFocusOnTab () const
 \qmlproperty bool QtQuick::Item::activeFocusOnTab
void setActiveFocusOnTab (bool)
bool antialiasing () const
void setAntialiasing (bool)
void resetAntialiasing ()
Flags flags () const
 Returns the item flags for this item.
void setFlag (Flag flag, bool enabled=true)
 Enables the specified flag for this item if enabled is true; if enabled is false, the flag is disabled.
void setFlags (Flags flags)
 Enables the specified flags for this item.
virtual QRectF boundingRect () const
 Returns the extents of the item in its own coordinate system: a rectangle from {0, 0} to \l width() and \l height().
virtual QRectF clipRect () const
 Returns the rectangular area within this item that is currently visible in \l viewportItem(), if there is a viewport and the \l ItemObservesViewport flag is set; otherwise, the extents of this item in its own coordinate system: a rectangle from {0, 0} to \l width() and \l height().
QQuickItemviewportItem () const
 If the \l ItemObservesViewport flag is set, returns the nearest parent with the \l ItemIsViewport flag.
bool hasActiveFocus () const
bool hasFocus () const
void setFocus (bool)
void setFocus (bool focus, Qt::FocusReason reason)
bool isFocusScope () const
 Returns true if this item is a focus scope, and false otherwise.
QQuickItemscopedFocusItem () const
 If this item is a focus scope, this returns the item in its focus chain that currently has focus.
Qt::FocusPolicy focusPolicy () const
void setFocusPolicy (Qt::FocusPolicy policy)
 Sets the focus policy of this item to policy.
bool isAncestorOf (const QQuickItem *child) const
 Returns true if this item is an ancestor of child (i.e., if this item is child's parent, or one of child's parent's ancestors).
Qt::MouseButtons acceptedMouseButtons () const
 Returns the mouse buttons accepted by this item.
void setAcceptedMouseButtons (Qt::MouseButtons buttons)
 Sets the mouse buttons accepted by this item to buttons.
bool acceptHoverEvents () const
 Returns whether hover events are accepted by this item.
void setAcceptHoverEvents (bool enabled)
 If enabled is true, this sets the item to accept hover events; otherwise, hover events are not accepted by this item.
bool acceptTouchEvents () const
 Returns whether touch events are accepted by this item.
void setAcceptTouchEvents (bool accept)
 If enabled is true, this sets the item to accept touch events; otherwise, touch events are not accepted by this item.
bool isUnderMouse () const
void grabMouse ()
void ungrabMouse ()
bool keepMouseGrab () const
 Returns whether mouse input should exclusively remain with this item.
void setKeepMouseGrab (bool)
 Sets whether the mouse input should remain exclusively with this item.
bool filtersChildMouseEvents () const
 Returns whether pointer events intended for this item's children should be filtered through this item.
void setFiltersChildMouseEvents (bool filter)
 Sets whether pointer events intended for this item's children should be filtered through this item.
void grabTouchPoints (const QList< int > &ids)
void ungrabTouchPoints ()
bool keepTouchGrab () const
 Returns whether the touch points grabbed by this item should exclusively remain with this item.
void setKeepTouchGrab (bool)
 Sets whether the touch points grabbed by this item should remain exclusively with this item.
 Q_REVISION (2, 4) Q_INVOKABLE bool grabToImage(const QJSValue &callback
QSharedPointer< QQuickItemGrabResultgrabToImage (const QSize &targetSize=QSize())
 Grabs the item into an in-memory image.
QObjectcontainmentMask () const
void setContainmentMask (QObject *mask)
QTransform itemTransform (QQuickItem *, bool *) const
 \qmlmethod point QtQuick::Item::mapFromItem(Item item, real x, real y) \qmlmethod point QtQuick::Item::mapFromItem(Item item, point p) \qmlmethod rect QtQuick::Item::mapFromItem(Item item, real x, real y, real width, real height) \qmlmethod rect QtQuick::Item::mapFromItem(Item item, rect r)
QPointF mapToScene (const QPointF &point) const
 Maps the given point in this item's coordinate system to the equivalent point within the scene's coordinate system, and returns the mapped coordinate.
QRectF mapRectToItem (const QQuickItem *item, const QRectF &rect) const
 Maps the given rect in this item's coordinate system to the equivalent rectangular area within item's coordinate system, and returns the mapped rectangle value.
QRectF mapRectToScene (const QRectF &rect) const
 Maps the given rect in this item's coordinate system to the equivalent rectangular area within the scene's coordinate system, and returns the mapped rectangle value.
QPointF mapFromScene (const QPointF &point) const
 Maps the given point in the scene's coordinate system to the equivalent point within this item's coordinate system, and returns the mapped coordinate.
QRectF mapRectFromItem (const QQuickItem *item, const QRectF &rect) const
 Maps the given rect in item's coordinate system to the equivalent rectangular area within this item's coordinate system, and returns the mapped rectangle value.
QRectF mapRectFromScene (const QRectF &rect) const
 Maps the given rect in the scene's coordinate system to the equivalent rectangular area within this item's coordinate system, and returns the mapped rectangle value.
void polish ()
 Schedules a polish event for this item.
Q_INVOKABLE QPointF mapFromItem (const QQuickItem *item, const QPointF &point) const
 Maps the given point in item's coordinate system to the equivalent point within this item's coordinate system, and returns the mapped coordinate.
Q_INVOKABLE QPointF mapFromItem (const QQuickItem *item, qreal x, qreal y)
Q_INVOKABLE QRectF mapFromItem (const QQuickItem *item, const QRectF &rect) const
Q_INVOKABLE QRectF mapFromItem (const QQuickItem *item, qreal x, qreal y, qreal width, qreal height) const
Q_INVOKABLE QPointF mapToItem (const QQuickItem *item, const QPointF &point) const
 Maps the given point in this item's coordinate system to the equivalent point within item's coordinate system, and returns the mapped coordinate.
Q_INVOKABLE QPointF mapToItem (const QQuickItem *item, qreal x, qreal y)
Q_INVOKABLE QRectF mapToItem (const QQuickItem *item, const QRectF &rect) const
Q_INVOKABLE QRectF mapToItem (const QQuickItem *item, qreal x, qreal y, qreal width, qreal height) const
 Q_REVISION (2, 7) Q_INVOKABLE QPointF mapFromGlobal(qreal x
 Q_REVISION (2, 7) Q_INVOKABLE QPointF mapFromGlobal(const QPointF &point) const
 Q_REVISION (2, 7) Q_INVOKABLE QPointF mapToGlobal(qreal x
 Q_REVISION (2, 7) Q_INVOKABLE QPointF mapToGlobal(const QPointF &point) const
Q_INVOKABLE void forceActiveFocus ()
 \qmlmethod point QtQuick::Item::mapToItem(Item item, real x, real y) \qmlmethod point QtQuick::Item::mapToItem(Item item, point p) \qmlmethod rect QtQuick::Item::mapToItem(Item item, real x, real y, real width, real height) \qmlmethod rect QtQuick::Item::mapToItem(Item item, rect r)
Q_INVOKABLE void forceActiveFocus (Qt::FocusReason reason)
 \qmlmethod QtQuick::Item::forceActiveFocus(Qt::FocusReason reason) This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Forces active focus on the item with the given reason.
 Q_REVISION (2, 1) Q_INVOKABLE QQuickItem *nextItemInFocusChain(bool forward
Q_INVOKABLE QQuickItemchildAt (qreal x, qreal y) const
 \qmlmethod Item QtQuick::Item::childAt(real x, real y)
 Q_REVISION (6, 3) Q_INVOKABLE void ensurePolished()
 Q_REVISION (6, 3) Q_INVOKABLE void dumpItemTree() const
virtual bool isTextureProvider () const
 Returns true if this item is a texture provider.
virtual QSGTextureProvidertextureProvider () const
 Returns the texture provider for an item.
Public Member Functions inherited from QObject
Q_INVOKABLE QObject (QObject *parent=nullptr)
 Constructs an object with parent object parent.
virtual ~QObject ()
 Destroys the object, deleting all its child objects.
virtual bool eventFilter (QObject *watched, QEvent *event)
 Filters events if this object has been installed as an event filter for the watched object.
QString objectName () const
Q_WEAK_OVERLOAD void setObjectName (const QString &name)
 Sets the object's name to name.
void setObjectName (QAnyStringView name)
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
QBindable< QStringbindableObjectName ()
bool isWidgetType () const
 Returns true if the object is a widget; otherwise returns false.
bool isWindowType () const
 Returns true if the object is a window; otherwise returns false.
bool isQuickItemType () const
 Returns true if the object is a QQuickItem; otherwise returns false.
bool isQmlObjectType () const
 Returns whether the object has been created by the QML engine or ownership has been explicitly set via QJSEngine::setObjectOwnership().
bool signalsBlocked () const noexcept
 Returns true if signals are blocked; otherwise returns false.
bool blockSignals (bool b) noexcept
 If block is true, signals emitted by this object are blocked (i.e., emitting a signal will not invoke anything connected to it).
QThreadthread () const
 Returns the thread in which the object lives.
bool moveToThread (QThread *thread QT6_DECL_NEW_OVERLOAD_TAIL)
 Changes the thread affinity for this object and its children and returns true on success.
int startTimer (int interval, Qt::TimerType timerType=Qt::CoarseTimer)
 This is an overloaded function that will start a timer of type timerType and a timeout of interval milliseconds.
int startTimer (std::chrono::nanoseconds time, Qt::TimerType timerType=Qt::CoarseTimer)
void killTimer (int id)
 Kills the timer with timer identifier, id.
void killTimer (Qt::TimerId id)
template<typename T>
findChild (QAnyStringView aName, Qt::FindChildOptions options=Qt::FindChildrenRecursively) const
 Returns the child of this object that can be cast into type T and that is called name, or \nullptr if there is no such object.
template<typename T>
QList< T > findChildren (QAnyStringView aName, Qt::FindChildOptions options=Qt::FindChildrenRecursively) const
 Returns all children of this object with the given name that can be cast to type T, or an empty list if there are no such objects.
template<typename T>
findChild (Qt::FindChildOptions options=Qt::FindChildrenRecursively) const
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
template<typename T>
QList< T > findChildren (Qt::FindChildOptions options=Qt::FindChildrenRecursively) const
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
const QObjectListchildren () const
 Returns a list of child objects.
void setParent (QObject *parent)
 Makes the object a child of parent.
void installEventFilter (QObject *filterObj)
 Installs an event filter filterObj on this object.
void removeEventFilter (QObject *obj)
 Removes an event filter object obj from this object.
QMetaObject::Connection connect (const QObject *sender, const char *signal, const char *member, Qt::ConnectionType type=Qt::AutoConnection) const
bool disconnect (const char *signal=nullptr, const QObject *receiver=nullptr, const char *member=nullptr) const
bool disconnect (const QObject *receiver, const char *member=nullptr) const
void dumpObjectTree () const
 Dumps a tree of children to the debug output.
void dumpObjectInfo () const
 Dumps information about signal connections, etc.
bool setProperty (const char *name, const QVariant &value)
 Sets the value of the object's name property to value.
bool setProperty (const char *name, QVariant &&value)
QVariant property (const char *name) const
 Returns the value of the object's name property.
QList< QByteArraydynamicPropertyNames () const
QBindingStoragebindingStorage ()
const QBindingStoragebindingStorage () const
QObjectparent () const
 Returns a pointer to the parent object.
bool inherits (const char *classname) const
 Returns true if this object is an instance of a class that inherits className or a QObject subclass that inherits className; otherwise returns false.
Public Member Functions inherited from QQmlParserStatus
 QQmlParserStatus ()
virtual ~QQmlParserStatus ()

Protected Member Functions

void itemChange (ItemChange change, const ItemChangeData &value) override
 Called when change occurs for this item.
Protected Member Functions inherited from QQuickShape
 QQuickShape (QQuickShapePrivate &dd, QQuickItem *parent)
QSGNodeupdatePaintNode (QSGNode *node, UpdatePaintNodeData *) override
 Called on the render thread when it is time to sync the state of the item with the scene graph.
void updatePolish () override
 This function should perform any layout as required for this item.
void itemChange (ItemChange change, const ItemChangeData &data) override
 Called when change occurs for this item.
void componentComplete () override
 \reimp Derived classes should call the base class method before adding their own actions to perform at componentComplete.
void classBegin () override
 \reimp Derived classes should call the base class method before adding their own action to perform at classBegin.
Protected Member Functions inherited from QQuickItem
bool event (QEvent *) override
 \reimp
bool isComponentComplete () const
 Returns true if construction of the QML component is complete; otherwise returns false.
virtual void geometryChange (const QRectF &newGeometry, const QRectF &oldGeometry)
bool widthValid () const
 Returns whether the width property has been set explicitly.
bool heightValid () const
 Returns whether the height property has been set explicitly.
void setImplicitSize (qreal, qreal)
virtual void keyPressEvent (QKeyEvent *event)
 This event handler can be reimplemented in a subclass to receive key press events for an item.
virtual void keyReleaseEvent (QKeyEvent *event)
 This event handler can be reimplemented in a subclass to receive key release events for an item.
virtual void focusInEvent (QFocusEvent *)
 This event handler can be reimplemented in a subclass to receive focus-in events for an item.
virtual void focusOutEvent (QFocusEvent *)
 This event handler can be reimplemented in a subclass to receive focus-out events for an item.
virtual void mousePressEvent (QMouseEvent *event)
 This event handler can be reimplemented in a subclass to receive mouse press events for an item.
virtual void mouseMoveEvent (QMouseEvent *event)
 This event handler can be reimplemented in a subclass to receive mouse move events for an item.
virtual void mouseReleaseEvent (QMouseEvent *event)
 This event handler can be reimplemented in a subclass to receive mouse release events for an item.
virtual void mouseDoubleClickEvent (QMouseEvent *event)
 This event handler can be reimplemented in a subclass to receive mouse double-click events for an item.
virtual void mouseUngrabEvent ()
 This event handler can be reimplemented in a subclass to be notified when a mouse ungrab event has occurred on this item.
virtual void touchUngrabEvent ()
 This event handler can be reimplemented in a subclass to be notified when a touch ungrab event has occurred on this item.
virtual void touchEvent (QTouchEvent *event)
 This event handler can be reimplemented in a subclass to receive touch events for an item.
virtual void hoverEnterEvent (QHoverEvent *event)
 This event handler can be reimplemented in a subclass to receive hover-enter events for an item.
virtual void hoverMoveEvent (QHoverEvent *event)
 This event handler can be reimplemented in a subclass to receive hover-move events for an item.
virtual void hoverLeaveEvent (QHoverEvent *event)
 This event handler can be reimplemented in a subclass to receive hover-leave events for an item.
virtual bool childMouseEventFilter (QQuickItem *, QEvent *)
 Reimplement this method to filter the pointer events that are received by this item's children.
virtual bool contextMenuEvent (QContextMenuEvent *event)
virtual void releaseResources ()
 This function is called when an item should release graphics resources which are not already managed by the nodes returned from QQuickItem::updatePaintNode().
 QQuickItem (QQuickItemPrivate &dd, QQuickItem *parent=nullptr)
Protected Member Functions inherited from QObject
QObjectsender () const
 Returns a pointer to the object that sent the signal, if called in a slot activated by a signal; otherwise it returns \nullptr.
int senderSignalIndex () const
int receivers (const char *signal) const
 Returns the number of receivers connected to the signal.
bool isSignalConnected (const QMetaMethod &signal) const
virtual void timerEvent (QTimerEvent *event)
 This event handler can be reimplemented in a subclass to receive timer events for the object.
virtual void childEvent (QChildEvent *event)
 This event handler can be reimplemented in a subclass to receive child events.
virtual void customEvent (QEvent *event)
 This event handler can be reimplemented in a subclass to receive custom events.
virtual void connectNotify (const QMetaMethod &signal)
virtual void disconnectNotify (const QMetaMethod &signal)
 QObject (QObjectPrivate &dd, QObject *parent=nullptr)

Properties

qreal sweepAngle
qreal startAngle
qreal dashOffset
qreal innerArcRatio
qreal cornerRadius
qreal strokeWidth
bool hideLine
QColor fillColor
QColor strokeColor
QQuickShapePath::CapStyle capStyle
QQuickShapePath::JoinStyle joinStyle
QQuickShapePath::StrokeStyle strokeStyle
QQuickShapePath::FillRule fillRule
QVector< qrealdashPattern
QQuickShapeGradientfillGradient
BorderMode borderMode
Properties inherited from QQuickShape
RendererType rendererType
bool asynchronous
bool vendorExtensionsEnabled
RendererType preferredRendererType
 \qmlproperty enumeration QtQuick.Shapes::Shape::preferredRendererType
FINALStatus status
ContainsMode containsMode
QRectF boundingRect
 \qmlproperty rect QtQuick.Shapes::Shape::boundingRect \readonly
FINALFillMode fillMode
 \qmlproperty enumeration QtQuick.Shapes::Shape::fillMode
FINALHAlignment horizontalAlignment
 \qmlproperty enumeration QtQuick.Shapes::Shape::horizontalAlignment \qmlproperty enumeration QtQuick.Shapes::Shape::verticalAlignment
FINALVAlignment verticalAlignment
FINALQQmlListProperty< QObjectdata
 \qmlproperty list<Object> QtQuick.Shapes::Shape::data
Properties inherited from QQuickItem
QQuickItemparent
 \qmlproperty Item QtQuick::Item::parent This property holds the visual parent of the item.
qreal x
 \qmlproperty real QtQuick::Item::x \qmlproperty real QtQuick::Item::y \qmlproperty real QtQuick::Item::width \qmlproperty real QtQuick::Item::height
qreal y
 Defines the item's y position relative to its parent.
qreal z
 \qmlproperty real QtQuick::Item::z
qreal width
 This property holds the width of this item.
qreal height
 This property holds the height of this item.
qreal opacity
 \qmlproperty real QtQuick::Item::opacity
bool enabled
 \qmlproperty bool QtQuick::Item::enabled
bool visible
 \qmlproperty bool QtQuick::Item::visible
Qt::FocusPolicy focusPolicy
 \qmlproperty enumeration QtQuick::Item::focusPolicy
qreal rotation
 \qmlproperty real QtQuick::Item::rotation This property holds the rotation of the item in degrees clockwise around its transformOrigin.
qreal scale
 \qmlproperty real QtQuick::Item::scale This property holds the scale factor for this item.
TransformOrigin transformOrigin
 \qmlproperty enumeration QtQuick::Item::transformOrigin This property holds the origin point around which scale and rotation transform.
QPointF transformOriginPoint
QQmlListProperty< QQuickTransformtransform
 \qmlproperty list<Transform> QtQuick::Item::transform
bool smooth
 \qmlproperty bool QtQuick::Item::smooth
bool antialiasing
 \qmlproperty bool QtQuick::Item::antialiasing
qreal implicitWidth
qreal implicitHeight
QObjectcontainmentMask
 \qmlproperty QObject* QtQuick::Item::containmentMask
Properties inherited from QObject
QString objectName
 the name of this object

Additional Inherited Members

Public Slots inherited from QQuickItem
void update ()
 Schedules a call to updatePaintNode() for this item.
Public Slots inherited from QObject
void deleteLater ()
 \threadsafe
Static Public Member Functions inherited from QObject
static QMetaObject::Connection connect (const QObject *sender, const char *signal, const QObject *receiver, const char *member, Qt::ConnectionType=Qt::AutoConnection)
 \threadsafe
static QMetaObject::Connection connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type=Qt::AutoConnection)
template<typename Func1, typename Func2>
static QMetaObject::Connection connect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const typename QtPrivate::ContextTypeForFunctor< Func2 >::ContextType *context, Func2 &&slot, Qt::ConnectionType type=Qt::AutoConnection)
template<typename Func1, typename Func2>
static QMetaObject::Connection connect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, Func2 &&slot)
static bool disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *member)
 \threadsafe
static bool disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &member)
static bool disconnect (const QMetaObject::Connection &)
 Disconnect a connection.
template<typename Func1, typename Func2>
static bool disconnect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const typename QtPrivate::FunctionPointer< Func2 >::Object *receiver, Func2 slot)
template<typename Func1>
static bool disconnect (const typename QtPrivate::FunctionPointer< Func1 >::Object *sender, Func1 signal, const QObject *receiver, void **zero)
Public Attributes inherited from QQuickItem
const QSizetargetSize = QSize())
qreal y const
Protected Attributes inherited from QObject
QScopedPointer< QObjectDatad_ptr

Detailed Description

Definition at line 25 of file qquickellipseshape_p.h.

Member Enumeration Documentation

◆ BorderMode

enum class QQuickEllipseShape::BorderMode
strong
Enumerator
Inside 
Middle 
Outside 

Definition at line 110 of file qquickellipseshape_p.h.

Constructor & Destructor Documentation

◆ QQuickEllipseShape()

QQuickEllipseShape::QQuickEllipseShape ( QQuickItem * parent = nullptr)

\qmltype EllipseShape \inqmlmodule QtQuick.Shapes.DesignHelpers

A shape component that can render an ellipse, an arc, or a pie slice.

Since
QtQuick 6.10

The EllipseShape item paints an ellipse, which can be customized to appear as a full ellipse, an arc, or a filled pie slice. Its appearance is controlled by the \l startAngle and \l sweepAngle properties.

Definition at line 573 of file qquickellipseshape.cpp.

◆ ~QQuickEllipseShape()

QQuickEllipseShape::~QQuickEllipseShape ( )
overridedefault

Member Function Documentation

◆ borderMode()

QQuickEllipseShape::BorderMode QQuickEllipseShape::borderMode ( ) const

\qmlproperty enumeration QtQuick.Shapes.DesignHelpers::EllipseShape::borderMode

The \l borderMode property determines where the border is drawn along the edge of the ellipse.

\value EllipseShape.Inside The border is drawn along the inside edge of the item and does not affect the item width.

This is the default value. \value EllipseShape.Middle The border is drawn over the edge of the item and does not affect the item width. \value EllipseShape.Outside The border is drawn along the outside edge of the item and increases the item width by the value of \l strokeWidth.

See also
strokeWidth

Definition at line 966 of file qquickellipseshape.cpp.

◆ borderModeChanged

void QQuickEllipseShape::borderModeChanged ( )
signal

◆ capStyle()

QQuickShapePath::CapStyle QQuickEllipseShape::capStyle ( ) const

{capStyle-property} {QtQuick.Shapes.DesignHelpers::EllipseShape}

Definition at line 819 of file qquickellipseshape.cpp.

◆ capStyleChanged

void QQuickEllipseShape::capStyleChanged ( )
signal

◆ cornerRadius()

qreal QQuickEllipseShape::cornerRadius ( ) const

\qmlproperty real QtQuick.Shapes.DesignHelpers::EllipseShape::cornerRadius

Controls the rounding of corners where the radial lines meet the elliptical arcs. For pie segments, this rounds the connection to the outer arc. For donut segments, this also rounds the connections to both inner and outer arcs.

The default value is 10.

Definition at line 693 of file qquickellipseshape.cpp.

◆ cornerRadiusChanged

void QQuickEllipseShape::cornerRadiusChanged ( )
signal

◆ dashOffset()

qreal QQuickEllipseShape::dashOffset ( ) const

{dashOffset-property} {QtQuick.Shapes.DesignHelpers::EllipseShape}

Definition at line 668 of file qquickellipseshape.cpp.

◆ dashOffsetChanged

void QQuickEllipseShape::dashOffsetChanged ( )
signal

◆ dashPattern()

QVector< qreal > QQuickEllipseShape::dashPattern ( ) const

{dashPattern-property} {QtQuick.Shapes.DesignHelpers::EllipseShape}

Definition at line 899 of file qquickellipseshape.cpp.

◆ dashPatternChanged

void QQuickEllipseShape::dashPatternChanged ( )
signal

◆ fillColor()

QColor QQuickEllipseShape::fillColor ( ) const

\qmlproperty color QtQuick.Shapes.DesignHelpers::EllipseShape::fillColor

This property holds the fill color.

When set to transparent, no filling occurs.

The default value is "white".

Note
If either \l fillGradient is set to something other than null, it will be used instead of fillColor.

Definition at line 777 of file qquickellipseshape.cpp.

◆ fillColorChanged

void QQuickEllipseShape::fillColorChanged ( )
signal

◆ fillGradient()

QQuickShapeGradient * QQuickEllipseShape::fillGradient ( ) const

\qmlproperty ShapeGradient QtQuick.Shapes.DesignHelpers::EllipseShape::fillGradient

The fillGradient of the ellipse fill color.

By default, no fillGradient is enabled and the value is null. In this case, the fill uses a solid color based on the value of \l fillColor.

When set, \l fillColor is ignored and filling is done using one of the \l ShapeGradient subtypes.

Note
The \l Gradient type cannot be used here. Rather, prefer using one of the advanced subtypes, like \l LinearGradient.

Definition at line 927 of file qquickellipseshape.cpp.

◆ fillRule()

QQuickShapePath::FillRule QQuickEllipseShape::fillRule ( ) const

{fillRule-property} {QtQuick.Shapes.DesignHelpers::EllipseShape}

Definition at line 879 of file qquickellipseshape.cpp.

◆ fillRuleChanged

void QQuickEllipseShape::fillRuleChanged ( )
signal

◆ gradientChanged

void QQuickEllipseShape::gradientChanged ( )
signal

◆ hideLine()

bool QQuickEllipseShape::hideLine ( ) const

Definition at line 596 of file qquickellipseshape.cpp.

◆ hideLineChanged

void QQuickEllipseShape::hideLineChanged ( )
signal

◆ innerArcRatio()

qreal QQuickEllipseShape::innerArcRatio ( ) const

\qmlproperty real QtQuick.Shapes.DesignHelpers::EllipseShape::innerArcRatio

This property defines the ratio between the inner and outer arcs.

Value range is between 0.0 and 1.0. Setting the value to 0.0 will cause the inner arc to collapse toward the center, drawing a solid filled ellipse. Setting the value to 1.0 makes the inner arc the same size as the outer ellipse, resulting in just an arc. Values between 0.0 and 1.0 create hollow elliptical rings.

The default value is 0.

Definition at line 722 of file qquickellipseshape.cpp.

◆ innerArcRatioChanged

void QQuickEllipseShape::innerArcRatioChanged ( )
signal

◆ itemChange()

void QQuickEllipseShape::itemChange ( ItemChange change,
const ItemChangeData & value )
overrideprotectedvirtual

Called when change occurs for this item.

value contains extra information relating to the change, when applicable.

If you re-implement this method in a subclass, be sure to call

virtual void itemChange(ItemChange, const ItemChangeData &)
Called when change occurs for this item.
EGLOutputLayerEXT EGLint EGLAttrib value
[3]

typically at the end of your implementation, to ensure the \l windowChanged() signal will be emitted.

Reimplemented from QQuickItem.

Definition at line 987 of file qquickellipseshape.cpp.

◆ joinStyle()

QQuickShapePath::JoinStyle QQuickEllipseShape::joinStyle ( ) const

{joinStyle-property} {QtQuick.Shapes.DesignHelpers::EllipseShape}

Definition at line 839 of file qquickellipseshape.cpp.

◆ joinStyleChanged

void QQuickEllipseShape::joinStyleChanged ( )
signal

◆ resetBorderMode()

void QQuickEllipseShape::resetBorderMode ( )

Definition at line 982 of file qquickellipseshape.cpp.

◆ resetFillGradient()

void QQuickEllipseShape::resetFillGradient ( )

Definition at line 941 of file qquickellipseshape.cpp.

◆ setBorderMode()

void QQuickEllipseShape::setBorderMode ( BorderMode borderMode)

Definition at line 972 of file qquickellipseshape.cpp.

◆ setCapStyle()

void QQuickEllipseShape::setCapStyle ( QQuickShapePath::CapStyle style)

Definition at line 825 of file qquickellipseshape.cpp.

◆ setCornerRadius()

void QQuickEllipseShape::setCornerRadius ( qreal cornerRadius)

Definition at line 699 of file qquickellipseshape.cpp.

◆ setDashOffset()

void QQuickEllipseShape::setDashOffset ( qreal offset)

Definition at line 674 of file qquickellipseshape.cpp.

◆ setDashPattern()

void QQuickEllipseShape::setDashPattern ( const QVector< qreal > & array)

Definition at line 905 of file qquickellipseshape.cpp.

◆ setFillColor()

void QQuickEllipseShape::setFillColor ( const QColor & color)

Definition at line 783 of file qquickellipseshape.cpp.

◆ setFillGradient()

void QQuickEllipseShape::setFillGradient ( QQuickShapeGradient * fillGradient)

Definition at line 933 of file qquickellipseshape.cpp.

◆ setFillRule()

void QQuickEllipseShape::setFillRule ( QQuickShapePath::FillRule fillRule)

Definition at line 885 of file qquickellipseshape.cpp.

◆ setHideLine()

void QQuickEllipseShape::setHideLine ( bool hideLine)

Definition at line 602 of file qquickellipseshape.cpp.

◆ setInnerArcRatio()

void QQuickEllipseShape::setInnerArcRatio ( qreal innerArcRatio)

Definition at line 728 of file qquickellipseshape.cpp.

◆ setJoinStyle()

void QQuickEllipseShape::setJoinStyle ( QQuickShapePath::JoinStyle style)

Definition at line 845 of file qquickellipseshape.cpp.

◆ setStartAngle()

void QQuickEllipseShape::setStartAngle ( qreal startAngle)

Definition at line 654 of file qquickellipseshape.cpp.

◆ setStrokeColor()

void QQuickEllipseShape::setStrokeColor ( const QColor & color)

Definition at line 807 of file qquickellipseshape.cpp.

◆ setStrokeStyle()

void QQuickEllipseShape::setStrokeStyle ( QQuickShapePath::StrokeStyle style)

Definition at line 865 of file qquickellipseshape.cpp.

◆ setStrokeWidth()

void QQuickEllipseShape::setStrokeWidth ( qreal width)

Definition at line 754 of file qquickellipseshape.cpp.

◆ setSweepAngle()

void QQuickEllipseShape::setSweepAngle ( qreal sweepAngle)

Definition at line 628 of file qquickellipseshape.cpp.

◆ startAngle()

qreal QQuickEllipseShape::startAngle ( ) const

\qmlproperty real QtQuick.Shapes.DesignHelpers::EllipseShape::startAngle

The property defines the starting angle in degrees from which to begin drawing the ellipse.

0 degrees points to the top. Angle increases in clockwise direction.

The default value is 0.

Definition at line 648 of file qquickellipseshape.cpp.

◆ startAngleChanged

void QQuickEllipseShape::startAngleChanged ( )
signal

◆ strokeColor()

QColor QQuickEllipseShape::strokeColor ( ) const

\qmlproperty color QtQuick.Shapes.DesignHelpers::EllipseShape::strokeColor

This property holds the stroking color.

When set to transparent, no stroking occurs.

The default value is "black".

Definition at line 801 of file qquickellipseshape.cpp.

◆ strokeColorChanged

void QQuickEllipseShape::strokeColorChanged ( )
signal

◆ strokeStyle()

QQuickShapePath::StrokeStyle QQuickEllipseShape::strokeStyle ( ) const

{strokeStyle-property} {QtQuick.Shapes.DesignHelpers::EllipseShape}

Definition at line 859 of file qquickellipseshape.cpp.

◆ strokeStyleChanged

void QQuickEllipseShape::strokeStyleChanged ( )
signal

◆ strokeWidth()

qreal QQuickEllipseShape::strokeWidth ( ) const

\qmlproperty real QtQuick.Shapes.DesignHelpers::EllipseShape::strokeWidth

This property holds the stroke width.

When set to a negative value, no stroking occurs.

The default value is 1.

Definition at line 748 of file qquickellipseshape.cpp.

◆ strokeWidthChanged

void QQuickEllipseShape::strokeWidthChanged ( )
signal

◆ sweepAngle()

qreal QQuickEllipseShape::sweepAngle ( ) const

\qmlproperty real QtQuick.Shapes.DesignHelpers::EllipseShape::sweepAngle

The angular extent in degrees to be drawn from the \l startAngle.

If set to positive value, the arc is drawn in clockwise direction. If set to negative value, the arc is drawn in counter-clockwise direction.

The default value is 360.

Definition at line 622 of file qquickellipseshape.cpp.

◆ sweepAngleChanged

void QQuickEllipseShape::sweepAngleChanged ( )
signal

Property Documentation

◆ borderMode

BorderMode QQuickEllipseShape::borderMode
readwrite

Definition at line 54 of file qquickellipseshape_p.h.

◆ capStyle

QQuickShapePath::CapStyle QQuickEllipseShape::capStyle
readwrite

Definition at line 42 of file qquickellipseshape_p.h.

◆ cornerRadius

qreal QQuickEllipseShape::cornerRadius
readwrite

Definition at line 34 of file qquickellipseshape_p.h.

◆ dashOffset

qreal QQuickEllipseShape::dashOffset
readwrite

Definition at line 31 of file qquickellipseshape_p.h.

◆ dashPattern

QVector<qreal> QQuickEllipseShape::dashPattern
readwrite

Definition at line 50 of file qquickellipseshape_p.h.

◆ fillColor

QColor QQuickEllipseShape::fillColor
readwrite

Definition at line 39 of file qquickellipseshape_p.h.

◆ fillGradient

QQuickShapeGradient * QQuickEllipseShape::fillGradient
readwrite

Definition at line 52 of file qquickellipseshape_p.h.

◆ fillRule

QQuickShapePath::FillRule QQuickEllipseShape::fillRule
readwrite

Definition at line 48 of file qquickellipseshape_p.h.

◆ hideLine

bool QQuickEllipseShape::hideLine
readwrite

Definition at line 38 of file qquickellipseshape_p.h.

◆ innerArcRatio

qreal QQuickEllipseShape::innerArcRatio
readwrite

Definition at line 32 of file qquickellipseshape_p.h.

◆ joinStyle

QQuickShapePath::JoinStyle QQuickEllipseShape::joinStyle
readwrite

Definition at line 44 of file qquickellipseshape_p.h.

◆ startAngle

qreal QQuickEllipseShape::startAngle
readwrite

Definition at line 30 of file qquickellipseshape_p.h.

◆ strokeColor

QColor QQuickEllipseShape::strokeColor
readwrite

Definition at line 40 of file qquickellipseshape_p.h.

◆ strokeStyle

QQuickShapePath::StrokeStyle QQuickEllipseShape::strokeStyle
readwrite

Definition at line 46 of file qquickellipseshape_p.h.

◆ strokeWidth

qreal QQuickEllipseShape::strokeWidth
readwrite

Definition at line 36 of file qquickellipseshape_p.h.

◆ sweepAngle

qreal QQuickEllipseShape::sweepAngle
readwrite

Definition at line 29 of file qquickellipseshape_p.h.


The documentation for this class was generated from the following files: