import QtQuick 2.0 import QtQuick.Layouts 1.1 import Qt.labs.settings 1.0 import "commands.js" as Commands Item { id: item signal executed visible: false Settings { id: settings category: "command" property color background : "black" property int fontSize : 12 property string fontFamily : "Monospace" property color fontColor : "white" } function focus(prefix) { visible = true; command.text = prefix; command.forceActiveFocus(); } function unfocus() { visible = false; } Rectangle { anchors.fill: parent color: settings.background TextInput { id: command font { family: settings.fontFamily pointSize: settings.fontSize } color: settings.fontColor selectionColor: settings.fontColor selectedTextColor: settings.background selectByMouse: true function reset() { text = '' } onAccepted: { const prefix = String(text).charAt(0); const cmd = String(text).substring(1, String(text).length); switch ( prefix ) { case ':': { Commands.execute(cmd); reset(); break; } default: { console.log('"' + prefix + '"' + " is not a command prefix"); } } item.executed(); } } } }