77 lines
2.2 KiB
QML
77 lines
2.2 KiB
QML
// -*- coding: iso-8859-1 -*-
|
|
/*
|
|
* Author: Marco Martin <mart@kde.org>
|
|
* Date: Sun Nov 7 2010, 18:51:24
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU Library General Public License as
|
|
* published by the Free Software Foundation; either version 2 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 Library 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
|
|
|
|
Item {
|
|
width: 400
|
|
height: 32
|
|
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
implicitWidth: tasksModel.count * 50
|
|
|
|
PlasmaCore.DataSource {
|
|
id: tasksSource
|
|
dataEngine: "tasks"
|
|
interval: 0
|
|
onSourceAdded: {
|
|
connectSource(source)
|
|
}
|
|
Component.onCompleted: {
|
|
connectedSources = sources
|
|
}
|
|
}
|
|
|
|
function performOperation(src, what) {
|
|
var service = tasksSource.serviceForSource(src);
|
|
var operation = service.operationDescription(what);
|
|
return service.startOperationCall(operation);
|
|
}
|
|
|
|
ListView {
|
|
//clip: true
|
|
id: tasksList
|
|
anchors.fill: parent
|
|
|
|
orientation: ListView.Horizontal
|
|
|
|
model: PlasmaCore.DataModel {
|
|
id: tasksModel
|
|
dataSource: tasksSource
|
|
}
|
|
|
|
delegate: PlasmaComponents.ToolButton {
|
|
width: (tasksList.width / (tasksSource.connectedSources.length))
|
|
height: parent.height
|
|
minimumWidth: 24
|
|
minimumHeight: 24
|
|
iconSource: icon
|
|
text: visibleName
|
|
onClicked: {
|
|
performOperation(model["DataEngineSource"], "activate");
|
|
}
|
|
}
|
|
}
|
|
}
|