/[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 430 by capela, Tue Mar 8 17:23:29 2005 UTC revision 442 by capela, Thu Mar 10 15:48:38 2005 UTC
# Line 33  Line 33 
33  // Kind of constructor.  // Kind of constructor.
34  void qsamplerDeviceForm::init (void)  void qsamplerDeviceForm::init (void)
35  {  {
36      // Initialize locals.          // Initialize locals.
37      m_pMainForm   = (qsamplerMainForm *) QWidget::parentWidget();          m_pMainForm   = (qsamplerMainForm *) QWidget::parentWidget();
38      m_pClient     = NULL;          m_pClient     = NULL;
39          m_iDirtySetup = 0;          m_iDirtySetup = 0;
40      m_iDirtyCount = 0;          m_bNewDevice  = false;
41      m_iUntitled   = 1;          m_deviceType  = qsamplerDevice::None;
42      m_bNewDevice  = false;          m_pAudioItems = NULL;
43            m_pMidiItems  = NULL;
44      // Try to restore normal window positioning.  
45      adjustSize();          // This an outsider (from designer), but rather important.
46            QObject::connect(DeviceParamTable, SIGNAL(valueChanged(int,int)),
47                    this, SLOT(changeValue(int,int)));
48            
49            // Try to restore normal window positioning.
50            adjustSize();
51  }  }
52    
53    
# Line 55  void qsamplerDeviceForm::destroy (void) Line 60  void qsamplerDeviceForm::destroy (void)
60  // Notify our parent that we're emerging.  // Notify our parent that we're emerging.
61  void qsamplerDeviceForm::showEvent ( QShowEvent *pShowEvent )  void qsamplerDeviceForm::showEvent ( QShowEvent *pShowEvent )
62  {  {
63      if (m_pMainForm)          if (m_pMainForm)
64          m_pMainForm->stabilizeForm();                  m_pMainForm->stabilizeForm();
65    
66      stabilizeForm();          stabilizeForm();
67    
68      QWidget::showEvent(pShowEvent);          QWidget::showEvent(pShowEvent);
69  }  }
70    
71    
72  // Notify our parent that we're closing.  // Notify our parent that we're closing.
73  void qsamplerDeviceForm::hideEvent ( QHideEvent *pHideEvent )  void qsamplerDeviceForm::hideEvent ( QHideEvent *pHideEvent )
74  {  {
75      QWidget::hideEvent(pHideEvent);          QWidget::hideEvent(pHideEvent);
76    
77      if (m_pMainForm)          if (m_pMainForm)
78          m_pMainForm->stabilizeForm();                  m_pMainForm->stabilizeForm();
79  }  }
80    
81    
# Line 79  void qsamplerDeviceForm::setClient ( lsc Line 84  void qsamplerDeviceForm::setClient ( lsc
84  {  {
85          // If it has not changed, do nothing.          // If it has not changed, do nothing.
86          if (m_pClient && m_pClient == pClient)          if (m_pClient && m_pClient == pClient)
87              return;                  return;
88    
89          // Set new reference.          // Set new reference.
90          m_pClient = pClient;          m_pClient = pClient;
# Line 89  void qsamplerDeviceForm::setClient ( lsc Line 94  void qsamplerDeviceForm::setClient ( lsc
94  }  }
95    
96    
 // Format the displayable device configuration filename.  
 QString qsamplerDeviceForm::devicesName ( const QString& sFilename )  
 {  
     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)  
 {  
     if (m_iDirtySetup > 0)  
         return;  
   
     m_iDirtyCount++;  
     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.  
     );  
   
     if (sFilename.isEmpty())  
         return;  
   
     // Check if we're going to discard safely the current one...  
     if (!queryClose())  
         return;  
   
     // Load it right away...  
     loadDevicesFile(sFilename);  
 }  
   
   
 // Save device configuration slot.  
 void qsamplerDeviceForm::saveDevices (void)  
 {  
     QString sFilename = QFileDialog::getSaveFileName(  
             m_sFilename,                                    // Start here.  
             tr("Device Configuration files") + " (*.lscp)", // Filter (XML files)  
             this, 0,                                        // Parent and name (none)  
             tr("Save Device Configuration")                 // Caption.  
     );  
   
     if (sFilename.isEmpty())  
         return;  
   
     // Enforce .xml extension...  
     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();  
 }  
   
   
