-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_decks.xml
111 lines (104 loc) · 4.81 KB
/
main_decks.xml
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
<!DOCTYPE template>
<!--
Description:
Main deck container.
-->
<Template>
<WidgetGroup>
<ObjectName>MainDeckContainer</ObjectName>
<Layout>vertical</Layout>
<SizePolicy>me,f</SizePolicy>
<Children>
<!-- Is displayed if the stacked waveforms option is activated in the skin settings -->
<WidgetGroup>
<ObjectName>StackedWaveformsContainer</ObjectName>
<Layout>vertical</Layout>
<Children>
<!-- In 2-deck mode, we show 2 waveforms -->
<WidgetGroup>
<Layout>vertical</Layout>
<Children>
<Template src="skin:deck_visual_row.xml">
<SetVariable name="i">1</SetVariable>
<SetVariable name="group">[Channel<Variable name="i"/>]</SetVariable>
<!-- Traditional Blue -->
<SetVariable name="DeckSignalColor">#d4712c</SetVariable>
<SetVariable name="DeckBackgroundColor">#333333</SetVariable>
<SetVariable name="control_show_spinny">[Spinny<Variable name="i"/>],show_spinny</SetVariable>
</Template>
<Template src="skin:deck_visual_row.xml">
<SetVariable name="i">2</SetVariable>
<SetVariable name="group">[Channel<Variable name="i"/>]</SetVariable>
<!-- Violet -->
<SetVariable name="DeckSignalColor">#2c8fd4</SetVariable>
<SetVariable name="DeckBackgroundColor">#333333</SetVariable>
<SetVariable name="control_show_spinny">[Spinny<Variable name="i"/>],show_spinny</SetVariable>
</Template>
</Children>
<Connection>
<ConfigKey>[Master],show_4decks</ConfigKey>
<BindProperty>visible</BindProperty>
<Transform>
<Not/>
</Transform>
</Connection>
</WidgetGroup>
<!-- In 4-deck mode, we show 4 waveforms in the 3-2-1-4 order just like the mixer columns-->
<WidgetGroup>
<Layout>vertical</Layout>
<Children>
<Template src="skin:deck_visual_row.xml">
<SetVariable name="i">3</SetVariable>
<SetVariable name="group">[Channel<Variable name="i"/>]</SetVariable>
<SetVariable name="DeckSignalColor">#d42c8f</SetVariable>
<SetVariable name="DeckBackgroundColor">#333333</SetVariable>
<SetVariable name="control_show_spinny">[Spinny<Variable name="i"/>],show_spinny</SetVariable>
</Template>
<Template src="skin:deck_visual_row.xml">
<SetVariable name="i">1</SetVariable>
<SetVariable name="group">[Channel<Variable name="i"/>]</SetVariable>
<SetVariable name="DeckSignalColor">#d4712c</SetVariable>
<SetVariable name="DeckBackgroundColor">#333333</SetVariable>
<SetVariable name="control_show_spinny">[Spinny<Variable name="i"/>],show_spinny</SetVariable>
</Template>
<Template src="skin:deck_visual_row.xml">
<SetVariable name="i">2</SetVariable>
<SetVariable name="group">[Channel<Variable name="i"/>]</SetVariable>
<SetVariable name="DeckSignalColor">#2c8fd4</SetVariable>
<SetVariable name="DeckBackgroundColor">#333333</SetVariable>
<SetVariable name="control_show_spinny">[Spinny<Variable name="i"/>],show_spinny</SetVariable>
</Template>
<Template src="skin:deck_visual_row.xml">
<SetVariable name="i">4</SetVariable>
<SetVariable name="group">[Channel<Variable name="i"/>]</SetVariable>
<SetVariable name="DeckSignalColor">#8fd42c</SetVariable>
<SetVariable name="DeckBackgroundColor">#333333</SetVariable>
<SetVariable name="control_show_spinny">[Spinny<Variable name="i"/>],show_spinny</SetVariable>
</Template>
</Children>
<Connection>
<ConfigKey>[Master],show_4decks</ConfigKey>
<BindProperty>visible</BindProperty>
</Connection>
</WidgetGroup>
</Children>
<Connection>
<ConfigKey>[Nimix],nimix_mode</ConfigKey>
<BindProperty>visible</BindProperty>
</Connection>
<!-- <Connection>
<ConfigKey>[Deere],show_stacked_waveforms</ConfigKey>
<BindProperty>visible</BindProperty>
</Connection> -->
</WidgetGroup>
<WidgetGroup>
<Layout>horizontal</Layout>
<Children>
<Template src="skin:left_gutter.xml"/>
<Template src="skin:mixer.xml"/>
<Template src="skin:right_gutter.xml"/>
</Children>
</WidgetGroup>
</Children>
</WidgetGroup>
</Template>