aboutsummaryrefslogtreecommitdiff
path: root/src/SettingsHandler.qml
blob: 1b54251b3516a8234b0d8fbf9d5c6161bf98f46b (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
import QtQuick 2.0
import Qt.labs.settings 1.0

QtObject {
	function read(category, name) {
		if ( typeof this[category][name] === 'undefined' ) {
			throw category + '.' + name + ' doesnt exist.';
		} else {
			return this[category][name];
		}
	}

	function set(category, name, value) {
		if ( typeof this[category][name] === 'undefined' ) {
			throw category + '.' + name + ' doesnt exist.';
		} else {
			this[category][name] = value;
		}
	}

	property Settings window : Settings {
		category: "window"

		property string background : "#161616"
	}

	property Settings keybinding : Settings {
		category: "keybinding"

		property string insertMode   : "i"
		property string normalMode   : "Shift+ESC"
		property string commandMode  : ":"
		property string nextItem     : "j"
		property string prevItem     : "k"
		property string firstItem    : "g"
		property string resetItem    : "r"
		property string killItem     : "d"
		property string lastItem     : "Shift+G"
		property string heightenItem : "Shift+J"
		property string shortenItem  : "Shift+K"
	}

	property Settings item : Settings {
		category: "item"

		property int    fontSize   : 12
		property string fontFamily : "Monospace"
		property string fontColor  : "white"
	}

	property Settings highlighter : Settings {
		category: "highlighter"

		property string defaultColor : "#909636"
		property string focusColor   : "#352F6A"
	}

	property Settings terminal : Settings {
		category: "terminal"

		property int    initialLines      : 20
		property int    frameWidth        : 10
		property int    fontSize          : 8
		property string fontFamily        : "Monospace"
		property string colorScheme       : "cool-retro-term"
		property string launcherProgram   : "sh"
		property string launcherArgument  : "-c"
		property string overlayBackground : "black"
		property string overlayFontColor  : "white"
	}

	property Settings command : Settings {
		category: "command"

		property string background : "black"
		property int    fontSize   : 12
		property string fontFamily : "Monospace"
		property string fontColor  : "white"
		property string errorColor : "red"
	}
}