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
|
{
"description": "Layer mapping, if screen is not specified, screen is set to 0",
"mappings": [
{
"name": "BackGroundLayer",
"role" : "map|radio|music|video|navigation",
"id_range_begin": 0,
"id_range_end": 0,
"comment": "Work Around: This is evacuation layer that not stopping event loop"
},
{
"name": "FarHomeScreen",
"role": "",
"id_range_begin": 100,
"id_range_end": 199,
"comment": "FarHomeScreen is the part of HomeScreen. The z order of this layer is lower than NearHomeScreen"
},
{
"name": "Apps",
"role": "music|video|browser|radio|phone|map|navigation|hvac|settings|dashboard|poi|mixer|sdl|launcher|receiver|tachometer|fallback",
"id_range_begin": 1000,
"id_range_end": 2599,
"comment": "Range of IDs that will always be placed on layer 1001"
},
{
"name": "NearApps",
"role": "receiver2|upleftreceiver",
"id_range_begin": 2600,
"id_range_end": 2999,
"comment": "NearApps is the part of Apps. The z order of this layer is higher than Apps"
},
{
"name": "NearHomeScreen",
"role": "homescreen",
"id_range_begin": 3000,
"id_range_end": 3000,
"comment": "TOYOTA special software keyboard"
},
{
"name": "Application Popup Layer",
"role": "popup*",
"id_range_begin": 4000,
"id_range_end": 4999,
"comment": "[T.B.D]This layer is for application popup layer"
},
{
"name": "Restriction",
"role": "restriction",
"id_range_begin": 5000,
"id_range_end": 5999,
"comment": "This layer is for restriction notification. This is used by restriction role"
},
{
"name": "OnScreen",
"role": "^on_screen*",
"id_range_begin": 6000,
"id_range_end": 6999,
"comment": "Range of IDs that will always be placed on the OnScreen layer, that gets a very high 'dummy' id of 9999"
},
{
"name": "Remote",
"role": "tbtnavi",
"id_range_begin": 9000,
"id_range_end": 9199,
"screen" : 1,
"comment": "Range of IDs that will always be placed on the OnScreen layer, that gets a very high 'dummy' id of 9999"
},
{
"name": "RemoteRSE1",
"role": "music|video|browser|radio|phone|map|navigation|hvac|settings|dashboard|poi|mixer|sdl|launcher|tachometer|fallback",
"id_range_begin": 9200,
"id_range_end": 9399,
"comment": "Range of IDs that will always be placed on the OnScreen layer, that gets a very high 'dummy' id of 9999"
},
{
"name": "RemoteRSE2",
"role": "music|video|browser|radio|phone|map|navigation|hvac|settings|dashboard|poi|mixer|sdl|launcher|tachometer|fallback",
"id_range_begin": 9400,
"id_range_end": 9599,
"comment": "Range of IDs that will always be placed on the OnScreen layer, that gets a very high 'dummy' id of 9999"
},
{
"name": "RemoteHUD",
"role": "music|video|browser|radio|phone|map|navigation|hvac|settings|dashboard|poi|mixer|sdl|launcher|tachometer|fallback",
"id_range_begin": 9600,
"id_range_end": 9799,
"screen": 2,
"comment": "Range of IDs that will always be placed on the OnScreen layer, that gets a very high 'dummy' id of 9999"
},
{
"name": "RemoteHUDUpperLeft",
"role": "music|video|browser|radio|phone|map|navigation|hvac|settings|dashboard|poi|mixer|sdl|launcher|tachometer|fallback",
"id_range_begin": 9800,
"id_range_end": 9999,
"comment": "Range of IDs that will always be placed on the OnScreen layer, that gets a very high 'dummy' id of 9999"
}
]
}
|