|
@@ -1,8 +1,9 @@
|
|
import QtQuick 2.0
|
|
import QtQuick 2.0
|
|
import QtQuick.Controls 1.4
|
|
import QtQuick.Controls 1.4
|
|
-
|
|
|
|
|
|
+import QtQuick.Controls.Styles 1.4
|
|
Item {
|
|
Item {
|
|
id: root
|
|
id: root
|
|
|
|
+ property bool logEmpty: true
|
|
Rectangle {
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
anchors.fill: parent
|
|
color: "#839496"
|
|
color: "#839496"
|
|
@@ -21,17 +22,25 @@ Item {
|
|
target: consoleInput
|
|
target: consoleInput
|
|
focus: true
|
|
focus: true
|
|
}
|
|
}
|
|
|
|
+ PropertyChanges {
|
|
|
|
+ target: controlBar
|
|
|
|
+ opacity: 1.0
|
|
|
|
+ }
|
|
},
|
|
},
|
|
State {
|
|
State {
|
|
name: "closed"
|
|
name: "closed"
|
|
PropertyChanges {
|
|
PropertyChanges {
|
|
target: root
|
|
target: root
|
|
- height: consoleInput.height
|
|
|
|
|
|
+ height: consoleInput.height + consoleInput.anchors.bottomMargin*2
|
|
}
|
|
}
|
|
PropertyChanges {
|
|
PropertyChanges {
|
|
target: consoleInput
|
|
target: consoleInput
|
|
focus: false
|
|
focus: false
|
|
}
|
|
}
|
|
|
|
+ PropertyChanges {
|
|
|
|
+ target: controlBar
|
|
|
|
+ opacity: 0.0
|
|
|
|
+ }
|
|
}
|
|
}
|
|
]
|
|
]
|
|
|
|
|
|
@@ -51,8 +60,11 @@ Item {
|
|
id: consoleLog
|
|
id: consoleLog
|
|
width: root.width - 10
|
|
width: root.width - 10
|
|
height: contentHeight
|
|
height: contentHeight
|
|
- textFormat: Text.RichText
|
|
|
|
|
|
+ textFormat: TextEdit.RichText
|
|
|
|
+ font.family: "Inconsolata"
|
|
|
|
+ font.pointSize: 11
|
|
color: "#002b36"
|
|
color: "#002b36"
|
|
|
|
+ onTextChanged: root.logEmpty = consoleLog.text.length <= 0
|
|
Connections {
|
|
Connections {
|
|
target: _handler.console
|
|
target: _handler.console
|
|
onCommandLog: {
|
|
onCommandLog: {
|
|
@@ -64,53 +76,56 @@ Item {
|
|
onCommandError: {
|
|
onCommandError: {
|
|
fadeIn.start()
|
|
fadeIn.start()
|
|
}
|
|
}
|
|
|
|
+ onResetLog: {
|
|
|
|
+ consoleLog.text = ""
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
Rectangle {
|
|
Rectangle {
|
|
id: errorRect
|
|
id: errorRect
|
|
- anchors.left: parent.left
|
|
|
|
- anchors.right: parent.right
|
|
|
|
- anchors.top: consoleInput.top
|
|
|
|
- anchors.bottom: consoleInput.bottom
|
|
|
|
- color: "#ff0000"
|
|
|
|
- opacity: 0.0
|
|
|
|
- visible: opacity > 0
|
|
|
|
|
|
+ anchors.fill: consoleInput
|
|
|
|
+ anchors.rightMargin: -2
|
|
|
|
+ anchors.leftMargin: -2
|
|
|
|
+ opacity: 0.6
|
|
|
|
+ border.width: 1
|
|
|
|
+ radius: 2
|
|
|
|
|
|
- NumberAnimation {
|
|
|
|
|
|
+ ColorAnimation on color {
|
|
id: fadeIn
|
|
id: fadeIn
|
|
- target: errorRect
|
|
|
|
- property: "opacity"
|
|
|
|
|
|
+ from: "#ffffff"
|
|
|
|
+ to: "#ffaeae"
|
|
|
|
+ running: false
|
|
duration: 350
|
|
duration: 350
|
|
- from: 0.0
|
|
|
|
- to: 1.0
|
|
|
|
onStopped: {
|
|
onStopped: {
|
|
fadeOut.start()
|
|
fadeOut.start()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- NumberAnimation {
|
|
|
|
|
|
+ ColorAnimation on color {
|
|
id: fadeOut
|
|
id: fadeOut
|
|
- target: errorRect
|
|
|
|
- property: "opacity"
|
|
|
|
|
|
+ from: "#ffaeae"
|
|
|
|
+ to: "#ffffff"
|
|
|
|
+ running: false
|
|
duration: 350
|
|
duration: 350
|
|
- from: 1.0
|
|
|
|
- to: 0.0
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
TextInput {
|
|
TextInput {
|
|
id: consoleInput
|
|
id: consoleInput
|
|
anchors.bottom: parent.bottom
|
|
anchors.bottom: parent.bottom
|
|
- height: 30
|
|
|
|
|
|
+ height: 20
|
|
font.weight: Font.Bold
|
|
font.weight: Font.Bold
|
|
color: "#002b36"
|
|
color: "#002b36"
|
|
anchors.left: parent.left
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.right: parent.right
|
|
- anchors.rightMargin: 5
|
|
|
|
- anchors.leftMargin: 5
|
|
|
|
|
|
+ anchors.rightMargin: 3
|
|
|
|
+ anchors.leftMargin: 3
|
|
|
|
+ anchors.bottomMargin: 2
|
|
enabled: !_handler.console.busy
|
|
enabled: !_handler.console.busy
|
|
|
|
+ font.family: "Inconsolata"
|
|
|
|
+ font.pointSize: 11
|
|
onAccepted: {
|
|
onAccepted: {
|
|
_handler.console.exec(consoleInput.text);
|
|
_handler.console.exec(consoleInput.text);
|
|
consoleInput.text = ""
|
|
consoleInput.text = ""
|
|
@@ -119,12 +134,123 @@ Item {
|
|
switch(event.key) {
|
|
switch(event.key) {
|
|
case Qt.Key_Up:
|
|
case Qt.Key_Up:
|
|
event.accepted = true
|
|
event.accepted = true
|
|
- _handler.console.recentUp();
|
|
|
|
- break;
|
|
|
|
|
|
+ _handler.console.recentUp()
|
|
|
|
+ break
|
|
case Qt.Key_Down:
|
|
case Qt.Key_Down:
|
|
event.accepted = true
|
|
event.accepted = true
|
|
- _handler.console.recentDown();
|
|
|
|
- break;
|
|
|
|
|
|
+ _handler.console.recentDown()
|
|
|
|
+ break
|
|
|
|
+ case Qt.Key_Tab:
|
|
|
|
+ event.accepted = true
|
|
|
|
+ _handler.console.requestAutocomplete(consoleInput.text)
|
|
|
|
+ break
|
|
|
|
+ case Qt.Key_C:
|
|
|
|
+ if(event.modifiers === Qt.ControlModifier) {
|
|
|
|
+ event.accepted = true
|
|
|
|
+ consoleInput.text = ""
|
|
|
|
+ if(flick.flickable.contentHeight > flick.flickable.height) {
|
|
|
|
+ flick.flickable.contentY = flick.flickable.contentHeight - flick.flickable.height
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ break
|
|
|
|
+ case Qt.Key_Escape:
|
|
|
|
+ event.accepted = true
|
|
|
|
+ consoleInput.text = ""
|
|
|
|
+ break
|
|
|
|
+ //TODO: choose from prediction menu
|
|
|
|
+ // case Qt.Key_Right:
|
|
|
|
+ // if(event.modifiers === Qt.ControlModifier) {
|
|
|
|
+ // event.accepted = true
|
|
|
|
+ // predictionsRepeater.activeIndex++
|
|
|
|
+ // if(predictionsRepeater.activeIndex >= predictionsRepeater.model) {
|
|
|
|
+ // predictionsRepeater.activeIndex = 0;
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // break
|
|
|
|
+ // case Qt.Key_Left:
|
|
|
|
+ // if(event.modifiers === Qt.ControlModifier) {
|
|
|
|
+ // event.accepted = true
|
|
|
|
+ // predictionsRepeater.activeIndex--
|
|
|
|
+ // if(predictionsRepeater.activeIndex < 0) {
|
|
|
|
+ // predictionsRepeater.activeIndex = predictionsRepeater.model - 1;
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // break
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ onTextChanged: {
|
|
|
|
+ predictionsRepeater.activeIndex = -1
|
|
|
|
+ _handler.console.requestPredictions(consoleInput.text);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ Row {
|
|
|
|
+ anchors.bottom: parent.top
|
|
|
|
+ spacing: 3
|
|
|
|
+ Repeater {
|
|
|
|
+ id: predictionsRepeater
|
|
|
|
+ property var values: null
|
|
|
|
+ property int activeIndex: -1
|
|
|
|
+ model: values ? values.length : 0
|
|
|
|
+ Rectangle {
|
|
|
|
+ opacity: 0.6
|
|
|
|
+ width: prediction.width + 10
|
|
|
|
+ height: prediction.height + 10
|
|
|
|
+ border.width: 1
|
|
|
|
+ radius: 2
|
|
|
|
+ color: predictionsRepeater.activeIndex === model.index ? "#e5f1f7" : "#ffffff"
|
|
|
|
+ Text {
|
|
|
|
+ id: prediction
|
|
|
|
+ anchors.centerIn: parent
|
|
|
|
+ text: predictionsRepeater.values[model.index]
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ Row {
|
|
|
|
+ id: controlBar
|
|
|
|
+ anchors.right: parent.right
|
|
|
|
+ anchors.rightMargin: 2
|
|
|
|
+ anchors.top: parent.top
|
|
|
|
+ anchors.topMargin: 2
|
|
|
|
+ spacing: 10
|
|
|
|
+ visible: opacity > 0
|
|
|
|
+
|
|
|
|
+ Behavior on opacity {
|
|
|
|
+ NumberAnimation {
|
|
|
|
+ duration: 200
|
|
|
|
+ from: 0.0
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ Button {
|
|
|
|
+ visible: !root.logEmpty
|
|
|
|
+ style: ButtonStyle {
|
|
|
|
+ background: Image {
|
|
|
|
+ source: control.pressed ? "qrc:///images/erase-24_active.png" : "qrc:///images/erase-24.png"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ onClicked: _handler.console.resetLog()
|
|
|
|
+ }
|
|
|
|
+ Button {
|
|
|
|
+ style: ButtonStyle {
|
|
|
|
+ background: Image {
|
|
|
|
+ source: control.pressed ? "qrc:///images/gear-2-24_active.png" : "qrc:///images/gear-2-24.png"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ onClicked: consoleSettingsMenu.popup()
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ Menu {
|
|
|
|
+ id: consoleSettingsMenu
|
|
|
|
+ MenuItem {
|
|
|
|
+ checkable: true
|
|
|
|
+ text: "Show predictions"
|
|
|
|
+ onTriggered: {
|
|
|
|
+ //TODO: Once settigns are implemented need to make console more or less configurable
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -134,5 +260,12 @@ Item {
|
|
onRecentChanged: {
|
|
onRecentChanged: {
|
|
consoleInput.text = _handler.console.recent
|
|
consoleInput.text = _handler.console.recent
|
|
}
|
|
}
|
|
|
|
+ onAutocomplete: {
|
|
|
|
+ consoleInput.text = value
|
|
|
|
+ consoleInput.cursorPosition = consoleInput.length
|
|
|
|
+ }
|
|
|
|
+ onPredict: {
|
|
|
|
+ predictionsRepeater.values = predictions
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|