97  // Create a new device from current table view.  // Create a new device from current table view.
98  void qsamplerDeviceForm::createDevice (void)  void qsamplerDeviceForm::createDevice (void)
99  {  {
100          //          QListViewItem *pItem = DeviceListView->selectedItem();
101      // TODO: Create a new device from current table view...          if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
102      //                  return;
         m_pMainForm->appendMessages("qsamplerDeviceForm::createDevice()...");  
           
         m_iDirtyCount++;  
         stabilizeForm();  
 }  
103    
104            qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
105    
106  // Update current device in table view.          // Build the parameter list...
107  void qsamplerDeviceForm::updateDevice (void)          qsamplerDeviceParamMap& params = device.params();
108  {          lscp_param_t *pParams = new lscp_param_t [params.count() + 1];
109          //          int iParam = 0;
110      // TODO: Update current device in table view...          qsamplerDeviceParamMap::ConstIterator iter;
111      //          for (iter = params.begin(); iter != params.end(); ++iter) {
112          m_pMainForm->appendMessages("qsamplerDeviceForm::updateDevice()...");                  pParams[iParam].key   = (char *) iter.key().latin1();
113                    pParams[iParam].value = (char *) iter.data().value.latin1();
114                    ++iParam;
115            }
116            // Null terminated.
117            pParams[iParam].key   = NULL;
118            pParams[iParam].value = NULL;
119    
120            // Now it depends on the device type...
121            qsamplerDeviceItem *pRootItem = NULL;
122            int iDeviceID = -1;
123            switch (device.deviceType()) {
124            case qsamplerDevice::Audio:
125                pRootItem = m_pAudioItems;
126                    if ((iDeviceID = ::lscp_create_audio_device(m_pClient,
127                                    device.driverName().latin1(), pParams)) < 0)
128                            m_pMainForm->appendMessagesClient("lscp_create_audio_device");
129                    break;
130            case qsamplerDevice::Midi:
131                pRootItem = m_pMidiItems;
132                    if ((iDeviceID = ::lscp_create_midi_device(m_pClient,
133                                    device.driverName().latin1(), pParams)) < 0)
134                            m_pMainForm->appendMessagesClient("lscp_create_midi_device");
135                    break;
136            case qsamplerDevice::None:
137                    break;
138            }
139    
140          m_iDirtyCount++;          // Free used parameter array.
141          stabilizeForm();          delete pParams;
142    
143            // We're on to create the new device item.
144            if (iDeviceID >= 0) {
145                    // Append the new device item.
146                    qsamplerDeviceItem *pDeviceItem = new qsamplerDeviceItem(pRootItem,
147                            m_pClient, device.deviceType(), iDeviceID);
148                    // Just make it the new selection...
149                    DeviceListView->setSelected(pDeviceItem, true);
150                    // Done.
151                    m_pMainForm->appendMessages(pDeviceItem->device().deviceName() + ' '
152                            + tr("created."));
153                    // Main session should be marked dirty.
154                    m_pMainForm->sessionDirty();
155            }
156  }  }
157    
158    
159  // Delete current device in table view.  // Delete current device in table view.
160  void qsamplerDeviceForm::deleteDevice (void)  void qsamplerDeviceForm::deleteDevice (void)
161  {  {
162          //          QListViewItem *pItem = DeviceListView->selectedItem();
163      // TODO: Delete current device in table view...          if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
164      //                  return;
         m_pMainForm->appendMessages("qsamplerDeviceForm::deleteDevice()...");  
165    
166          m_iDirtyCount++;          qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
167          stabilizeForm();  
168            // Prompt user if this is for real...
169            qsamplerOptions *pOptions = m_pMainForm->options();
170        if (pOptions && pOptions->bConfirmRemove) {
171            if (QMessageBox::warning(this, tr("Warning"),
172                tr("Delete %1 device:\n\n"
173                   "%2\n\n"
174                   "Are you sure?")
175                   .arg(device.deviceTypeName())
176                   .arg(device.deviceName()),
177                tr("OK"), tr("Cancel")) > 0)
178                return;
179        }
180    
181            // Now it depends on the device type...
182            lscp_status_t ret = LSCP_FAILED;
183            switch (device.deviceType()) {
184            case qsamplerDevice::Audio:
185                    if ((ret = ::lscp_destroy_audio_device(m_pClient,
186                                    device.deviceID())) != LSCP_OK)
187                            m_pMainForm->appendMessagesClient("lscp_destroy_audio_device");
188                    break;
189            case qsamplerDevice::Midi:
190                    if ((ret = ::lscp_destroy_midi_device(m_pClient,
191                                    device.deviceID())) != LSCP_OK)
192                            m_pMainForm->appendMessagesClient("lscp_destroy_midi_device");
193                    break;
194            case qsamplerDevice::None:
195                    break;
196            }
197    
198            // Show result.
199            if (ret == LSCP_OK) {
200                    // Show log message before loosing it.
201                    m_pMainForm->appendMessages(device.deviceName() + ' '
202                            + tr("deleted."));
203                    // Done.
204                    delete pItem;
205                    // Main session should be marked dirty.
206                    m_pMainForm->sessionDirty();
207            }
208  }  }
209    
210    
211  // Refresh all device list and views.  // Refresh all device list and views.
212  void qsamplerDeviceForm::refreshDevices (void)  void qsamplerDeviceForm::refreshDevices (void)
213  {  {
214      // Avoid nested changes.          // Avoid nested changes.
215      m_iDirtySetup++;          m_iDirtySetup++;
216    
217          //          //
218      // TODO: Load device configuration data ...          // (Re)Load complete device configuration data ...
219      //          //
220          m_pMainForm->appendMessages("qsamplerDeviceForm::refreshDevices()");          m_pAudioItems = NULL;
221            m_pMidiItems = NULL;
222      DeviceListView->clear();          DeviceListView->clear();
223      if (m_pClient) {          if (m_pClient) {
                 qsamplerDeviceItem *pItem;  
224                  int *piDeviceIDs;                  int *piDeviceIDs;
225                  // Grab and pop Audio devices...                  // Grab and pop Audio devices...
226          pItem = new qsamplerDeviceItem(DeviceListView, m_pClient,                  m_pAudioItems = new qsamplerDeviceItem(DeviceListView, m_pClient,
227                          qsamplerDevice::Audio);                          qsamplerDevice::Audio);
228          if (pItem) {                  if (m_pAudioItems) {
229                          pItem->setText(0, tr("Audio"));                          m_pAudioItems->setText(0, tr("Audio"));
230                          piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Audio);                          piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Audio);
231                          for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {                          for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {
232                              new qsamplerDeviceItem(pItem, m_pClient,                                  new qsamplerDeviceItem(m_pAudioItems, m_pClient,
233                                          qsamplerDevice::Audio, piDeviceIDs[i]);                                          qsamplerDevice::Audio, piDeviceIDs[i]);
234                          }                          }
235                          pItem->setOpen(true);                          m_pAudioItems->setOpen(true);
236                  }                  }
237                  // Grab and pop MIDI devices...                  // Grab and pop MIDI devices...
238          pItem = new qsamplerDeviceItem(DeviceListView, m_pClient,                  m_pMidiItems = new qsamplerDeviceItem(DeviceListView, m_pClient,
239                          qsamplerDevice::Midi);                          qsamplerDevice::Midi);
240          if (pItem) {                  if (m_pMidiItems) {
241                          pItem->setText(0, tr("MIDI"));                          m_pMidiItems->setText(0, tr("MIDI"));
242                          piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Midi);                          piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Midi);
243                          for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {                          for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {
244                              new qsamplerDeviceItem(pItem, m_pClient,                                  new qsamplerDeviceItem(m_pMidiItems, m_pClient,
245                                          qsamplerDevice::Midi, piDeviceIDs[i]);                                          qsamplerDevice::Midi, piDeviceIDs[i]);
246                          }                          }
247                          pItem->setOpen(true);                          m_pMidiItems->setOpen(true);
248                  }                  }
249          }          }
250    
251      // Done.          // Done.
252      selectDevice();          m_iDirtySetup--;
253      m_iDirtySetup--;  
254            // Show something.
255            selectDevice();
256  }  }
257    
258    
259  // Driver selection slot.  // Driver selection slot.
260  void qsamplerDeviceForm::selectDriver ( const QString& sDriverName )  void qsamplerDeviceForm::selectDriver ( const QString& sDriverName )
261  {  {
262            if (m_iDirtySetup > 0)
263                    return;
264    
265          //          //
266          //  TODO: Driver name has changed for a new device...          //  Driver name has changed for a new device...
267          //          //
         m_pMainForm->appendMessages("qsamplerDeviceForm::selectDriver(\"" + sDriverName + "\")");  
268    
269          m_iDirtyCount++;          QListViewItem *pItem = DeviceListView->selectedItem();
270          stabilizeForm();          if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
271                    return;
272    
273            qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
274    
275            // Driver change is only valid for scratch devices...
276            if (m_bNewDevice) {
277                    m_iDirtySetup++;
278                    device.setDriver(m_pClient, sDriverName);
279                    DeviceParamTable->refresh(device);
280                    m_iDirtySetup--;
281                    // Done.
282                    stabilizeForm();
283            }
284  }  }
285    
286    
287  // Device selection slot.  // Device selection slot.
288  void qsamplerDeviceForm::selectDevice (void)  void qsamplerDeviceForm::selectDevice (void)
289  {  {
290            if (m_iDirtySetup > 0)
291                    return;
292    
293          //          //
294          //  TODO: Device selection has changed...          //  Device selection has changed...
295          //          //
         m_pMainForm->appendMessages("qsamplerDeviceForm::selectDevice()");  
296    
297      QListViewItem *pItem = DeviceListView->selectedItem();          QListViewItem *pItem = DeviceListView->selectedItem();
298          if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM) {          if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM) {
299                    m_deviceType = qsamplerDevice::None;
300                    DeviceNameTextLabel->setText(QString::null);
301                    DeviceParamTable->setNumRows(0);
302                  stabilizeForm();                  stabilizeForm();
303                  return;                  return;
304          }          }
305    
306          const qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();          m_iDirtySetup++;
307            qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
308    
309            // Flag whether this is a new device.
310          m_bNewDevice = (device.deviceID() < 0);          m_bNewDevice = (device.deviceID() < 0);
311    
312          // Fill the device heading...          // Fill the device/driver heading...
313          DeviceNameTextLabel->setText(' ' + device.deviceName());          DeviceNameTextLabel->setText(device.deviceTypeName() + ' ' + device.deviceName());
314          DriverNameComboBox->clear();          // The driver combobox is only rebuilt if device type has changed...
315          DriverNameComboBox->insertStringList(          if (device.deviceType() != m_deviceType) {
316                  qsamplerDevice::getDrivers(m_pClient, device.deviceType()));                  DriverNameComboBox->clear();
317                    DriverNameComboBox->insertStringList(
318                            qsamplerDevice::getDrivers(m_pClient, device.deviceType()));
319                    m_deviceType = device.deviceType();
320            }
321            // Do we need a driver name?
322            if (m_bNewDevice || device.driverName().isEmpty())
323                    device.setDriver(m_pClient, DriverNameComboBox->currentText());
324          const QString& sDriverName = device.driverName();          const QString& sDriverName = device.driverName();
325      if (!sDriverName.isEmpty()) {          if (DriverNameComboBox->listBox()->findItem(sDriverName, Qt::ExactMatch) == NULL)
326          if (DriverNameComboBox->listBox()->findItem(sDriverName, Qt::ExactMatch) == NULL)                  DriverNameComboBox->insertItem(sDriverName);
327              DriverNameComboBox->insertItem(sDriverName);          DriverNameComboBox->setCurrentText(sDriverName);
         DriverNameComboBox->setCurrentText(sDriverName);  
     }  
