2015-02-25 18:26:04 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright 2015 Marco Martin <mart@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 2.010-1301, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import QtQuick 2.1
|
2015-02-25 18:38:34 +00:00
|
|
|
import QtQuick.Layouts 1.1
|
2015-02-25 18:26:04 +00:00
|
|
|
|
|
|
|
|
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.satellite.components 0.1 as SatelliteComponents
|
|
|
|
|
|
2015-03-11 10:50:00 +00:00
|
|
|
import "plasmapackage:/code/LayoutManager.js" as LayoutManager
|
|
|
|
|
|
2015-02-25 18:26:04 +00:00
|
|
|
Item {
|
|
|
|
|
id: root
|
2015-02-26 10:34:33 +00:00
|
|
|
width: 480
|
|
|
|
|
height: 640
|
2015-02-25 18:26:04 +00:00
|
|
|
|
|
|
|
|
property Item toolBox
|
|
|
|
|
property alias appletsSpace: applicationsView.headerItem
|
|
|
|
|
property int buttonHeight: width/4
|
2015-03-05 13:02:32 +00:00
|
|
|
property bool reorderingApps: false
|
2015-02-25 18:26:04 +00:00
|
|
|
|
2015-03-11 10:50:00 +00:00
|
|
|
Containment.onAppletAdded: {
|
|
|
|
|
addApplet(applet, x, y);
|
|
|
|
|
LayoutManager.save();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function addApplet(applet, x, y) {
|
|
|
|
|
var container = appletContainerComponent.createObject(appletsSpace.layout)
|
|
|
|
|
container.visible = true
|
|
|
|
|
print("Applet added: " + applet)
|
|
|
|
|
|
|
|
|
|
var appletWidth = applet.width;
|
|
|
|
|
var appletHeight = applet.height;
|
|
|
|
|
applet.parent = container;
|
|
|
|
|
container.applet = applet;
|
|
|
|
|
applet.anchors.fill = container;
|
|
|
|
|
applet.visible = true;
|
|
|
|
|
container.visible = true;
|
|
|
|
|
|
|
|
|
|
// If the provided position is valid, use it.
|
|
|
|
|
if (x >= 0 && y >= 0) {
|
|
|
|
|
var index = LayoutManager.insertAtCoordinates(container, x , y);
|
|
|
|
|
|
|
|
|
|
// Fall through to determining an appropriate insert position.
|
|
|
|
|
} else {
|
|
|
|
|
var before = null;
|
|
|
|
|
container.animationsEnabled = false;
|
|
|
|
|
|
|
|
|
|
if (appletsSpace.lastSpacer.parent === appletsSpace.layout) {
|
|
|
|
|
before = appletsSpace.lastSpacer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (before) {
|
|
|
|
|
LayoutManager.insertBefore(before, container);
|
|
|
|
|
|
|
|
|
|
// Fall through to adding at the end.
|
|
|
|
|
} else {
|
|
|
|
|
container.parent = appletsSpace.layout;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//event compress the enable of animations
|
|
|
|
|
//startupTimer.restart();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (applet.Layout.fillWidth) {
|
|
|
|
|
appletsSpace.lastSpacer.parent = root;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Component.onCompleted: {
|
|
|
|
|
LayoutManager.plasmoid = plasmoid;
|
|
|
|
|
LayoutManager.root = root;
|
|
|
|
|
LayoutManager.layout = appletsSpace.layout;
|
|
|
|
|
LayoutManager.lastSpacer = appletsSpace.lastSpacer;
|
|
|
|
|
LayoutManager.restore();
|
2015-03-11 11:33:15 +00:00
|
|
|
applicationsView.contentY = -root.height;
|
2015-03-11 10:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
2015-03-05 12:37:39 +00:00
|
|
|
SatelliteComponents.ApplicationListModel {
|
|
|
|
|
id: appListModel
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-05 20:12:23 +00:00
|
|
|
Timer {
|
|
|
|
|
id: autoScrollTimer
|
|
|
|
|
property bool scrollDown: true
|
|
|
|
|
repeat: true
|
|
|
|
|
interval: 10
|
|
|
|
|
onTriggered: {
|
|
|
|
|
applicationsView.contentY += scrollDown ? 8 : -8;
|
|
|
|
|
if (applicationsView.draggingItem) {
|
|
|
|
|
applicationsView.draggingItem.y += scrollDown ? 8 : -8;
|
|
|
|
|
|
|
|
|
|
applicationsView.draggingItem.updateRow();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-02-25 18:26:04 +00:00
|
|
|
|
|
|
|
|
Component {
|
|
|
|
|
id: appletContainerComponent
|
|
|
|
|
Item {
|
2015-03-11 10:50:00 +00:00
|
|
|
//not used yet
|
|
|
|
|
property bool animationsEnabled: false
|
2015-02-25 18:26:04 +00:00
|
|
|
property Item applet
|
2015-02-25 18:38:34 +00:00
|
|
|
Layout.fillWidth: true
|
|
|
|
|
Layout.fillHeight: applet && applet.Layout.fillHeight
|
|
|
|
|
Layout.onFillHeightChanged: {
|
|
|
|
|
if (plasmoid.formFactor == PlasmaCore.Types.Vertical) {
|
|
|
|
|
checkLastSpacer();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Layout.minimumWidth: root.width
|
2015-03-05 10:46:50 +00:00
|
|
|
Layout.minimumHeight: Math.max(applet.Layout.minimumHeight, root.height / 2)
|
2015-02-25 18:38:34 +00:00
|
|
|
|
|
|
|
|
Layout.preferredWidth: root.width
|
2015-02-26 10:34:33 +00:00
|
|
|
Layout.preferredHeight: Layout.minimumHeight
|
2015-02-25 18:38:34 +00:00
|
|
|
|
|
|
|
|
Layout.maximumWidth: root.width
|
2015-02-26 10:34:33 +00:00
|
|
|
Layout.maximumHeight: Layout.minimumHeight
|
2015-02-25 18:26:04 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
|
color: Qt.rgba(0, 0, 0, 0.9 * (Math.min(applicationsView.contentY + root.height, root.height) / root.height))
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PlasmaCore.ColorScope {
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
colorGroup: PlasmaCore.Theme.ComplementaryColorGroup
|
2015-03-05 16:28:24 +00:00
|
|
|
|
2015-02-25 18:26:04 +00:00
|
|
|
GridView {
|
|
|
|
|
id: applicationsView
|
|
|
|
|
anchors {
|
|
|
|
|
top: parent.top
|
|
|
|
|
bottom: parent.bottom
|
|
|
|
|
left: parent.left
|
|
|
|
|
right: parent.right
|
|
|
|
|
}
|
2015-02-25 18:38:34 +00:00
|
|
|
|
2015-03-05 20:12:23 +00:00
|
|
|
property Item draggingItem
|
|
|
|
|
|
2015-02-25 18:26:04 +00:00
|
|
|
cellWidth: root.buttonHeight
|
|
|
|
|
cellHeight: cellWidth
|
2015-03-05 12:37:39 +00:00
|
|
|
model: appListModel
|
2015-03-05 15:53:58 +00:00
|
|
|
|
2015-02-25 18:26:04 +00:00
|
|
|
snapMode: GridView.SnapToRow
|
2015-03-11 12:10:43 +00:00
|
|
|
|
|
|
|
|
onFlickingChanged: {
|
2015-03-13 12:39:51 +00:00
|
|
|
if (!draggingVertically && contentY < -headerItem.height + root.height) {
|
2015-03-11 12:10:43 +00:00
|
|
|
scrollAnim.to = Math.round(contentY/root.height) * root.height
|
|
|
|
|
scrollAnim.running = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
onDraggingVerticallyChanged: {
|
2015-03-13 12:39:51 +00:00
|
|
|
if (!draggingVertically && contentY < -headerItem.height + root.height) {
|
2015-03-11 12:10:43 +00:00
|
|
|
scrollAnim.to = Math.round(contentY/root.height) * root.height
|
|
|
|
|
scrollAnim.running = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
NumberAnimation {
|
|
|
|
|
id: scrollAnim
|
|
|
|
|
target: applicationsView
|
|
|
|
|
properties: "contentY"
|
|
|
|
|
duration: units.longDuration
|
|
|
|
|
easing.type: Easing.InOutQuad
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-25 18:26:04 +00:00
|
|
|
//clip: true
|
|
|
|
|
delegate: HomeLauncher {}
|
|
|
|
|
header: MouseArea {
|
|
|
|
|
z: 999
|
2015-03-11 11:33:15 +00:00
|
|
|
property Item layout: appletsLayout
|
2015-03-11 10:50:00 +00:00
|
|
|
property Item lastSpacer: spacer
|
2015-02-25 18:26:04 +00:00
|
|
|
width: root.width
|
2015-03-11 12:10:43 +00:00
|
|
|
height: mainLayout.Layout.minimumHeight
|
2015-02-25 18:26:04 +00:00
|
|
|
|
|
|
|
|
onPressAndHold: {
|
2015-02-26 10:25:00 +00:00
|
|
|
plasmoid.action("configure").trigger();
|
2015-02-25 18:26:04 +00:00
|
|
|
}
|
|
|
|
|
|
2015-02-25 18:38:34 +00:00
|
|
|
ColumnLayout {
|
|
|
|
|
id: mainLayout
|
2015-03-05 15:53:58 +00:00
|
|
|
anchors {
|
|
|
|
|
fill: parent
|
2015-03-05 16:17:27 +00:00
|
|
|
bottomMargin: stripe.height + units.gridUnit * 2
|
2015-03-05 15:53:58 +00:00
|
|
|
}
|
2015-03-05 10:46:50 +00:00
|
|
|
Item {
|
|
|
|
|
Layout.fillWidth: true
|
2015-03-11 11:33:15 +00:00
|
|
|
Layout.minimumHeight: root.height
|
2015-03-11 12:10:43 +00:00
|
|
|
Clock {
|
|
|
|
|
anchors {
|
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
|
bottom: goUp.top
|
|
|
|
|
margins: units.largeSpacing
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-03-11 11:33:15 +00:00
|
|
|
PlasmaCore.IconItem {
|
2015-03-11 12:10:43 +00:00
|
|
|
id: goUp
|
2015-03-11 11:33:15 +00:00
|
|
|
source: "go-up"
|
|
|
|
|
width: units.iconSizes.huge
|
|
|
|
|
height: width
|
|
|
|
|
anchors {
|
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
|
bottom: parent.bottom
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ColumnLayout {
|
|
|
|
|
id: appletsLayout
|
2015-03-11 12:10:43 +00:00
|
|
|
Layout.minimumHeight: Math.max(root.height, Math.round(Layout.preferredHeight / root.height) * root.height)
|
2015-03-11 11:33:15 +00:00
|
|
|
Item {
|
|
|
|
|
id: spacer
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
|
Layout.fillHeight: true
|
|
|
|
|
}
|
2015-03-05 10:46:50 +00:00
|
|
|
}
|
2015-02-25 18:38:34 +00:00
|
|
|
}
|
|
|
|
|
SatelliteStripe {
|
2015-02-25 18:26:04 +00:00
|
|
|
id: stripe
|
|
|
|
|
z: 99
|
2015-03-13 13:42:37 +00:00
|
|
|
property int viewPos: applicationsView.contentItem.height * applicationsView.visibleArea.yPosition
|
|
|
|
|
|
|
|
|
|
y: Math.max(viewPos,
|
|
|
|
|
Math.min(parent.height, viewPos + root.height) - height + Math.max(0, -(parent.height - height + applicationsView.contentY)))
|
2015-02-25 18:26:04 +00:00
|
|
|
|
|
|
|
|
PlasmaCore.Svg {
|
|
|
|
|
id: stripeIcons
|
|
|
|
|
imagePath: Qt.resolvedUrl("../images/homescreenicons.svg")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Row {
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
property int columns: 4
|
|
|
|
|
property alias buttonHeight: stripe.height
|
|
|
|
|
|
|
|
|
|
HomeLauncherSvg {
|
|
|
|
|
id: phoneIcon
|
|
|
|
|
svg: stripeIcons
|
|
|
|
|
elementId: "phone"
|
|
|
|
|
callback: function() {
|
2015-02-26 10:25:00 +00:00
|
|
|
console.log("Start phone")
|
2015-02-25 18:26:04 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HomeLauncherSvg {
|
|
|
|
|
id: messagingIcon
|
|
|
|
|
svg: stripeIcons
|
|
|
|
|
elementId: "messaging"
|
|
|
|
|
callback: function() { console.log("Start messaging") }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
HomeLauncherSvg {
|
|
|
|
|
id: emailIcon
|
|
|
|
|
svg: stripeIcons
|
|
|
|
|
elementId: "email"
|
|
|
|
|
callback: function() { console.log("Start email") }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
HomeLauncherSvg {
|
|
|
|
|
id: webIcon
|
|
|
|
|
svg: stripeIcons
|
|
|
|
|
elementId: "web"
|
|
|
|
|
callback: function() { console.log("Start web") }
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-02-25 18:38:34 +00:00
|
|
|
}
|
2015-02-25 18:26:04 +00:00
|
|
|
}
|
2015-03-05 10:41:01 +00:00
|
|
|
footer: Item {
|
|
|
|
|
width: units. gridUnit * 4
|
|
|
|
|
height: width
|
|
|
|
|
}
|
2015-02-25 18:26:04 +00:00
|
|
|
}
|
2015-03-05 16:28:24 +00:00
|
|
|
PlasmaComponents.ScrollBar {
|
|
|
|
|
flickableItem: applicationsView
|
|
|
|
|
opacity: applicationsView.flicking ? 1 : 0
|
|
|
|
|
Behavior on opacity {
|
|
|
|
|
NumberAnimation {
|
|
|
|
|
duration: units.shortDuration
|
|
|
|
|
easing.type: Easing.InOutQuad
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-02-25 18:26:04 +00:00
|
|
|
}
|
|
|
|
|
}
|