Kirigami2

controls/AbstractListItem.qml
1 /*
2  * SPDX-FileCopyrightText: 2015 Marco Martin <[email protected]>
3  *
4  * SPDX-License-Identifier: LGPL-2.0-or-later
5  */
6 
7 import "private" as P
8 import "templates" as T
9 
10 //TODO KF6: not have list items at all (except perhaps swipelistitem which is an unuque ui) but rather have a set of layouts for lists items to be put inside standard QQC2 Delegate
11 /**
12  * @brief An item delegate for the primitive ListView component.
13  *
14  * It's intended to make all listviews look coherent.
15  *
16  * @see <a href="https://develop.kde.org/hig/components/editing/list">KDE Human Interface Guidelines on List Views and List Items</a>
17  * @inherit kirigami::templates::AbstractListItem
18  */
19 T.AbstractListItem {
20  id: listItem
21 
22  background: P.DefaultListItemBackground {}
23 }
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Tue Nov 28 2023 04:08:25 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.