/[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 432 by capela, Wed Mar 9 11:33:27 2005 UTC revision 452 by capela, Sun Mar 13 22:06:59 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++;          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
         stabilizeForm();  
 }  
   
   
 // Load device configuration slot.  
 void qsamplerDeviceForm::loadDevices (void)  
 {  
         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.  
         );  
106    
107          if (sFilename.isEmpty())          // Build the parameter list...
108                  return;          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          // Check if we're going to discard safely the current one...          // Free used parameter array.
142          if (!queryClose())          delete pParams;
                 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...          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);
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);
   
336          // Done.          // Done.
337            m_iDirtySetup--;
338          stabilizeForm();          stabilizeForm();
339  }  }
340    
# Line 369  void qsamplerDeviceForm::selectDevice (v Line 342  void qsamplerDeviceForm::selectDevice (v
342  // parameter value change slot.  // parameter value change slot.
343  void qsamplerDeviceForm::changeValue ( int iRow, int iCol )  void qsamplerDeviceForm::changeValue ( int iRow, int iCol )
344  {  {
345            if (m_iDirtySetup > 0)
346                    return;
347            if (iRow < 0 || iCol < 0)
348                    return;
349                    
350          //          //
351          //  TODO: Device parameter change...          //  Device parameter change...
352          //          //
353          m_pMainForm->appendMessages("qsamplerDeviceForm::changeValue()");  
           
354          QListViewItem *pItem = DeviceListView->selectedItem();          QListViewItem *pItem = DeviceListView->selectedItem();
355          if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)          if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
356                  return;                  return;
357    
358            m_iDirtySetup++;
359          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
360    
361          // Table 3rd column has the parameter name;          // Table 1st column has the parameter name;
362          qsamplerDeviceParamMap& params = device.params();          qsamplerDeviceParamMap& params = device.params();
363          QString sParam = DeviceParamTable->text(iRow, 2);          const QString sParam = DeviceParamTable->text(iRow, 0);
364          params[sParam].value = DeviceParamTable->text(iRow, iCol);          const QString sValue = DeviceParamTable->text(iRow, iCol);
365            params[sParam].value = sValue;
366    
367            // Set proper device parameter, on existing device ...
368            if (device.deviceID() >= 0) {
369                    // Prepare parameter struct.
370                    lscp_param_t param;
371                    param.key   = (char *) sParam.latin1();
372                    param.value = (char *) sValue.latin1();
373                    // Now it depends on the device type...
374                    lscp_status_t ret = LSCP_FAILED;
375                    switch (device.deviceType()) {
376                    case qsamplerDevice::Audio:
377                            if ((ret = ::lscp_set_audio_device_param(m_pClient,
378                                            device.deviceID(), &param)) != LSCP_OK)
379                                    m_pMainForm->appendMessagesClient("lscp_set_audio_device_param");
380                            break;
381                    case qsamplerDevice::Midi:
382                            if ((ret = ::lscp_set_midi_device_param(m_pClient,
383                                            device.deviceID(), &param)) != LSCP_OK)
384                                    m_pMainForm->appendMessagesClient("lscp_set_midi_device_param");
385                            break;
386                    case qsamplerDevice::None:
387                            break;
388                    }
389                    // Show result.
390                    if (ret == LSCP_OK) {
391                            m_pMainForm->appendMessages(device.deviceName() + ' '
392                                    + QString("%1: %2.").arg(sParam).arg(sValue));
393                    }
394            }
395    
396          m_iDirtyCount++;          // Done.
397            m_iDirtySetup--;
398          stabilizeForm();          stabilizeForm();
399            // Main session should be dirtier...
400            m_pMainForm->sessionDirty();
401  }  }
402    
403    
404  // Stabilize current form state.  // Device list view context menu handler.
405  void qsamplerDeviceForm::stabilizeForm (void)  void qsamplerDeviceForm::contextMenu ( QListViewItem *pItem, const QPoint& pos, int )
406  {  {
407          // Update the main caption...          int iItemID;
408          QString sDevicesName = devicesName(m_sFilename);          
409          if (m_iDirtyCount > 0)          // Build the device context menu...
410                  sDevicesName += '*';          QPopupMenu* pContextMenu = new QPopupMenu(this);
411          setCaption(tr("Devices - [%1]").arg(sDevicesName));          
412            bool bClient = (m_pClient != NULL);
413          //          bool bEnabled = (pItem != NULL);
414          // TODO: Enable/disable available command buttons.          iItemID = pContextMenu->insertItem(
415          //                  QIconSet(QPixmap::fromMimeSource("deviceCreate.png")),
416          m_pMainForm->appendMessages("qsamplerDeviceForm::stabilizeForm()");                  tr("&Create"), this, SLOT(createDevice()));
417            pContextMenu->setItemEnabled(iItemID, bEnabled || (bClient && m_bNewDevice));
418            iItemID = pContextMenu->insertItem(
419                    QIconSet(QPixmap::fromMimeSource("deviceDelete.png")),
420                    tr("&Delete"), this, SLOT(deleteDevice()));
421            pContextMenu->setItemEnabled(iItemID, bEnabled && !m_bNewDevice);
422            pContextMenu->insertSeparator();
423            iItemID = pContextMenu->insertItem(
424                    QIconSet(QPixmap::fromMimeSource("formRefresh.png")),
425                    tr("&Refresh"), this, SLOT(refreshDevices()));
426            pContextMenu->setItemEnabled(iItemID, bClient);
427            
428            pContextMenu->exec(pos);
429            
430            delete pContextMenu;
431    }
432    
         SaveDevicesPushButton->setEnabled(m_iDirtyCount > 0);  
433    
434    // Stabilize current form state.
435    void qsamplerDeviceForm::stabilizeForm (void)
436    {
437          QListViewItem *pItem = DeviceListView->selectedItem();          QListViewItem *pItem = DeviceListView->selectedItem();
438            bool bClient = (m_pClient != NULL);
439          bool bEnabled = (pItem != NULL);          bool bEnabled = (pItem != NULL);
440          DeviceNameTextLabel->setEnabled(bEnabled);          DeviceNameTextLabel->setEnabled(bEnabled && !m_bNewDevice);
441          DriverNameTextLabel->setEnabled(bEnabled && m_bNewDevice);          DriverNameTextLabel->setEnabled(bEnabled &&  m_bNewDevice);
442          DriverNameComboBox->setEnabled(bEnabled && m_bNewDevice);          DriverNameComboBox->setEnabled(bEnabled && m_bNewDevice);
443          DeviceParamTable->setEnabled(bEnabled);          DeviceParamTable->setEnabled(bEnabled);
444          CreateDevicePushButton->setEnabled(bEnabled && (m_iDirtyCount > 0 ||  m_bNewDevice));          RefreshDevicesPushButton->setEnabled(bClient);
445          UpdateDevicePushButton->setEnabled(bEnabled && (m_iDirtyCount > 0 && !m_bNewDevice));          CreateDevicePushButton->setEnabled(bEnabled || (bClient && m_bNewDevice));
446          DeleteDevicePushButton->setEnabled(bEnabled && (m_iDirtyCount > 0 && !m_bNewDevice));          DeleteDevicePushButton->setEnabled(bEnabled && !m_bNewDevice);
447  }  }
448    
449    
450  // end of qsamplerDeviceForm.ui.h  // end of qsamplerDeviceForm.ui.h
   

Legend:
Removed from v.432  
changed lines
  Added in v.452

  ViewVC Help
Powered by ViewVC