2011-10-10 13:04:22 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 by Daker Fernandes Pinheiro <dakerfp@gmail.com>
|
|
|
|
* 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-12-22 11:53:15 +01:00
|
|
|
/**Documented API
|
2011-11-06 13:39:30 +01:00
|
|
|
Inherits:
|
|
|
|
Item
|
2011-10-31 05:47:50 +01:00
|
|
|
|
2011-11-06 13:39:30 +01:00
|
|
|
Imports:
|
|
|
|
QtQuick 1.0
|
|
|
|
org.kde.plasma.core
|
2011-10-31 05:47:50 +01:00
|
|
|
|
2011-11-06 13:39:30 +01:00
|
|
|
Description:
|
2011-10-31 05:47:50 +01:00
|
|
|
TODO i need more info here
|
|
|
|
|
|
|
|
|
|
|
|
Properties:
|
|
|
|
**/
|
|
|
|
|
2011-10-10 13:04:22 +02:00
|
|
|
import QtQuick 1.0
|
|
|
|
import org.kde.plasma.core 0.1 as PlasmaCore
|
|
|
|
|
|
|
|
Item {
|
|
|
|
id: main
|
|
|
|
state: parent.state
|
2012-01-16 21:28:50 +01:00
|
|
|
//used to tell apart this implementation with the touch components one
|
2011-11-08 20:48:33 +01:00
|
|
|
property bool hasOverState: true
|
2011-10-10 13:04:22 +02:00
|
|
|
|
|
|
|
PlasmaCore.FrameSvgItem {
|
|
|
|
id: hover
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
fill: parent
|
|
|
|
leftMargin: -margins.left
|
|
|
|
topMargin: -margins.top
|
|
|
|
rightMargin: -margins.right
|
|
|
|
bottomMargin: -margins.bottom
|
|
|
|
}
|
|
|
|
opacity: 0
|
|
|
|
imagePath: "widgets/button"
|
|
|
|
prefix: "hover"
|
|
|
|
}
|
|
|
|
|
|
|
|
PlasmaCore.FrameSvgItem {
|
|
|
|
id: shadow
|
|
|
|
|
|
|
|
anchors {
|
|
|
|
fill: parent
|
|
|
|
leftMargin: -margins.left
|
|
|
|
topMargin: -margins.top
|
|
|
|
rightMargin: -margins.right
|
|
|
|
bottomMargin: -margins.bottom
|
|
|
|
}
|
|
|
|
imagePath: "widgets/button"
|
|
|
|
prefix: "shadow"
|
|
|
|
}
|
|
|
|
|
|
|
|
states: [
|
|
|
|
State {
|
|
|
|
name: "shadow"
|
|
|
|
PropertyChanges {
|
|
|
|
target: shadow
|
|
|
|
opacity: 1
|
|
|
|
}
|
|
|
|
PropertyChanges {
|
|
|
|
target: hover
|
|
|
|
opacity: 0
|
|
|
|
prefix: "hover"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
State {
|
|
|
|
name: "hover"
|
|
|
|
PropertyChanges {
|
|
|
|
target: shadow
|
|
|
|
opacity: 0
|
|
|
|
}
|
|
|
|
PropertyChanges {
|
|
|
|
target: hover
|
|
|
|
opacity: 1
|
|
|
|
prefix: "hover"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
State {
|
|
|
|
name: "focus"
|
|
|
|
PropertyChanges {
|
|
|
|
target: shadow
|
|
|
|
opacity: 0
|
|
|
|
}
|
|
|
|
PropertyChanges {
|
|
|
|
target: hover
|
|
|
|
opacity: 1
|
|
|
|
prefix: "focus"
|
|
|
|
}
|
2011-10-10 14:32:53 +02:00
|
|
|
},
|
|
|
|
State {
|
|
|
|
name: "hidden"
|
|
|
|
PropertyChanges {
|
|
|
|
target: shadow
|
|
|
|
opacity: 0
|
|
|
|
}
|
|
|
|
PropertyChanges {
|
|
|
|
target: hover
|
|
|
|
opacity: 0
|
|
|
|
prefix: "hover"
|
|
|
|
}
|
2011-10-10 13:04:22 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
transitions: [
|
|
|
|
Transition {
|
|
|
|
PropertyAnimation {
|
|
|
|
properties: "opacity"
|
|
|
|
duration: 250
|
|
|
|
easing.type: Easing.OutQuad
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|