mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
123 lines
4.5 KiB
QML
123 lines
4.5 KiB
QML
/***************************************************************************
|
|
* Copyright (C) 2015 by Eike Hein <hein@kde.org> *
|
|
* *
|
|
* 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, write to the *
|
|
* Free Software Foundation, Inc., *
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
|
|
***************************************************************************/
|
|
|
|
import QtQuick 2.0
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
import org.kde.plasma.components 2.0 as PlasmaComponents
|
|
|
|
import "code/tools.js" as Tools
|
|
|
|
Item {
|
|
id: item
|
|
|
|
height: GridView.view.cellHeight
|
|
width: GridView.view.cellWidth // height
|
|
|
|
property int iconSize: 22
|
|
|
|
property bool showLabel: true
|
|
property int itemIndex: model.index
|
|
property string favoriteId: model.favoriteId !== undefined ? model.favoriteId : ""
|
|
property url url: model.url !== undefined ? model.url : ""
|
|
property variant icon: model.decoration !== undefined ? model.decoration : ""
|
|
property var m: model
|
|
property bool hasActionList: ((model.favoriteId !== null)
|
|
|| (("hasActionList" in model) && (model.hasActionList === true)))
|
|
|
|
Accessible.role: Accessible.MenuItem
|
|
Accessible.name: model.display
|
|
|
|
function openActionMenu(x, y) {
|
|
var actionList = hasActionList ? model.actionList : [];
|
|
Tools.fillActionMenu(i18n, actionMenu, actionList, GridView.view.model.favoritesModel, model.favoriteId);
|
|
actionMenu.visualParent = item;
|
|
actionMenu.open(x, y);
|
|
}
|
|
|
|
function actionTriggered(actionId, actionArgument) {
|
|
var close = (Tools.triggerAction(GridView.view.model, model.index, actionId, actionArgument) === true);
|
|
if (close) {
|
|
root.toggle();
|
|
}
|
|
}
|
|
|
|
|
|
PlasmaCore.IconItem {
|
|
id: icon
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.verticalCenterOffset: -units.gridUnit
|
|
width: iconSize
|
|
height: width
|
|
colorGroup: PlasmaCore.Theme.ComplementaryColorGroup
|
|
animated: false
|
|
usesPlasmaTheme: item.GridView.view.usesPlasmaTheme
|
|
source: model.decoration
|
|
smooth: plasmoid.configuration.iconSmooth
|
|
}
|
|
|
|
PlasmaComponents.Label {
|
|
id: label
|
|
visible: showLabel
|
|
anchors {
|
|
horizontalCenter: icon.horizontalCenter
|
|
top: icon.bottom
|
|
topMargin: units.smallSpacing
|
|
}
|
|
width: parent.width - units.largeSpacing
|
|
maximumLineCount: 2
|
|
height: units.gridUnit * 2
|
|
elide: Text.ElideRight
|
|
horizontalAlignment: Qt.AlignHCenter
|
|
verticalAlignment: Qt.AlignTop
|
|
wrapMode: Text.Wrap
|
|
color: theme.textColor
|
|
text: ("name" in model ? model.name : model.display)
|
|
|
|
}
|
|
|
|
PlasmaCore.ToolTipArea {
|
|
id: toolTip
|
|
|
|
property string text: model.display
|
|
|
|
anchors.fill: parent
|
|
active: root.visible && label.truncated
|
|
mainItem: toolTipDelegate
|
|
|
|
onContainsMouseChanged: item.GridView.view.itemContainsMouseChanged(containsMouse)
|
|
}
|
|
|
|
Keys.onPressed: {
|
|
if (event.key === Qt.Key_Menu && hasActionList) {
|
|
event.accepted = true;
|
|
openActionMenu(item);
|
|
} else if ((event.key === Qt.Key_Enter || event.key === Qt.Key_Return)) {
|
|
event.accepted = true;
|
|
|
|
if ("trigger" in GridView.view.model) {
|
|
GridView.view.model.trigger(index, "", null);
|
|
root.toggle();
|
|
}
|
|
|
|
itemGrid.itemActivated(index, "", null);
|
|
}
|
|
}
|
|
}
|