2011-10-12 00:04:37 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 by Marco Martin <mart@kde.org>
|
|
|
|
*
|
|
|
|
* 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 Library 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.
|
|
|
|
*/
|
|
|
|
|
2011-10-28 16:23:08 +02:00
|
|
|
import QtQuick 1.1
|
2011-10-12 00:04:37 +02:00
|
|
|
import org.kde.plasma.core 0.1 as PlasmaCore
|
|
|
|
|
2012-12-17 23:35:55 +01:00
|
|
|
/**
|
|
|
|
* A plasma theme based toolbar.
|
|
|
|
*/
|
2011-11-09 20:09:36 +01:00
|
|
|
Item{
|
2011-10-12 00:04:37 +02:00
|
|
|
id: toolBar
|
2011-10-28 16:23:08 +02:00
|
|
|
width: parent.width
|
2011-11-28 12:33:28 +01:00
|
|
|
height: (tools && enabled) ? tools.height + frameSvg.margins.top + frameSvg.margins.bottom : 0
|
2011-11-10 14:14:16 +01:00
|
|
|
visible: height > 0
|
2012-12-17 23:35:55 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* type:Object margins
|
|
|
|
* margins from the toolbar to the contents. It has 4 properties: left,
|
|
|
|
* top, right, bottom
|
|
|
|
*/
|
2012-11-07 01:08:58 +01:00
|
|
|
property alias margins: frameSvg.margins
|
|
|
|
|
2011-11-10 14:14:16 +01:00
|
|
|
Behavior on height {
|
2011-11-10 16:52:55 +01:00
|
|
|
PropertyAnimation {
|
|
|
|
id: heightAnimation
|
|
|
|
duration: 250
|
|
|
|
}
|
2011-11-10 14:14:16 +01:00
|
|
|
}
|
2011-11-10 14:50:04 +01:00
|
|
|
z: 1000
|
2011-10-12 00:04:37 +02:00
|
|
|
|
2012-12-17 23:35:55 +01:00
|
|
|
/**
|
|
|
|
* The ToolBarLayout that contains the ToolButton components that are
|
|
|
|
* contained in the ToolBar. ToolBarLayout is not mandatory.
|
|
|
|
*
|
|
|
|
* The default value is null.
|
|
|
|
*/
|
2011-10-12 00:04:37 +02:00
|
|
|
property Item tools
|
|
|
|
|
2012-12-17 23:35:55 +01:00
|
|
|
/**
|
|
|
|
* The type of transition to be used for the ToolBar when the page changes
|
|
|
|
* on the relevant PageStack.
|
|
|
|
*
|
|
|
|
* The possible values can be one of the following:
|
|
|
|
*
|
|
|
|
* - set: an instantaneous change (default)
|
|
|
|
* - push: follows page stack push animation
|
|
|
|
* - pop: follows page stack pop animation
|
|
|
|
* - replace: follows page stack replace animation
|
|
|
|
*/
|
2011-10-12 00:04:37 +02:00
|
|
|
property string transition: "set"
|
|
|
|
|
2012-05-03 14:24:46 +02:00
|
|
|
//This invisible item keeps all the old dismissed tools:
|
2012-06-15 00:26:51 +02:00
|
|
|
//note that the outside application still has to keep references to them (or explicitly delete them) or they will just accumulate wasting memory
|
2012-05-03 14:24:46 +02:00
|
|
|
Item {
|
|
|
|
id: oldToolsItem
|
|
|
|
visible: false
|
|
|
|
}
|
2012-12-17 23:35:55 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This sets the tools for the ToolBar and the transition type that will be
|
|
|
|
* used when the page changes on the relevant PageStack.
|
|
|
|
*
|
|
|
|
* @param type:Item tools see tool property
|
|
|
|
* @param type:string transition see transition property
|
|
|
|
*/
|
2011-10-12 00:04:37 +02:00
|
|
|
function setTools(tools, transition)
|
|
|
|
{
|
|
|
|
if (toolBar.tools == tools) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2012-05-03 14:24:46 +02:00
|
|
|
if (connection.oldTools) {
|
|
|
|
connection.oldTools.parent = oldToolsItem
|
|
|
|
}
|
|
|
|
connection.oldTools = toolBar.tools
|
2011-10-12 00:04:37 +02:00
|
|
|
toolBar.transition = transition
|
|
|
|
toolBar.tools = tools
|
|
|
|
}
|
2011-11-10 14:14:16 +01:00
|
|
|
Connections {
|
2011-11-15 15:54:55 +01:00
|
|
|
id: connection
|
2011-11-10 14:14:16 +01:00
|
|
|
target: toolBar
|
2012-05-03 14:24:46 +02:00
|
|
|
property Item oldTools
|
|
|
|
|
2011-11-15 15:54:55 +01:00
|
|
|
function internalToolsChanged()
|
|
|
|
{
|
2011-11-10 14:14:16 +01:00
|
|
|
var newContainer
|
|
|
|
var oldContainer
|
|
|
|
if (containerA.current) {
|
|
|
|
newContainer = containerB
|
|
|
|
oldContainer = containerA
|
|
|
|
} else {
|
|
|
|
newContainer = containerA
|
|
|
|
oldContainer = containerB
|
|
|
|
}
|
|
|
|
containerA.current = !containerA.current
|
2011-10-12 00:04:37 +02:00
|
|
|
|
2012-11-07 01:08:58 +01:00
|
|
|
if (tools) {
|
2012-07-31 15:03:01 +02:00
|
|
|
tools.parent = newContainer
|
|
|
|
tools.visible = true
|
|
|
|
tools.anchors.left = newContainer.left
|
|
|
|
tools.anchors.right = newContainer.right
|
|
|
|
}
|
2011-10-12 00:04:37 +02:00
|
|
|
|
2011-11-10 14:14:16 +01:00
|
|
|
switch (transition) {
|
|
|
|
case "push":
|
|
|
|
containerA.animationsEnabled = true
|
|
|
|
oldContainer.x = -oldContainer.width/2
|
2011-10-12 00:04:37 +02:00
|
|
|
|
2011-11-10 14:14:16 +01:00
|
|
|
containerA.animationsEnabled = false
|
|
|
|
newContainer.x = newContainer.width/2
|
|
|
|
newContainer.y = 0
|
|
|
|
containerA.animationsEnabled = true
|
|
|
|
newContainer.x = 0
|
|
|
|
break
|
|
|
|
case "pop":
|
|
|
|
containerA.animationsEnabled = true
|
|
|
|
oldContainer.x = oldContainer.width/2
|
2011-10-12 00:04:37 +02:00
|
|
|
|
2011-11-10 14:14:16 +01:00
|
|
|
containerA.animationsEnabled = false
|
|
|
|
newContainer.x = -newContainer.width/2
|
|
|
|
newContainer.y = 0
|
|
|
|
containerA.animationsEnabled = true
|
|
|
|
newContainer.x = 0
|
|
|
|
break
|
|
|
|
case "replace":
|
|
|
|
containerA.animationsEnabled = true
|
|
|
|
oldContainer.y = oldContainer.height
|
2011-10-12 00:04:37 +02:00
|
|
|
|
2011-11-10 14:14:16 +01:00
|
|
|
containerA.animationsEnabled = false
|
|
|
|
newContainer.x = 0
|
|
|
|
newContainer.y = -newContainer.height
|
|
|
|
containerA.animationsEnabled = true
|
|
|
|
newContainer.y = 0
|
|
|
|
break
|
|
|
|
case "set":
|
|
|
|
default:
|
|
|
|
containerA.animationsEnabled = false
|
|
|
|
containerA.animationsEnabled = false
|
|
|
|
oldContainer.x = -oldContainer.width/2
|
|
|
|
newContainer.x = 0
|
|
|
|
break
|
|
|
|
}
|
2011-10-12 00:04:37 +02:00
|
|
|
|
2011-11-10 14:14:16 +01:00
|
|
|
newContainer.opacity = 1
|
|
|
|
oldContainer.opacity = 0
|
2011-10-12 00:04:37 +02:00
|
|
|
}
|
2011-11-15 15:54:55 +01:00
|
|
|
onToolsChanged: connection.internalToolsChanged()
|
|
|
|
Component.onCompleted: connection.internalToolsChanged()
|
2011-10-12 00:04:37 +02:00
|
|
|
}
|
|
|
|
|
2011-11-09 20:09:36 +01:00
|
|
|
PlasmaCore.FrameSvgItem {
|
|
|
|
id: frameSvg
|
2011-11-30 21:53:47 +01:00
|
|
|
imagePath: "widgets/toolbar"
|
2011-11-09 20:09:36 +01:00
|
|
|
anchors {
|
|
|
|
fill: parent
|
|
|
|
leftMargin: -margins.left
|
|
|
|
rightMargin: -margins.right
|
2011-11-10 16:21:42 +01:00
|
|
|
//FIXME: difference between actial border and shadow
|
|
|
|
topMargin: toolBar.y <= 0 ? -margins.top : -margins.top/2
|
|
|
|
bottomMargin: toolBar.y >= toolBar.parent.height - toolBar.height ? -margins.bottom : -margins.bottom/2
|
2011-11-09 20:09:36 +01:00
|
|
|
}
|
2011-10-12 00:04:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Item {
|
2011-11-10 16:52:55 +01:00
|
|
|
clip: containerAOpacityAnimation.running || heightAnimation.running
|
2011-10-12 00:04:37 +02:00
|
|
|
anchors {
|
|
|
|
fill: parent
|
2012-11-07 01:08:58 +01:00
|
|
|
leftMargin: frameSvg.margins.left
|
|
|
|
topMargin: frameSvg.margins.top
|
|
|
|
rightMargin: frameSvg.margins.right
|
|
|
|
bottomMargin: frameSvg.margins.bottom
|
2011-10-12 00:04:37 +02:00
|
|
|
}
|
|
|
|
|
2012-11-07 01:09:55 +01:00
|
|
|
// We have two containers here so that when we transition from one set of tools to another
|
|
|
|
// we can have a nice transition animation with the old tools in one container and the
|
|
|
|
// new tools in the other
|
2011-10-12 00:04:37 +02:00
|
|
|
Item {
|
|
|
|
id: containerA
|
|
|
|
width: parent.width
|
|
|
|
height: parent.height
|
|
|
|
property bool animationsEnabled: false
|
|
|
|
opacity: 0
|
|
|
|
//this asymmetry just to not export a property
|
|
|
|
property bool current: false
|
|
|
|
Behavior on opacity {
|
2011-11-10 16:21:42 +01:00
|
|
|
PropertyAnimation {
|
|
|
|
id: containerAOpacityAnimation
|
|
|
|
duration: 250
|
|
|
|
}
|
2011-10-12 00:04:37 +02:00
|
|
|
}
|
|
|
|
Behavior on x {
|
|
|
|
enabled: containerA.animationsEnabled
|
|
|
|
PropertyAnimation {
|
|
|
|
duration: 250
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Behavior on y {
|
|
|
|
enabled: containerA.animationsEnabled
|
|
|
|
PropertyAnimation {
|
|
|
|
duration: 250
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Item {
|
|
|
|
id: containerB
|
|
|
|
width: parent.width
|
|
|
|
height: parent.height
|
|
|
|
opacity: 0
|
|
|
|
Behavior on opacity {
|
|
|
|
PropertyAnimation { duration: 250 }
|
|
|
|
}
|
|
|
|
Behavior on x {
|
|
|
|
enabled: containerA.animationsEnabled
|
|
|
|
PropertyAnimation {
|
|
|
|
duration: 250
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Behavior on y {
|
|
|
|
enabled: containerA.animationsEnabled
|
|
|
|
PropertyAnimation {
|
|
|
|
duration: 250
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|