2011-10-31 05:37:10 +01:00
|
|
|
/*
|
2011-05-18 21:38:21 +02:00
|
|
|
* Copyright 2011 Daker Fernandes Pinheiro <dakerfp@gmail.com>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2011-10-31 05:37:10 +01:00
|
|
|
|
2011-12-22 11:53:15 +01:00
|
|
|
/**Documented API
|
2011-10-31 05:37:10 +01:00
|
|
|
Inherits:
|
|
|
|
Item
|
|
|
|
|
|
|
|
Imports:
|
|
|
|
QtQuick 1.1
|
|
|
|
org.kde.plasma.core
|
|
|
|
|
2011-11-06 13:39:30 +01:00
|
|
|
Description:
|
2011-12-23 11:58:05 +01:00
|
|
|
Used to highlight an item of a list. to be used only as the "highlight" property of the ListView and GridView primitive QML components (or their derivates)
|
2012-02-09 19:10:23 +01:00
|
|
|
Provides built-in animation of Behavior on opacity Easing.OutQuad for a duration of 250. (TODO, make optional? e.g. animate: false)
|
2011-10-31 05:37:10 +01:00
|
|
|
|
2011-11-06 13:39:30 +01:00
|
|
|
Properties:
|
2011-10-31 05:37:10 +01:00
|
|
|
bool hover:
|
2011-12-23 11:58:05 +01:00
|
|
|
true if the user is hovering over the component
|
2011-10-31 05:37:10 +01:00
|
|
|
|
|
|
|
bool pressed:
|
2011-12-23 11:58:05 +01:00
|
|
|
true if the mouse button is pressed over the component.
|
2011-11-06 13:39:30 +01:00
|
|
|
**/
|
2011-10-31 05:37:10 +01:00
|
|
|
|
2011-10-30 20:37:10 +01:00
|
|
|
import QtQuick 1.0
|
2011-05-18 21:38:21 +02:00
|
|
|
import org.kde.plasma.core 0.1 as PlasmaCore
|
|
|
|
|
|
|
|
Item {
|
2011-07-08 23:49:40 +02:00
|
|
|
id: highlight
|
2011-05-18 21:38:21 +02:00
|
|
|
|
|
|
|
property bool hover: false
|
|
|
|
property bool pressed: false
|
|
|
|
|
|
|
|
PlasmaCore.FrameSvgItem {
|
2011-07-08 23:49:40 +02:00
|
|
|
id: background
|
2011-05-18 21:38:21 +02:00
|
|
|
imagePath: "widgets/viewitem"
|
|
|
|
prefix: {
|
|
|
|
if (pressed)
|
|
|
|
return hover ? "selected+hover" : "selected";
|
|
|
|
|
|
|
|
if (hover)
|
|
|
|
return "hover";
|
|
|
|
|
|
|
|
return "normal";
|
|
|
|
}
|
|
|
|
|
2012-02-09 19:08:29 +01:00
|
|
|
Behavior on opacity {
|
|
|
|
NumberAnimation {
|
|
|
|
duration: 250
|
|
|
|
easing.type: Easing.OutQuad
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-18 21:38:21 +02:00
|
|
|
anchors {
|
|
|
|
fill: parent
|
2012-02-09 19:22:13 +01:00
|
|
|
//FIXME: breaks listviews and highlight item
|
|
|
|
// topMargin: -background.margins.top
|
|
|
|
// leftMargin: -background.margins.left
|
|
|
|
// bottomMargin: -background.margins.bottom
|
|
|
|
// rightMargin: -background.margins.right
|
2011-05-18 21:38:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|