/[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 1520 by capela, Sat Nov 24 13:22:00 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 31  Line 31 
31    
32  namespace QSampler {  namespace QSampler {
33    
34    //-------------------------------------------------------------------------
35    // QSampler::DeviceForm -- Device form implementation.
36    //
37    
38  DeviceForm::DeviceForm ( QWidget *pParent, Qt::WindowFlags wflags )  DeviceForm::DeviceForm ( QWidget *pParent, Qt::WindowFlags wflags )
39          : QDialog(pParent, wflags)          : QDialog(pParent, wflags)
40  {  {
# Line 40  DeviceForm::DeviceForm ( QWidget *pParen Line 44  DeviceForm::DeviceForm ( QWidget *pParen
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          m_ui.DeviceListView->header()->hide();          m_ui.DeviceListView->header()->hide();
54    
# Line 145  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::DeviceType 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 170  void DeviceForm::setDriverName ( const Q Line 174  void DeviceForm::setDriverName ( const Q
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::DeviceType 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 202  void DeviceForm::setDevice ( qsamplerDev Line 206  void DeviceForm::setDevice ( qsamplerDev
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 227  void DeviceForm::createDevice (void) Line 231  void DeviceForm::createDevice (void)
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 264  void DeviceForm::deleteDevice (void) Line 268  void DeviceForm::deleteDevice (void)
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 309  void DeviceForm::refreshDevices (void) Line 314  void DeviceForm::refreshDevices (void)
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(m_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(m_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 362  void DeviceForm::selectDriver ( const QS Line 367  void DeviceForm::selectDriver ( const QS
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) {
# Line 392  void DeviceForm::selectDevice () Line 397  void DeviceForm::selectDevice ()
397    
398          QTreeWidgetItem* pItem = m_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                  m_ui.DeviceNameTextLabel->setText(QString::null);                  m_ui.DeviceNameTextLabel->setText(QString::null);
402                  m_deviceParamModel.clear();                  m_deviceParamModel.clear();
403                  m_ui.DevicePortComboBox->clear();                  m_ui.DevicePortComboBox->clear();
# Line 404  void DeviceForm::selectDevice () Line 409  void DeviceForm::selectDevice ()
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.
# Line 416  void DeviceForm::selectDevice () Line 421  void DeviceForm::selectDevice ()
421          if (device.deviceType() != m_deviceType) {          if (device.deviceType() != m_deviceType) {
422                  m_ui.DriverNameComboBox->clear();                  m_ui.DriverNameComboBox->clear();
423                  m_ui.DriverNameComboBox->insertItems(0,                  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?
# Line 429  void DeviceForm::selectDevice () Line 434  void DeviceForm::selectDevice ()
434          m_deviceParamModel.refresh(&device, 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                  m_ui.DevicePortTextLabel->setText(tr("Ch&annel:"));                  m_ui.DevicePortTextLabel->setText(tr("Ch&annel:"));
439                  break;                  break;
440          case qsamplerDevice::Midi:          case Device::Midi:
441                  m_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          m_ui.DevicePortComboBox->clear();          m_ui.DevicePortComboBox->clear();
# Line 447  void DeviceForm::selectDevice () Line 452  void DeviceForm::selectDevice ()
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(":/icons/audio2.png");                          pixmap = QPixmap(":/icons/audio2.png");
457                          break;                          break;
458                  case qsamplerDevice::Midi:                  case Device::Midi:
459                          pixmap = QPixmap(":/icons/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                  QListIterator<qsamplerDevicePort *> iter(ports);                  QListIterator<DevicePort *> iter(ports);
466                  while (iter.hasNext()) {                  while (iter.hasNext()) {
467                          qsamplerDevicePort *pPort = iter.next();                          DevicePort *pPort = iter.next();
468                          m_ui.DevicePortComboBox->addItem(pixmap,                          m_ui.DevicePortComboBox->addItem(pixmap,
469                                  device.deviceTypeName()                                  device.deviceTypeName()
470                                  + ' ' + device.driverName()                                  + ' ' + device.driverName()
# Line 492  void DeviceForm::selectDevicePort ( int Line 497  void DeviceForm::selectDevicePort ( int
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 = NULL;          DevicePort *pPort = NULL;
502          if (iPort >= 0 && iPort < device.ports().count())          if (iPort >= 0 && iPort < device.ports().count())
503                  pPort = device.ports().at(iPort);                  pPort = device.ports().at(iPort);
504          if (pPort) {          if (pPort) {
# Line 523  void DeviceForm::changeDeviceParam ( int Line 528  void DeviceForm::changeDeviceParam ( int
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 = m_ui.DeviceParamTable->text(iRow, 0);          //const QString sParam = m_ui.DeviceParamTable->text(iRow, 0);
# Line 562  void DeviceForm::changeDevicePortParam ( Line 567  void DeviceForm::changeDevicePortParam (
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 = m_ui.DevicePortComboBox->currentIndex();          int iPort = m_ui.DevicePortComboBox->currentIndex();
573          qsamplerDevicePort *pPort = NULL;          DevicePort *pPort = NULL;
574          if (iPort >= 0 && iPort < device.ports().count())          if (iPort >= 0 && iPort < device.ports().count())
575                  pPort = device.ports().at(iPort);                  pPort = device.ports().at(iPort);
576          if (pPort == NULL)          if (pPort == NULL)
# Line 609  void DeviceForm::deviceListViewContextMe Line 614  void DeviceForm::deviceListViewContextMe
614          bool bClient = (pMainForm->client() != NULL);          bool bClient = (pMainForm->client() != NULL);
615          bool bEnabled = (pItem != NULL);          bool bEnabled = (pItem != NULL);
616          pAction = menu.addAction(          pAction = menu.addAction(
617                  QIcon(":/qsampler/pixmaps/deviceCreate.png"),                  QIcon(":/icons/deviceCreate.png"),
618                  tr("&Create device"), this, SLOT(createDevice()));                  tr("&Create device"), this, SLOT(createDevice()));
619          pAction->setEnabled(bEnabled || (bClient && m_bNewDevice));          pAction->setEnabled(bEnabled || (bClient && m_bNewDevice));
620          pAction = menu.addAction(          pAction = menu.addAction(
621                  QIcon(":/qsampler/pixmaps/deviceDelete.png"),                  QIcon(":/icons/deviceDelete.png"),
622                  tr("&Delete device"), this, SLOT(deleteDevice()));                  tr("&Delete device"), this, SLOT(deleteDevice()));
623          pAction->setEnabled(bEnabled && !m_bNewDevice);          pAction->setEnabled(bEnabled && !m_bNewDevice);
624          menu.addSeparator();          menu.addSeparator();
625          pAction = menu.addAction(          pAction = menu.addAction(
626                  QIcon(":/qsampler/pixmaps/formRefresh.png"),                  QIcon(":/icons/formRefresh.png"),
627                  tr("&Refresh"), this, SLOT(refreshDevices()));                  tr("&Refresh"), this, SLOT(refreshDevices()));
628          pAction->setEnabled(bClient);          pAction->setEnabled(bClient);
629    

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

  ViewVC Help
Powered by ViewVC