Warning, /kdevelop/kdevelop/plugins/welcomepage/qml/Link.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2011 Aleix Pol <aleixpol@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 import QtQuick 2.7
0008 import QtQuick.Layouts 1.2
0009 import QtQuick.Controls 2.0
0010 
0011 Label {
0012     id: root
0013 
0014     signal clicked
0015 
0016     elide: Text.ElideRight
0017     opacity: mouseArea.containsMouse ? 0.8 : 1
0018 
0019     MouseArea {
0020         id: mouseArea
0021 
0022         anchors.fill: parent
0023 
0024         cursorShape: Qt.PointingHandCursor
0025         hoverEnabled: true
0026         onClicked: root.clicked()
0027     }
0028 
0029 }