Warning, /plasma/plasma-desktop/applets/kimpanel/package/contents/ui/CandidateHighlight.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2017 Weng Xuetian <wengxt@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 import QtQuick 2.1
0007 import org.kde.kirigami 2.20 as Kirigami
0008 import org.kde.ksvg 1.0 as KSvg
0009 
0010 Item {
0011     id: highlight
0012 
0013     property bool selected: false
0014     property alias marginHints: background.margins;
0015 
0016     Behavior on opacity {
0017         NumberAnimation {
0018             duration: Kirigami.Units.longDuration
0019             easing.type: Easing.OutQuad
0020         }
0021     }
0022 
0023     KSvg.FrameSvgItem {
0024         id: background
0025         imagePath: "widgets/viewitem"
0026         prefix: {
0027             if (selected)
0028                 return "hover";
0029 
0030             return "normal";
0031         }
0032 
0033         anchors {
0034             fill: parent
0035         }
0036     }
0037 }