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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1466 by capela, Thu Nov 1 19:25:10 2007 UTC revision 1840 by capela, Thu Feb 19 11:44:57 2009 UTC
# Line 1  Line 1 
1  // qsamplerDeviceForm.cpp  // qsamplerDeviceForm.cpp
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2004-2009, rncbc aka Rui Nuno Capela. All rights reserved.
5     Copyright (C) 2007, Christian Schoenebeck     Copyright (C) 2007, 2008 Christian Schoenebeck
6    
7     This program is free software; you can redistribute it and/or     This program is free software; you can redistribute it and/or
8     modify it under the terms of the GNU General Public License     modify it under the terms of the GNU General Public License
# Line 23  Line 23 
23  #include "qsamplerDeviceForm.h"  #include "qsamplerDeviceForm.h"
24    
25  #include "qsamplerAbout.h"  #include "qsamplerAbout.h"
26    #include "qsamplerMainForm.h"
27    
28    #include <QHeaderView>
29    #include <QMessageBox>
30    
31    
32  namespace QSampler {  namespace QSampler {
33    
34  DeviceForm::DeviceForm(QWidget* parent, Qt::WFlags f) : QDialog(parent, f) {  //-------------------------------------------------------------------------
35      ui.setupUi(this);  // QSampler::DeviceForm -- Device form implementation.
36    //
37    
38    DeviceForm::DeviceForm ( QWidget *pParent, Qt::WindowFlags wflags )
39            : QDialog(pParent, wflags)
40    {
41            m_ui.setupUi(this);
42    
43          // Initialize locals.          // Initialize locals.
44          m_iDirtySetup = 0;          m_iDirtySetup = 0;
45          m_iDirtyCount = 0;          m_iDirtyCount = 0;
46          m_bNewDevice  = false;          m_bNewDevice  = false;
47          m_deviceType  = qsamplerDevice::None;          m_deviceType  = Device::None;
48          m_pAudioItems = NULL;          m_pAudioItems = NULL;
49          m_pMidiItems  = NULL;          m_pMidiItems  = NULL;
50          // No exclusive mode as default.          // No exclusive mode as default.
51          m_deviceTypeMode = qsamplerDevice::None;          m_deviceTypeMode = Device::None;
52    
53          ui.DeviceParamTable->setModel(&deviceParamModel);          m_ui.DeviceListView->header()->hide();
         ui.DeviceParamTable->setItemDelegate(&deviceParamDelegate);  
54    
55          ui.DevicePortParamTable->setModel(&devicePortParamModel);          int iRowHeight = m_ui.DeviceParamTable->fontMetrics().height() + 4;
56          ui.DevicePortParamTable->setItemDelegate(&devicePortParamDelegate);          m_ui.DeviceParamTable->verticalHeader()->setDefaultSectionSize(iRowHeight);
57            m_ui.DevicePortParamTable->verticalHeader()->setDefaultSectionSize(iRowHeight);
58          // This an outsider (from designer), but rather important.          m_ui.DeviceParamTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
59          //QObject::connect(DeviceParamTable, SIGNAL(valueChanged(int,int)),          m_ui.DevicePortParamTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
60          //      this, SLOT(changeDeviceParam(int,int)));  
61          //QObject::connect(DevicePortParamTable, SIGNAL(valueChanged(int,int)),          m_ui.DeviceParamTable->setModel(&m_deviceParamModel);
62          //      this, SLOT(changeDevicePortParam(int,int)));          m_ui.DeviceParamTable->setItemDelegate(&m_deviceParamDelegate);
63            m_ui.DeviceParamTable->horizontalHeader()->setResizeMode(2, QHeaderView::Stretch);
64            m_ui.DeviceParamTable->verticalHeader()->hide();
65    
66            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    
71          // Initial contents.          // Initial contents.
72          refreshDevices();          refreshDevices();
73          // Try to restore normal window positioning.          // Try to restore normal window positioning.
74          adjustSize();          adjustSize();
75    
76          QObject::connect(ui.DeviceListView,          QObject::connect(m_ui.DeviceListView,
77                  SIGNAL(selectionChanged()),                  SIGNAL(currentItemChanged(QTreeWidgetItem*,QTreeWidgetItem*)),
78                  SLOT(selectDevice()));                  SLOT(selectDevice()));
79          QObject::connect(ui.DeviceListView,          QObject::connect(m_ui.DeviceListView,
80                  SIGNAL(contextMenuRequested(QListViewItem*,const QPoint&amp;,int)),                  SIGNAL(customContextMenuRequested(const QPoint&)),
81                  SLOT(contextMenu(QListViewItem*,const QPoint&amp;,int)));                  SLOT(deviceListViewContextMenu(const QPoint&)));
82          QObject::connect(ui.RefreshDevicesPushButton,          QObject::connect(m_ui.RefreshDevicesPushButton,
83                  SIGNAL(clicked()),                  SIGNAL(clicked()),
84                  SLOT(refreshDevices()));                  SLOT(refreshDevices()));
85          QObject::connect(ui.DriverNameComboBox,          QObject::connect(m_ui.DriverNameComboBox,
86                  SIGNAL(activated(const QString&amp;)),                  SIGNAL(activated(const QString&)),
87                  SLOT(selectDriver(const QString&amp;)));                  SLOT(selectDriver(const QString&)));
88          QObject::connect(ui.DevicePortComboBox,          QObject::connect(m_ui.DevicePortComboBox,
89                  SIGNAL(activated(int)),                  SIGNAL(activated(int)),
90                  SLOT(selectDevicePort(int)));                  SLOT(selectDevicePort(int)));
91          QObject::connect(ui.CreateDevicePushButton,          QObject::connect(m_ui.CreateDevicePushButton,
92                  SIGNAL(clicked()),                  SIGNAL(clicked()),
93                  SLOT(createDevice()));                  SLOT(createDevice()));
94          QObject::connect(ui.DeleteDevicePushButton,          QObject::connect(m_ui.DeleteDevicePushButton,
95                  SIGNAL(clicked()),                  SIGNAL(clicked()),
96                  SLOT(deleteDevice()));                  SLOT(deleteDevice()));
97          QObject::connect(ui.ClosePushButton,          QObject::connect(m_ui.ClosePushButton,
98                  SIGNAL(clicked()),                  SIGNAL(clicked()),
99                  SLOT(close()));                  SLOT(close()));
100            QObject::connect(&m_deviceParamModel,
101                    SIGNAL(modelReset()),
102                    SLOT(updateCellRenderers()));
103            QObject::connect(&m_deviceParamModel,
104                    SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)),
105                    SLOT(updateCellRenderers(const QModelIndex&, const QModelIndex&)));
106            QObject::connect(&m_devicePortParamModel,
107                    SIGNAL(modelReset()),
108                    SLOT(updatePortCellRenderers()));
109            QObject::connect(&m_devicePortParamModel,
110                    SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)),
111                    SLOT(updatePortCellRenderers(const QModelIndex&, const QModelIndex&)));
112  }  }
113    
114  DeviceForm::~DeviceForm() {  
115    DeviceForm::~DeviceForm (void)
116    {
117  }  }
118    
119    
# Line 93  void DeviceForm::showEvent ( QShowEvent Line 124  void DeviceForm::showEvent ( QShowEvent
124          if (pMainForm)          if (pMainForm)
125                  pMainForm->stabilizeForm();                  pMainForm->stabilizeForm();
126    
         stabilizeForm();  
   
