Warning, /plasma/plasma-sdk/themeexplorer/package/contents/ui/FormLabel.qml is written in an unsupported language. File is not indexed.
0001 /* 0002 * SPDX-FileCopyrightText: 2015 Marco Martin <mart@kde.org> 0003 * 0004 * SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 import QtQuick 2.3 0008 import QtQuick.Layouts 1.1 0009 import QtQuick.Controls 2.15 0010 0011 0012 Label { 0013 Layout.alignment: Qt.AlignRight 0014 property Item buddy 0015 MouseArea { 0016 anchors.fill: parent 0017 onClicked: buddy.focus = true 0018 } 0019 } 0020