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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 757 - (hide annotations) (download) (as text)
Fri Aug 26 23:04:32 2005 UTC (18 years, 8 months ago) by capela
File MIME type: text/x-c++hdr
File size: 15882 byte(s)
* All widget captions changed to include proper application title prefix.

1 capela 426 // qsamplerDeviceForm.ui.h
2     //
3     // ui.h extension file, included from the uic-generated form implementation.
4     /****************************************************************************
5 capela 430 Copyright (C) 2005, rncbc aka Rui Nuno Capela. All rights reserved.
6 capela 426
7     This program is free software; you can redistribute it and/or
8     modify it under the terms of the GNU General Public License
9     as published by the Free Software Foundation; either version 2
10     of the License, or (at your option) any later version.
11    
12     This program is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     GNU General Public License for more details.
16    
17     You should have received a copy of the GNU General Public License
18     along with this program; if not, write to the Free Software
19     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20    
21     *****************************************************************************/
22    
23 capela 757 #include "qsamplerAbout.h"
24     #include "qsamplerMainForm.h"
25    
26 capela 426 #include <qmessagebox.h>
27 capela 428 #include <qfiledialog.h>
28     #include <qfileinfo.h>
29 capela 430 #include <qlistbox.h>
30 capela 463 #include <qptrlist.h>
31 capela 452 #include <qpopupmenu.h>
32 capela 426
33    
34     // Kind of constructor.
35     void qsamplerDeviceForm::init (void)
36     {
37 capela 431 // Initialize locals.
38 capela 487 m_pMainForm = NULL;
39 capela 431 m_pClient = NULL;
40 capela 426 m_iDirtySetup = 0;
41 capela 488 m_iDirtyCount = 0;
42 capela 431 m_bNewDevice = false;
43 capela 436 m_deviceType = qsamplerDevice::None;
44 capela 442 m_pAudioItems = NULL;
45     m_pMidiItems = NULL;
46 capela 490 // No exclusive mode as default.
47     m_deviceTypeMode = qsamplerDevice::None;
48    
49 capela 433 // This an outsider (from designer), but rather important.
50     QObject::connect(DeviceParamTable, SIGNAL(valueChanged(int,int)),
51 capela 463 this, SLOT(changeDeviceParam(int,int)));
52     QObject::connect(DevicePortParamTable, SIGNAL(valueChanged(int,int)),
53     this, SLOT(changeDevicePortParam(int,int)));
54    
55 capela 467 // Initial contents.
56     refreshDevices();
57 capela 431 // Try to restore normal window positioning.
58     adjustSize();
59 capela 426 }
60    
61    
62     // Kind of destructor.
63     void qsamplerDeviceForm::destroy (void)
64     {
65     }
66    
67    
68 capela 428 // Notify our parent that we're emerging.
69     void qsamplerDeviceForm::showEvent ( QShowEvent *pShowEvent )
70     {
71 capela 431 if (m_pMainForm)
72     m_pMainForm->stabilizeForm();
73 capela 428
74 capela 431 stabilizeForm();
75 capela 428
76 capela 431 QWidget::showEvent(pShowEvent);
77 capela 428 }
78    
79    
80     // Notify our parent that we're closing.
81     void qsamplerDeviceForm::hideEvent ( QHideEvent *pHideEvent )
82     {
83 capela 431 QWidget::hideEvent(pHideEvent);
84 capela 428
85 capela 431 if (m_pMainForm)
86     m_pMainForm->stabilizeForm();
87 capela 490
88 capela 488 // Signal special whether we changed the device set.
89     if (m_iDirtyCount > 0) {
90     m_iDirtyCount = 0;
91     emit devicesChanged();
92     }
93 capela 428 }
94    
95    
96 capela 487 // Application main form settler (life depends on it).
97     void qsamplerDeviceForm::setMainForm ( qsamplerMainForm *pMainForm )
98     {
99 capela 490 m_pMainForm = pMainForm;
100 capela 487 }
101    
102    
103 capela 490 // Set device type spacial exclusive mode.
104     void qsamplerDeviceForm::setDeviceTypeMode (
105     qsamplerDevice::qsamplerDeviceType deviceTypeMode )
106     {
107     // If it has not changed, do nothing.
108     if (m_deviceTypeMode == deviceTypeMode)
109     return;
110    
111     m_deviceTypeMode = deviceTypeMode;
112    
113     // OK. Do a whole refresh around.
114     refreshDevices();
115     }
116    
117    
118 capela 426 // Device configuration dialog setup formal initializer.
119 capela 428 void qsamplerDeviceForm::setClient ( lscp_client_t *pClient )
120 capela 426 {
121 capela 428 // If it has not changed, do nothing.
122     if (m_pClient && m_pClient == pClient)
123 capela 431 return;
124 capela 426
125 capela 428 // Set new reference.
126     m_pClient = pClient;
127 capela 490
128 capela 428 // OK. Do a whole refresh around.
129     refreshDevices();
130     }
131    
132    
133 capela 490 // Device driver name setup formal initializer.
134     void qsamplerDeviceForm::setDriverName ( const QString& sDriverName )
135     {
136     if (DriverNameComboBox->listBox()->findItem(sDriverName,
137     Qt::ExactMatch | Qt::CaseSensitive) == NULL) {
138     DriverNameComboBox->insertItem(sDriverName);
139     }
140     DriverNameComboBox->setCurrentText(sDriverName);
141     }
142    
143    
144 capela 487 // Set current selected device by type and id.
145 capela 490 void qsamplerDeviceForm::setDevice ( qsamplerDevice *pDevice )
146 capela 487 {
147 capela 490 // In case no device is given...
148     qsamplerDevice::qsamplerDeviceType deviceType = m_deviceTypeMode;
149     if (pDevice)
150     deviceType = pDevice->deviceType();
151    
152 capela 487 // Get the device view root item...
153     qsamplerDeviceItem *pRootItem = NULL;
154     switch (deviceType) {
155     case qsamplerDevice::Audio:
156     pRootItem = m_pAudioItems;
157     break;
158     case qsamplerDevice::Midi:
159     pRootItem = m_pMidiItems;
160     break;
161     case qsamplerDevice::None:
162     break;
163     }
164 capela 490
165 capela 487 // Is the root present?
166     if (pRootItem == NULL)
167 capela 490 return;
168 capela 487
169 capela 490 // So there's no device huh?
170     if (pDevice == NULL) {
171     DeviceListView->setSelected(pRootItem, true);
172     return;
173     }
174    
175 capela 487 // For each child, test for identity...
176     qsamplerDeviceItem *pDeviceItem =
177     (qsamplerDeviceItem *) pRootItem->firstChild();
178     while (pDeviceItem) {
179     // If identities match, select as current device item.
180 capela 490 if (pDeviceItem->device().deviceID() == pDevice->deviceID()) {
181 capela 487 DeviceListView->setSelected(pDeviceItem, true);
182     break;
183     }
184     pDeviceItem = (qsamplerDeviceItem *) pDeviceItem->nextSibling();
185     }
186     }
187    
188    
189    
190 capela 433 // Create a new device from current table view.
191     void qsamplerDeviceForm::createDevice (void)
192 capela 428 {
193 capela 487 if (m_pMainForm == NULL)
194 capela 490 return;
195 capela 487
196 capela 433 QListViewItem *pItem = DeviceListView->selectedItem();
197     if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
198     return;
199 capela 428
200 capela 484 // About a brand new device instance...
201     qsamplerDevice device(((qsamplerDeviceItem *) pItem)->device());
202     if (device.createDevice()) {
203     // Now it depends on the device type...
204     qsamplerDeviceItem *pRootItem = NULL;
205     switch (device.deviceType()) {
206     case qsamplerDevice::Audio:
207     pRootItem = m_pAudioItems;
208     break;
209     case qsamplerDevice::Midi:
210     pRootItem = m_pMidiItems;
211     break;
212     case qsamplerDevice::None:
213     break;
214     }
215 capela 442 // Append the new device item.
216     qsamplerDeviceItem *pDeviceItem = new qsamplerDeviceItem(pRootItem,
217 capela 484 m_pMainForm, device.deviceType(), device.deviceID());
218 capela 442 // Just make it the new selection...
219     DeviceListView->setSelected(pDeviceItem, true);
220 capela 433 // Main session should be marked dirty.
221     m_pMainForm->sessionDirty();
222 capela 488 m_iDirtyCount++;
223 capela 433 }
224 capela 428 }
225    
226    
227     // Delete current device in table view.
228     void qsamplerDeviceForm::deleteDevice (void)
229     {
230 capela 487 if (m_pMainForm == NULL)
231 capela 490 return;
232 capela 487
233 capela 433 QListViewItem *pItem = DeviceListView->selectedItem();
234     if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
235     return;
236    
237 capela 484 qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
238 capela 433
239 capela 442 // Prompt user if this is for real...
240     qsamplerOptions *pOptions = m_pMainForm->options();
241 capela 448 if (pOptions && pOptions->bConfirmRemove) {
242 capela 757 if (QMessageBox::warning(this,
243     QSAMPLER_TITLE ": " + tr("Warning"),
244 capela 484 tr("Delete device:\n\n"
245     "%1\n\n"
246 capela 448 "Are you sure?")
247     .arg(device.deviceName()),
248     tr("OK"), tr("Cancel")) > 0)
249     return;
250     }
251 capela 442
252 capela 484 // Go and destroy...
253     if (device.deleteDevice()) {
254     // Remove it from the device view...
255 capela 442 delete pItem;
256 capela 433 // Main session should be marked dirty.
257     m_pMainForm->sessionDirty();
258 capela 488 m_iDirtyCount++;
259 capela 433 }
260 capela 428 }
261    
262    
263     // Refresh all device list and views.
264     void qsamplerDeviceForm::refreshDevices (void)
265     {
266 capela 487 if (m_pMainForm == NULL)
267 capela 490 return;
268 capela 487
269 capela 431 // Avoid nested changes.
270     m_iDirtySetup++;
271 capela 428
272     //
273 capela 442 // (Re)Load complete device configuration data ...
274 capela 431 //
275 capela 442 m_pAudioItems = NULL;
276     m_pMidiItems = NULL;
277 capela 431 DeviceListView->clear();
278     if (m_pClient) {
279 capela 429 int *piDeviceIDs;
280 capela 430 // Grab and pop Audio devices...
281 capela 490 if (m_deviceTypeMode == qsamplerDevice::None ||
282     m_deviceTypeMode == qsamplerDevice::Audio) {
283     m_pAudioItems = new qsamplerDeviceItem(DeviceListView,
284     m_pMainForm, qsamplerDevice::Audio);
285     }
286 capela 442 if (m_pAudioItems) {
287 capela 429 piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Audio);
288     for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {
289 capela 484 new qsamplerDeviceItem(m_pAudioItems, m_pMainForm,
290 capela 429 qsamplerDevice::Audio, piDeviceIDs[i]);
291     }
292 capela 442 m_pAudioItems->setOpen(true);
293 capela 428 }
294 capela 430 // Grab and pop MIDI devices...
295 capela 490 if (m_deviceTypeMode == qsamplerDevice::None ||
296     m_deviceTypeMode == qsamplerDevice::Midi) {
297     m_pMidiItems = new qsamplerDeviceItem(DeviceListView,
298     m_pMainForm, qsamplerDevice::Midi);
299     }
300 capela 442 if (m_pMidiItems) {
301 capela 429 piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Midi);
302     for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {
303 capela 484 new qsamplerDeviceItem(m_pMidiItems, m_pMainForm,
304 capela 429 qsamplerDevice::Midi, piDeviceIDs[i]);
305     }
306 capela 442 m_pMidiItems->setOpen(true);
307 capela 429 }
308 capela 428 }
309    
310 capela 431 // Done.
311 capela 433 m_iDirtySetup--;
312 capela 436
313 capela 433 // Show something.
314 capela 431 selectDevice();
315 capela 428 }
316    
317 capela 430
318     // Driver selection slot.
319     void qsamplerDeviceForm::selectDriver ( const QString& sDriverName )
320     {
321 capela 433 if (m_iDirtySetup > 0)
322 capela 436 return;
323 capela 433
324 capela 430 //
325 capela 442 // Driver name has changed for a new device...
326 capela 430 //
327    
328 capela 431 QListViewItem *pItem = DeviceListView->selectedItem();
329     if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
330     return;
331    
332     qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
333 capela 436
334     // Driver change is only valid for scratch devices...
335 capela 431 if (m_bNewDevice) {
336 capela 442 m_iDirtySetup++;
337 capela 484 device.setDriver(sDriverName);
338 capela 462 DeviceParamTable->refresh(device.params(), m_bNewDevice);
339 capela 442 m_iDirtySetup--;
340 capela 436 // Done.
341     stabilizeForm();
342 capela 431 }
343 capela 430 }
344    
345    
346 capela 429 // Device selection slot.
347 capela 430 void qsamplerDeviceForm::selectDevice (void)
348 capela 429 {
349 capela 433 if (m_iDirtySetup > 0)
350 capela 436 return;
351 capela 433
352 capela 430 //
353 capela 442 // Device selection has changed...
354 capela 430 //
355 capela 428
356 capela 431 QListViewItem *pItem = DeviceListView->selectedItem();
357 capela 430 if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM) {
358 capela 436 m_deviceType = qsamplerDevice::None;
359     DeviceNameTextLabel->setText(QString::null);
360     DeviceParamTable->setNumRows(0);
361 capela 468 DevicePortComboBox->clear();
362 capela 467 DevicePortParamTable->setNumRows(0);
363 capela 622 DevicePortTextLabel->setEnabled(false);
364 capela 463 DevicePortComboBox->setEnabled(false);
365     DevicePortParamTable->setEnabled(false);
366 capela 430 stabilizeForm();
367     return;
368     }
369 capela 429
370 capela 431 qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
371 capela 436
372 capela 463 m_iDirtySetup++;
373 capela 436 // Flag whether this is a new device.
374 capela 430 m_bNewDevice = (device.deviceID() < 0);
375    
376 capela 433 // Fill the device/driver heading...
377 capela 484 DeviceNameTextLabel->setText(device.deviceName());
378 capela 436 // The driver combobox is only rebuilt if device type has changed...
379     if (device.deviceType() != m_deviceType) {
380     DriverNameComboBox->clear();
381     DriverNameComboBox->insertStringList(
382     qsamplerDevice::getDrivers(m_pClient, device.deviceType()));
383     m_deviceType = device.deviceType();
384     }
385     // Do we need a driver name?
386     if (m_bNewDevice || device.driverName().isEmpty())
387 capela 484 device.setDriver(DriverNameComboBox->currentText());
388 capela 490 setDriverName(device.driverName());
389 capela 430 DriverNameTextLabel->setEnabled(m_bNewDevice);
390     DriverNameComboBox->setEnabled(m_bNewDevice);
391     // Fill the device parameter table...
392 capela 462 DeviceParamTable->refresh(device.params(), m_bNewDevice);
393 capela 463 // And now the device port/channel parameter table...
394 capela 622 switch (device.deviceType()) {
395     case qsamplerDevice::Audio:
396     DevicePortTextLabel->setText(tr("Ch&annel:"));
397     break;
398     case qsamplerDevice::Midi:
399     DevicePortTextLabel->setText(tr("P&ort:"));
400     break;
401     case qsamplerDevice::None:
402     break;
403     }
404 capela 463 DevicePortComboBox->clear();
405     DevicePortParamTable->setNumRows(0);
406     if (m_bNewDevice) {
407 capela 622 DevicePortTextLabel->setEnabled(false);
408 capela 463 DevicePortComboBox->setEnabled(false);
409     DevicePortParamTable->setEnabled(false);
410     } else {
411     QPixmap pixmap;
412     switch (device.deviceType()) {
413     case qsamplerDevice::Audio:
414 capela 490 pixmap = QPixmap::fromMimeSource("audio2.png");
415     break;
416 capela 463 case qsamplerDevice::Midi:
417 capela 490 pixmap = QPixmap::fromMimeSource("midi2.png");
418     break;
419 capela 463 case qsamplerDevice::None:
420 capela 490 break;
421 capela 463 }
422     qsamplerDevicePortList& ports = device.ports();
423     qsamplerDevicePort *pPort;
424     for (pPort = ports.first(); pPort; pPort = ports.next()) {
425 capela 490 DevicePortComboBox->insertItem(pixmap, device.deviceTypeName()
426 capela 484 + ' ' + device.driverName()
427     + ' ' + pPort->portName());
428 capela 463 }
429     bool bEnabled = (ports.count() > 0);
430 capela 622 DevicePortTextLabel->setEnabled(bEnabled);
431 capela 463 DevicePortComboBox->setEnabled(bEnabled);
432     DevicePortParamTable->setEnabled(bEnabled);
433     }
434 capela 430 // Done.
435 capela 442 m_iDirtySetup--;
436 capela 490
437 capela 463 // Make the device port/channel selection effective.
438     selectDevicePort(DevicePortComboBox->currentItem());
439     }
440    
441    
442     // Device port/channel selection slot.
443     void qsamplerDeviceForm::selectDevicePort ( int iPort )
444     {
445     if (m_iDirtySetup > 0)
446     return;
447    
448     //
449     // Device port/channel selection has changed...
450     //
451    
452     QListViewItem *pItem = DeviceListView->selectedItem();
453     if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
454     return;
455    
456     qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
457     qsamplerDevicePort *pPort = device.ports().at(iPort);
458     if (pPort) {
459     m_iDirtySetup++;
460 capela 465 DevicePortParamTable->refresh(pPort->params(), false);
461 capela 463 m_iDirtySetup--;
462     }
463     // Done.
464 capela 430 stabilizeForm();
465 capela 429 }
466    
467    
468 capela 463 // Device parameter value change slot.
469     void qsamplerDeviceForm::changeDeviceParam ( int iRow, int iCol )
470 capela 432 {
471 capela 487 if (m_pMainForm == NULL)
472 capela 490 return;
473 capela 442 if (m_iDirtySetup > 0)
474 capela 448 return;
475 capela 442 if (iRow < 0 || iCol < 0)
476 capela 448 return;
477 capela 490
478 capela 432 //
479 capela 442 // Device parameter change...
480 capela 432 //
481 capela 442
482 capela 432 QListViewItem *pItem = DeviceListView->selectedItem();
483     if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
484     return;
485    
486     qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
487    
488 capela 436 // Table 1st column has the parameter name;
489     const QString sParam = DeviceParamTable->text(iRow, 0);
490 capela 433 const QString sValue = DeviceParamTable->text(iRow, iCol);
491 capela 462 // Set the local device parameter value.
492 capela 484 if (device.setParam(sParam, sValue)) {
493 capela 467 selectDevice();
494 capela 484 } else {
495 capela 467 stabilizeForm();
496 capela 484 }
497 capela 433 // Main session should be dirtier...
498     m_pMainForm->sessionDirty();
499 capela 432 }
500    
501    
502 capela 463 // Device port/channel parameter value change slot.
503     void qsamplerDeviceForm::changeDevicePortParam ( int iRow, int iCol )
504     {
505 capela 487 if (m_pMainForm == NULL)
506 capela 490 return;
507 capela 463 if (m_iDirtySetup > 0)
508     return;
509     if (iRow < 0 || iCol < 0)
510     return;
511    
512     //
513     // Device port/channel parameter change...
514     //
515    
516     QListViewItem *pItem = DeviceListView->selectedItem();
517     if (pItem == NULL || pItem->rtti() != QSAMPLER_DEVICE_ITEM)
518     return;
519    
520     qsamplerDevice& device = ((qsamplerDeviceItem *) pItem)->device();
521    
522     int iPort = DevicePortComboBox->currentItem();
523     qsamplerDevicePort *pPort = device.ports().at(iPort);
524     if (pPort == NULL)
525 capela 490 return;
526 capela 463
527     // Table 1st column has the parameter name;
528     const QString sParam = DevicePortParamTable->text(iRow, 0);
529     const QString sValue = DevicePortParamTable->text(iRow, iCol);
530     // Set the local device port/channel parameter value.
531     pPort->setParam(sParam, sValue);
532     // Done.
533     stabilizeForm();
534     // Main session should be dirtier...
535     m_pMainForm->sessionDirty();
536     }
537    
538    
539 capela 452 // Device list view context menu handler.
540     void qsamplerDeviceForm::contextMenu ( QListViewItem *pItem, const QPoint& pos, int )
541     {
542     int iItemID;
543 capela 490
544 capela 452 // Build the device context menu...
545     QPopupMenu* pContextMenu = new QPopupMenu(this);
546 capela 490
547 capela 452 bool bClient = (m_pClient != NULL);
548     bool bEnabled = (pItem != NULL);
549     iItemID = pContextMenu->insertItem(
550     QIconSet(QPixmap::fromMimeSource("deviceCreate.png")),
551 capela 463 tr("&Create device"), this, SLOT(createDevice()));
552 capela 452 pContextMenu->setItemEnabled(iItemID, bEnabled || (bClient && m_bNewDevice));
553     iItemID = pContextMenu->insertItem(
554     QIconSet(QPixmap::fromMimeSource("deviceDelete.png")),
555 capela 463 tr("&Delete device"), this, SLOT(deleteDevice()));
556 capela 452 pContextMenu->setItemEnabled(iItemID, bEnabled && !m_bNewDevice);
557     pContextMenu->insertSeparator();
558     iItemID = pContextMenu->insertItem(
559     QIconSet(QPixmap::fromMimeSource("formRefresh.png")),
560     tr("&Refresh"), this, SLOT(refreshDevices()));
561     pContextMenu->setItemEnabled(iItemID, bClient);
562 capela 490
563 capela 452 pContextMenu->exec(pos);
564 capela 490
565 capela 452 delete pContextMenu;
566     }
567    
568    
569 capela 426 // Stabilize current form state.
570     void qsamplerDeviceForm::stabilizeForm (void)
571     {
572 capela 431 QListViewItem *pItem = DeviceListView->selectedItem();
573 capela 452 bool bClient = (m_pClient != NULL);
574 capela 431 bool bEnabled = (pItem != NULL);
575 capela 433 DeviceNameTextLabel->setEnabled(bEnabled && !m_bNewDevice);
576     DriverNameTextLabel->setEnabled(bEnabled && m_bNewDevice);
577 capela 430 DriverNameComboBox->setEnabled(bEnabled && m_bNewDevice);
578     DeviceParamTable->setEnabled(bEnabled);
579 capela 452 RefreshDevicesPushButton->setEnabled(bClient);
580     CreateDevicePushButton->setEnabled(bEnabled || (bClient && m_bNewDevice));
581 capela 433 DeleteDevicePushButton->setEnabled(bEnabled && !m_bNewDevice);
582 capela 426 }
583    
584    
585     // end of qsamplerDeviceForm.ui.h

  ViewVC Help
Powered by ViewVC