328          DriverNameTextLabel->setEnabled(m_bNewDevice);          DriverNameTextLabel->setEnabled(m_bNewDevice);
329          DriverNameComboBox->setEnabled(m_bNewDevice);          DriverNameComboBox->setEnabled(m_bNewDevice);
           
330          // Fill the device parameter table...          // Fill the device parameter table...
331          DeviceParamTable->setEnabled(true);          DeviceParamTable->refresh(device);
         DeviceParamTable->setDevice(m_pClient,  
             device.deviceType(), device.deviceID());  
   
332          // Done.          // Done.
333            m_iDirtySetup--;
334          stabilizeForm();          stabilizeForm();
335  }  }
336    
337    
338  // Stabilize current form state.  // parameter value change slot.
339  void qsamplerDeviceForm::stabilizeForm (void)  void qsamplerDeviceForm::changeValue ( int iRow, int iCol )
340  {  {
341      // Update the main caption...          if (m_iDirtySetup > 0)
342      QString sDevicesName = devicesName(m_sFilename);              return;
343      if (m_iDirtyCount > 0)          if (iRow < 0 || iCol < 0)
344          sDevicesName += '*';              return;
345      setCaption(tr("Devices - [%1]").arg(sDevicesName));              
   
346          //          //
347          // TODO: Enable/disable available command buttons.          //  Device parameter change...
348          //          //
         m_pMainForm->appendMessages("qsamplerDeviceForm::stabilizeForm()");  
349    
350      SaveDevicesPushButton->setEnabled(m_iDirtyCount > 0);          QListViewItem *pItem = DeviceListView->selectedItem();
351            if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
352                    return;
353    
354            m_iDirtySetup++;
355            qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
356    
357            // Table 1st column has the parameter name;
358            qsamplerDeviceParamMap& params = device.params();
359            const QString sParam = DeviceParamTable->text(iRow, 0);
360            const QString sValue = DeviceParamTable->text(iRow, iCol);
361            params[sParam].value = sValue;
362    
363            // Set proper device parameter, on existing device ...
364            if (device.deviceID() >= 0) {
365                    // Prepare parameter struct.
366                    lscp_param_t param;
367                    param.key   = (char *) sParam.latin1();
368                    param.value = (char *) sValue.latin1();
369                    // Now it depends on the device type...
370                    lscp_status_t ret = LSCP_FAILED;
371                    switch (device.deviceType()) {
372                    case qsamplerDevice::Audio:
373                            if ((ret = ::lscp_set_audio_device_param(m_pClient,
374                                            device.deviceID(), &param)) != LSCP_OK)
375                                    m_pMainForm->appendMessagesClient("lscp_set_audio_device_param");
376                            break;
377                    case qsamplerDevice::Midi:
378                            if ((ret = ::lscp_set_midi_device_param(m_pClient,
379                                            device.deviceID(), &param)) != LSCP_OK)
380                                    m_pMainForm->appendMessagesClient("lscp_set_midi_device_param");
381                            break;
382                    case qsamplerDevice::None:
383                            break;
384                    }
385                    // Show result.
386                    if (ret == LSCP_OK) {
387                            m_pMainForm->appendMessages(device.deviceName() + ' '
388                                    + QString("%1: %2.").arg(sParam).arg(sValue));
389                    }
390            }
391    
392            // Done.
393            m_iDirtySetup--;
394            stabilizeForm();
395            // Main session should be dirtier...
396            m_pMainForm->sessionDirty();
397    }
398    
399    
400      QListViewItem *pItem = DeviceListView->selectedItem();  // Stabilize current form state.
401      bool bEnabled = (pItem != NULL);  void qsamplerDeviceForm::stabilizeForm (void)
402          DeviceNameTextLabel->setEnabled(bEnabled);  {
403          DriverNameTextLabel->setEnabled(bEnabled && m_bNewDevice);          QListViewItem *pItem = DeviceListView->selectedItem();
404            bool bEnabled = (pItem != NULL);
405            DeviceNameTextLabel->setEnabled(bEnabled && !m_bNewDevice);
406            DriverNameTextLabel->setEnabled(bEnabled &&  m_bNewDevice);
407          DriverNameComboBox->setEnabled(bEnabled && m_bNewDevice);          DriverNameComboBox->setEnabled(bEnabled && m_bNewDevice);
408          DeviceParamTable->setEnabled(bEnabled);          DeviceParamTable->setEnabled(bEnabled);
409      CreateDevicePushButton->setEnabled(bEnabled && (m_iDirtyCount > 0 ||  m_bNewDevice));          CreateDevicePushButton->setEnabled(bEnabled ||  m_bNewDevice);
410      UpdateDevicePushButton->setEnabled(bEnabled && (m_iDirtyCount > 0 && !m_bNewDevice));          DeleteDevicePushButton->setEnabled(bEnabled && !m_bNewDevice);
     DeleteDevicePushButton->setEnabled(bEnabled && (m_iDirtyCount > 0 && !m_bNewDevice));  
411  }  }
412    
413    
414  // end of qsamplerDeviceForm.ui.h  // end of qsamplerDeviceForm.ui.h
   

Legend:
Removed from v.430  
changed lines
  Added in v.442

  ViewVC Help
Powered by ViewVC