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

0001 /*
0002  *  SPDX-FileCopyrightText: 2015 Marco Martin <notmart@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: LGPL-2.0-or-later
0005  */
0006 
0007 import "private" as P
0008 import "templates" as T
0009 
0010 //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
0011 /**
0012  * @brief An item delegate for the primitive ListView component.
0013  *
0014  * It's intended to make all listviews look coherent.
0015  *
0016  * @see <a href="https://develop.kde.org/hig/components/editing/list">KDE Human Interface Guidelines on List Views and List Items</a>
0017  * @inherit kirigami::templates::AbstractListItem
0018  */
0019 T.AbstractListItem {
0020     id: listItem
0021 
0022     background: P.DefaultListItemBackground {}
0023 }