File: modeeditor.html

package info (click to toggle)
qlcplus 4.14.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 58,644 kB
  • sloc: cpp: 182,867; javascript: 7,764; xml: 2,453; ansic: 2,120; sh: 1,716; python: 634; ruby: 606; makefile: 23
file content (174 lines) | stat: -rw-r--r-- 6,452 bytes parent folder | download | duplicates (3)
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Q Light Controller Plus - Mode Editor</TITLE>
<SCRIPT SRC="utility.js" TYPE="text/javascript"></SCRIPT>
<link href="style.css" rel="stylesheet" type="text/css" />
</HEAD>
<BODY onLoad="replaceqrc()">

<H1>Mode Editor</H1>
<P>
The Mode Editor is used to create and edit <A HREF="concept.html#FixtureMode">
modes</A> by picking sets of <B>Channels</B> in certain order (as defined by
the fixture's manufacturer). Each editor window is divided into three tabs:
Channels, Heads and Physical.
</P>

<H2>Channels Tab</H2>

<P>
In the Channels tab you can place the fixture's channels in an order that forms
an actual representation of the DMX channels that the fixture understands when it
has been configured in that particular mode.
</P>

<IMG SRC="../images/fixtureeditor_mode_channels.png" WIDTH="500"/>
<BR>

<TABLE BORDER=1 class="qlcTable">
  <TR>
    <TD><B>Mode Name</B></TD>
    <TD>The name of the mode (must be unique for each mode).</TD>
  </TR>
  <TR>
    <TD><B>Channel list</B></TD>
    <TD>Displays all channels present in the current mode in their proper order.<br>
    The "Acts on" column is used to bind a channel to another. For example a channel that
    controls the speed of a rotating gobo.</TD>
  </TR>
  <TR>
    <TD><IMG SRC="qrc:/edit_add.png"/></TD>
    <TD>Add channels from the fixture's channel collection to the mode.
    You can create/edit channels in the <A HREF="fixtureeditor.html">Fixture
    Editor's</A> <B>Channels</B> tab.<br>
    When you click on this button a new window will be displayed, showing two lists:
    <UL>
    <LI>The list on the left shows the channels that have not yet been added to this mode.
        If you're creating a new mode, this list will show all the channels you created
        in the Fixture Editor's channels tab</LI>
    <LI>The list on the right shows the channels that define the mode you're editing.
        If you're creating a new mode, this list will be empty.<BR>
        Please note that the order of the channels in this list is fundamental to the
        fixture mode definition.
    </UL>
    To move items from one list to another either use the central buttons or simply
    drag and drop them.<br>
    When done, press OK to update the mode channel list.
    </TD>
  </TR>
  <TR>
    <TD><IMG SRC="qrc:/edit_remove.png"/></TD>
    <TD>Remove the selected channels from the mode. Other modes' channel selections are left untouched.</TD>
  </TR>
  <TR>
    <TD><IMG SRC="qrc:/up.png"/></TD>
    <TD>Raise the selected channel up by one position.</TD>
  </TR>
  <TR>
    <TD><IMG SRC="qrc:/down.png"/></TD>
    <TD>Lower the selected channel down by one position.</TD>
  </TR>
</TABLE>

<H2>Heads Tab</H2>

<P>
In the Heads tab you can define multiple <A HREF="concept.html#Head">heads</A> for a
single fixture, so that QLC+ knows to treat each of them individually in certain
situations (such as <A HREF="concept.html#FixtureGroup">Fixture Groups</A>). If a fixture
contains only one head when it's configured to use the currently edited mode (i.e. all
of the mode's channels control one head at a time) there is no need to define the head. If,
however, the fixture has multiple heads that you wish to be able to control, you must define
each head here.
</P>

<P>
Heads don't have names as they can be thought of as simple "sub-fixtures" inside a fixture.
Instead, they are automatically given index numbers. The ordering of the Heads should follow the
physical fixture's configuration as closely as possible. So, if the heads go 1, 2, 3, 4 in
the real world, don't define them as 4, 2, 1, 3 or something equally annoying.
</P>

<IMG SRC="../images/fixtureeditor_mode_heads.png" WIDTH="500"/>
<BR>

<TABLE BORDER=1 class="qlcTable">
  <TR>
    <TD><B>Head list</B></TD>
    <TD>Displays the list of heads currently defined for the fixture.</TD>
  </TR>
  <TR>
    <TD><IMG SRC="qrc:/edit_add.png"/></TD>
    <TD>Add a new head to the fixture, using the <A HREF="#edit_head">Head Editor</A>.</TD>
  </TR>
  <TR>
    <TD><IMG SRC="qrc:/edit_remove.png"/></TD>
    <TD>Remove the selected head from the fixture.</TD>
  </TR>
  <TR>
    <TD><IMG SRC="qrc:/edit.png"/></TD>
    <TD>Edit the selected head using the <A HREF="#edit_head">Head Editor</A>.</TD>
  </TR>
  <TR>
    <TD><IMG SRC="qrc:/up.png"/></TD>
    <TD>Raise the selected head upwards by one. You can use this to change the order of the heads
    within the fixture.
    </TD>
  </TR>
  <TR>
    <TD><IMG SRC="qrc:/down.png"/></TD>
    <TD>Lower the selected head downwards by one. You can use this to change the order of the
    heads within the fixture.
    </TD>
  </TR>
</TABLE>

<H3 id="edit_head">Head Editor</H3>
<P>
The Head Editor is used to create and edit <A HREF="concept.html#Head">heads</A>
by picking sets of <B>Channels</B> that are dedicated to a single head (as defined by the
fixture's manufacturer).
</P>

<P>
Editing a head is very simple: place a checkmark on each channel that is used ONLY by the
head you are currently editing. Note that you should check the channels specific to a head,
and nothing more. For example if there are 3 heads each with a dedicated dimmer control,
then you should include the dimmer channel too. If, instead, the fixture has a single dimmer
channel to control the intensity of all the heads together, then do not incude it in the head
definition.
</P>

<TABLE>
 <TR>
  <TD><IMG SRC="../images/fixtureeditor_mode_edit_head.png" />
  <TD>
   <TABLE BORDER=1 class="qlcTable">
    <TR>
     <TD><B>Channel list</B></TD>
     <TD>Displays the list of all fixture channels available in the current mode. Channels that
       have been assigned to another head are disabled and cannot be selected because each
       channel can only belong to one head at a time.
     </TD>
    </TR>
   </TABLE>
  </TD>
 </TR>
</TABLE>

<H2>Physical Tab</H2>

<P>
This tab is identical to the <I>global</I> <A HREF="fixturedefinitioneditor.html#physical">physical tab</A>
found in the main Fixture editor windows.<BR>
The only difference is that here you can choose if the mode you're editing has the same
physical information or different ones.<BR>
In the first case just leave the <B>"Use global settings"</B> option checked.
If the mode exposes different properties, then check the <B>"Override global settings"</B> option
and fill in all the information required.
</P>


</BODY>
</HTML>