Core Elements
Elements can be grouped into visual and non-visual elements. A visual element (like the Rectangle
) has a geometry and normally presents an area on the screen. A non-visual element (like a Timer
) provides general functionality, normally used to manipulate the visual elements.
Currently, we will focus on the fundamental visual elements, such as Item
, Rectangle
, Text
, Image
and MouseArea
. However, by using the Qt Quick Controls 2 module, it is possible to create user interfaces built from standard platform components such as buttons, labels and sliders.
Item Element
Item
is the base element for all visual elements as such all other visual elements inherits from Item
. It doesn’t paint anything by itself but defines all properties which are common across all visual elements:
Geometry -
x
andy
to define the top-left position,width
andheight
for the expansion of the element, andz
for the stacking order to lift elements up or down from their natural ordering.Layout handling -
anchors
(left, right, top, bottom, vertical and horizontal center) to position elements relative to other elements with optionalmargins
.Key handling - attached
Key
andKeyNavigation
properties to control key handling and thefocus
property to enable key handling in the first place.Transformation -
scale
androtate
transformation and the generictransform
property list for x,y,z transformation, as well as atransformOrigin
point.Visual -
opacity
to control transparency,visible
to show/hide elements,clip
to restrain paint operations to the element boundary, andsmooth
to enhance the rendering quality.State definition -
states
list property with the supported list of states, the currentstate
property, and thetransitions
list property to animate state changes.
To better understand the different properties we will try to introduce them throughout this chapter in the context of the element presented. Please remember these fundamental properties are available on every visual element and work the same across these elements.
Rectangle Element
Rectangle
extends Item
and adds a fill color to it. Additionally it supports borders defined by border.color
and border.width
. To create rounded rectangles you can use the radius
property.
Besides a fill color and a border, the rectangle also supports custom gradients:
A gradient is defined by a series of gradient stops. Each stop has a position and a color. The position marks the position on the y-axis (0 = top, 1 = bottom). The color of the GradientStop
marks the color at that position.
Text Element
To display text, you can use the Text
element. Its most notable property is the text
property of type string
. The element calculates its initial width and height based on the given text and the font used. The font can be influenced using the font property group (e.g. font.family
, font.pixelSize
, …). To change the color of the text just use the color property.
Text can be aligned to each side and the center using the horizontalAlignment
and verticalAlignment
properties. To further enhance the text rendering you can use the style
and styleColor
property, which allows you to render the text in outline, raised and sunken mode.
For longer text, you often want to define a break position like A very … long text, this can be achieved using the elide
property. The elide
property allows you to set the elide position to the left, right or middle of your text.
In case you don’t want the ‘…’ of the elide mode to appear but still want to see the full text you can also wrap the text using the wrapMode
property (works only when the width is explicitly set):
A Text
element only displays the given text, and the remaining space it occupies is transparent. This means it does not render any background decoration, and so it's up to you to provide a sensible background if desired.
Image Element
MouseArea Element
To interact with these elements you will often use a MouseArea
. It’s a rectangular invisible item in which you can capture mouse events. The mouse area is often used together with a visible item to execute commands when the user interacts with the visual part.
Last updated