org::kde::kirigami::templates::AbstractCard

Properties | |
Item | footer |
Item | header |
int | headerOrientation |
bool | showClickFeedback |
Detailed Description
AbstractCard is the base type for cards.
A Card is a visual object that serves as an entry point for more detailed information. An AbstractCard is empty, providing just the look and the base properties and signals for a QtQuick.Controls.ItemDelegate. It can be filled with any custom layout of items, its content is organized into 3 properties: ::header, contentItem and ::footer. Use this only when you need custom contents. For cards with a standard layout, use the Card component.
- See also
- kirigami::Card
- Since
- org.kde.kirigami 2.4
Definition at line 24 of file templates/AbstractCard.qml.
Property Documentation
◆ footer
|
read |
This property holds an Item that serves as a footer.
This item will be positioned at the bottom if headerOrientation is Qt.Vertical
or on the right if it is Qt.Horizontal
.
Definition at line 53 of file templates/AbstractCard.qml.
◆ header
|
read |
This property holds an item that serves as a header.
This item will be positioned on top if headerOrientation is Qt.Vertical
or on the left if it is Qt.Horizontal
.
Definition at line 33 of file templates/AbstractCard.qml.
◆ headerOrientation
|
read |
This property sets the card's orientation.
The following values are allowed:
Qt.Vertical
: the header will be positioned on top.Qt.Horizontal
: the header will be positioned on the left (or right if an RTL layout is used).
default: Qt.Vertical
Definition at line 46 of file templates/AbstractCard.qml.
◆ showClickFeedback
|
read |
This property sets whether clicking or tapping on the card area shows a visual click feedback.
Use this if you want to do an action in the onClicked signal handler of the card.
default: false
Definition at line 63 of file templates/AbstractCard.qml.
The documentation for this class was generated from the following file:
Documentation copyright © 1996-2023 The KDE developers.
Generated on Fri Dec 8 2023 04:00:29 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.