diff --git a/lookandfeel/contents/osd/OsdItem.qml b/lookandfeel/contents/osd/OsdItem.qml index 13bc3a0e8..ea3c73a16 100644 --- a/lookandfeel/contents/osd/OsdItem.qml +++ b/lookandfeel/contents/osd/OsdItem.qml @@ -1,86 +1,87 @@ /* * Copyright 2014 Martin Klapetek * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ import QtQuick 2.0 import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.plasma.components 2.0 as PlasmaComponents import org.kde.plasma.extras 2.0 as PlasmaExtra import QtQuick.Window 2.2 Item { property QtObject rootItem height: Math.min(units.gridUnit * 15, Screen.desktopAvailableHeight / 5) width: height // /--------------------\ // | spacing | // | /----------------\ | // | | | | // | | icon | | // | | | | // | | | | // | \----------------/ | // | spacing | // | [progressbar/text] | // | spacing | // \--------------------/ PlasmaCore.IconItem { id: icon height: parent.height - Math.max(progressBar.height, label.height) - ((units.smallSpacing/2) * 3) //it's an svg width: parent.width source: rootItem.icon } PlasmaComponents.ProgressBar { id: progressBar anchors { bottom: parent.bottom left: parent.left right: parent.right margins: Math.floor(units.smallSpacing / 2) } visible: rootItem.showingProgress minimumValue: 0 maximumValue: 100 value: Number(rootItem.osdValue) } PlasmaExtra.Heading { id: label anchors { bottom: parent.bottom left: parent.left right: parent.right margins: Math.floor(units.smallSpacing / 2) } visible: !rootItem.showingProgress text: rootItem.showingProgress ? "" : (rootItem.osdValue ? rootItem.osdValue : "") horizontalAlignment: Text.AlignHCenter wrapMode: Text.WordWrap maximumLineCount: 2 elide: Text.ElideLeft minimumPointSize: theme.defaultFont.pointSize fontSizeMode: Text.HorizontalFit + textFormat: Text.PlainText } }