This file only offers documentation for the additional properties of components given by the Qooey theme.
On doc.qt.io, you can find the documentation for the remaining components.
See the Usage section of the main README page.
To alter the color scheme of a component, update the palette properties on the parent component so that all children are affected.
button:
palette.button
palette.buttonText
window & base:
palette.base
palette.text
palette.window
palette.windowText
highlights:
palette.highlight
palette.highlightedText
This is a basic component which generates a dashed ring.
Component properties:
-
[property]
[real]
dashCount: 2 The number of dashes on the ring is specified by this property. -
[property]
[real]
borderWidth: 2 This property specifies the width of the border, which can range from$0$ to$\dfrac{width}{2}$ . -
[property]
[real]
dashWidth: 2 This property specifies the width of dashes. -
[property]
[color]
palette.base This property derives from theControl
component, which specifies thecolor
of the dashes.DashedRing { width: 100 height: 100 borderWidth: 2 dashWidth: 2 dashCount: 25 palette.base: 'blue' }
This is a basic component which generates a luquid like circle.
Component properties:
-
[property]
[bool]
fill: false The number of dashes on the ring is specified by this property. -
[property]
[real]
seed: 0 This property specifies seed value used for random function used inShader
. -
[property]
[color]
color: '#000' This property specifies thecolor
of the dashes. -
[property]
[real]
distorted: 3 This property specifies amount distortion. -
[property]
[real]
strokeWidth: 1 This property specifies the stroke width.Liquid { width: 100 height: 100 strokeWidth: 2 distorted: 3 color: 'blue' fill: true seed: 20 }
Component properties:
[property]
[DashedRing]
dottedRing This property refers to the DashedRing component used in the Dial component.
Component properties:
[property]
[int]
orientation: Qt.Horizontal This property determines the orientation of the ProgressBar component.
EitherQt.Horizontal
orQt.Vertical
can be the value.