summaryrefslogtreecommitdiffstats
path: root/basicsuite/Media Player/ImageButton.qml
diff options
context:
space:
mode:
authoraavit <eirik.aavitsland@digia.com>2013-10-08 16:55:15 +0200
committerEirik Aavitsland <eirik.aavitsland@digia.com>2013-10-09 11:33:52 +0300
commitbcc6a8fe80f2f31605afaae63e1b05051c0deb5f (patch)
tree408bb294cb2fb813f2b86fcf0ae90e0f9d1c3d88 /basicsuite/Media Player/ImageButton.qml
parentecd752748fd0385d6b22712663c0e1d1c87921af (diff)
Moved Media Player and Camera from experimental to basicsuite
Change-Id: I8fd2335614062e1ca09f385ad6c0ae0dd19d694c Reviewed-by: Pasi Petäjäjärvi <pasi.petajajarvi@digia.com>
Diffstat (limited to 'basicsuite/Media Player/ImageButton.qml')
-rwxr-xr-xbasicsuite/Media Player/ImageButton.qml44
1 files changed, 44 insertions, 0 deletions
diff --git a/basicsuite/Media Player/ImageButton.qml b/basicsuite/Media Player/ImageButton.qml
new file mode 100755
index 0000000..274efd5
--- /dev/null
+++ b/basicsuite/Media Player/ImageButton.qml
@@ -0,0 +1,44 @@
+
+import QtQuick 2.0
+
+Item {
+ id: root
+
+ property alias enabled: mouseArea.enabled
+ property alias imageSource: image.source
+
+ property bool checkable: false
+ property bool checked: false
+ property alias hover: mouseArea.containsMouse
+ property alias pressed: mouseArea.pressed
+
+ opacity: enabled ? 1.0 : 0.3
+ signal clicked
+
+ width: image.width
+ height: image.height
+
+ Image {
+ id: image
+ anchors.centerIn: parent
+ visible: true
+ opacity: pressed ? 0.6 : 1
+ smooth: true
+ }
+
+// ColorOverlay {
+// id: glowEffect
+// anchors.fill: image
+// source: image
+// color: pressed ? "#22000000" : checked ? "orange" : "white"
+// visible: checked || hover || pressed
+// }
+
+ MouseArea {
+ id: mouseArea
+ hoverEnabled: true
+ anchors.fill: root
+ onPositionChanged: applicationWindow.resetTimer()
+ onClicked: root.clicked();
+ }
+}