aboutsummaryrefslogtreecommitdiff
path: root/qml/Highlighter.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/Highlighter.qml')
-rw-r--r--qml/Highlighter.qml33
1 files changed, 0 insertions, 33 deletions
diff --git a/qml/Highlighter.qml b/qml/Highlighter.qml
deleted file mode 100644
index e42aeb1..0000000
--- a/qml/Highlighter.qml
+++ /dev/null
@@ -1,33 +0,0 @@
-import QtQuick 2.0
-import Qt.labs.settings 1.0
-
-Item {
- Settings {
- id: settings
- category: "highlighter"
-
- property string defaultColor : "#909636"
- property string focusColor : "#352F6A"
- }
-
- function select() { bar.opacity = 1 }
- function deselect() { bar.opacity = 0 }
- function focus() { bar.color = settings.focusColor }
- function unfocus() { bar.color = settings.defaultColor }
-
- Rectangle {
- id: bar
-
- anchors.fill: parent
-
- opacity: 0
- color: settings.defaultColor
-
- Behavior on opacity {
- NumberAnimation {
- duration: 300
- easing.type: Easing.OutCubic
- }
- }
- }
-}