From 55c66514c6e03bc731c7f5ae4d6f6a1e1d1ab601 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Tue, 15 Dec 2015 19:53:18 +0100 Subject: Separate widgets into primary and augmenting items --- src/widget/augment/Highlighter.qml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/widget/augment/Highlighter.qml (limited to 'src/widget/augment/Highlighter.qml') diff --git a/src/widget/augment/Highlighter.qml b/src/widget/augment/Highlighter.qml new file mode 100644 index 0000000..53f308c --- /dev/null +++ b/src/widget/augment/Highlighter.qml @@ -0,0 +1,24 @@ +import QtQuick 2.0 + +Item { + function select() { bar.opacity = 1 } + function deselect() { bar.opacity = 0 } + function focus() { bar.color = settings.highlighter.focusColor } + function unfocus() { bar.color = settings.highlighter.defaultColor } + + Rectangle { + id: bar + + anchors.fill: parent + + opacity: 0 + color: settings.highlighter.defaultColor + + Behavior on opacity { + NumberAnimation { + duration: 300 + easing.type: Easing.OutCubic + } + } + } +} -- cgit v1.2.3