/[svn]/qsampler/trunk/src/qsamplerDeviceForm.cpp
ViewVC logotype

Annotation of /qsampler/trunk/src/qsamplerDeviceForm.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1667 - (hide annotations) (download)
Mon Feb 4 23:24:19 2008 UTC (16 years, 2 months ago) by schoenebeck
File size: 19542 byte(s)
* added FX Sends dialog to channel strips
  (still under construction, so far one can only create, destroy and rename
  FX sends, the rest is still to do)
* bumped version to 0.2.1.3

1 capela 1464 // qsamplerDeviceForm.cpp
2     //
3     /****************************************************************************
4     Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.
5 schoenebeck 1667 Copyright (C) 2007, 2008 Christian Schoenebeck
6 capela 1464
7     This program is free software; you can redistribute it and/or
8     modify it under the terms of the GNU General Public License
9     as published by the Free Software Foundation; either version 2
10     of the License, or (at your option) any later version.
11    
12     This program is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     GNU General Public License for more details.
16    
17     You should have received a copy of the GNU General Public License along
18     with this program; if not, write to the Free Software Foundation, Inc.,
19     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20    
21     *****************************************************************************/
22    
23 schoenebeck 1461 #include "qsamplerDeviceForm.h"
24    
25     #include "qsamplerAbout.h"
26 capela 1473 #include "qsamplerMainForm.h"
27 schoenebeck 1461
28 capela 1499 #include <QHeaderView>
29     #include <QMessageBox>
30    
31    
32 schoenebeck 1461 namespace QSampler {
33    
34 capela 1558 //-------------------------------------------------------------------------
35     // QSampler::DeviceForm -- Device form implementation.
36     //
37    
38 capela 1509 DeviceForm::DeviceForm ( QWidget *pParent, Qt::WindowFlags wflags )
39     : QDialog(pParent, wflags)
40     {
41 capela 1510 m_ui.setupUi(this);
42 schoenebeck 1461
43     // Initialize locals.
44     m_iDirtySetup = 0;
45     m_iDirtyCount = 0;
46     m_bNewDevice = false;
47 capela 1558 m_deviceType = Device::None;
48 schoenebeck 1461 m_pAudioItems = NULL;
49     m_pMidiItems = NULL;
50     // No exclusive mode as default.
51 capela 1558 m_deviceTypeMode = Device::None;
52 schoenebeck 1461
53 capela 1509 m_ui.DeviceListView->header()->hide();
54 schoenebeck 1477
55 capela 1519 int iRowHeight = m_ui.DeviceParamTable->fontMetrics().height() + 4;
56     m_ui.DeviceParamTable->verticalHeader()->setDefaultSectionSize(iRowHeight);
57     m_ui.DevicePortParamTable->verticalHeader()->setDefaultSectionSize(iRowHeight);
58     m_ui.DeviceParamTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
59     m_ui.DevicePortParamTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
60    
61 capela 1509 m_ui.DeviceParamTable->setModel(&m_deviceParamModel);
62     m_ui.DeviceParamTable->setItemDelegate(&m_deviceParamDelegate);
63     m_ui.DeviceParamTable->horizontalHeader()->setResizeMode(2, QHeaderView::Stretch);
64     m_ui.DeviceParamTable->verticalHeader()->hide();
65 schoenebeck 1461
66 capela 1509 m_ui.DevicePortParamTable->setModel(&m_devicePortParamModel);
67     m_ui.DevicePortParamTable->setItemDelegate(&m_devicePortParamDelegate);
68     m_ui.DevicePortParamTable->horizontalHeader()->setResizeMode(2, QHeaderView::Stretch);
69     m_ui.DevicePortParamTable->verticalHeader()->hide();
70 schoenebeck 1461
71     // Initial contents.
72     refreshDevices();
73     // Try to restore normal window positioning.
74     adjustSize();
75 capela 1466
76 capela 1509 QObject::connect(m_ui.DeviceListView,
77 schoenebeck 1486 SIGNAL(currentItemChanged(QTreeWidgetItem*,QTreeWidgetItem*)),
78 capela 1466 SLOT(selectDevice()));
79 capela 1509 QObject::connect(m_ui.DeviceListView,
80 schoenebeck 1470 SIGNAL(customContextMenuRequested(const QPoint&)),
81     SLOT(deviceListViewContextMenu(const QPoint&)));
82 capela 1509 QObject::connect(m_ui.RefreshDevicesPushButton,
83 capela 1466 SIGNAL(clicked()),
84     SLOT(refreshDevices()));
85 capela 1509 QObject::connect(m_ui.DriverNameComboBox,
86 schoenebeck 1470 SIGNAL(activated(const QString&)),
87     SLOT(selectDriver(const QString&)));
88 capela 1509 QObject::connect(m_ui.DevicePortComboBox,
89 capela 1466 SIGNAL(activated(int)),
90     SLOT(selectDevicePort(int)));
91 capela 1509 QObject::connect(m_ui.CreateDevicePushButton,
92 capela 1466 SIGNAL(clicked()),
93     SLOT(createDevice()));
94 capela 1509 QObject::connect(m_ui.DeleteDevicePushButton,
95 capela 1466 SIGNAL(clicked()),
96     SLOT(deleteDevice()));
97 capela 1509 QObject::connect(m_ui.ClosePushButton,
98 capela 1466 SIGNAL(clicked()),
99     SLOT(close()));
100 capela 1509 QObject::connect(&m_deviceParamModel,
101 schoenebeck 1486 SIGNAL(modelReset()),
102     SLOT(updateCellRenderers()));
103 capela 1509 QObject::connect(&m_deviceParamModel,
104 schoenebeck 1486 SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)),
105     SLOT(updateCellRenderers(const QModelIndex&, const QModelIndex&)));
106 capela 1509 QObject::connect(&m_devicePortParamModel,
107 schoenebeck 1486 SIGNAL(modelReset()),
108     SLOT(updatePortCellRenderers()));
109 capela 1509 QObject::connect(&m_devicePortParamModel,
110 schoenebeck 1486 SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)),
111     SLOT(updatePortCellRenderers(const QModelIndex&, const QModelIndex&)));
112 schoenebeck 1461 }
113    
114 capela 1520
115     DeviceForm::~DeviceForm (void)
116     {
117 schoenebeck 1461 }
118    
119    
120     // Notify our parent that we're emerging.
121     void DeviceForm::showEvent ( QShowEvent *pShowEvent )
122     {
123     MainForm* pMainForm = MainForm::getInstance();
124     if (pMainForm)
125     pMainForm->stabilizeForm();
126    
127 capela 1520 QWidget::showEvent(pShowEvent);
128 schoenebeck 1461
129 capela 1520 refreshDevices();
130 schoenebeck 1461 }
131    
132    
133     // Notify our parent that we're closing.
134     void DeviceForm::hideEvent ( QHideEvent *pHideEvent )
135     {
136     QWidget::hideEvent(pHideEvent);
137    
138     MainForm *pMainForm = MainForm::getInstance();
139     if (pMainForm)
140     pMainForm->stabilizeForm();
141    
142     // Signal special whether we changed the device set.
143     if (m_iDirtyCount > 0) {
144     m_iDirtyCount = 0;
145     emit devicesChanged();
146     }
147     }
148    
149    
150     // Set device type spacial exclusive mode.
151     void DeviceForm::setDeviceTypeMode (
152 capela 1558 Device::DeviceType deviceTypeMode )
153 schoenebeck 1461 {
154     // If it has not changed, do nothing.
155     if (m_deviceTypeMode == deviceTypeMode)
156     return;
157    
158     m_deviceTypeMode = deviceTypeMode;
159    
160     // OK. Do a whole refresh around.
161     refreshDevices();
162     }
163    
164    
165     // Device driver name setup formal initializer.
166     void DeviceForm::setDriverName ( const QString& sDriverName )
167     {
168 capela 1509 if (m_ui.DriverNameComboBox->findText(sDriverName) < 0)
169     m_ui.DriverNameComboBox->insertItem(0, sDriverName);
170     m_ui.DriverNameComboBox->setItemText(
171     m_ui.DriverNameComboBox->currentIndex(),
172 capela 1499 sDriverName);
173 schoenebeck 1461 }
174    
175    
176     // Set current selected device by type and id.
177 capela 1558 void DeviceForm::setDevice ( Device *pDevice )
178 schoenebeck 1461 {
179     // In case no device is given...
180 capela 1558 Device::DeviceType deviceType = m_deviceTypeMode;
181 schoenebeck 1461 if (pDevice)
182     deviceType = pDevice->deviceType();
183    
184     // Get the device view root item...
185 capela 1558 DeviceItem *pRootItem = NULL;
186 schoenebeck 1461 switch (deviceType) {
187 capela 1558 case Device::Audio:
188 schoenebeck 1461 pRootItem = m_pAudioItems;
189     break;
190 capela 1558 case Device::Midi:
191 schoenebeck 1461 pRootItem = m_pMidiItems;
192     break;
193 capela 1558 case Device::None:
194 schoenebeck 1461 break;
195     }
196    
197     // Is the root present?
198     if (pRootItem == NULL)
199     return;
200    
201     // So there's no device huh?
202     if (pDevice == NULL) {
203 capela 1509 m_ui.DeviceListView->setCurrentItem(pRootItem);
204 schoenebeck 1461 return;
205     }
206    
207     // For each child, test for identity...
208     for (int i = 0; i < pRootItem->childCount(); i++) {
209 capela 1558 DeviceItem* pDeviceItem =
210     (DeviceItem*) pRootItem->child(i);
211 schoenebeck 1461
212     // If identities match, select as current device item.
213     if (pDeviceItem->device().deviceID() == pDevice->deviceID()) {
214     pDeviceItem->setSelected(true);
215     break;
216     }
217     }
218     }
219    
220    
221    
222     // Create a new device from current table view.
223     void DeviceForm::createDevice (void)
224     {
225     MainForm *pMainForm = MainForm::getInstance();
226     if (pMainForm == NULL)
227     return;
228    
229 capela 1509 QTreeWidgetItem *pItem = m_ui.DeviceListView->currentItem();
230 schoenebeck 1461 if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)
231     return;
232    
233     // About a brand new device instance...
234 capela 1558 Device device(((DeviceItem *) pItem)->device());
235 schoenebeck 1461 if (device.createDevice()) {
236     // Now it depends on the device type...
237 capela 1558 DeviceItem *pRootItem = NULL;
238 schoenebeck 1461 switch (device.deviceType()) {
239 capela 1558 case Device::Audio:
240 schoenebeck 1461 pRootItem = m_pAudioItems;
241     break;
242 capela 1558 case Device::Midi:
243 schoenebeck 1461 pRootItem = m_pMidiItems;
244     break;
245 capela 1558 case Device::None:
246 schoenebeck 1461 break;
247     }
248     // Append the new device item.
249 capela 1558 DeviceItem *pDeviceItem = new DeviceItem(pRootItem,
250 schoenebeck 1461 device.deviceType(), device.deviceID());
251     // Just make it the new selection...
252     pDeviceItem->setSelected(true);
253     // Main session should be marked dirty.
254     pMainForm->sessionDirty();
255     m_iDirtyCount++;
256     }
257     }
258    
259    
260     // Delete current device in table view.
261     void DeviceForm::deleteDevice (void)
262     {
263     MainForm *pMainForm = MainForm::getInstance();
264     if (pMainForm == NULL)
265     return;
266    
267 capela 1509 QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
268 schoenebeck 1461 if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)
269     return;
270    
271 capela 1558 Device& device = ((DeviceItem *) pItem)->device();
272 schoenebeck 1461
273     // Prompt user if this is for real...
274 capela 1558 Options *pOptions = pMainForm->options();
275 schoenebeck 1461 if (pOptions && pOptions->bConfirmRemove) {
276     if (QMessageBox::warning(this,
277     QSAMPLER_TITLE ": " + tr("Warning"),
278 capela 1528 tr("About to delete device:\n\n"
279 schoenebeck 1461 "%1\n\n"
280     "Are you sure?")
281     .arg(device.deviceName()),
282     tr("OK"), tr("Cancel")) > 0)
283     return;
284     }
285    
286     // Go and destroy...
287     if (device.deleteDevice()) {
288     // Remove it from the device view...
289     delete pItem;
290     // Main session should be marked dirty.
291     pMainForm->sessionDirty();
292     m_iDirtyCount++;
293     }
294     }
295    
296    
297     // Refresh all device list and views.
298     void DeviceForm::refreshDevices (void)
299     {
300     MainForm *pMainForm = MainForm::getInstance();
301     if (pMainForm == NULL)
302     return;
303    
304     // Avoid nested changes.
305     m_iDirtySetup++;
306    
307     //
308     // (Re)Load complete device configuration data ...
309     //
310     m_pAudioItems = NULL;
311     m_pMidiItems = NULL;
312 capela 1509 m_ui.DeviceListView->clear();
313 schoenebeck 1461 if (pMainForm->client()) {
314     int *piDeviceIDs;
315     // Grab and pop Audio devices...
316 capela 1558 if (m_deviceTypeMode == Device::None ||
317     m_deviceTypeMode == Device::Audio) {
318     m_pAudioItems = new DeviceItem(m_ui.DeviceListView,
319     Device::Audio);
320 schoenebeck 1461 }
321     if (m_pAudioItems) {
322 capela 1558 piDeviceIDs = Device::getDevices(pMainForm->client(),
323     Device::Audio);
324 schoenebeck 1461 for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {
325 capela 1558 new DeviceItem(m_pAudioItems,
326     Device::Audio, piDeviceIDs[i]);
327 schoenebeck 1461 }
328     m_pAudioItems->setExpanded(true);
329     }
330     // Grab and pop MIDI devices...
331 capela 1558 if (m_deviceTypeMode == Device::None ||
332     m_deviceTypeMode == Device::Midi) {
333     m_pMidiItems = new DeviceItem(m_ui.DeviceListView,
334     Device::Midi);
335 schoenebeck 1461 }
336     if (m_pMidiItems) {
337 capela 1558 piDeviceIDs = Device::getDevices(pMainForm->client(),
338     Device::Midi);
339 schoenebeck 1461 for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {
340 capela 1558 new DeviceItem(m_pMidiItems,
341     Device::Midi, piDeviceIDs[i]);
342 schoenebeck 1461 }
343     m_pMidiItems->setExpanded(true);
344     }
345     }
346    
347     // Done.
348     m_iDirtySetup--;
349    
350     // Show something.
351     selectDevice();
352     }
353    
354    
355     // Driver selection slot.
356     void DeviceForm::selectDriver ( const QString& sDriverName )
357     {
358     if (m_iDirtySetup > 0)
359     return;
360    
361     //
362     // Driver name has changed for a new device...
363     //
364    
365 capela 1509 QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
366 schoenebeck 1461 if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)
367     return;
368    
369 capela 1558 Device& device = ((DeviceItem *) pItem)->device();
370 schoenebeck 1461
371     // Driver change is only valid for scratch devices...
372     if (m_bNewDevice) {
373     m_iDirtySetup++;
374     device.setDriver(sDriverName);
375 capela 1509 m_deviceParamModel.refresh(&device, m_bNewDevice);
376 schoenebeck 1461 m_iDirtySetup--;
377     // Done.
378     stabilizeForm();
379     }
380     }
381    
382    
383     // Device selection slot.
384 schoenebeck 1477 void DeviceForm::selectDevice ()
385 schoenebeck 1461 {
386     MainForm *pMainForm = MainForm::getInstance();
387     if (pMainForm == NULL)
388     return;
389    
390     if (m_iDirtySetup > 0)
391     return;
392    
393     //
394     // Device selection has changed...
395     //
396    
397 capela 1509 QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
398 schoenebeck 1461 if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM) {
399 capela 1558 m_deviceType = Device::None;
400 capela 1509 m_ui.DeviceNameTextLabel->setText(QString::null);
401     m_deviceParamModel.clear();
402     m_ui.DevicePortComboBox->clear();
403     m_devicePortParamModel.clear();
404     m_ui.DevicePortTextLabel->setEnabled(false);
405     m_ui.DevicePortComboBox->setEnabled(false);
406     m_ui.DevicePortParamTable->setEnabled(false);
407 schoenebeck 1461 stabilizeForm();
408     return;
409     }
410    
411 capela 1558 Device& device = ((DeviceItem *) pItem)->device();
412 schoenebeck 1461
413     m_iDirtySetup++;
414     // Flag whether this is a new device.
415     m_bNewDevice = (device.deviceID() < 0);
416    
417     // Fill the device/driver heading...
418 capela 1509 m_ui.DeviceNameTextLabel->setText(device.deviceName());
419 schoenebeck 1461 // The driver combobox is only rebuilt if device type has changed...
420     if (device.deviceType() != m_deviceType) {
421 capela 1509 m_ui.DriverNameComboBox->clear();
422     m_ui.DriverNameComboBox->insertItems(0,
423 capela 1558 Device::getDrivers(pMainForm->client(), device.deviceType()));
424 schoenebeck 1461 m_deviceType = device.deviceType();
425     }
426     // Do we need a driver name?
427     if (m_bNewDevice || device.driverName().isEmpty())
428 capela 1509 device.setDriver(m_ui.DriverNameComboBox->currentText());
429 schoenebeck 1461 setDriverName(device.driverName());
430 capela 1509 m_ui.DriverNameTextLabel->setEnabled(m_bNewDevice);
431     m_ui.DriverNameComboBox->setEnabled(m_bNewDevice);
432 schoenebeck 1461 // Fill the device parameter table...
433 capela 1509 m_deviceParamModel.refresh(&device, m_bNewDevice);
434 schoenebeck 1461 // And now the device port/channel parameter table...
435     switch (device.deviceType()) {
436 capela 1558 case Device::Audio:
437 capela 1509 m_ui.DevicePortTextLabel->setText(tr("Ch&annel:"));
438 schoenebeck 1461 break;
439 capela 1558 case Device::Midi:
440 capela 1509 m_ui.DevicePortTextLabel->setText(tr("P&ort:"));
441 schoenebeck 1461 break;
442 capela 1558 case Device::None:
443 schoenebeck 1461 break;
444     }
445 capela 1509 m_ui.DevicePortComboBox->clear();
446     m_devicePortParamModel.clear();
447 schoenebeck 1461 if (m_bNewDevice) {
448 capela 1509 m_ui.DevicePortTextLabel->setEnabled(false);
449     m_ui.DevicePortComboBox->setEnabled(false);
450     m_ui.DevicePortParamTable->setEnabled(false);
451 schoenebeck 1461 } else {
452     QPixmap pixmap;
453     switch (device.deviceType()) {
454 capela 1558 case Device::Audio:
455 schoenebeck 1477 pixmap = QPixmap(":/icons/audio2.png");
456 schoenebeck 1461 break;
457 capela 1558 case Device::Midi:
458 schoenebeck 1477 pixmap = QPixmap(":/icons/midi2.png");
459 schoenebeck 1461 break;
460 capela 1558 case Device::None:
461 schoenebeck 1461 break;
462     }
463 capela 1558 DevicePortList& ports = device.ports();
464     QListIterator<DevicePort *> iter(ports);
465 capela 1499 while (iter.hasNext()) {
466 capela 1558 DevicePort *pPort = iter.next();
467 capela 1509 m_ui.DevicePortComboBox->addItem(pixmap,
468 capela 1499 device.deviceTypeName()
469 schoenebeck 1461 + ' ' + device.driverName()
470     + ' ' + pPort->portName());
471     }
472     bool bEnabled = (ports.count() > 0);
473 capela 1509 m_ui.DevicePortTextLabel->setEnabled(bEnabled);
474     m_ui.DevicePortComboBox->setEnabled(bEnabled);
475     m_ui.DevicePortParamTable->setEnabled(bEnabled);
476 schoenebeck 1461 }
477     // Done.
478     m_iDirtySetup--;
479    
480     // Make the device port/channel selection effective.
481 capela 1509 selectDevicePort(m_ui.DevicePortComboBox->currentIndex());
482 schoenebeck 1461 }
483    
484    
485     // Device port/channel selection slot.
486     void DeviceForm::selectDevicePort ( int iPort )
487     {
488     if (m_iDirtySetup > 0)
489     return;
490    
491     //
492     // Device port/channel selection has changed...
493     //
494    
495 capela 1509 QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
496 schoenebeck 1461 if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)
497     return;
498    
499 capela 1558 Device& device = ((DeviceItem *) pItem)->device();
500     DevicePort *pPort = NULL;
501 capela 1504 if (iPort >= 0 && iPort < device.ports().count())
502     pPort = device.ports().at(iPort);
503 schoenebeck 1461 if (pPort) {
504     m_iDirtySetup++;
505 capela 1509 m_devicePortParamModel.refresh(pPort, false);
506 schoenebeck 1461 m_iDirtySetup--;
507     }
508     // Done.
509     stabilizeForm();
510     }
511    
512    
513     // Device parameter value change slot.
514     void DeviceForm::changeDeviceParam ( int iRow, int iCol )
515     {
516     if (m_iDirtySetup > 0)
517     return;
518     if (iRow < 0 || iCol < 0)
519     return;
520    
521     //
522     // Device parameter change...
523     //
524    
525 schoenebeck 1486 /* we do that in the model class now ...
526 capela 1509 QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
527 schoenebeck 1461 if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)
528     return;
529    
530 capela 1558 Device& device = ((DeviceItem *) pItem)->device();
531 schoenebeck 1461
532     // Table 1st column has the parameter name;
533 capela 1509 //const QString sParam = m_ui.DeviceParamTable->text(iRow, 0);
534     //const QString sValue = m_ui.DeviceParamTable->text(iRow, iCol);
535     const QString sParam = m_deviceParamModel.data(m_deviceParamModel.index(iRow, 0), Qt::DisplayRole).value<DeviceParameterRow>().name;
536     const QString sValue = m_deviceParamModel.data(m_deviceParamModel.index(iRow, iCol), Qt::DisplayRole).value<DeviceParameterRow>().param.value;
537 schoenebeck 1461 // Set the local device parameter value.
538     if (device.setParam(sParam, sValue)) {
539     selectDevice();
540     } else {
541     stabilizeForm();
542     }
543 schoenebeck 1486 */
544 schoenebeck 1461
545     // Main session should be dirtier...
546     MainForm *pMainForm = MainForm::getInstance();
547     if (pMainForm)
548     pMainForm->sessionDirty();
549     }
550    
551    
552     // Device port/channel parameter value change slot.
553     void DeviceForm::changeDevicePortParam ( int iRow, int iCol )
554     {
555     if (m_iDirtySetup > 0)
556     return;
557     if (iRow < 0 || iCol < 0)
558     return;
559    
560     //
561     // Device port/channel parameter change...
562     //
563    
564 schoenebeck 1486 /* we do that in the model class now ...
565 capela 1509 QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
566 schoenebeck 1461 if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)
567     return;
568    
569 capela 1558 Device& device = ((DeviceItem *) pItem)->device();
570 schoenebeck 1461
571 capela 1509 int iPort = m_ui.DevicePortComboBox->currentIndex();
572 capela 1558 DevicePort *pPort = NULL;
573 capela 1504 if (iPort >= 0 && iPort < device.ports().count())
574     pPort = device.ports().at(iPort);
575 schoenebeck 1461 if (pPort == NULL)
576     return;
577    
578     // Table 1st column has the parameter name;
579 capela 1509 //const QString sParam = m_ui.DevicePortParamTable->text(iRow, 0);
580     //const QString sValue = m_ui.DevicePortParamTable->text(iRow, iCol);
581     const QString sParam = m_devicePortParamModel.data(m_devicePortParamModel.index(iRow, 0), Qt::DisplayRole).value<DeviceParameterRow>().name;
582     const QString sValue = m_devicePortParamModel.data(m_devicePortParamModel.index(iRow, iCol), Qt::DisplayRole).value<DeviceParameterRow>().param.value;
583 schoenebeck 1461
584     // Set the local device port/channel parameter value.
585     pPort->setParam(sParam, sValue);
586 schoenebeck 1486 */
587    
588 schoenebeck 1461 // Done.
589     stabilizeForm();
590    
591     // Main session should be dirtier...
592     MainForm* pMainForm = MainForm::getInstance();
593     if (pMainForm)
594     pMainForm->sessionDirty();
595     }
596    
597    
598     // Device list view context menu handler.
599 schoenebeck 1470 void DeviceForm::deviceListViewContextMenu ( const QPoint& pos )
600 schoenebeck 1461 {
601     MainForm *pMainForm = MainForm::getInstance();
602     if (pMainForm == NULL)
603     return;
604    
605 capela 1509 QTreeWidgetItem* pItem = m_ui.DeviceListView->itemAt(pos);
606 schoenebeck 1470 if (pItem == NULL)
607     return;
608    
609 schoenebeck 1461 // Build the device context menu...
610 capela 1499 QMenu menu(this);
611     QAction *pAction;
612 schoenebeck 1461
613     bool bClient = (pMainForm->client() != NULL);
614     bool bEnabled = (pItem != NULL);
615 capela 1499 pAction = menu.addAction(
616 schoenebeck 1667 QIcon(":/icons/deviceCreate.png"),
617 schoenebeck 1461 tr("&Create device"), this, SLOT(createDevice()));
618 capela 1499 pAction->setEnabled(bEnabled || (bClient && m_bNewDevice));
619     pAction = menu.addAction(
620 schoenebeck 1667 QIcon(":/icons/deviceDelete.png"),
621 schoenebeck 1461 tr("&Delete device"), this, SLOT(deleteDevice()));
622 capela 1499 pAction->setEnabled(bEnabled && !m_bNewDevice);
623     menu.addSeparator();
624     pAction = menu.addAction(
625 schoenebeck 1667 QIcon(":/icons/formRefresh.png"),
626 schoenebeck 1461 tr("&Refresh"), this, SLOT(refreshDevices()));
627 capela 1499 pAction->setEnabled(bClient);
628 schoenebeck 1461
629 capela 1499 menu.exec(pos);
630 schoenebeck 1461 }
631    
632    
633     // Stabilize current form state.
634     void DeviceForm::stabilizeForm (void)
635     {
636     MainForm* pMainForm = MainForm::getInstance();
637 capela 1509 QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
638 schoenebeck 1461 bool bClient = (pMainForm && pMainForm->client() != NULL);
639     bool bEnabled = (pItem != NULL);
640 capela 1509 m_ui.DeviceNameTextLabel->setEnabled(bEnabled && !m_bNewDevice);
641     m_ui.DriverNameTextLabel->setEnabled(bEnabled && m_bNewDevice);
642     m_ui.DriverNameComboBox->setEnabled(bEnabled && m_bNewDevice);
643     m_ui.DeviceParamTable->setEnabled(bEnabled);
644     m_ui.RefreshDevicesPushButton->setEnabled(bClient);
645     m_ui.CreateDevicePushButton->setEnabled(bEnabled || (bClient && m_bNewDevice));
646     m_ui.DeleteDevicePushButton->setEnabled(bEnabled && !m_bNewDevice);
647 schoenebeck 1461 }
648    
649 capela 1509
650     void DeviceForm::updateCellRenderers (void)
651     {
652     const int rows = m_deviceParamModel.rowCount();
653     const int cols = m_deviceParamModel.columnCount();
654     updateCellRenderers(
655     m_deviceParamModel.index(0, 0),
656     m_deviceParamModel.index(rows - 1, cols - 1));
657 schoenebeck 1486 }
658    
659 capela 1509
660     void DeviceForm::updateCellRenderers (
661     const QModelIndex& topLeft, const QModelIndex& bottomRight )
662     {
663     for (int r = topLeft.row(); r <= bottomRight.row(); r++) {
664     for (int c = topLeft.column(); c <= bottomRight.column(); c++) {
665     const QModelIndex index = m_deviceParamModel.index(r, c);
666     m_ui.DeviceParamTable->openPersistentEditor(index);
667     }
668     }
669 schoenebeck 1486 }
670    
671 capela 1509
672     void DeviceForm::updatePortCellRenderers (void)
673     {
674     const int rows = m_devicePortParamModel.rowCount();
675     const int cols = m_devicePortParamModel.columnCount();
676     updatePortCellRenderers(
677     m_devicePortParamModel.index(0, 0),
678     m_devicePortParamModel.index(rows - 1, cols - 1));
679 schoenebeck 1486 }
680    
681 capela 1509
682     void DeviceForm::updatePortCellRenderers (
683     const QModelIndex& topLeft, const QModelIndex& bottomRight )
684     {
685     for (int r = topLeft.row(); r <= bottomRight.row(); r++) {
686     for (int c = topLeft.column(); c <= bottomRight.column(); c++) {
687     const QModelIndex index = m_devicePortParamModel.index(r, c);
688     m_ui.DevicePortParamTable->openPersistentEditor(index);
689     }
690     }
691 schoenebeck 1486 }
692    
693 schoenebeck 1461 } // namespace QSampler
694 capela 1464
695    
696     // end of qsamplerDeviceForm.cpp

  ViewVC Help
Powered by ViewVC