aboutsummaryrefslogtreecommitdiff
path: root/qml/main.qml
blob: a2355e9a127e9c5ba00fc471c4a1c4087aed08e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
import QtQuick 2.0
import QtQuick.Window 2.0
import QtQuick.Controls 1.2

ApplicationWindow {
	id: root

	visible: true

	color: "#161616"

	Component.onCompleted: terminalList.focusCurrent()

	Flickable {
		id: terminalListFlickable

		anchors.fill: parent

		boundsBehavior: Flickable.StopAtBounds
		contentHeight:  terminalList.height
		contentWidth:   terminalList.width
		pixelAligned:   true

		Column {
			id: terminalList

			property int activeItem : 0

			spacing: 10

			onHeightChanged: scrollTo(activeItem)

			function createItem() {
				var terminalItem = Qt.createComponent("qrc:/TerminalItem.qml");
				var instantiateTerminal = function() {
					var instance = terminalItem.createObject(terminalList, {
						"index": terminalList.children.length,
						"width": terminalListFlickable.width
					});
					instance.onExecuted.connect(createItem);
				}

				if ( terminalItem.status === Component.Ready ) {
					instantiateTerminal();
				} else {
					terminalItem.statusChanged.connect(instantiateTerminal);
				}
			}

			function scrollTo(index) {
				if ( terminalList.height >= terminalListFlickable.height ) {
					var offset = children[index].y
					           + (children[index].height       / 2)
					           - (terminalListFlickable.height / 2);

					var bound  = terminalList.height
					           - terminalListFlickable.height;

					if ( offset < 0 ) {
						terminalListFlickable.contentY = 0;
					} else if ( offset >= bound ) {
						terminalListFlickable.contentY = bound;
					} else {
						terminalListFlickable.contentY = offset;
					}
				}
			}

			function selectItem(index) {
				children[activeItem].deselect();
				children[index     ].select();

				activeItem = index;

				scrollTo(index);
			}

			function selectNext() {
				if ( activeItem < (children.length - 1) ) {
					selectItem(activeItem + 1);
				} else {
					insertTerminalAction.trigger();
				}
			}

			function selectPrev() {
				if ( activeItem > 0 ) {
					selectItem(activeItem - 1);
				}
			}

			function focusCurrent() {
				children[activeItem].forceActiveFocus();
			}

			function unfocusCurrent() {
				children[activeItem].unfocus();
			}

			function getCurrent() {
				return children[activeItem];
			}

			TerminalItem {
				width: terminalListFlickable.width
				onExecuted: terminalList.createItem()
			}
        }
	}

	Action {
		id: insertTerminalAction
		shortcut: "i"
		enabled: false
		onTriggered: {
			escapeTerminalAction.enabled   = true;
			insertTerminalAction.enabled   = false;
			nextTerminalAction.enabled     = false;
			heightenTerminalAction.enabled = false;
			shortenTerminalAction.enabled  = false;
			widenTerminalAction.enabled    = false;
			narrowTerminalAction.enabled   = false;
			prevTerminalAction.enabled     = false;
			lastTerminalAction.enabled     = false;
			firstTerminalAction.enabled    = false;

			terminalList.focusCurrent();
		}
	}

	Action {
		id: escapeTerminalAction
		shortcut: "Shift+ESC"
		onTriggered: {
			escapeTerminalAction.enabled   = false;
			insertTerminalAction.enabled   = true;
			nextTerminalAction.enabled     = true;
			heightenTerminalAction.enabled = true;
			shortenTerminalAction.enabled  = true;
			widenTerminalAction.enabled    = true;
			narrowTerminalAction.enabled   = true;
			prevTerminalAction.enabled     = true;
			lastTerminalAction.enabled     = true;
			firstTerminalAction.enabled    = true;

            terminalList.forceActiveFocus();
			terminalList.unfocusCurrent();
		}
	}

	Action {
		id: nextTerminalAction
		shortcut: "j"
		enabled: false
		onTriggered: terminalList.selectNext()
	}

	Action {
		id: heightenTerminalAction
		shortcut: "Shift+J"
		enabled: false
		onTriggered: terminalList.getCurrent().heighten()
	}

	Action {
		id: shortenTerminalAction
		shortcut: "Shift+K"
		enabled: false
		onTriggered: terminalList.getCurrent().shorten()
	}

	Action {
		id: widenTerminalAction
		shortcut: "Shift+L"
		enabled: false
		onTriggered: terminalList.getCurrent().widen()
	}

	Action {
		id: narrowTerminalAction
		shortcut: "Shift+H"
		enabled: false
		onTriggered: terminalList.getCurrent().narrow()
	}

	Action {
		id: prevTerminalAction
		shortcut: "k"
		enabled: false
		onTriggered: terminalList.selectPrev()
	}

	Action {
		id: lastTerminalAction
		shortcut: "Shift+G"
		enabled: false
		onTriggered: terminalList.selectItem(terminalList.children.length - 1)
	}

	Action {
		id: firstTerminalAction
		shortcut: "g"
		enabled: false
		onTriggered: terminalList.selectItem(0)
	}
}