/*************************************************************************** * Copyright (C) 2015 by Eike Hein * * * * 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.plasmoid 2.0 import org.kde.plasma.core 2.0 as PlasmaCore import org.kde.plasma.components 2.0 as PlasmaComponents import org.kde.kquickcontrolsaddons 2.0 import "../code/tools.js" as Tools Item { id: item width: GridView.view.cellWidth - units.largeSpacing height: GridView.view.cellHeight property bool showLabel: true readonly property int itemIndex: model.index readonly property url url: model.url != undefined ? model.url : "" property bool pressed: false readonly 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) { Tools.triggerAction(plasmoid, GridView.view.model, model.index, actionId, actionArgument); } PlasmaCore.IconItem { id: icon y: showLabel ? (2 * highlightItemSvg.margins.top) : 0 anchors.left: parent.left anchors.leftMargin: units.smallSpacing * 2 anchors.verticalCenter: parent.verticalCenter width: iconSize height: width animated: false usesPlasmaTheme: item.GridView.view.usesPlasmaTheme source: model.decoration } PlasmaComponents.Label { id: label visible: showLabel anchors { left: icon.right leftMargin: units.smallSpacing * 2 verticalCenter: icon.verticalCenter } width: item.width - (iconSize + units.largeSpacing) horizontalAlignment: Text.AlignLeft elide: Text.ElideRight wrapMode: Text.NoWrap text: model.display color: "black" } 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; GridView.view.model.trigger(index, "", null); if ("toggle" in root) { root.toggle(); } else { root.visible = false; } } } }