Chris@58
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@0
|
2
|
Chris@0
|
3 /*
|
Chris@59
|
4 Sonic Visualiser
|
Chris@59
|
5 An audio file viewer and annotation editor.
|
Chris@59
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@182
|
7 This file copyright 2006 Chris Cannam and QMUL.
|
Chris@0
|
8
|
Chris@59
|
9 This program is free software; you can redistribute it and/or
|
Chris@59
|
10 modify it under the terms of the GNU General Public License as
|
Chris@59
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@59
|
12 License, or (at your option) any later version. See the file
|
Chris@59
|
13 COPYING included with this distribution for more information.
|
Chris@0
|
14 */
|
Chris@0
|
15
|
Chris@0
|
16 #include "PropertyBox.h"
|
Chris@63
|
17 #include "PluginParameterDialog.h"
|
Chris@0
|
18
|
Chris@0
|
19 #include "base/PropertyContainer.h"
|
Chris@33
|
20 #include "base/PlayParameters.h"
|
Chris@377
|
21 #include "base/PlayParameterRepository.h"
|
Chris@128
|
22 #include "layer/Layer.h"
|
Chris@100
|
23 #include "base/UnitDatabase.h"
|
Chris@167
|
24 #include "base/RangeMapper.h"
|
Chris@0
|
25
|
Chris@0
|
26 #include "AudioDial.h"
|
Chris@33
|
27 #include "LEDButton.h"
|
Chris@335
|
28 #include "IconLoader.h"
|
Chris@1178
|
29 #include "LevelPanWidget.h"
|
Chris@1179
|
30 #include "LevelPanToolButton.h"
|
Chris@1174
|
31 #include "WidgetScale.h"
|
Chris@0
|
32
|
Chris@189
|
33 #include "NotifyingCheckBox.h"
|
Chris@189
|
34 #include "NotifyingComboBox.h"
|
Chris@335
|
35 #include "NotifyingPushButton.h"
|
Chris@1189
|
36 #include "NotifyingToolButton.h"
|
Chris@1196
|
37 #include "ColourComboBox.h"
|
Chris@1198
|
38 #include "ColourMapComboBox.h"
|
Chris@189
|
39
|
Chris@0
|
40 #include <QGridLayout>
|
Chris@0
|
41 #include <QHBoxLayout>
|
Chris@33
|
42 #include <QVBoxLayout>
|
Chris@63
|
43 #include <QPushButton>
|
Chris@1189
|
44 #include <QToolButton>
|
Chris@0
|
45 #include <QLabel>
|
Chris@33
|
46 #include <QFrame>
|
Chris@218
|
47 #include <QApplication>
|
Chris@285
|
48 #include <QColorDialog>
|
Chris@285
|
49 #include <QInputDialog>
|
Chris@769
|
50 #include <QDir>
|
Chris@0
|
51
|
Chris@0
|
52 #include <cassert>
|
Chris@0
|
53 #include <iostream>
|
Martin@46
|
54 #include <cmath>
|
Chris@0
|
55
|
Chris@456
|
56 //#define DEBUG_PROPERTY_BOX 1
|
Chris@0
|
57
|
Chris@0
|
58 PropertyBox::PropertyBox(PropertyContainer *container) :
|
Chris@185
|
59 m_container(container),
|
Chris@189
|
60 m_showButton(0),
|
Chris@189
|
61 m_playButton(0)
|
Chris@0
|
62 {
|
Chris@0
|
63 #ifdef DEBUG_PROPERTY_BOX
|
Chris@682
|
64 cerr << "PropertyBox[" << this << "(\"" <<
|
Chris@1266
|
65 container->getPropertyContainerName() << "\" at " << container << ")]::PropertyBox" << endl;
|
Chris@0
|
66 #endif
|
Chris@0
|
67
|
Chris@34
|
68 m_mainBox = new QVBoxLayout;
|
Chris@34
|
69 setLayout(m_mainBox);
|
Chris@33
|
70
|
Chris@980
|
71 #ifdef Q_OS_MAC
|
Chris@980
|
72 QMargins mm = m_mainBox->contentsMargins();
|
Chris@980
|
73 QMargins mmhalf(mm.left()/2, mm.top()/3, mm.right()/2, mm.bottom()/3);
|
Chris@980
|
74 m_mainBox->setContentsMargins(mmhalf);
|
Chris@980
|
75 #endif
|
Chris@980
|
76
|
Chris@107
|
77 // m_nameWidget = new QLabel;
|
Chris@107
|
78 // m_mainBox->addWidget(m_nameWidget);
|
Chris@107
|
79 // m_nameWidget->setText(container->objectName());
|
Chris@107
|
80
|
Chris@34
|
81 m_mainWidget = new QWidget;
|
Chris@34
|
82 m_mainBox->addWidget(m_mainWidget);
|
Chris@107
|
83 m_mainBox->insertStretch(2, 10);
|
Chris@33
|
84
|
Chris@34
|
85 m_viewPlayFrame = 0;
|
Chris@34
|
86 populateViewPlayFrame();
|
Chris@33
|
87
|
Chris@0
|
88 m_layout = new QGridLayout;
|
Chris@34
|
89 m_layout->setMargin(0);
|
Chris@833
|
90 m_layout->setHorizontalSpacing(2);
|
Chris@833
|
91 m_layout->setVerticalSpacing(1);
|
Chris@33
|
92 m_mainWidget->setLayout(m_layout);
|
Chris@0
|
93
|
Chris@34
|
94 PropertyContainer::PropertyList properties = m_container->getProperties();
|
Chris@0
|
95
|
Chris@0
|
96 blockSignals(true);
|
Chris@0
|
97
|
Chris@0
|
98 size_t i;
|
Chris@0
|
99
|
Chris@0
|
100 for (i = 0; i < properties.size(); ++i) {
|
Chris@1266
|
101 updatePropertyEditor(properties[i]);
|
Chris@0
|
102 }
|
Chris@0
|
103
|
Chris@0
|
104 blockSignals(false);
|
Chris@0
|
105
|
Chris@0
|
106 m_layout->setRowStretch(m_layout->rowCount(), 10);
|
Chris@0
|
107
|
Chris@100
|
108 connect(UnitDatabase::getInstance(), SIGNAL(unitDatabaseChanged()),
|
Chris@100
|
109 this, SLOT(unitDatabaseChanged()));
|
Chris@100
|
110
|
Chris@0
|
111 #ifdef DEBUG_PROPERTY_BOX
|
Chris@682
|
112 cerr << "PropertyBox[" << this << "]::PropertyBox returning" << endl;
|
Chris@0
|
113 #endif
|
Chris@0
|
114 }
|
Chris@0
|
115
|
Chris@0
|
116 PropertyBox::~PropertyBox()
|
Chris@0
|
117 {
|
Chris@0
|
118 #ifdef DEBUG_PROPERTY_BOX
|
Chris@682
|
119 cerr << "PropertyBox[" << this << "]::~PropertyBox" << endl;
|
Chris@0
|
120 #endif
|
Chris@0
|
121 }
|
Chris@0
|
122
|
Chris@0
|
123 void
|
Chris@34
|
124 PropertyBox::populateViewPlayFrame()
|
Chris@33
|
125 {
|
Chris@36
|
126 #ifdef DEBUG_PROPERTY_BOX
|
Chris@729
|
127 cerr << "PropertyBox[" << this << ":" << m_container << "]::populateViewPlayFrame" << endl;
|
Chris@36
|
128 #endif
|
Chris@34
|
129
|
Chris@34
|
130 if (m_viewPlayFrame) {
|
Chris@1266
|
131 delete m_viewPlayFrame;
|
Chris@1266
|
132 m_viewPlayFrame = 0;
|
Chris@34
|
133 }
|
Chris@34
|
134
|
Chris@34
|
135 if (!m_container) return;
|
Chris@34
|
136
|
Chris@34
|
137 Layer *layer = dynamic_cast<Layer *>(m_container);
|
Chris@34
|
138 if (layer) {
|
Chris@1266
|
139 disconnect(layer, SIGNAL(modelReplaced()),
|
Chris@193
|
140 this, SLOT(populateViewPlayFrame()));
|
Chris@1266
|
141 connect(layer, SIGNAL(modelReplaced()),
|
Chris@1266
|
142 this, SLOT(populateViewPlayFrame()));
|
Chris@34
|
143 }
|
Chris@34
|
144
|
Chris@34
|
145 PlayParameters *params = m_container->getPlayParameters();
|
Chris@33
|
146 if (!params && !layer) return;
|
Chris@33
|
147
|
Chris@34
|
148 m_viewPlayFrame = new QFrame;
|
Chris@34
|
149 m_viewPlayFrame->setFrameStyle(QFrame::StyledPanel | QFrame::Sunken);
|
Chris@34
|
150 m_mainBox->addWidget(m_viewPlayFrame);
|
Chris@34
|
151
|
Chris@1189
|
152 QGridLayout *layout = new QGridLayout;
|
Chris@34
|
153 m_viewPlayFrame->setLayout(layout);
|
Chris@34
|
154
|
Chris@34
|
155 layout->setMargin(layout->margin() / 2);
|
Chris@34
|
156
|
Chris@36
|
157 #ifdef DEBUG_PROPERTY_BOX
|
Chris@587
|
158 SVDEBUG << "PropertyBox::populateViewPlayFrame: container " << m_container << " (name " << m_container->getPropertyContainerName() << ") params " << params << endl;
|
Chris@36
|
159 #endif
|
Chris@1189
|
160
|
Chris@1189
|
161 QSize buttonSize = WidgetScale::scaleQSize(QSize(26, 26));
|
Chris@1189
|
162 int col = 0;
|
Chris@1189
|
163
|
Chris@33
|
164 if (params) {
|
Chris@1189
|
165
|
Chris@1189
|
166 m_playButton = new NotifyingToolButton;
|
Chris@1187
|
167 m_playButton->setCheckable(true);
|
Chris@1187
|
168 m_playButton->setIcon(IconLoader().load("speaker"));
|
Chris@1190
|
169 m_playButton->setToolTip(tr("Click to toggle playback"));
|
Chris@1187
|
170 m_playButton->setChecked(!params->isPlayMuted());
|
Chris@1189
|
171 m_playButton->setFixedSize(buttonSize);
|
Chris@1266
|
172 connect(m_playButton, SIGNAL(toggled(bool)),
|
Chris@1266
|
173 this, SLOT(playAudibleButtonChanged(bool)));
|
Chris@1187
|
174 connect(m_playButton, SIGNAL(mouseEntered()),
|
Chris@1187
|
175 this, SLOT(mouseEnteredWidget()));
|
Chris@1187
|
176 connect(m_playButton, SIGNAL(mouseLeft()),
|
Chris@1187
|
177 this, SLOT(mouseLeftWidget()));
|
Chris@1266
|
178 connect(params, SIGNAL(playAudibleChanged(bool)),
|
Chris@1266
|
179 this, SLOT(playAudibleChanged(bool)));
|
Chris@63
|
180
|
Chris@1179
|
181 LevelPanToolButton *levelPan = new LevelPanToolButton;
|
Chris@1189
|
182 levelPan->setFixedSize(buttonSize);
|
Chris@1189
|
183 levelPan->setImageSize((buttonSize.height() * 3) / 4);
|
Chris@1370
|
184 levelPan->setLevel(params->getPlayGain());
|
Chris@1370
|
185 levelPan->setPan(params->getPlayPan());
|
Chris@1189
|
186 layout->addWidget(levelPan, 0, col++, Qt::AlignCenter);
|
Chris@1178
|
187 connect(levelPan, SIGNAL(levelChanged(float)),
|
Chris@1178
|
188 this, SLOT(playGainControlChanged(float)));
|
Chris@1178
|
189 connect(levelPan, SIGNAL(panChanged(float)),
|
Chris@1178
|
190 this, SLOT(playPanControlChanged(float)));
|
Chris@1178
|
191 connect(params, SIGNAL(playGainChanged(float)),
|
Chris@1178
|
192 levelPan, SLOT(setLevel(float)));
|
Chris@1178
|
193 connect(params, SIGNAL(playPanChanged(float)),
|
Chris@1178
|
194 levelPan, SLOT(setPan(float)));
|
Chris@1180
|
195 connect(levelPan, SIGNAL(mouseEntered()),
|
Chris@1180
|
196 this, SLOT(mouseEnteredWidget()));
|
Chris@1180
|
197 connect(levelPan, SIGNAL(mouseLeft()),
|
Chris@1180
|
198 this, SLOT(mouseLeftWidget()));
|
Chris@1180
|
199
|
Chris@1266
|
200 layout->addWidget(m_playButton, 0, col++, Qt::AlignCenter);
|
Chris@1189
|
201
|
Chris@1187
|
202 if (params->getPlayClipId() != "") {
|
Chris@1223
|
203 NotifyingToolButton *playParamButton = new NotifyingToolButton;
|
Chris@1187
|
204 playParamButton->setObjectName("playParamButton");
|
Chris@1187
|
205 playParamButton->setIcon(IconLoader().load("faders"));
|
Chris@1189
|
206 playParamButton->setFixedSize(buttonSize);
|
Chris@1189
|
207 layout->addWidget(playParamButton, 0, col++, Qt::AlignCenter);
|
Chris@1187
|
208 connect(playParamButton, SIGNAL(clicked()),
|
Chris@1187
|
209 this, SLOT(editPlayParameters()));
|
Chris@1187
|
210 connect(playParamButton, SIGNAL(mouseEntered()),
|
Chris@1187
|
211 this, SLOT(mouseEnteredWidget()));
|
Chris@1187
|
212 connect(playParamButton, SIGNAL(mouseLeft()),
|
Chris@1187
|
213 this, SLOT(mouseLeftWidget()));
|
Chris@1187
|
214 }
|
Chris@1187
|
215 }
|
Chris@1187
|
216
|
Chris@1189
|
217 layout->setColumnStretch(col++, 10);
|
Chris@1187
|
218
|
Chris@1187
|
219 if (layer) {
|
Chris@1187
|
220
|
Chris@1266
|
221 QLabel *showLabel = new QLabel(tr("Show"));
|
Chris@1266
|
222 layout->addWidget(showLabel, 0, col++, Qt::AlignVCenter | Qt::AlignRight);
|
Chris@1187
|
223
|
Chris@1266
|
224 m_showButton = new LEDButton(palette().highlight().color());
|
Chris@1266
|
225 layout->addWidget(m_showButton, 0, col++, Qt::AlignVCenter | Qt::AlignLeft);
|
Chris@1266
|
226 connect(m_showButton, SIGNAL(stateChanged(bool)),
|
Chris@1266
|
227 this, SIGNAL(showLayer(bool)));
|
Chris@1187
|
228 connect(m_showButton, SIGNAL(mouseEntered()),
|
Chris@1180
|
229 this, SLOT(mouseEnteredWidget()));
|
Chris@1187
|
230 connect(m_showButton, SIGNAL(mouseLeft()),
|
Chris@1180
|
231 this, SLOT(mouseLeftWidget()));
|
Chris@33
|
232 }
|
Chris@33
|
233 }
|
Chris@33
|
234
|
Chris@33
|
235 void
|
Chris@197
|
236 PropertyBox::updatePropertyEditor(PropertyContainer::PropertyName name,
|
Chris@197
|
237 bool rangeChanged)
|
Chris@0
|
238 {
|
Chris@0
|
239 PropertyContainer::PropertyType type = m_container->getPropertyType(name);
|
Chris@0
|
240 int row = m_layout->rowCount();
|
Chris@0
|
241
|
Chris@216
|
242 int min = 0, max = 0, value = 0, deflt = 0;
|
Chris@216
|
243 value = m_container->getPropertyRangeAndValue(name, &min, &max, &deflt);
|
Chris@0
|
244
|
Chris@0
|
245 bool have = (m_propertyControllers.find(name) !=
|
Chris@1266
|
246 m_propertyControllers.end());
|
Chris@0
|
247
|
Chris@0
|
248 QString groupName = m_container->getPropertyGroupName(name);
|
Chris@87
|
249 QString propertyLabel = m_container->getPropertyLabel(name);
|
Chris@335
|
250 QString iconName = m_container->getPropertyIconName(name);
|
Chris@0
|
251
|
Chris@0
|
252 #ifdef DEBUG_PROPERTY_BOX
|
Chris@682
|
253 cerr << "PropertyBox[" << this
|
Chris@1266
|
254 << "(\"" << m_container->getPropertyContainerName()
|
Chris@1266
|
255 << "\")]";
|
Chris@1281
|
256 cerr << "::updatePropertyEditor(\"" << name << "\", "
|
Chris@1281
|
257 << rangeChanged << "):";
|
Chris@1281
|
258 cerr << " type " << type << ", value " << value
|
Chris@1281
|
259 << ", have " << have << ", group \"" << groupName << "\"" << endl;
|
Chris@0
|
260 #endif
|
Chris@0
|
261
|
Chris@1204
|
262 QString groupLabel = groupName;
|
Chris@1204
|
263 if (groupName == QString()) {
|
Chris@1204
|
264 groupName = "ungrouped: " + name; // not tr(), this is internal id
|
Chris@1204
|
265 groupLabel = propertyLabel;
|
Chris@1204
|
266 }
|
Chris@1204
|
267
|
Chris@0
|
268 if (!have) {
|
Chris@1204
|
269 if (m_groupLayouts.find(groupName) == m_groupLayouts.end()) {
|
Chris@1204
|
270 QWidget *labelWidget = new QLabel(groupLabel, m_mainWidget);
|
Chris@1190
|
271 m_layout->addWidget(labelWidget, row, 0);
|
Chris@1190
|
272 QWidget *frame = new QWidget(m_mainWidget);
|
Chris@1190
|
273 frame->setMinimumSize(WidgetScale::scaleQSize(QSize(1, 24)));
|
Chris@1190
|
274 m_groupLayouts[groupName] = new QGridLayout;
|
Chris@1195
|
275 #ifdef Q_OS_MAC
|
Chris@1195
|
276 // Seems to be plenty of whitespace already
|
Chris@1195
|
277 m_groupLayouts[groupName]->setContentsMargins(0, 0, 0, 0);
|
Chris@1195
|
278 #else
|
Chris@1195
|
279 // Need a bit of padding on the left
|
Chris@1195
|
280 m_groupLayouts[groupName]->setContentsMargins
|
Chris@1195
|
281 (WidgetScale::scalePixelSize(10), 0, 0, 0);
|
Chris@1195
|
282 #endif
|
Chris@1190
|
283 frame->setLayout(m_groupLayouts[groupName]);
|
Chris@1190
|
284 m_layout->addWidget(frame, row, 1, 1, 2);
|
Chris@1190
|
285 m_layout->setColumnStretch(1, 10);
|
Chris@1190
|
286 }
|
Chris@0
|
287 }
|
Chris@0
|
288
|
Chris@1204
|
289 QGridLayout *groupLayout = m_groupLayouts[groupName];
|
Chris@1204
|
290
|
Chris@1204
|
291 #ifdef DEBUG_PROPERTY_BOX
|
Chris@1204
|
292 cerr << "groupName becomes \"" << groupName << "\", groupLabel = \""
|
Chris@1204
|
293 << groupLabel << "\", groupLayout = " << groupLayout << endl;
|
Chris@1204
|
294 #endif
|
Chris@1204
|
295
|
Chris@1204
|
296 assert(groupLayout);
|
Chris@1204
|
297
|
Chris@1204
|
298 QWidget *existing = m_propertyControllers[name];
|
Chris@1204
|
299
|
Chris@0
|
300 switch (type) {
|
Chris@0
|
301
|
Chris@0
|
302 case PropertyContainer::ToggleProperty:
|
Chris@0
|
303 {
|
Chris@1204
|
304 QAbstractButton *button;
|
Chris@0
|
305
|
Chris@1266
|
306 if (!(button = qobject_cast<QAbstractButton *>(existing))) {
|
Chris@0
|
307 #ifdef DEBUG_PROPERTY_BOX
|
Chris@1266
|
308 cerr << "PropertyBox: creating new checkbox" << endl;
|
Chris@0
|
309 #endif
|
Chris@335
|
310 if (iconName != "") {
|
cannam@1309
|
311 #ifdef Q_OS_MAC
|
cannam@1309
|
312 button = new NotifyingToolButton();
|
cannam@1309
|
313 #else
|
Chris@335
|
314 button = new NotifyingPushButton();
|
cannam@1309
|
315 #endif
|
Chris@335
|
316 button->setCheckable(true);
|
Chris@335
|
317 QIcon icon(IconLoader().load(iconName));
|
Chris@335
|
318 button->setIcon(icon);
|
Chris@335
|
319 button->setObjectName(name);
|
Chris@1174
|
320 button->setFixedSize(WidgetScale::scaleQSize(QSize(18, 18)));
|
Chris@335
|
321 } else {
|
Chris@335
|
322 button = new NotifyingCheckBox();
|
Chris@335
|
323 button->setObjectName(name);
|
Chris@335
|
324 }
|
Chris@1266
|
325 connect(button, SIGNAL(toggled(bool)),
|
Chris@1266
|
326 this, SLOT(propertyControllerChanged(bool)));
|
Chris@335
|
327 connect(button, SIGNAL(mouseEntered()),
|
Chris@189
|
328 this, SLOT(mouseEnteredWidget()));
|
Chris@335
|
329 connect(button, SIGNAL(mouseLeft()),
|
Chris@189
|
330 this, SLOT(mouseLeftWidget()));
|
Chris@1197
|
331 button->setToolTip(propertyLabel);
|
Chris@1204
|
332
|
Chris@1204
|
333 if (existing) {
|
Chris@1204
|
334 groupLayout->replaceWidget(existing, button);
|
Chris@1204
|
335 delete existing;
|
Chris@1204
|
336 } else {
|
Chris@1204
|
337 groupLayout->addWidget(button, 0, groupLayout->columnCount());
|
Chris@1204
|
338 }
|
Chris@1204
|
339
|
Chris@1266
|
340 m_propertyControllers[name] = button;
|
Chris@1266
|
341 }
|
Chris@0
|
342
|
Chris@335
|
343 if (button->isChecked() != (value > 0)) {
|
Chris@1266
|
344 button->blockSignals(true);
|
Chris@1266
|
345 button->setChecked(value > 0);
|
Chris@1266
|
346 button->blockSignals(false);
|
Chris@1266
|
347 }
|
Chris@1266
|
348 break;
|
Chris@0
|
349 }
|
Chris@0
|
350
|
Chris@0
|
351 case PropertyContainer::RangeProperty:
|
Chris@0
|
352 {
|
Chris@1266
|
353 AudioDial *dial;
|
Chris@0
|
354
|
Chris@1266
|
355 if ((dial = qobject_cast<AudioDial *>(existing))) {
|
Chris@197
|
356 if (rangeChanged) {
|
Chris@197
|
357 dial->blockSignals(true);
|
Chris@197
|
358 dial->setMinimum(min);
|
Chris@197
|
359 dial->setMaximum(max);
|
Chris@197
|
360 dial->setRangeMapper(m_container->getNewPropertyRangeMapper(name));
|
Chris@197
|
361 dial->blockSignals(false);
|
Chris@197
|
362 }
|
Chris@1204
|
363 } else {
|
Chris@0
|
364 #ifdef DEBUG_PROPERTY_BOX
|
Chris@1266
|
365 cerr << "PropertyBox: creating new dial" << endl;
|
Chris@0
|
366 #endif
|
Chris@1266
|
367 dial = new AudioDial();
|
Chris@1266
|
368 dial->setObjectName(name);
|
Chris@1266
|
369 dial->setMinimum(min);
|
Chris@1266
|
370 dial->setMaximum(max);
|
Chris@1266
|
371 dial->setPageStep(1);
|
Chris@1266
|
372 dial->setNotchesVisible((max - min) <= 12);
|
Chris@1126
|
373 // important to set the range mapper before the default,
|
Chris@1126
|
374 // because the range mapper is used to map the default
|
Chris@1126
|
375 dial->setRangeMapper(m_container->getNewPropertyRangeMapper(name));
|
Chris@1266
|
376 dial->setDefaultValue(deflt);
|
Chris@168
|
377 dial->setShowToolTip(true);
|
Chris@1266
|
378 connect(dial, SIGNAL(valueChanged(int)),
|
Chris@1266
|
379 this, SLOT(propertyControllerChanged(int)));
|
Chris@189
|
380 connect(dial, SIGNAL(mouseEntered()),
|
Chris@189
|
381 this, SLOT(mouseEnteredWidget()));
|
Chris@189
|
382 connect(dial, SIGNAL(mouseLeft()),
|
Chris@189
|
383 this, SLOT(mouseLeftWidget()));
|
Chris@0
|
384
|
Chris@1197
|
385 dial->setFixedWidth(WidgetScale::scalePixelSize(24));
|
Chris@1197
|
386 dial->setFixedHeight(WidgetScale::scalePixelSize(24));
|
Chris@1204
|
387
|
Chris@1204
|
388 if (existing) {
|
Chris@1204
|
389 groupLayout->replaceWidget(existing, dial);
|
Chris@1204
|
390 delete existing;
|
Chris@1204
|
391 } else {
|
Chris@1204
|
392 groupLayout->addWidget(dial, 0, groupLayout->columnCount());
|
Chris@1204
|
393 }
|
Chris@0
|
394
|
Chris@1266
|
395 m_propertyControllers[name] = dial;
|
Chris@1266
|
396 }
|
Chris@0
|
397
|
Chris@1266
|
398 if (dial->value() != value) {
|
Chris@1266
|
399 dial->blockSignals(true);
|
Chris@1266
|
400 dial->setValue(value);
|
Chris@1266
|
401 dial->blockSignals(false);
|
Chris@1266
|
402 }
|
Chris@1266
|
403 break;
|
Chris@0
|
404 }
|
Chris@0
|
405
|
Chris@1196
|
406 case PropertyContainer::ColourProperty:
|
Chris@1196
|
407 {
|
Chris@1196
|
408 ColourComboBox *cb;
|
Chris@1196
|
409
|
Chris@1266
|
410 if (!(cb = qobject_cast<ColourComboBox *>(existing))) {
|
Chris@1204
|
411
|
Chris@1196
|
412 #ifdef DEBUG_PROPERTY_BOX
|
Chris@1266
|
413 cerr << "PropertyBox: creating new colour combobox" << endl;
|
Chris@1196
|
414 #endif
|
Chris@1196
|
415 cb = new ColourComboBox(true);
|
Chris@1196
|
416 cb->setObjectName(name);
|
Chris@1196
|
417
|
Chris@1266
|
418 connect(cb, SIGNAL(colourChanged(int)),
|
Chris@1266
|
419 this, SLOT(propertyControllerChanged(int)));
|
Chris@1196
|
420 connect(cb, SIGNAL(mouseEntered()),
|
Chris@1196
|
421 this, SLOT(mouseEnteredWidget()));
|
Chris@1196
|
422 connect(cb, SIGNAL(mouseLeft()),
|
Chris@1196
|
423 this, SLOT(mouseLeftWidget()));
|
Chris@1196
|
424
|
Chris@1197
|
425 cb->setToolTip(propertyLabel);
|
Chris@1204
|
426
|
Chris@1204
|
427 if (existing) {
|
Chris@1204
|
428 groupLayout->replaceWidget(existing, cb);
|
Chris@1204
|
429 delete existing;
|
Chris@1204
|
430 } else {
|
Chris@1204
|
431 groupLayout->addWidget(cb, 0, groupLayout->columnCount());
|
Chris@1204
|
432 }
|
Chris@1204
|
433
|
Chris@1266
|
434 m_propertyControllers[name] = cb;
|
Chris@1266
|
435 }
|
Chris@1196
|
436
|
Chris@1196
|
437 if (cb->currentIndex() != value) {
|
Chris@1196
|
438 cb->blockSignals(true);
|
Chris@1196
|
439 cb->setCurrentIndex(value);
|
Chris@1196
|
440 cb->blockSignals(false);
|
Chris@1196
|
441 }
|
Chris@1196
|
442
|
Chris@1198
|
443 break;
|
Chris@1198
|
444 }
|
Chris@1198
|
445
|
Chris@1198
|
446 case PropertyContainer::ColourMapProperty:
|
Chris@1198
|
447 {
|
Chris@1198
|
448 ColourMapComboBox *cb;
|
Chris@1204
|
449
|
Chris@1204
|
450 if (!(cb = qobject_cast<ColourMapComboBox *>(existing))) {
|
Chris@1198
|
451 #ifdef DEBUG_PROPERTY_BOX
|
Chris@1266
|
452 cerr << "PropertyBox: creating new colourmap combobox" << endl;
|
Chris@1196
|
453 #endif
|
Chris@1199
|
454 cb = new ColourMapComboBox(false);
|
Chris@1198
|
455 cb->setObjectName(name);
|
Chris@1196
|
456
|
Chris@1266
|
457 connect(cb, SIGNAL(colourMapChanged(int)),
|
Chris@1266
|
458 this, SLOT(propertyControllerChanged(int)));
|
Chris@1198
|
459 connect(cb, SIGNAL(mouseEntered()),
|
Chris@1198
|
460 this, SLOT(mouseEnteredWidget()));
|
Chris@1198
|
461 connect(cb, SIGNAL(mouseLeft()),
|
Chris@1198
|
462 this, SLOT(mouseLeftWidget()));
|
Chris@1204
|
463
|
Chris@1204
|
464 cb->setToolTip(propertyLabel);
|
Chris@1198
|
465
|
Chris@1204
|
466 if (existing) {
|
Chris@1204
|
467 groupLayout->replaceWidget(existing, cb);
|
Chris@1204
|
468 delete existing;
|
Chris@1204
|
469 } else {
|
Chris@1204
|
470 groupLayout->addWidget(cb, 0, groupLayout->columnCount());
|
Chris@1204
|
471 }
|
Chris@1204
|
472
|
Chris@1266
|
473 m_propertyControllers[name] = cb;
|
Chris@1266
|
474 }
|
Chris@1198
|
475
|
Chris@1198
|
476 if (cb->currentIndex() != value) {
|
Chris@1198
|
477 cb->blockSignals(true);
|
Chris@1198
|
478 cb->setCurrentIndex(value);
|
Chris@1198
|
479 cb->blockSignals(false);
|
Chris@1198
|
480 }
|
Chris@1198
|
481
|
Chris@1196
|
482 break;
|
Chris@1196
|
483 }
|
Chris@1196
|
484
|
Chris@0
|
485 case PropertyContainer::ValueProperty:
|
Chris@100
|
486 case PropertyContainer::UnitsProperty:
|
Chris@0
|
487 {
|
Chris@1266
|
488 NotifyingComboBox *cb;
|
Chris@0
|
489
|
Chris@1266
|
490 if (!(cb = qobject_cast<NotifyingComboBox *>(existing))) {
|
Chris@0
|
491 #ifdef DEBUG_PROPERTY_BOX
|
Chris@1266
|
492 cerr << "PropertyBox: creating new combobox" << endl;
|
Chris@0
|
493 #endif
|
Chris@1266
|
494 cb = new NotifyingComboBox();
|
Chris@1266
|
495 cb->setObjectName(name);
|
Chris@100
|
496 cb->setDuplicatesEnabled(false);
|
Chris@197
|
497 }
|
Chris@100
|
498
|
Chris@197
|
499 if (!have || rangeChanged) {
|
Chris@285
|
500
|
Chris@197
|
501 cb->blockSignals(true);
|
Chris@197
|
502 cb->clear();
|
Chris@285
|
503 cb->setEditable(false);
|
Chris@285
|
504
|
Chris@100
|
505 if (type == PropertyContainer::ValueProperty) {
|
Chris@285
|
506
|
Chris@100
|
507 for (int i = min; i <= max; ++i) {
|
Chris@862
|
508
|
Chris@862
|
509 QString label = m_container->getPropertyValueLabel(name, i);
|
Chris@862
|
510 QString iname = m_container->getPropertyValueIconName(name, i);
|
Chris@862
|
511
|
Chris@862
|
512 if (iname != "") {
|
Chris@862
|
513 QIcon icon(IconLoader().load(iname));
|
Chris@862
|
514 cb->addItem(icon, label);
|
Chris@862
|
515 } else {
|
Chris@862
|
516 cb->addItem(label);
|
Chris@862
|
517 }
|
Chris@100
|
518 }
|
Chris@285
|
519
|
Chris@1196
|
520 } else { // PropertyContainer::UnitsProperty
|
Chris@285
|
521
|
Chris@100
|
522 QStringList units = UnitDatabase::getInstance()->getKnownUnits();
|
Chris@100
|
523 for (int i = 0; i < units.size(); ++i) {
|
Chris@100
|
524 cb->addItem(units[i]);
|
Chris@100
|
525 }
|
Chris@285
|
526
|
Chris@100
|
527 cb->setEditable(true);
|
Chris@280
|
528 }
|
Chris@197
|
529 }
|
Chris@100
|
530
|
Chris@197
|
531 if (!have) {
|
Chris@1266
|
532 connect(cb, SIGNAL(activated(int)),
|
Chris@1266
|
533 this, SLOT(propertyControllerChanged(int)));
|
Chris@189
|
534 connect(cb, SIGNAL(mouseEntered()),
|
Chris@189
|
535 this, SLOT(mouseEnteredWidget()));
|
Chris@189
|
536 connect(cb, SIGNAL(mouseLeft()),
|
Chris@189
|
537 this, SLOT(mouseLeftWidget()));
|
Chris@100
|
538
|
Chris@1197
|
539 cb->setToolTip(propertyLabel);
|
Chris@1204
|
540 groupLayout->addWidget(cb, 0, groupLayout->columnCount());
|
Chris@1266
|
541 m_propertyControllers[name] = cb;
|
Chris@1266
|
542 } else if (existing != cb) {
|
Chris@1204
|
543 groupLayout->replaceWidget(existing, cb);
|
Chris@1204
|
544 delete existing;
|
Chris@1204
|
545 }
|
Chris@0
|
546
|
Chris@100
|
547 cb->blockSignals(true);
|
Chris@1196
|
548 if (type == PropertyContainer::ValueProperty) {
|
Chris@100
|
549 if (cb->currentIndex() != value) {
|
Chris@100
|
550 cb->setCurrentIndex(value);
|
Chris@100
|
551 }
|
Chris@100
|
552 } else {
|
Chris@100
|
553 QString unit = UnitDatabase::getInstance()->getUnitById(value);
|
Chris@100
|
554 if (cb->currentText() != unit) {
|
Chris@100
|
555 for (int i = 0; i < cb->count(); ++i) {
|
Chris@100
|
556 if (cb->itemText(i) == unit) {
|
Chris@100
|
557 cb->setCurrentIndex(i);
|
Chris@100
|
558 break;
|
Chris@100
|
559 }
|
Chris@100
|
560 }
|
Chris@100
|
561 }
|
Chris@100
|
562 }
|
Chris@100
|
563 cb->blockSignals(false);
|
Chris@0
|
564
|
Chris@1266
|
565 break;
|
Chris@0
|
566 }
|
Chris@0
|
567
|
Chris@807
|
568 case PropertyContainer::InvalidProperty:
|
Chris@0
|
569 default:
|
Chris@1266
|
570 break;
|
Chris@0
|
571 }
|
Chris@0
|
572 }
|
Chris@0
|
573
|
Chris@0
|
574 void
|
Chris@0
|
575 PropertyBox::propertyContainerPropertyChanged(PropertyContainer *pc)
|
Chris@0
|
576 {
|
Chris@0
|
577 if (pc != m_container) return;
|
Chris@0
|
578
|
Chris@55
|
579 #ifdef DEBUG_PROPERTY_BOX
|
Chris@587
|
580 SVDEBUG << "PropertyBox::propertyContainerPropertyChanged" << endl;
|
Chris@55
|
581 #endif
|
Chris@55
|
582
|
Chris@0
|
583 PropertyContainer::PropertyList properties = m_container->getProperties();
|
Chris@0
|
584 size_t i;
|
Chris@0
|
585
|
Chris@0
|
586 blockSignals(true);
|
Chris@0
|
587
|
Chris@0
|
588 for (i = 0; i < properties.size(); ++i) {
|
Chris@1266
|
589 updatePropertyEditor(properties[i]);
|
Chris@0
|
590 }
|
Chris@0
|
591
|
Chris@0
|
592 blockSignals(false);
|
Chris@0
|
593 }
|
Chris@0
|
594
|
Chris@0
|
595 void
|
Chris@249
|
596 PropertyBox::propertyContainerPropertyRangeChanged(PropertyContainer *)
|
Chris@197
|
597 {
|
Chris@197
|
598 blockSignals(true);
|
Chris@197
|
599
|
Chris@197
|
600 PropertyContainer::PropertyList properties = m_container->getProperties();
|
Chris@197
|
601 for (size_t i = 0; i < properties.size(); ++i) {
|
Chris@1266
|
602 updatePropertyEditor(properties[i], true);
|
Chris@197
|
603 }
|
Chris@197
|
604
|
Chris@197
|
605 blockSignals(false);
|
Chris@197
|
606 }
|
Chris@197
|
607
|
Chris@197
|
608 void
|
Chris@100
|
609 PropertyBox::unitDatabaseChanged()
|
Chris@100
|
610 {
|
Chris@729
|
611 #ifdef DEBUG_PROPERTY_BOX
|
Chris@682
|
612 cerr << "PropertyBox[" << this << "]: unitDatabaseChanged" << endl;
|
Chris@729
|
613 #endif
|
Chris@100
|
614 blockSignals(true);
|
Chris@100
|
615
|
Chris@682
|
616 // cerr << "my container is " << m_container << endl;
|
Chris@682
|
617 // cerr << "my container's name is... " << endl;
|
Chris@682
|
618 // cerr << m_container->objectName() << endl;
|
Chris@456
|
619
|
Chris@100
|
620 PropertyContainer::PropertyList properties = m_container->getProperties();
|
Chris@100
|
621 for (size_t i = 0; i < properties.size(); ++i) {
|
Chris@285
|
622 if (m_container->getPropertyType(properties[i]) ==
|
Chris@285
|
623 PropertyContainer::UnitsProperty) {
|
Chris@285
|
624 updatePropertyEditor(properties[i]);
|
Chris@285
|
625 }
|
Chris@285
|
626 }
|
Chris@285
|
627
|
Chris@285
|
628 blockSignals(false);
|
Chris@285
|
629 }
|
Chris@285
|
630
|
Chris@285
|
631 void
|
Chris@335
|
632 PropertyBox::propertyControllerChanged(bool on)
|
Chris@335
|
633 {
|
Chris@335
|
634 propertyControllerChanged(on ? 1 : 0);
|
Chris@335
|
635 }
|
Chris@335
|
636
|
Chris@335
|
637 void
|
Chris@0
|
638 PropertyBox::propertyControllerChanged(int value)
|
Chris@0
|
639 {
|
Chris@0
|
640 QObject *obj = sender();
|
Chris@0
|
641 QString name = obj->objectName();
|
Chris@0
|
642
|
Chris@34
|
643 #ifdef DEBUG_PROPERTY_BOX
|
Chris@1266
|
644 SVDEBUG << "PropertyBox::propertyControllerChanged(" << name << ", " << value << ")" << endl;
|
Chris@34
|
645 #endif
|
Chris@0
|
646
|
Chris@0
|
647 PropertyContainer::PropertyType type = m_container->getPropertyType(name);
|
Chris@100
|
648
|
Chris@376
|
649 Command *c = 0;
|
Chris@376
|
650
|
Chris@100
|
651 if (type == PropertyContainer::UnitsProperty) {
|
Chris@285
|
652
|
Chris@1196
|
653 NotifyingComboBox *cb = qobject_cast<NotifyingComboBox *>(obj);
|
Chris@100
|
654 if (cb) {
|
Chris@100
|
655 QString unit = cb->currentText();
|
Chris@376
|
656 c = m_container->getSetPropertyCommand
|
Chris@100
|
657 (name, UnitDatabase::getInstance()->getUnitId(unit));
|
Chris@100
|
658 }
|
Chris@285
|
659
|
Chris@100
|
660 } else if (type != PropertyContainer::InvalidProperty) {
|
Chris@285
|
661
|
Chris@1266
|
662 c = m_container->getSetPropertyCommand(name, value);
|
Chris@0
|
663 }
|
Chris@376
|
664
|
Chris@376
|
665 if (c) CommandHistory::getInstance()->addCommand(c, true, true);
|
Chris@218
|
666
|
Chris@218
|
667 updateContextHelp(obj);
|
Chris@0
|
668 }
|
Chris@285
|
669
|
Chris@285
|
670 void
|
Chris@377
|
671 PropertyBox::playAudibleChanged(bool audible)
|
Chris@377
|
672 {
|
Chris@1180
|
673 m_playButton->setChecked(audible);
|
Chris@377
|
674 }
|
Chris@377
|
675
|
Chris@377
|
676 void
|
Chris@377
|
677 PropertyBox::playAudibleButtonChanged(bool audible)
|
Chris@377
|
678 {
|
Chris@377
|
679 PlayParameters *params = m_container->getPlayParameters();
|
Chris@377
|
680 if (!params) return;
|
Chris@377
|
681
|
Chris@377
|
682 if (params->isPlayAudible() != audible) {
|
Chris@377
|
683 PlayParameterRepository::EditCommand *command =
|
Chris@377
|
684 new PlayParameterRepository::EditCommand(params);
|
Chris@377
|
685 command->setPlayAudible(audible);
|
Chris@377
|
686 CommandHistory::getInstance()->addCommand(command, true, true);
|
Chris@377
|
687 }
|
Chris@377
|
688 }
|
Chris@34
|
689
|
Chris@34
|
690 void
|
Chris@1178
|
691 PropertyBox::playGainControlChanged(float gain)
|
Chris@34
|
692 {
|
Chris@218
|
693 QObject *obj = sender();
|
Chris@377
|
694
|
Chris@377
|
695 PlayParameters *params = m_container->getPlayParameters();
|
Chris@377
|
696 if (!params) return;
|
Chris@377
|
697
|
Chris@377
|
698 if (params->getPlayGain() != gain) {
|
Chris@377
|
699 PlayParameterRepository::EditCommand *command =
|
Chris@377
|
700 new PlayParameterRepository::EditCommand(params);
|
Chris@377
|
701 command->setPlayGain(gain);
|
Chris@377
|
702 CommandHistory::getInstance()->addCommand(command, true, true);
|
Chris@377
|
703 }
|
Chris@377
|
704
|
Chris@218
|
705 updateContextHelp(obj);
|
Chris@34
|
706 }
|
Chris@34
|
707
|
Chris@34
|
708 void
|
Chris@1178
|
709 PropertyBox::playPanControlChanged(float pan)
|
Chris@34
|
710 {
|
Chris@218
|
711 QObject *obj = sender();
|
Chris@377
|
712
|
Chris@377
|
713 PlayParameters *params = m_container->getPlayParameters();
|
Chris@377
|
714 if (!params) return;
|
Chris@377
|
715
|
Chris@377
|
716 if (params->getPlayPan() != pan) {
|
Chris@377
|
717 PlayParameterRepository::EditCommand *command =
|
Chris@377
|
718 new PlayParameterRepository::EditCommand(params);
|
Chris@377
|
719 command->setPlayPan(pan);
|
Chris@377
|
720 CommandHistory::getInstance()->addCommand(command, true, true);
|
Chris@377
|
721 }
|
Chris@377
|
722
|
Chris@218
|
723 updateContextHelp(obj);
|
Chris@34
|
724 }
|
Chris@769
|
725
|
Chris@63
|
726 void
|
Chris@769
|
727 PropertyBox::editPlayParameters()
|
Chris@63
|
728 {
|
Chris@63
|
729 PlayParameters *params = m_container->getPlayParameters();
|
Chris@63
|
730 if (!params) return;
|
Chris@63
|
731
|
Chris@769
|
732 QString clip = params->getPlayClipId();
|
Chris@377
|
733
|
Chris@377
|
734 PlayParameterRepository::EditCommand *command =
|
Chris@377
|
735 new PlayParameterRepository::EditCommand(params);
|
Chris@63
|
736
|
Chris@769
|
737 QInputDialog *dialog = new QInputDialog(this);
|
Chris@63
|
738
|
Chris@769
|
739 QDir dir(":/samples");
|
Chris@769
|
740 QStringList clipFiles = dir.entryList(QStringList() << "*.wav", QDir::Files);
|
Chris@63
|
741
|
Chris@769
|
742 QStringList clips;
|
Chris@769
|
743 foreach (QString str, clipFiles) {
|
Chris@769
|
744 clips.push_back(str.replace(".wav", ""));
|
Chris@769
|
745 }
|
Chris@769
|
746 dialog->setComboBoxItems(clips);
|
Chris@63
|
747
|
Chris@769
|
748 dialog->setLabelText(tr("Set playback clip:"));
|
Chris@769
|
749
|
Chris@769
|
750 QComboBox *cb = dialog->findChild<QComboBox *>();
|
Chris@779
|
751 if (cb) {
|
Chris@779
|
752 for (int i = 0; i < cb->count(); ++i) {
|
Chris@779
|
753 if (cb->itemText(i) == clip) {
|
Chris@779
|
754 cb->setCurrentIndex(i);
|
Chris@779
|
755 }
|
Chris@779
|
756 }
|
Chris@779
|
757 }
|
Chris@769
|
758
|
Chris@769
|
759 connect(dialog, SIGNAL(textValueChanged(QString)),
|
Chris@769
|
760 this, SLOT(playClipChanged(QString)));
|
Chris@64
|
761
|
Chris@63
|
762 if (dialog->exec() == QDialog::Accepted) {
|
Chris@769
|
763 QString newClip = dialog->textValue();
|
Chris@769
|
764 command->setPlayClipId(newClip);
|
Chris@377
|
765 CommandHistory::getInstance()->addCommand(command, true);
|
Chris@64
|
766 } else {
|
Chris@377
|
767 delete command;
|
Chris@64
|
768 // restore in case we mucked about with the configuration
|
Chris@64
|
769 // as a consequence of signals from the dialog
|
Chris@769
|
770 params->setPlayClipId(clip);
|
Chris@63
|
771 }
|
Chris@63
|
772
|
Chris@63
|
773 delete dialog;
|
Chris@63
|
774 }
|
Chris@63
|
775
|
Chris@64
|
776 void
|
Chris@769
|
777 PropertyBox::playClipChanged(QString id)
|
Chris@64
|
778 {
|
Chris@64
|
779 PlayParameters *params = m_container->getPlayParameters();
|
Chris@64
|
780 if (!params) return;
|
Chris@64
|
781
|
Chris@769
|
782 params->setPlayClipId(id);
|
Chris@64
|
783 }
|
Chris@769
|
784
|
Chris@185
|
785 void
|
Chris@185
|
786 PropertyBox::layerVisibilityChanged(bool visible)
|
Chris@185
|
787 {
|
Chris@185
|
788 if (m_showButton) m_showButton->setState(visible);
|
Chris@185
|
789 }
|
Chris@189
|
790
|
Chris@189
|
791 void
|
Chris@189
|
792 PropertyBox::mouseEnteredWidget()
|
Chris@189
|
793 {
|
Chris@218
|
794 updateContextHelp(sender());
|
Chris@218
|
795 }
|
Chris@218
|
796
|
Chris@218
|
797 void
|
Chris@218
|
798 PropertyBox::updateContextHelp(QObject *o)
|
Chris@218
|
799 {
|
Chris@1196
|
800 QWidget *w = qobject_cast<QWidget *>(o);
|
Chris@189
|
801 if (!w) return;
|
Chris@218
|
802
|
Chris@189
|
803 if (!m_container) return;
|
Chris@190
|
804 QString cname = m_container->getPropertyContainerName();
|
Chris@189
|
805 if (cname == "") return;
|
Chris@189
|
806
|
Chris@1180
|
807 LevelPanToolButton *lp = qobject_cast<LevelPanToolButton *>(w);
|
Chris@1180
|
808 if (lp) {
|
Chris@1180
|
809 emit contextHelpChanged(tr("Adjust playback level and pan of %1").arg(cname));
|
Chris@1180
|
810 return;
|
Chris@1180
|
811 }
|
Chris@1180
|
812
|
Chris@189
|
813 QString wname = w->objectName();
|
Chris@189
|
814
|
Chris@1180
|
815 if (wname == "playParamButton") {
|
Chris@1180
|
816 PlayParameters *params = m_container->getPlayParameters();
|
Chris@1180
|
817 if (params) {
|
Chris@1180
|
818 emit contextHelpChanged
|
Chris@1180
|
819 (tr("Change sound used for playback (currently \"%1\")")
|
Chris@1180
|
820 .arg(params->getPlayClipId()));
|
Chris@1180
|
821 return;
|
Chris@1180
|
822 }
|
Chris@1180
|
823 }
|
Chris@1180
|
824
|
Chris@218
|
825 QString extraText;
|
Chris@1180
|
826
|
Chris@1180
|
827 AudioDial *dial = qobject_cast<AudioDial *>(w);
|
Chris@218
|
828 if (dial) {
|
Chris@908
|
829 double mv = dial->mappedValue();
|
Chris@218
|
830 QString unit = "";
|
Chris@218
|
831 if (dial->rangeMapper()) unit = dial->rangeMapper()->getUnit();
|
Chris@218
|
832 if (unit != "") {
|
Chris@218
|
833 extraText = tr(" (current value: %1%2)").arg(mv).arg(unit);
|
Chris@218
|
834 } else {
|
Chris@218
|
835 extraText = tr(" (current value: %1)").arg(mv);
|
Chris@218
|
836 }
|
Chris@218
|
837 }
|
Chris@218
|
838
|
Chris@189
|
839 if (w == m_showButton) {
|
Chris@190
|
840 emit contextHelpChanged(tr("Toggle Visibility of %1").arg(cname));
|
Chris@189
|
841 } else if (w == m_playButton) {
|
Chris@190
|
842 emit contextHelpChanged(tr("Toggle Playback of %1").arg(cname));
|
Chris@189
|
843 } else if (wname == "") {
|
Chris@189
|
844 return;
|
Chris@1196
|
845 } else if (qobject_cast<QAbstractButton *>(w)) {
|
Chris@190
|
846 emit contextHelpChanged(tr("Toggle %1 property of %2")
|
Chris@189
|
847 .arg(wname).arg(cname));
|
Chris@189
|
848 } else {
|
Chris@218
|
849 emit contextHelpChanged(tr("Adjust %1 property of %2%3")
|
Chris@218
|
850 .arg(wname).arg(cname).arg(extraText));
|
Chris@189
|
851 }
|
Chris@189
|
852 }
|
Chris@189
|
853
|
Chris@189
|
854 void
|
Chris@189
|
855 PropertyBox::mouseLeftWidget()
|
Chris@189
|
856 {
|
Chris@218
|
857 if (!(QApplication::mouseButtons() & Qt::LeftButton)) {
|
Chris@218
|
858 emit contextHelpChanged("");
|
Chris@218
|
859 }
|
Chris@189
|
860 }
|
Chris@189
|
861
|
Chris@64
|
862
|