aboutsummaryrefslogtreecommitdiff
path: root/qml/EmbeddedTerminal.qml
blob: 146df7fd926d45f4fb821d4a32d3136dfb813b06 (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
import QtQuick 2.0
import QMLTermWidget 1.0

Item {
	id: item

	property string program
	property string workingDirectory
	property int    columns
	property int    lines

	width:  container.width
	height: container.height

	function select()   { highlighter.select()   }
	function deselect() { highlighter.deselect() }

	Row {
		id: container

		Rectangle {
			id: highlighter

			width: 10
			height: terminal.height

			color: "#909636"

			Behavior on opacity {
				NumberAnimation {
					duration: 300
					easing.type: Easing.OutCubic
				}
			}

			function select()   { opacity = 1         }
			function deselect() { opacity = 0         }
			function focus()    { color   = "#352F6A" }
			function unfocus()  { color   = "#909636" }
		}

		Rectangle {
			width: terminal.width
			height: terminal.height

			color: "#ffffff"

			QMLTermWidget {
				id: terminal

				font.family: "Monospace"
				font.pointSize: 8

				width:  fontMetrics.width  * item.columns
				height: fontMetrics.height * item.lines

				session: QMLTermSession {
					initialWorkingDirectory: item.workingDirectory

					shellProgram: {
						return (item.program).split(" ")[0];
					}

					shellProgramArgs: {
						var elements = (item.program).split(" ");
						elements.shift();

						return elements;
					}
				}

				onTermGetFocus: highlighter.focus()
				onTermLostFocus: highlighter.unfocus()

				MouseArea {
					anchors.fill: parent
					acceptedButtons: Qt.NoButton
					onWheel: { }
				}

				Component.onCompleted: {
					forceActiveFocus();
					session.startShellProgram();
				}
			}
		}
	}
}