Skip to content

Commit 53a06c8

Browse files
authored
Merge pull request #1660 from yestalgia/add/fixturegroupeditor-up-left-buttons
Add missing "Up" and "Left" Buttons to Fixture Group Editor
2 parents da18c31 + bc86fe1 commit 53a06c8

File tree

3 files changed

+59
-4
lines changed

3 files changed

+59
-4
lines changed

ui/src/fixturegroupeditor.cpp

+20-1
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,12 @@ FixtureGroupEditor::FixtureGroupEditor(FixtureGroup* grp, Doc* doc, QWidget* par
5858

5959
connect(m_rightButton, SIGNAL(clicked()),
6060
this, SLOT(slotRightClicked()));
61+
connect(m_leftButton, SIGNAL(clicked()),
62+
this, SLOT(slotLeftClicked()));
6163
connect(m_downButton, SIGNAL(clicked()),
6264
this, SLOT(slotDownClicked()));
65+
connect(m_upButton, SIGNAL(clicked()),
66+
this, SLOT(slotUpClicked())),
6367
connect(m_removeButton, SIGNAL(clicked()),
6468
this, SLOT(slotRemoveFixtureClicked()));
6569

@@ -162,11 +166,22 @@ void FixtureGroupEditor::slotRightClicked()
162166
addFixtureHeads(Qt::RightArrow);
163167
}
164168

169+
void FixtureGroupEditor::slotLeftClicked()
170+
{
171+
addFixtureHeads(Qt::LeftArrow);
172+
}
173+
165174
void FixtureGroupEditor::slotDownClicked()
166175
{
167176
addFixtureHeads(Qt::DownArrow);
168177
}
169178

179+
void FixtureGroupEditor::slotUpClicked()
180+
{
181+
addFixtureHeads(Qt::UpArrow);
182+
}
183+
184+
170185
void FixtureGroupEditor::slotRemoveFixtureClicked()
171186
{
172187
QTableWidgetItem* item = m_table->currentItem();
@@ -267,8 +282,12 @@ void FixtureGroupEditor::addFixtureHeads(Qt::ArrowType direction)
267282
m_grp->assignHead(QLCPoint(col, row), gh);
268283
if (direction == Qt::RightArrow)
269284
col++;
270-
else
285+
else if (direction == Qt::DownArrow)
271286
row++;
287+
else if (direction == Qt::LeftArrow)
288+
col--;
289+
else if (direction == Qt::UpArrow)
290+
row--;
272291
}
273292

274293
updateTable();

ui/src/fixturegroupeditor.h

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ private slots:
4949
void slotYSpinValueChanged(int value);
5050

5151
void slotRightClicked();
52+
void slotLeftClicked();
53+
void slotUpClicked();
5254
void slotDownClicked();
5355
void slotRemoveFixtureClicked();
5456

ui/src/fixturegroupeditor.ui

+37-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
</property>
5353
</widget>
5454
</item>
55-
<item row="3" column="6">
55+
<item row="5" column="6">
5656
<widget class="QToolButton" name="m_removeButton">
5757
<property name="toolTip">
5858
<string>Remove selected fixture/head</string>
@@ -138,7 +138,7 @@
138138
<item row="1" column="6">
139139
<widget class="QToolButton" name="m_rightButton">
140140
<property name="toolTip">
141-
<string>Add/replace fixtures to current row, starting from selected cell</string>
141+
<string>Add/replace fixtures to current row, going right starting from selected cell</string>
142142
</property>
143143
<property name="icon">
144144
<iconset resource="qlcui.qrc">
@@ -153,9 +153,26 @@
153153
</widget>
154154
</item>
155155
<item row="2" column="6">
156+
<widget class="QToolButton" name="m_leftButton">
157+
<property name="toolTip">
158+
<string>Add/replace fixtures to current row, going backwards starting from selected cell</string>
159+
</property>
160+
<property name="icon">
161+
<iconset resource="qlcui.qrc">
162+
<normaloff>:/back.png</normaloff>:/back.png</iconset>
163+
</property>
164+
<property name="iconSize">
165+
<size>
166+
<width>32</width>
167+
<height>32</height>
168+
</size>
169+
</property>
170+
</widget>
171+
</item>
172+
<item row="3" column="6">
156173
<widget class="QToolButton" name="m_downButton">
157174
<property name="toolTip">
158-
<string>Add/replace fixtures to current column, starting from selected cell</string>
175+
<string>Add/replace fixtures to current column, going down starting from selected cell</string>
159176
</property>
160177
<property name="icon">
161178
<iconset resource="qlcui.qrc">
@@ -169,6 +186,23 @@
169186
</property>
170187
</widget>
171188
</item>
189+
<item row="4" column="6">
190+
<widget class="QToolButton" name="m_upButton">
191+
<property name="toolTip">
192+
<string>Add/replace fixtures to current column, going up starting from selected cell</string>
193+
</property>
194+
<property name="icon">
195+
<iconset resource="qlcui.qrc">
196+
<normaloff>:/up.png</normaloff>:/up.png</iconset>
197+
</property>
198+
<property name="iconSize">
199+
<size>
200+
<width>32</width>
201+
<height>32</height>
202+
</size>
203+
</property>
204+
</widget>
205+
</item>
172206
<item row="0" column="0" colspan="7">
173207
<layout class="QHBoxLayout" name="horizontalLayout">
174208
<item>

0 commit comments

Comments
 (0)