/[svn]/qsampler/trunk/src/qsamplerDeviceForm.ui.h
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerDeviceForm.ui.h

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

revision 431 by capela, Tue Mar 8 20:12:08 2005 UTC revision 462 by capela, Tue Mar 15 11:39:12 2005 UTC
# Line 24  Line 24 
24  #include <qfiledialog.h>  #include <qfiledialog.h>
25  #include <qfileinfo.h>  #include <qfileinfo.h>
26  #include <qlistbox.h>  #include <qlistbox.h>
27    #include <qpopupmenu.h>
28    
29  #include "qsamplerMainForm.h"  #include "qsamplerMainForm.h"
30    
# Line 37  void qsamplerDeviceForm::init (void) Line 38  void qsamplerDeviceForm::init (void)
38          m_pMainForm   = (qsamplerMainForm *) QWidget::parentWidget();          m_pMainForm   = (qsamplerMainForm *) QWidget::parentWidget();
39          m_pClient     = NULL;          m_pClient     = NULL;
40          m_iDirtySetup = 0;          m_iDirtySetup = 0;
         m_iDirtyCount = 0;  
         m_iUntitled   = 1;  
41          m_bNewDevice  = false;          m_bNewDevice  = false;
42            m_deviceType  = qsamplerDevice::None;
43            m_pAudioItems = NULL;
44            m_pMidiItems  = NULL;
45    
46            // This an outsider (from designer), but rather important.
47            QObject::connect(DeviceParamTable, SIGNAL(valueChanged(int,int)),
48                    this, SLOT(changeValue(int,int)));
49            
50          // Try to restore normal window positioning.          // Try to restore normal window positioning.
51          adjustSize();          adjustSize();
52  }  }
# Line 89  void qsamplerDeviceForm::setClient ( lsc Line 95  void qsamplerDeviceForm::setClient ( lsc
95  }  }
96    
97    
98  // Format the displayable device configuration filename.  // Create a new device from current table view.
99  QString qsamplerDeviceForm::devicesName ( const QString& sFilename )  void qsamplerDeviceForm::createDevice (void)
 {  
         QString sDevicesName = sFilename;  
         qsamplerOptions *pOptions = m_pMainForm->options();  
         if (pOptions) {  
                 bool bCompletePath = (pOptions && pOptions->bCompletePath);  
                 if (sDevicesName.isEmpty())  
                         sDevicesName = tr("Untitled") + QString::number(m_iUntitled);  
                 else if (!bCompletePath)  
                         sDevicesName = QFileInfo(sDevicesName).fileName();  
         }  
         return sDevicesName;  
 }  
   
   
 // Window close event handlers.  
 bool qsamplerDeviceForm::queryClose (void)  
 {  
         bool bQueryClose = true;  
   
         if (m_iDirtyCount > 0) {  
                 switch (QMessageBox::warning(this, tr("Warning"),  
                         tr("The device configuration has been changed.\n\n"  
                         "\"%1\"\n\n"  
                         "Do you want to save the changes?")  
                         .arg(devicesName(m_sFilename)),  
                         tr("Save"), tr("Discard"), tr("Cancel"))) {  
                 case 0:     // Save...  
                         saveDevices();  
                         // Fall thru....  
                 case 1:     // Discard  
                         break;  
                 default:    // Cancel.  
                         bQueryClose = false;  
                 }  
         }  
   
         return bQueryClose;  
 }  
   
   
   
 // Dirty up settings.  
 void qsamplerDeviceForm::contentsChanged (void)  