127          QWidget::showEvent(pShowEvent);          QWidget::showEvent(pShowEvent);
128    
129            refreshDevices();
130  }  }
131    
132    
# Line 118  void DeviceForm::hideEvent ( QHideEvent Line 149  void DeviceForm::hideEvent ( QHideEvent
149    
150  // Set device type spacial exclusive mode.  // Set device type spacial exclusive mode.
151  void DeviceForm::setDeviceTypeMode (  void DeviceForm::setDeviceTypeMode (
152          qsamplerDevice::qsamplerDeviceType deviceTypeMode )          Device::DeviceType deviceTypeMode )
153  {  {
154          // If it has not changed, do nothing.          // If it has not changed, do nothing.
155          if (m_deviceTypeMode == deviceTypeMode)          if (m_deviceTypeMode == deviceTypeMode)
# Line 134  void DeviceForm::setDeviceTypeMode ( Line 165  void DeviceForm::setDeviceTypeMode (
165  // Device driver name setup formal initializer.  // Device driver name setup formal initializer.
166  void DeviceForm::setDriverName ( const QString& sDriverName )  void DeviceForm::setDriverName ( const QString& sDriverName )
167  {  {
168          if (ui.DriverNameComboBox->findText(sDriverName) == 0) {          if (m_ui.DriverNameComboBox->findText(sDriverName) < 0)
169                  ui.DriverNameComboBox->insertItem(sDriverName);                  m_ui.DriverNameComboBox->insertItem(0, sDriverName);
170          }          m_ui.DriverNameComboBox->setItemText(
171          ui.DriverNameComboBox->setCurrentText(sDriverName);                  m_ui.DriverNameComboBox->currentIndex(),
172                    sDriverName);
173  }  }
174    
175    
176  // Set current selected device by type and id.  // Set current selected device by type and id.
177  void DeviceForm::setDevice ( qsamplerDevice *pDevice )  void DeviceForm::setDevice ( Device *pDevice )
178  {  {
179          // In case no device is given...          // In case no device is given...
180          qsamplerDevice::qsamplerDeviceType deviceType = m_deviceTypeMode;          Device::DeviceType deviceType = m_deviceTypeMode;
181          if (pDevice)          if (pDevice)
182                  deviceType = pDevice->deviceType();                  deviceType = pDevice->deviceType();
183    
184          // Get the device view root item...          // Get the device view root item...
185          qsamplerDeviceItem *pRootItem = NULL;          DeviceItem *pRootItem = NULL;
186          switch (deviceType) {          switch (deviceType) {
187          case qsamplerDevice::Audio:          case Device::Audio:
188                  pRootItem = m_pAudioItems;                  pRootItem = m_pAudioItems;
189                  break;                  break;
190          case qsamplerDevice::Midi:          case Device::Midi:
191                  pRootItem = m_pMidiItems;                  pRootItem = m_pMidiItems;
192                  break;                  break;
193          case qsamplerDevice::None:          case Device::None:
194                  break;                  break;
195          }          }
196    
# Line 168  void DeviceForm::setDevice ( qsamplerDev Line 200  void DeviceForm::setDevice ( qsamplerDev
200    
201          // So there's no device huh?          // So there's no device huh?
202          if (pDevice == NULL) {          if (pDevice == NULL) {
203                  ui.DeviceListView->setCurrentItem(pRootItem);                  m_ui.DeviceListView->setCurrentItem(pRootItem);
204                  return;                  return;
205          }          }
206    
207          // For each child, test for identity...          // For each child, test for identity...
208          for (int i = 0; i < pRootItem->childCount(); i++) {          for (int i = 0; i < pRootItem->childCount(); i++) {
209                  qsamplerDeviceItem* pDeviceItem =                  DeviceItem* pDeviceItem =
210                          (qsamplerDeviceItem*) pRootItem->child(i);                          (DeviceItem*) pRootItem->child(i);
211    
212                  // If identities match, select as current device item.                  // If identities match, select as current device item.
213                  if (pDeviceItem->device().deviceID() == pDevice->deviceID()) {                  if (pDeviceItem->device().deviceID() == pDevice->deviceID()) {
# Line 194  void DeviceForm::createDevice (void) Line 226  void DeviceForm::createDevice (void)
226          if (pMainForm == NULL)          if (pMainForm == NULL)
227                  return;                  return;
228    
229          QTreeWidgetItem *pItem = ui.DeviceListView->currentItem();          QTreeWidgetItem *pItem = m_ui.DeviceListView->currentItem();
230          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)
231                  return;                  return;
232    
233          // About a brand new device instance...          // About a brand new device instance...
234          qsamplerDevice device(((qsamplerDeviceItem *) pItem)->device());          Device device(((DeviceItem *) pItem)->device());
235          if (device.createDevice()) {          if (device.createDevice()) {
236                  // Now it depends on the device type...                  // Now it depends on the device type...
237                  qsamplerDeviceItem *pRootItem = NULL;                  DeviceItem *pRootItem = NULL;
238                  switch (device.deviceType()) {                  switch (device.deviceType()) {
239                  case qsamplerDevice::Audio:                  case Device::Audio:
240                          pRootItem = m_pAudioItems;                          pRootItem = m_pAudioItems;
241                          break;                          break;
242                  case qsamplerDevice::Midi:                  case Device::Midi:
243                          pRootItem = m_pMidiItems;                          pRootItem = m_pMidiItems;
244                          break;                          break;
245                  case qsamplerDevice::None:                  case Device::None:
246                          break;                          break;
247                  }                  }
248                  // Append the new device item.                  // Append the new device item.
249                  qsamplerDeviceItem *pDeviceItem = new qsamplerDeviceItem(pRootItem,                  DeviceItem *pDeviceItem = new DeviceItem(pRootItem,
250                          device.deviceType(), device.deviceID());                          device.deviceType(), device.deviceID());
251                  // Just make it the new selection...                  // Just make it the new selection...
252                  pDeviceItem->setSelected(true);                  pDeviceItem->setSelected(true);
# Line 232  void DeviceForm::deleteDevice (void) Line 264  void DeviceForm::deleteDevice (void)
264          if (pMainForm == NULL)          if (pMainForm == NULL)
265                  return;                  return;
266    
267          QTreeWidgetItem* pItem = ui.DeviceListView->currentItem();          QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
268          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)
269                  return;                  return;
270    
271          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();          Device& device = ((DeviceItem *) pItem)->device();
272    
273          // Prompt user if this is for real...          // Prompt user if this is for real...
274          qsamplerOptions *pOptions = pMainForm->options();          Options *pOptions = pMainForm->options();
275          if (pOptions && pOptions->bConfirmRemove) {          if (pOptions && pOptions->bConfirmRemove) {
276                  if (QMessageBox::warning(this,                  if (QMessageBox::warning(this,
277                          QSAMPLER_TITLE ": " + tr("Warning"),                          QSAMPLER_TITLE ": " + tr("Warning"),
278                          tr("Delete device:\n\n"                          tr("About to delete device:\n\n"
279                          "%1\n\n"                          "%1\n\n"
280                          "Are you sure?")                          "Are you sure?")
281                          .arg(device.deviceName()),                          .arg(device.deviceName()),
282                          tr("OK"), tr("Cancel")) > 0)                          QMessageBox::Ok | QMessageBox::Cancel)
283                            == QMessageBox::Cancel)
284                          return;                          return;
285          }          }
286    
# Line 277  void DeviceForm::refreshDevices (void) Line 310  void DeviceForm::refreshDevices (void)
310          //          //
311          m_pAudioItems = NULL;          m_pAudioItems = NULL;
312          m_pMidiItems = NULL;          m_pMidiItems = NULL;
313          ui.DeviceListView->clear();          m_ui.DeviceListView->clear();
314          if (pMainForm->client()) {          if (pMainForm->client()) {
315                  int *piDeviceIDs;                  int *piDeviceIDs;
316                  // Grab and pop Audio devices...                  // Grab and pop Audio devices...
317                  if (m_deviceTypeMode == qsamplerDevice::None ||                  if (m_deviceTypeMode == Device::None ||
318                          m_deviceTypeMode == qsamplerDevice::Audio) {                          m_deviceTypeMode == Device::Audio) {
319                          m_pAudioItems = new qsamplerDeviceItem(ui.DeviceListView,                          m_pAudioItems = new DeviceItem(m_ui.DeviceListView,
320                                  qsamplerDevice::Audio);                                  Device::Audio);
321                  }                  }
322                  if (m_pAudioItems) {                  if (m_pAudioItems) {
323                          piDeviceIDs = qsamplerDevice::getDevices(pMainForm->client(),                          piDeviceIDs = Device::getDevices(pMainForm->client(),
324                                  qsamplerDevice::Audio);                                  Device::Audio);
325                          for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {                          for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {
326                                  new qsamplerDeviceItem(m_pAudioItems,                                  new DeviceItem(m_pAudioItems,
327                                          qsamplerDevice::Audio, piDeviceIDs[i]);                                          Device::Audio, piDeviceIDs[i]);
328                          }                          }
329                          m_pAudioItems->setExpanded(true);                          m_pAudioItems->setExpanded(true);
330                  }                  }
331                  // Grab and pop MIDI devices...                  // Grab and pop MIDI devices...
332                  if (m_deviceTypeMode == qsamplerDevice::None ||                  if (m_deviceTypeMode == Device::None ||
333                          m_deviceTypeMode == qsamplerDevice::Midi) {                          m_deviceTypeMode == Device::Midi) {
334                          m_pMidiItems = new qsamplerDeviceItem(ui.DeviceListView,                          m_pMidiItems = new DeviceItem(m_ui.DeviceListView,
335                                  qsamplerDevice::Midi);                                  Device::Midi);
336                  }                  }
337                  if (m_pMidiItems) {                  if (m_pMidiItems) {
338                          piDeviceIDs = qsamplerDevice::getDevices(pMainForm->client(),                          piDeviceIDs = Device::getDevices(pMainForm->client(),
339                                  qsamplerDevice::Midi);                                  Device::Midi);
340                          for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {                          for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {
341                                  new qsamplerDeviceItem(m_pMidiItems,                                  new DeviceItem(m_pMidiItems,
342                                          qsamplerDevice::Midi, piDeviceIDs[i]);                                          Device::Midi, piDeviceIDs[i]);
343                          }                          }
344                          m_pMidiItems->setExpanded(true);                          m_pMidiItems->setExpanded(true);
345                  }                  }
# Line 330  void DeviceForm::selectDriver ( const QS Line 363  void DeviceForm::selectDriver ( const QS
363          //  Driver name has changed for a new device...          //  Driver name has changed for a new device...
364          //          //
365    
366          QTreeWidgetItem* pItem = ui.DeviceListView->currentItem();          QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
367          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)
368                  return;                  return;
369    
370          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();          Device& device = ((DeviceItem *) pItem)->device();
371    
372          // Driver change is only valid for scratch devices...          // Driver change is only valid for scratch devices...
373          if (m_bNewDevice) {          if (m_bNewDevice) {
374                  m_iDirtySetup++;                  m_iDirtySetup++;
375                  device.setDriver(sDriverName);                  device.setDriver(sDriverName);
376                  deviceParamModel.refresh(device.params(), m_bNewDevice);                  m_deviceParamModel.refresh(&device, m_bNewDevice);
377                  m_iDirtySetup--;                  m_iDirtySetup--;
378                  // Done.                  // Done.
379                  stabilizeForm();                  stabilizeForm();
# Line 349  void DeviceForm::selectDriver ( const QS Line 382  void DeviceForm::selectDriver ( const QS
382    
383    
384  // Device selection slot.  // Device selection slot.
385  void DeviceForm::selectDevice (void)  void DeviceForm::selectDevice ()
386  {  {
387          MainForm *pMainForm = MainForm::getInstance();          MainForm *pMainForm = MainForm::getInstance();
388          if (pMainForm == NULL)          if (pMainForm == NULL)
# Line 362  void DeviceForm::selectDevice (void) Line 395  void DeviceForm::selectDevice (void)
395          //  Device selection has changed...          //  Device selection has changed...
396          //          //
397    
398          QTreeWidgetItem* pItem = ui.DeviceListView->currentItem();          QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
399          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM) {          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM) {
400                  m_deviceType = qsamplerDevice::None;                  m_deviceType = Device::None;
401                  ui.DeviceNameTextLabel->setText(QString::null);                  m_ui.DeviceNameTextLabel->setText(QString::null);
402                  deviceParamModel.clear();                  m_deviceParamModel.clear();
403                  ui.DevicePortComboBox->clear();                  m_ui.DevicePortComboBox->clear();
404                  devicePortParamModel.clear();                  m_devicePortParamModel.clear();
405                  ui.DevicePortTextLabel->setEnabled(false);                  m_ui.DevicePortTextLabel->setEnabled(false);
406                  ui.DevicePortComboBox->setEnabled(false);                  m_ui.DevicePortComboBox->setEnabled(false);
407                  ui.DevicePortParamTable->setEnabled(false);                  m_ui.DevicePortParamTable->setEnabled(false);
408                  stabilizeForm();                  stabilizeForm();
409                  return;                  return;
410          }          }
411    
412          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();          Device& device = ((DeviceItem *) pItem)->device();
413    
414          m_iDirtySetup++;          m_iDirtySetup++;
415          // Flag whether this is a new device.          // Flag whether this is a new device.
416          m_bNewDevice = (device.deviceID() < 0);          m_bNewDevice = (device.deviceID() < 0);
417    
418          // Fill the device/driver heading...          // Fill the device/driver heading...
419          ui.DeviceNameTextLabel->setText(device.deviceName());          m_ui.DeviceNameTextLabel->setText(device.deviceName());
420          // The driver combobox is only rebuilt if device type has changed...          // The driver combobox is only rebuilt if device type has changed...
421          if (device.deviceType() != m_deviceType) {          if (device.deviceType() != m_deviceType) {
422                  ui.DriverNameComboBox->clear();                  m_ui.DriverNameComboBox->clear();
423                  ui.DriverNameComboBox->insertStringList(                  m_ui.DriverNameComboBox->insertItems(0,
424                          qsamplerDevice::getDrivers(pMainForm->client(), device.deviceType()));                          Device::getDrivers(pMainForm->client(), device.deviceType()));
425                  m_deviceType = device.deviceType();                  m_deviceType = device.deviceType();
426          }          }
427          // Do we need a driver name?          // Do we need a driver name?
428          if (m_bNewDevice || device.driverName().isEmpty())          if (m_bNewDevice || device.driverName().isEmpty())
429                  device.setDriver(ui.DriverNameComboBox->currentText());                  device.setDriver(m_ui.DriverNameComboBox->currentText());
430          setDriverName(device.driverName());          setDriverName(device.driverName());
431          ui.DriverNameTextLabel->setEnabled(m_bNewDevice);          m_ui.DriverNameTextLabel->setEnabled(m_bNewDevice);
432          ui.DriverNameComboBox->setEnabled(m_bNewDevice);          m_ui.DriverNameComboBox->setEnabled(m_bNewDevice);
433          // Fill the device parameter table...          // Fill the device parameter table...
434          deviceParamModel.refresh(device.params(), m_bNewDevice);          m_deviceParamModel.refresh(&device, m_bNewDevice);
435          // And now the device port/channel parameter table...          // And now the device port/channel parameter table...
436          switch (device.deviceType()) {          switch (device.deviceType()) {
437          case qsamplerDevice::Audio:          case Device::Audio:
438                  ui.DevicePortTextLabel->setText(tr("Ch&annel:"));                  m_ui.DevicePortTextLabel->setText(tr("Ch&annel:"));
439                  break;                  break;
440          case qsamplerDevice::Midi:          case Device::Midi:
441                  ui.DevicePortTextLabel->setText(tr("P&ort:"));                  m_ui.DevicePortTextLabel->setText(tr("P&ort:"));
442                  break;                  break;
443          case qsamplerDevice::None:          case Device::None:
444                  break;                  break;
445          }          }
446          ui.DevicePortComboBox->clear();          m_ui.DevicePortComboBox->clear();
447          devicePortParamModel.clear();          m_devicePortParamModel.clear();
448          if (m_bNewDevice) {          if (m_bNewDevice) {
449                  ui.DevicePortTextLabel->setEnabled(false);                  m_ui.DevicePortTextLabel->setEnabled(false);
450                  ui.DevicePortComboBox->setEnabled(false);                  m_ui.DevicePortComboBox->setEnabled(false);
451                  ui.DevicePortParamTable->setEnabled(false);                  m_ui.DevicePortParamTable->setEnabled(false);
452          } else {          } else {
453                  QPixmap pixmap;                  QPixmap pixmap;
454                  switch (device.deviceType()) {                  switch (device.deviceType()) {
455                  case qsamplerDevice::Audio:                  case Device::Audio:
456                          pixmap = QPixmap(":/qsampler/pixmaps/audio2.png");                          pixmap = QPixmap(":/icons/audio2.png");
457                          break;                          break;
458                  case qsamplerDevice::Midi:                  case Device::Midi:
459                          pixmap = QPixmap(":/qsampler/pixmaps/midi2.png");                          pixmap = QPixmap(":/icons/midi2.png");
460                          break;                          break;
461                  case qsamplerDevice::None:                  case Device::None:
462                          break;                          break;
463                  }                  }
464                  qsamplerDevicePortList& ports = device.ports();                  DevicePortList& ports = device.ports();
465                  qsamplerDevicePort *pPort;                  QListIterator<DevicePort *> iter(ports);
466                  for (pPort = ports.first(); pPort; pPort = ports.next()) {                  while (iter.hasNext()) {
467                          ui.DevicePortComboBox->insertItem(pixmap, device.deviceTypeName()                          DevicePort *pPort = iter.next();
468                            m_ui.DevicePortComboBox->addItem(pixmap,
469                                    device.deviceTypeName()
470                                  + ' ' + device.driverName()                                  + ' ' + device.driverName()
471                                  + ' ' + pPort->portName());                                  + ' ' + pPort->portName());
472                  }                  }
473                  bool bEnabled = (ports.count() > 0);                  bool bEnabled = (ports.count() > 0);
474                  ui.DevicePortTextLabel->setEnabled(bEnabled);                  m_ui.DevicePortTextLabel->setEnabled(bEnabled);
475                  ui.DevicePortComboBox->setEnabled(bEnabled);                  m_ui.DevicePortComboBox->setEnabled(bEnabled);
476                  ui.DevicePortParamTable->setEnabled(bEnabled);                  m_ui.DevicePortParamTable->setEnabled(bEnabled);
477          }          }
478          // Done.          // Done.
479          m_iDirtySetup--;          m_iDirtySetup--;
480    
481          // Make the device port/channel selection effective.          // Make the device port/channel selection effective.
482          selectDevicePort(ui.DevicePortComboBox->currentItem());          selectDevicePort(m_ui.DevicePortComboBox->currentIndex());
483  }  }
484    
485    
# Line 458  void DeviceForm::selectDevicePort ( int Line 493  void DeviceForm::selectDevicePort ( int
493          //  Device port/channel selection has changed...          //  Device port/channel selection has changed...
494          //          //
495    
496          QTreeWidgetItem* pItem = ui.DeviceListView->currentItem();          QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
497          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)
498                  return;                  return;
499    
500          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();          Device& device = ((DeviceItem *) pItem)->device();
501          qsamplerDevicePort *pPort = device.ports().at(iPort);          DevicePort *pPort = NULL;
502            if (iPort >= 0 && iPort < device.ports().count())
503                    pPort = device.ports().at(iPort);
504          if (pPort) {          if (pPort) {
505                  m_iDirtySetup++;                  m_iDirtySetup++;
506                  devicePortParamModel.refresh(pPort->params(), false);                  m_devicePortParamModel.refresh(pPort, false);
507                  m_iDirtySetup--;                  m_iDirtySetup--;
508          }          }
509          // Done.          // Done.
# Line 486  void DeviceForm::changeDeviceParam ( int Line 523  void DeviceForm::changeDeviceParam ( int
523          //  Device parameter change...          //  Device parameter change...
524          //          //
525    
526          QTreeWidgetItem* pItem = ui.DeviceListView->currentItem();  /* we do that in the model class now ...
527            QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
528          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)
529                  return;                  return;
530    
531          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();          Device& device = ((DeviceItem *) pItem)->device();
532    
533          // Table 1st column has the parameter name;          // Table 1st column has the parameter name;
534          //const QString sParam = ui.DeviceParamTable->text(iRow, 0);          //const QString sParam = m_ui.DeviceParamTable->text(iRow, 0);
535          //const QString sValue = ui.DeviceParamTable->text(iRow, iCol);          //const QString sValue = m_ui.DeviceParamTable->text(iRow, iCol);
536          const QString sParam = deviceParamModel.data(deviceParamModel.index(iRow, 0), Qt::DisplayRole).value<DeviceParameterRow>().name;          const QString sParam = m_deviceParamModel.data(m_deviceParamModel.index(iRow, 0), Qt::DisplayRole).value<DeviceParameterRow>().name;
537          const QString sValue = deviceParamModel.data(deviceParamModel.index(iRow, iCol), Qt::DisplayRole).value<DeviceParameterRow>().param.value;          const QString sValue = m_deviceParamModel.data(m_deviceParamModel.index(iRow, iCol), Qt::DisplayRole).value<DeviceParameterRow>().param.value;
538          // Set the local device parameter value.          // Set the local device parameter value.
539          if (device.setParam(sParam, sValue)) {          if (device.setParam(sParam, sValue)) {
540                  selectDevice();                  selectDevice();
541          } else {          } else {
542                  stabilizeForm();                  stabilizeForm();
543          }          }
544    */
545    
546          // Main session should be dirtier...          // Main session should be dirtier...
547          MainForm *pMainForm = MainForm::getInstance();          MainForm *pMainForm = MainForm::getInstance();
# Line 523  void DeviceForm::changeDevicePortParam ( Line 562  void DeviceForm::changeDevicePortParam (
562          //  Device port/channel parameter change...          //  Device port/channel parameter change...
563          //          //
564    
565          QTreeWidgetItem* pItem = ui.DeviceListView->currentItem();  /* we do that in the model class now ...
566            QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
567          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)          if (pItem == NULL || pItem->type() != QSAMPLER_DEVICE_ITEM)
568                  return;                  return;
569    
570          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();          Device& device = ((DeviceItem *) pItem)->device();
571    
572          int iPort = ui.DevicePortComboBox->currentItem();          int iPort = m_ui.DevicePortComboBox->currentIndex();
573          qsamplerDevicePort *pPort = device.ports().at(iPort);          DevicePort *pPort = NULL;
574            if (iPort >= 0 && iPort < device.ports().count())
575                    pPort = device.ports().at(iPort);
576          if (pPort == NULL)          if (pPort == NULL)
577                  return;                  return;
578    
579          // Table 1st column has the parameter name;          // Table 1st column has the parameter name;
580          //const QString sParam = ui.DevicePortParamTable->text(iRow, 0);          //const QString sParam = m_ui.DevicePortParamTable->text(iRow, 0);
581          //const QString sValue = ui.DevicePortParamTable->text(iRow, iCol);          //const QString sValue = m_ui.DevicePortParamTable->text(iRow, iCol);
582          const QString sParam = devicePortParamModel.data(devicePortParamModel.index(iRow, 0), Qt::DisplayRole).value<DeviceParameterRow>().name;          const QString sParam = m_devicePortParamModel.data(m_devicePortParamModel.index(iRow, 0), Qt::DisplayRole).value<DeviceParameterRow>().name;
583          const QString sValue = devicePortParamModel.data(devicePortParamModel.index(iRow, iCol), Qt::DisplayRole).value<DeviceParameterRow>().param.value;          const QString sValue = m_devicePortParamModel.data(m_devicePortParamModel.index(iRow, iCol), Qt::DisplayRole).value<DeviceParameterRow>().param.value;
584    
585          // Set the local device port/channel parameter value.          // Set the local device port/channel parameter value.
586          pPort->setParam(sParam, sValue);          pPort->setParam(sParam, sValue);
587    */
588    
589          // Done.          // Done.
590          stabilizeForm();          stabilizeForm();
591    
# Line 553  void DeviceForm::changeDevicePortParam ( Line 597  void DeviceForm::changeDevicePortParam (
597    
598    
599  // Device list view context menu handler.  // Device list view context menu handler.
600  void DeviceForm::contextMenu ( QTreeWidgetItem* pItem, const QPoint& pos, int )  void DeviceForm::deviceListViewContextMenu ( const QPoint& pos )
601  {  {
602          MainForm *pMainForm = MainForm::getInstance();          MainForm *pMainForm = MainForm::getInstance();
603          if (pMainForm == NULL)          if (pMainForm == NULL)
604                  return;                  return;
605    
606          int iItemID;          QTreeWidgetItem* pItem = m_ui.DeviceListView->itemAt(pos);
607            if (pItem == NULL)
608                    return;
609    
610          // Build the device context menu...          // Build the device context menu...
611          QMenu* pContextMenu = new QMenu(this);          QMenu menu(this);
612            QAction *pAction;
613    
614          bool bClient = (pMainForm->client() != NULL);          bool bClient = (pMainForm->client() != NULL);
615          bool bEnabled = (pItem != NULL);          bool bEnabled = (pItem != NULL);
616          iItemID = pContextMenu->insertItem(          pAction = menu.addAction(
617                  QIconSet(QPixmap(":/qsampler/pixmaps/deviceCreate.png")),                  QIcon(":/icons/deviceCreate.png"),
618                  tr("&Create device"), this, SLOT(createDevice()));                  tr("&Create device"), this, SLOT(createDevice()));
619          pContextMenu->setItemEnabled(iItemID, bEnabled || (bClient && m_bNewDevice));          pAction->setEnabled(bEnabled || (bClient && m_bNewDevice));
620          iItemID = pContextMenu->insertItem(          pAction = menu.addAction(
621                  QIconSet(QPixmap(":/qsampler/pixmaps/deviceDelete.png")),                  QIcon(":/icons/deviceDelete.png"),
622                  tr("&Delete device"), this, SLOT(deleteDevice()));                  tr("&Delete device"), this, SLOT(deleteDevice()));
623          pContextMenu->setItemEnabled(iItemID, bEnabled && !m_bNewDevice);          pAction->setEnabled(bEnabled && !m_bNewDevice);
624          pContextMenu->insertSeparator();          menu.addSeparator();
625          iItemID = pContextMenu->insertItem(          pAction = menu.addAction(
626                  QIconSet(QPixmap(":/qsampler/pixmaps/formRefresh.png")),                  QIcon(":/icons/formRefresh.png"),
627                  tr("&Refresh"), this, SLOT(refreshDevices()));                  tr("&Refresh"), this, SLOT(refreshDevices()));
628          pContextMenu->setItemEnabled(iItemID, bClient);          pAction->setEnabled(bClient);
   
         pContextMenu->exec(pos);  
629    
630          delete pContextMenu;          menu.exec(pos);
631  }  }
632    
633    
# Line 590  void DeviceForm::contextMenu ( QTreeWidg Line 635  void DeviceForm::contextMenu ( QTreeWidg
635  void DeviceForm::stabilizeForm (void)  void DeviceForm::stabilizeForm (void)
636  {  {
637          MainForm* pMainForm = MainForm::getInstance();          MainForm* pMainForm = MainForm::getInstance();
638          QTreeWidgetItem* pItem = ui.DeviceListView->currentItem();          QTreeWidgetItem* pItem = m_ui.DeviceListView->currentItem();
639          bool bClient = (pMainForm && pMainForm->client() != NULL);          bool bClient = (pMainForm && pMainForm->client() != NULL);
640          bool bEnabled = (pItem != NULL);          bool bEnabled = (pItem != NULL);
641          ui.DeviceNameTextLabel->setEnabled(bEnabled && !m_bNewDevice);          m_ui.DeviceNameTextLabel->setEnabled(bEnabled && !m_bNewDevice);
642          ui.DriverNameTextLabel->setEnabled(bEnabled &&  m_bNewDevice);          m_ui.DriverNameTextLabel->setEnabled(bEnabled &&  m_bNewDevice);
643          ui.DriverNameComboBox->setEnabled(bEnabled && m_bNewDevice);          m_ui.DriverNameComboBox->setEnabled(bEnabled && m_bNewDevice);
644          ui.DeviceParamTable->setEnabled(bEnabled);          m_ui.DeviceParamTable->setEnabled(bEnabled);
645          ui.RefreshDevicesPushButton->setEnabled(bClient);          m_ui.RefreshDevicesPushButton->setEnabled(bClient);
646          ui.CreateDevicePushButton->setEnabled(bEnabled || (bClient && m_bNewDevice));          m_ui.CreateDevicePushButton->setEnabled(bEnabled || (bClient && m_bNewDevice));
647          ui.DeleteDevicePushButton->setEnabled(bEnabled && !m_bNewDevice);          m_ui.DeleteDevicePushButton->setEnabled(bEnabled && !m_bNewDevice);
648    }
649    
650    
651    void DeviceForm::updateCellRenderers (void)
652    {
653            const int rows = m_deviceParamModel.rowCount();
654            const int cols = m_deviceParamModel.columnCount();
655            updateCellRenderers(
656                    m_deviceParamModel.index(0, 0),
657                    m_deviceParamModel.index(rows - 1, cols - 1));
658    }
659    
660    
661    void DeviceForm::updateCellRenderers (
662            const QModelIndex& topLeft, const QModelIndex& bottomRight )
663    {
664            for (int r = topLeft.row(); r <= bottomRight.row(); r++) {
665                    for (int c = topLeft.column(); c <= bottomRight.column(); c++) {
666                            const QModelIndex index = m_deviceParamModel.index(r, c);
667                            m_ui.DeviceParamTable->openPersistentEditor(index);
668                    }
669            }
670    }
671    
672    
673    void DeviceForm::updatePortCellRenderers (void)
674    {
675            const int rows = m_devicePortParamModel.rowCount();
676            const int cols = m_devicePortParamModel.columnCount();
677            updatePortCellRenderers(
678                    m_devicePortParamModel.index(0, 0),
679                    m_devicePortParamModel.index(rows - 1, cols - 1));
680    }
681    
682    
683    void DeviceForm::updatePortCellRenderers (
684            const QModelIndex& topLeft, const QModelIndex& bottomRight )
685    {
686            for (int r = topLeft.row(); r <= bottomRight.row(); r++) {
687                    for (int c = topLeft.column(); c <= bottomRight.column(); c++) {
688                            const QModelIndex index = m_devicePortParamModel.index(r, c);
689                            m_ui.DevicePortParamTable->openPersistentEditor(index);
690                    }
691            }
692  }  }
693    
694  } // namespace QSampler  } // namespace QSampler

Legend:
Removed from v.1466  
changed lines
  Added in v.1840

  ViewVC Help
Powered by ViewVC