-
Notifications
You must be signed in to change notification settings - Fork 9
/
SkillModel.qml
76 lines (68 loc) · 2.01 KB
/
SkillModel.qml
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
import QtQuick 2.5
ListModel {
id: skillshintmodel
ListElement {
Pic: "images/alarm.png"
Skill: "Alarm"
CommandList: [
ListElement { Commands: "Hey Mycroft, Set alarm for %time" },
ListElement { Commands: "Hey Mycroft, Set alarm for %time on %date" }
]
}
ListElement {
Pic: "images/dateandtime.png"
Skill: "Date & Time"
CommandList: [
ListElement { Commands: "Hey Mycroft, What is the current time" },
ListElement { Commands: "Hey Mycroft, Current date in London" }
]
}
ListElement {
Pic: "images/desktop.png"
Skill: "Desktop"
CommandList: [
ListElement { Commands: "Hey Mycroft, Open Firefox"},
ListElement { Commands: "Hey Mycroft, Open Konsole"}
]
}
ListElement {
Pic: "images/joke.png"
Skill: "Joke"
CommandList: [
ListElement {Commands: "Hey Mycroft, Tell me a joke"},
ListElement {Commands: "Hey Mycroft, Meaning of life"}
]
}
ListElement {
Pic: "images/spell.png"
Skill: "Spell"
CommandList: [
ListElement {Commands: "Hey Mycroft, Spell Hello"},
ListElement {Commands: "Hey Mycroft, Spell Mycroft"}
]
}
ListElement {
Pic: "images/wikip.png"
Skill: "WiKi"
CommandList: [
ListElement {Commands: "Hey Mycroft, Wiki the Moon"},
ListElement {Commands: "Hey Mycroft, Define Relativity"}
]
}
ListElement {
Pic: "images/wolfram.png"
Skill: "Wolfram Alpha"
CommandList: [
ListElement {Commands: "Hey Mycroft, Calculate the Pi"},
ListElement {Commands: "Hey Mycroft, What is 2+2"}
]
}
ListElement {
Pic: "images/weather.png"
Skill: "Weather"
CommandList: [
ListElement {Commands: "Hey Mycroft, What is the current weather"},
ListElement {Commands: "Hey Mycroft, Current weather in Tokyo"}
]
}
}