100  {  {
101          if (m_iDirtySetup > 0)          QListViewItem *pItem = DeviceListView->selectedItem();
102            if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
103                  return;                  return;
104    
105          m_iDirtyCount++;          const qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
         stabilizeForm();  
 }  
106    
107            // Build the parameter list...
108            const qsamplerDeviceParamMap& params = device.params();
109            lscp_param_t *pParams = new lscp_param_t [params.count() + 1];
110            int iParam = 0;
111            qsamplerDeviceParamMap::ConstIterator iter;
112            for (iter = params.begin(); iter != params.end(); ++iter) {
113                    pParams[iParam].key   = (char *) iter.key().latin1();
114                    pParams[iParam].value = (char *) iter.data().value.latin1();
115                    ++iParam;
116            }
117            // Null terminated.
118            pParams[iParam].key   = NULL;
119            pParams[iParam].value = NULL;
120    
121            // Now it depends on the device type...
122            qsamplerDeviceItem *pRootItem = NULL;
123            int iDeviceID = -1;
124            switch (device.deviceType()) {
125            case qsamplerDevice::Audio:
126                    pRootItem = m_pAudioItems;
127                    if ((iDeviceID = ::lscp_create_audio_device(m_pClient,
128                                    device.driverName().latin1(), pParams)) < 0)
129                            m_pMainForm->appendMessagesClient("lscp_create_audio_device");
130                    break;
131            case qsamplerDevice::Midi:
132                    pRootItem = m_pMidiItems;
133                    if ((iDeviceID = ::lscp_create_midi_device(m_pClient,
134                                    device.driverName().latin1(), pParams)) < 0)
135                            m_pMainForm->appendMessagesClient("lscp_create_midi_device");
136                    break;
137            case qsamplerDevice::None:
138                    break;
139            }
140    
141  // Load device configuration slot.          // Free used parameter array.
142  void qsamplerDeviceForm::loadDevices (void)          delete pParams;
 {  
         QString sFilename = QFileDialog::getOpenFileName(  
                         m_sFilename,                                    // Start here.  
                         tr("Device Configuration files") + " (*.lscp)", // Filter (XML files)  
                         this, 0,                                        // Parent and name (none)  
                         tr("Load Device Configuration")                 // Caption.  
         );  
   
         if (sFilename.isEmpty())  
                 return;  
   
         // Check if we're going to discard safely the current one...  
         if (!queryClose())  
                 return;  
143    
144          // Load it right away...          // We're on to create the new device item.
145          loadDevicesFile(sFilename);          if (iDeviceID >= 0) {
146                    // Append the new device item.
147                    qsamplerDeviceItem *pDeviceItem = new qsamplerDeviceItem(pRootItem,
148                            m_pClient, device.deviceType(), iDeviceID);
149                    // Just make it the new selection...
150                    DeviceListView->setSelected(pDeviceItem, true);
151                    // Done.
152                    m_pMainForm->appendMessages(pDeviceItem->device().deviceName() + ' '
153                            + tr("created."));
154                    // Main session should be marked dirty.
155                    m_pMainForm->sessionDirty();
156            }
157  }  }
158    
159    
160  // Save device configuration slot.  // Delete current device in table view.
161  void qsamplerDeviceForm::saveDevices (void)  void qsamplerDeviceForm::deleteDevice (void)
162  {  {
163          QString sFilename = QFileDialog::getSaveFileName(          QListViewItem *pItem = DeviceListView->selectedItem();
164                          m_sFilename,                                    // Start here.          if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
                         tr("Device Configuration files") + " (*.lscp)", // Filter (XML files)  
                         this, 0,                                        // Parent and name (none)  
                         tr("Save Device Configuration")                 // Caption.  
         );  
   
         if (sFilename.isEmpty())  
165                  return;                  return;
166    
167          // Enforce .xml extension...          const qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
         if (QFileInfo(sFilename).extension().isEmpty())  
                 sFilename += ".lscp";  
   
         // Save it right away...  
         saveDevicesFile(sFilename);  
 }  
   
   
 // Load device configuration from file.  
 void qsamplerDeviceForm::loadDevicesFile ( const QString& sFilename )  
 {  
         //  
         // TODO: Load device configuration from file...  
         //  
         m_pMainForm->appendMessages("qsamplerDeviceForm::loadDevicesFile(\"" + sFilename + "\")...");  
   
         m_sFilename   = sFilename;  
         m_iDirtyCount = 0;  
   
         refreshDevices();  
 }  
   
   
 // Save device configuration into file.  
 void qsamplerDeviceForm::saveDevicesFile ( const QString& sFilename )  
 {  
         //  
         // TODO: Save device configuration into file...  
         //  
         m_pMainForm->appendMessages("qsamplerDeviceForm::saveDevicesFile(\"" + sFilename + "\")...");  
   
         m_sFilename   = sFilename;  
         m_iDirtyCount = 0;  
         stabilizeForm();  
 }  
   
   
 // Create a new device from current table view.  
 void qsamplerDeviceForm::createDevice (void)  
 {  
         //  
         // TODO: Create a new device from current table view...  
         //  
         m_pMainForm->appendMessages("qsamplerDeviceForm::createDevice()...");  
           
         m_iDirtyCount++;  
         stabilizeForm();  
 }  
   
   
 // Update current device in table view.  
 void qsamplerDeviceForm::updateDevice (void)  
 {  
         //  
         // TODO: Update current device in table view...  
         //  
         m_pMainForm->appendMessages("qsamplerDeviceForm::updateDevice()...");  
   
         m_iDirtyCount++;  
         stabilizeForm();  
 }  
168    
169            // Prompt user if this is for real...
170            qsamplerOptions *pOptions = m_pMainForm->options();
171            if (pOptions && pOptions->bConfirmRemove) {
172                    if (QMessageBox::warning(this, tr("Warning"),
173                            tr("Delete %1 device:\n\n"
174                            "%2\n\n"
175                            "Are you sure?")
176                            .arg(device.deviceTypeName())
177                            .arg(device.deviceName()),
178                            tr("OK"), tr("Cancel")) > 0)
179                            return;
180            }
181    
182  // Delete current device in table view.          // Now it depends on the device type...
183  void qsamplerDeviceForm::deleteDevice (void)          lscp_status_t ret = LSCP_FAILED;
184  {          switch (device.deviceType()) {
185          //          case qsamplerDevice::Audio:
186          // TODO: Delete current device in table view...                  if ((ret = ::lscp_destroy_audio_device(m_pClient,
187          //                                  device.deviceID())) != LSCP_OK)
188          m_pMainForm->appendMessages("qsamplerDeviceForm::deleteDevice()...");                          m_pMainForm->appendMessagesClient("lscp_destroy_audio_device");
189                    break;
190            case qsamplerDevice::Midi:
191                    if ((ret = ::lscp_destroy_midi_device(m_pClient,
192                                    device.deviceID())) != LSCP_OK)
193                            m_pMainForm->appendMessagesClient("lscp_destroy_midi_device");
194                    break;
195            case qsamplerDevice::None:
196                    break;
197            }
198    
199          m_iDirtyCount++;          // Show result.
200          stabilizeForm();          if (ret == LSCP_OK) {
201                    // Show log message before loosing it.
202                    m_pMainForm->appendMessages(device.deviceName() + ' '
203                            + tr("deleted."));
204                    // Done.
205                    delete pItem;
206                    // Main session should be marked dirty.
207                    m_pMainForm->sessionDirty();
208            }
209  }  }
210    
211    
# Line 262  void qsamplerDeviceForm::refreshDevices Line 216  void qsamplerDeviceForm::refreshDevices
216          m_iDirtySetup++;          m_iDirtySetup++;
217    
218          //          //
219          // TODO: Load device configuration data ...          // (Re)Load complete device configuration data ...
220          //          //
221          m_pMainForm->appendMessages("qsamplerDeviceForm::refreshDevices()");          m_pAudioItems = NULL;
222            m_pMidiItems = NULL;
223          DeviceListView->clear();          DeviceListView->clear();
224          if (m_pClient) {          if (m_pClient) {
                 qsamplerDeviceItem *pItem;  
225                  int *piDeviceIDs;                  int *piDeviceIDs;
226                  // Grab and pop Audio devices...                  // Grab and pop Audio devices...
227                  pItem = new qsamplerDeviceItem(DeviceListView, m_pClient,                  m_pAudioItems = new qsamplerDeviceItem(DeviceListView, m_pClient,
228                          qsamplerDevice::Audio);                          qsamplerDevice::Audio);
229                  if (pItem) {                  if (m_pAudioItems) {
230                          pItem->setText(0, tr("Audio"));                          m_pAudioItems->setText(0, tr("Audio"));
231                          piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Audio);                          piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Audio);
232                          for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {                          for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {
233                                  new qsamplerDeviceItem(pItem, m_pClient,                                  new qsamplerDeviceItem(m_pAudioItems, m_pClient,
234                                          qsamplerDevice::Audio, piDeviceIDs[i]);                                          qsamplerDevice::Audio, piDeviceIDs[i]);
235                          }                          }
236                          pItem->setOpen(true);                          m_pAudioItems->setOpen(true);
237                  }                  }
238                  // Grab and pop MIDI devices...                  // Grab and pop MIDI devices...
239                  pItem = new qsamplerDeviceItem(DeviceListView, m_pClient,                  m_pMidiItems = new qsamplerDeviceItem(DeviceListView, m_pClient,
240                          qsamplerDevice::Midi);                          qsamplerDevice::Midi);
241                  if (pItem) {                  if (m_pMidiItems) {
242                          pItem->setText(0, tr("MIDI"));                          m_pMidiItems->setText(0, tr("MIDI"));
243                          piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Midi);                          piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Midi);
244                          for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {                          for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {
245                                  new qsamplerDeviceItem(pItem, m_pClient,                                  new qsamplerDeviceItem(m_pMidiItems, m_pClient,
246                                          qsamplerDevice::Midi, piDeviceIDs[i]);                                          qsamplerDevice::Midi, piDeviceIDs[i]);
247                          }                          }
248                          pItem->setOpen(true);                          m_pMidiItems->setOpen(true);
249                  }                  }
250          }          }
251    
252          // Done.          // Done.
         selectDevice();  
