Warning, /frameworks/kirigami/src/controls/AbstractCard.qml is written in an unsupported language. File is not indexed.

0001 /*
0002  *  SPDX-FileCopyrightText: 2018 Marco Martin <mart@kde.org>
0003  *
0004  *  SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 import "templates" as T
0008 import "private" as P
0009 
0010 /**
0011  * @brief AbstractCard is the base for cards.
0012  *
0013  * A Card is a visual object that serves as an entry point for more detailed information.
0014  * An abstractCard is empty, providing just the look and the base properties and signals
0015  * for an ItemDelegate. It can be filled with any custom layout of items,
0016  * its content is organized in 3 properties: header, contentItem and footer.
0017  * Use this only when you need particular custom contents, for a standard layout
0018  * for cards, use the Card component.
0019  *
0020  * @see org::kde::kirigami::Card
0021  * @inherit org::kde::kirigami::templates::AbstractCard
0022  * @since 2.4
0023  */
0024 T.AbstractCard {
0025     id: root
0026 
0027     background: P.DefaultCardBackground {
0028         clickFeedback: root.showClickFeedback
0029         hoverFeedback: root.hoverEnabled
0030     }
0031 }