aboutsummaryrefslogtreecommitdiff
path: root/qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qml/main.qml')
-rw-r--r--qml/main.qml53
1 files changed, 0 insertions, 53 deletions
diff --git a/qml/main.qml b/qml/main.qml
deleted file mode 100644
index f7673dc..0000000
--- a/qml/main.qml
+++ /dev/null
@@ -1,53 +0,0 @@
-import QtQuick 2.0
-import QtQuick.Window 2.0
-import QtQuick.Controls 1.2
-import QtQuick.Layouts 1.1
-import Qt.labs.settings 1.0
-
-ApplicationWindow {
- id: root
-
- visible: true
-
- Settings {
- id: settings
- category: "window"
-
- property string background : "#161616"
- }
-
- color: settings.background
-
- Component.onCompleted: {
- terminalList.createItem();
- terminalList.focusCurrent();
- }
-
- ColumnLayout {
- anchors.fill: parent
-
- TerminalList {
- id: terminalList
-
- state: state
-
- Layout.fillHeight: true
- Layout.fillWidth: true
- }
-
- CommandInput {
- id: command
-
- Layout.fillWidth: true
-
- onExecuted: state.enterNormalMode()
- }
- }
-
- StateHandler {
- id: state
-
- terminalList: terminalList
- commandInput: command
- }
-}