253          m_iDirtySetup--;          m_iDirtySetup--;
254    
255            // Show something.
256            selectDevice();
257  }  }
258    
259    
260  // Driver selection slot.  // Driver selection slot.
261  void qsamplerDeviceForm::selectDriver ( const QString& sDriverName )  void qsamplerDeviceForm::selectDriver ( const QString& sDriverName )
262  {  {
263            if (m_iDirtySetup > 0)
264                    return;
265    
266          //          //
267          //  TODO: Driver name has changed for a new device...          //  Driver name has changed for a new device...
268          //          //
         m_pMainForm->appendMessages("qsamplerDeviceForm::selectDriver(\"" + sDriverName + "\")");  
269    
270          QListViewItem *pItem = DeviceListView->selectedItem();          QListViewItem *pItem = DeviceListView->selectedItem();
271          if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)          if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
272                  return;                  return;
273    
274          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
275    
276            // Driver change is only valid for scratch devices...
277          if (m_bNewDevice) {          if (m_bNewDevice) {
278                    m_iDirtySetup++;
279                  device.setDriver(m_pClient, sDriverName);                  device.setDriver(m_pClient, sDriverName);
280                  m_iDirtyCount++;                  DeviceParamTable->refresh(device.params(), m_bNewDevice);
281                    m_iDirtySetup--;
282                    // Done.
283                    stabilizeForm();
284          }          }
   
         // Done.  
         stabilizeForm();  
285  }  }
286    
287    
288  // Device selection slot.  // Device selection slot.
289  void qsamplerDeviceForm::selectDevice (void)  void qsamplerDeviceForm::selectDevice (void)
290  {  {
291            if (m_iDirtySetup > 0)
292                    return;
293    
294          //          //
295          //  TODO: Device selection has changed...          //  Device selection has changed...
296          //          //
         m_pMainForm->appendMessages("qsamplerDeviceForm::selectDevice()");  
297    
298          QListViewItem *pItem = DeviceListView->selectedItem();          QListViewItem *pItem = DeviceListView->selectedItem();
299          if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM) {          if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM) {
300                    m_deviceType = qsamplerDevice::None;
301                    DeviceNameTextLabel->setText(QString::null);
302                    DeviceParamTable->setNumRows(0);
303                  stabilizeForm();                  stabilizeForm();
304                  return;                  return;
305          }          }
306    
307            m_iDirtySetup++;
308          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
309    
310            // Flag whether this is a new device.
311          m_bNewDevice = (device.deviceID() < 0);          m_bNewDevice = (device.deviceID() < 0);
312    
313          // Fill the device heading...          // Fill the device/driver heading...
314          DeviceNameTextLabel->setText(' ' + device.deviceName());          QString sPrefix;
315          DriverNameComboBox->clear();          if (!m_bNewDevice)
316          DriverNameComboBox->insertStringList(                  sPrefix += device.deviceTypeName() + ' ';
317                  qsamplerDevice::getDrivers(m_pClient, device.deviceType()));          DeviceNameTextLabel->setText(sPrefix + device.deviceName());
318          const QString& sDriverName = device.driverName();          // The driver combobox is only rebuilt if device type has changed...
319          if (m_bNewDevice || sDriverName.isEmpty()) {          if (device.deviceType() != m_deviceType) {
320                  device.setDriver(m_pClient, DriverNameComboBox->currentText());                  DriverNameComboBox->clear();
321          } else {                  DriverNameComboBox->insertStringList(
322                  if (DriverNameComboBox->listBox()->findItem(sDriverName, Qt::ExactMatch) == NULL)                          qsamplerDevice::getDrivers(m_pClient, device.deviceType()));
323                          DriverNameComboBox->insertItem(sDriverName);                  m_deviceType = device.deviceType();
                 DriverNameComboBox->setCurrentText(sDriverName);  
324          }          }
325            // Do we need a driver name?
326            if (m_bNewDevice || device.driverName().isEmpty())
327                    device.setDriver(m_pClient, DriverNameComboBox->currentText());
328            const QString& sDriverName = device.driverName();
329            if (DriverNameComboBox->listBox()->findItem(sDriverName, Qt::ExactMatch) == NULL)
330                    DriverNameComboBox->insertItem(sDriverName);
331            DriverNameComboBox->setCurrentText(sDriverName);
332          DriverNameTextLabel->setEnabled(m_bNewDevice);          DriverNameTextLabel->setEnabled(m_bNewDevice);
333          DriverNameComboBox->setEnabled(m_bNewDevice);          DriverNameComboBox->setEnabled(m_bNewDevice);
           
