Warning, /plasma/qqc2-breeze-style/style/impl/InlineIconLabelContent.qml is written in an unsupported language. File is not indexed.

0001 /* SPDX-FileCopyrightText: 2020 Noah Davis <noahadvs@gmail.com>
0002  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0003  */
0004 
0005 import QtQuick
0006 import org.kde.kirigami as Kirigami
0007 
0008 import "." as Impl
0009 
0010 IconLabelContent {
0011     id: root
0012     Rectangle {
0013         z: -1
0014         x: root.labelRect.x
0015         y: root.labelRect.y + root.labelRect.height - height
0016         width: root.labelRect.width//root.hasIcon && root.hasLabel ? root.availableWidth - root.icon.width - root.spacing : root.availableWidth
0017         height: Impl.Units.focusUnderlineThickness
0018         visible: control.visualFocus
0019         color: Kirigami.Theme.focusColor
0020     }
0021 }