2 * Copyright (C) 2016 The Qt Company Ltd.
3 * Copyright (C) 2016, 2017 Mentor Graphics Development (Deutschland) GmbH
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
19 import QtQuick.Controls 2.0
20 import QtGraphicalEffects 1.0
26 property string name: 'Home'
27 property string icon:'./images/Shortcut/'
28 property bool active: false
29 property bool isBlank: false
33 property real desaturation: 0
38 source: './images/Shortcut/blank.svg'
39 // source: isBlank ? './images/Shortcut/blank.svg' : root.icon
40 property string initial: root.name.substring(0,1).toUpperCase()
46 anchors.centerIn: parent
47 text: inactiveIcon.initial
54 source: './images/Shortcut/blank_active.svg'
55 // source: isBlank ? './images/Shortcut/blank_active.svg' : root.icon
56 property string initial: root.name.substring(0,1).toUpperCase()
62 anchors.centerIn: parent
63 text: activeIcon.initial
71 source: isBlank ? null : root.icon
75 layer.effect: Desaturate {
77 desaturation: icon.desaturation
85 width: root.width - 10
88 // wrapMode: Text.WordWrap
89 anchors.horizontalCenter: parent.horizontalCenter
90 horizontalAlignment: Text.AlignHCenter
92 text: qsTr((root.name === "launcher" ? "home" : root.name).toUpperCase())