334          // Fill the device parameter table...          // Fill the device parameter table...
335          DeviceParamTable->refresh(device);          DeviceParamTable->refresh(device.params(), m_bNewDevice);
   
336          // Done.          // Done.
337            m_iDirtySetup--;
338          stabilizeForm();          stabilizeForm();
339  }  }
340    
341    
342  // Stabilize current form state.  // parameter value change slot.
343  void qsamplerDeviceForm::stabilizeForm (void)  void qsamplerDeviceForm::changeValue ( int iRow, int iCol )
344  {  {
345          // Update the main caption...          if (m_iDirtySetup > 0)
346          QString sDevicesName = devicesName(m_sFilename);                  return;
347          if (m_iDirtyCount > 0)          if (iRow < 0 || iCol < 0)
348                  sDevicesName += '*';                  return;
349          setCaption(tr("Devices - [%1]").arg(sDevicesName));                  
   
350          //          //
351          // TODO: Enable/disable available command buttons.          //  Device parameter change...
352          //          //
         m_pMainForm->appendMessages("qsamplerDeviceForm::stabilizeForm()");  
353    
354          SaveDevicesPushButton->setEnabled(m_iDirtyCount > 0);          QListViewItem *pItem = DeviceListView->selectedItem();
355            if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
356                    return;
357    
358            m_iDirtySetup++;
359            qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
360    
361            // Table 1st column has the parameter name;
362            const qsamplerDeviceParamMap& params = device.params();
363            const QString sParam = DeviceParamTable->text(iRow, 0);
364            const QString sValue = DeviceParamTable->text(iRow, iCol);
365            
366            // Set the local device parameter value.
367            device.setParam(sParam, sValue);
368    
369            // Set proper device parameter, on existing device ...
370            if (device.deviceID() >= 0) {
371                    // Prepare parameter struct.
372                    lscp_param_t param;
373                    param.key   = (char *) sParam.latin1();
374                    param.value = (char *) sValue.latin1();
375                    // Now it depends on the device type...
376                    lscp_status_t ret = LSCP_FAILED;
377                    switch (device.deviceType()) {
378                    case qsamplerDevice::Audio:
379                            if ((ret = ::lscp_set_audio_device_param(m_pClient,
380                                            device.deviceID(), &param)) != LSCP_OK)
381                                    m_pMainForm->appendMessagesClient("lscp_set_audio_device_param");
382                            break;
383                    case qsamplerDevice::Midi:
384                            if ((ret = ::lscp_set_midi_device_param(m_pClient,
385                                            device.deviceID(), &param)) != LSCP_OK)
386                                    m_pMainForm->appendMessagesClient("lscp_set_midi_device_param");
387                            break;
388                    case qsamplerDevice::None:
389                            break;
390                    }
391                    // Show result.
392                    if (ret == LSCP_OK) {
393                            m_pMainForm->appendMessages(device.deviceName() + ' '
394                                    + QString("%1: %2.").arg(sParam).arg(sValue));
395                    }
396            }
397    
398            // Done.
399            m_iDirtySetup--;
400            stabilizeForm();
401            // Main session should be dirtier...
402            m_pMainForm->sessionDirty();
403    }
404    
405    
406    // Device list view context menu handler.
407    void qsamplerDeviceForm::contextMenu ( QListViewItem *pItem, const QPoint& pos, int )
408    {
409            int iItemID;
410            
411            // Build the device context menu...
412            QPopupMenu* pContextMenu = new QPopupMenu(this);
413            
414            bool bClient = (m_pClient != NULL);
415            bool bEnabled = (pItem != NULL);
416            iItemID = pContextMenu->insertItem(
417                    QIconSet(QPixmap::fromMimeSource("deviceCreate.png")),
418                    tr("&Create"), this, SLOT(createDevice()));
419            pContextMenu->setItemEnabled(iItemID, bEnabled || (bClient && m_bNewDevice));
420            iItemID = pContextMenu->insertItem(
421                    QIconSet(QPixmap::fromMimeSource("deviceDelete.png")),
422                    tr("&Delete"), this, SLOT(deleteDevice()));
423            pContextMenu->setItemEnabled(iItemID, bEnabled && !m_bNewDevice);
424            pContextMenu->insertSeparator();
425            iItemID = pContextMenu->insertItem(
426                    QIconSet(QPixmap::fromMimeSource("formRefresh.png")),
427                    tr("&Refresh"), this, SLOT(refreshDevices()));
428            pContextMenu->setItemEnabled(iItemID, bClient);
429            
430            pContextMenu->exec(pos);
431            
432            delete pContextMenu;
433    }
434    
435    
436    // Stabilize current form state.
437    void qsamplerDeviceForm::stabilizeForm (void)
438    {
439          QListViewItem *pItem = DeviceListView->selectedItem();          QListViewItem *pItem = DeviceListView->selectedItem();
440            bool bClient = (m_pClient != NULL);
441          bool bEnabled = (pItem != NULL);          bool bEnabled = (pItem != NULL);
442          DeviceNameTextLabel->setEnabled(bEnabled);          DeviceNameTextLabel->setEnabled(bEnabled && !m_bNewDevice);
443          DriverNameTextLabel->setEnabled(bEnabled && m_bNewDevice);          DriverNameTextLabel->setEnabled(bEnabled &&  m_bNewDevice);
444          DriverNameComboBox->setEnabled(bEnabled && m_bNewDevice);          DriverNameComboBox->setEnabled(bEnabled && m_bNewDevice);
445          DeviceParamTable->setEnabled(bEnabled);          DeviceParamTable->setEnabled(bEnabled);
446          CreateDevicePushButton->setEnabled(bEnabled && (m_iDirtyCount > 0 ||  m_bNewDevice));          RefreshDevicesPushButton->setEnabled(bClient);
447          UpdateDevicePushButton->setEnabled(bEnabled && (m_iDirtyCount > 0 && !m_bNewDevice));          CreateDevicePushButton->setEnabled(bEnabled || (bClient && m_bNewDevice));
448          DeleteDevicePushButton->setEnabled(bEnabled && (m_iDirtyCount > 0 && !m_bNewDevice));          DeleteDevicePushButton->setEnabled(bEnabled && !m_bNewDevice);
449  }  }
450    
451    
452  // end of qsamplerDeviceForm.ui.h  // end of qsamplerDeviceForm.ui.h
   

Legend:
Removed from v.431  
changed lines
  Added in v.462

  ViewVC Help
Powered by ViewVC