/[svn]/qsampler/trunk/src/qsamplerChannelForm.cpp
ViewVC logotype

Annotation of /qsampler/trunk/src/qsamplerChannelForm.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1519 - (hide annotations) (download)
Sat Nov 24 13:06:19 2007 UTC (16 years, 5 months ago) by capela
File size: 24055 byte(s)
* Narrower QTableView row heights and header section left-alignment.
* Smoothed the old shinny display effect bitmap.

1 capela 1464 // qsamplerChannelForm.cpp
2     //
3     /****************************************************************************
4     Copyright (C) 2004-2007, rncbc aka Rui Nuno Capela. All rights reserved.
5     Copyright (C) 2007, Christian Schoenebeck
6    
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 along
18     with this program; if not, write to the Free Software Foundation, Inc.,
19     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20    
21     *****************************************************************************/
22    
23 schoenebeck 1461 #include "qsamplerChannelForm.h"
24    
25     #include "qsamplerAbout.h"
26     #include "qsamplerDeviceForm.h"
27    
28     #include "qsamplerMainForm.h"
29     #include "qsamplerInstrument.h"
30    
31 capela 1499 #include <QValidator>
32     #include <QMessageBox>
33     #include <QFileDialog>
34     #include <QFileInfo>
35 schoenebeck 1461
36 capela 1499 #include <QHeaderView>
37    
38    
39 schoenebeck 1461 namespace QSampler {
40    
41 capela 1509 ChannelForm::ChannelForm ( QWidget* pParent )
42     : QDialog(pParent)
43     {
44 capela 1510 m_ui.setupUi(this);
45 schoenebeck 1461
46     // Initialize locals.
47     m_pChannel = NULL;
48    
49     m_iDirtySetup = 0;
50     m_iDirtyCount = 0;
51    
52 capela 1499 // m_midiDevices.setAutoDelete(true);
53     // m_audioDevices.setAutoDelete(true);
54 schoenebeck 1461
55     m_pDeviceForm = NULL;
56    
57 capela 1519 int iRowHeight = m_ui.AudioRoutingTable->fontMetrics().height() + 4;
58     m_ui.AudioRoutingTable->verticalHeader()->setDefaultSectionSize(iRowHeight);
59     m_ui.AudioRoutingTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
60    
61 capela 1509 m_ui.AudioRoutingTable->setModel(&m_routingModel);
62     m_ui.AudioRoutingTable->setItemDelegate(&m_routingDelegate);
63     m_ui.AudioRoutingTable->horizontalHeader()->setResizeMode(0, QHeaderView::Stretch);
64     // m_ui.AudioRoutingTable->verticalHeader()->hide();
65    
66     // This goes initially hidden, and will be shown
67 capela 1510 // on setup() for currently existing channels...
68 capela 1509 m_ui.AudioRoutingTable->hide();
69    
70 schoenebeck 1461 // Try to restore normal window positioning.
71     adjustSize();
72 capela 1466
73 capela 1509 QObject::connect(m_ui.EngineNameComboBox,
74 capela 1466 SIGNAL(activated(int)),
75     SLOT(optionsChanged()));
76 capela 1509 QObject::connect(m_ui.InstrumentFileComboBox,
77 schoenebeck 1474 SIGNAL(activated(const QString&)),
78 capela 1466 SLOT(updateInstrumentName()));
79 capela 1509 QObject::connect(m_ui.InstrumentFileToolButton,
80 capela 1466 SIGNAL(clicked()),
81     SLOT(openInstrumentFile()));
82 capela 1509 QObject::connect(m_ui.InstrumentNrComboBox,
83 capela 1466 SIGNAL(activated(int)),
84     SLOT(optionsChanged()));
85 capela 1509 QObject::connect(m_ui.MidiDriverComboBox,
86 schoenebeck 1474 SIGNAL(activated(const QString&)),
87     SLOT(selectMidiDriver(const QString&)));
88 capela 1509 QObject::connect(m_ui.MidiDeviceComboBox,
89 capela 1466 SIGNAL(activated(int)),
90     SLOT(selectMidiDevice(int)));
91 capela 1509 QObject::connect(m_ui.MidiPortSpinBox,
92 capela 1466 SIGNAL(valueChanged(int)),
93     SLOT(optionsChanged()));
94 capela 1509 QObject::connect(m_ui.MidiChannelComboBox,
95 capela 1466 SIGNAL(activated(int)),
96     SLOT(optionsChanged()));
97 capela 1509 QObject::connect(m_ui.MidiMapComboBox,
98 capela 1466 SIGNAL(activated(int)),
99     SLOT(optionsChanged()));
100 capela 1509 QObject::connect(m_ui.AudioDriverComboBox,
101 schoenebeck 1474 SIGNAL(activated(const QString&)),
102     SLOT(selectAudioDriver(const QString&)));
103 capela 1509 QObject::connect(m_ui.AudioDeviceComboBox,
104 capela 1466 SIGNAL(activated(int)),
105     SLOT(selectAudioDevice(int)));
106 capela 1509 QObject::connect(m_ui.OkPushButton,
107 capela 1466 SIGNAL(clicked()),
108     SLOT(accept()));
109 capela 1509 QObject::connect(m_ui.CancelPushButton,
110 capela 1466 SIGNAL(clicked()),
111     SLOT(reject()));
112 capela 1509 QObject::connect(m_ui.MidiDeviceToolButton,
113 capela 1466 SIGNAL(clicked()),
114     SLOT(setupMidiDevice()));
115 capela 1509 QObject::connect(m_ui.AudioDeviceToolButton,
116 capela 1466 SIGNAL(clicked()),
117     SLOT(setupAudioDevice()));
118 capela 1509 QObject::connect(&m_routingModel,
119 schoenebeck 1489 SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)),
120     SLOT(optionsChanged()));
121 capela 1509 QObject::connect(&m_routingModel,
122 schoenebeck 1489 SIGNAL(dataChanged(const QModelIndex&, const QModelIndex&)),
123     SLOT(updateTableCellRenderers(const QModelIndex&, const QModelIndex&)));
124 capela 1509 QObject::connect(&m_routingModel,
125 schoenebeck 1489 SIGNAL(modelReset()),
126     SLOT(updateTableCellRenderers()));
127 schoenebeck 1461 }
128    
129 capela 1499 ChannelForm::~ChannelForm()
130     {
131 schoenebeck 1461 if (m_pDeviceForm)
132     delete m_pDeviceForm;
133     m_pDeviceForm = NULL;
134 capela 1499
135     qDeleteAll(m_midiDevices);
136     m_midiDevices.clear();
137    
138     qDeleteAll(m_audioDevices);
139     m_audioDevices.clear();
140 schoenebeck 1461 }
141    
142    
143     // Channel dialog setup formal initializer.
144     void ChannelForm::setup ( qsamplerChannel *pChannel )
145     {
146     m_pChannel = pChannel;
147    
148     m_iDirtySetup = 0;
149     m_iDirtyCount = 0;
150    
151     if (m_pChannel == NULL)
152     return;
153    
154     // It can be a brand new channel, remember?
155     bool bNew = (m_pChannel->channelID() < 0);
156 capela 1499 setWindowTitle(QSAMPLER_TITLE ": " + m_pChannel->channelName());
157 schoenebeck 1461
158     // Check if we're up and connected.
159     MainForm *pMainForm = MainForm::getInstance();
160     if (pMainForm == NULL)
161     return;
162     if (pMainForm->client() == NULL)
163     return;
164    
165     qsamplerOptions *pOptions = pMainForm->options();
166     if (pOptions == NULL)
167     return;
168    
169     // Avoid nested changes.
170     m_iDirtySetup++;
171    
172     // Load combo box history...
173 capela 1509 pOptions->loadComboBoxHistory(m_ui.InstrumentFileComboBox);
174 schoenebeck 1461
175     // Populate Engines list.
176     const char **ppszEngines = ::lscp_list_available_engines(pMainForm->client());
177     if (ppszEngines) {
178 capela 1509 m_ui.EngineNameComboBox->clear();
179 schoenebeck 1461 for (int iEngine = 0; ppszEngines[iEngine]; iEngine++)
180 capela 1509 m_ui.EngineNameComboBox->addItem(QString(ppszEngines[iEngine]));
181 schoenebeck 1461 }
182     else m_pChannel->appendMessagesClient("lscp_list_available_engines");
183    
184     // Populate Audio output type list.
185 capela 1509 m_ui.AudioDriverComboBox->clear();
186     m_ui.AudioDriverComboBox->insertItems(0,
187 schoenebeck 1461 qsamplerDevice::getDrivers(pMainForm->client(), qsamplerDevice::Audio));
188    
189     // Populate MIDI input type list.
190 capela 1509 m_ui.MidiDriverComboBox->clear();
191     m_ui.MidiDriverComboBox->insertItems(0,
192 schoenebeck 1461 qsamplerDevice::getDrivers(pMainForm->client(), qsamplerDevice::Midi));
193    
194     // Populate Maps list.
195 capela 1509 m_ui.MidiMapComboBox->clear();
196     m_ui.MidiMapComboBox->insertItems(0,
197 capela 1499 qsamplerInstrument::getMapNames());
198 schoenebeck 1461
199     // Read proper channel information,
200     // and populate the channel form fields.
201    
202     // Engine name...
203     QString sEngineName = pChannel->engineName();
204     if (sEngineName.isEmpty() || bNew)
205     sEngineName = pOptions->sEngineName;
206     if (sEngineName.isEmpty())
207     sEngineName = qsamplerChannel::noEngineName();
208 capela 1509 if (m_ui.EngineNameComboBox->findText(sEngineName,
209 schoenebeck 1474 Qt::MatchExactly | Qt::MatchCaseSensitive) < 0) {
210 capela 1509 m_ui.EngineNameComboBox->addItem(sEngineName);
211 schoenebeck 1461 }
212 capela 1509 m_ui.EngineNameComboBox->setCurrentIndex(
213     m_ui.EngineNameComboBox->findText(sEngineName,
214 schoenebeck 1474 Qt::MatchExactly | Qt::MatchCaseSensitive));
215 capela 1504
216 schoenebeck 1461 // Instrument filename and index...
217     QString sInstrumentFile = pChannel->instrumentFile();
218     if (sInstrumentFile.isEmpty())
219     sInstrumentFile = qsamplerChannel::noInstrumentName();
220 capela 1509 m_ui.InstrumentFileComboBox->setEditText(sInstrumentFile);
221     m_ui.InstrumentNrComboBox->clear();
222     m_ui.InstrumentNrComboBox->insertItems(0,
223 schoenebeck 1461 qsamplerChannel::getInstrumentList(sInstrumentFile,
224     pOptions->bInstrumentNames));
225 capela 1510 int iInstrumentNr = pChannel->instrumentNr();
226     if (iInstrumentNr < 0)
227     iInstrumentNr = 0;
228     m_ui.InstrumentNrComboBox->setCurrentIndex(iInstrumentNr);
229 schoenebeck 1461
230     // MIDI input device...
231     qsamplerDevice midiDevice(qsamplerDevice::Midi, m_pChannel->midiDevice());
232     // MIDI input driver...
233     QString sMidiDriver = midiDevice.driverName();
234     if (sMidiDriver.isEmpty() || bNew)
235 capela 1499 sMidiDriver = pOptions->sMidiDriver.toUpper();
236 schoenebeck 1461 if (!sMidiDriver.isEmpty()) {
237 capela 1509 if (m_ui.MidiDriverComboBox->findText(sMidiDriver,
238 schoenebeck 1474 Qt::MatchExactly | Qt::MatchCaseSensitive) < 0) {
239 capela 1509 m_ui.MidiDriverComboBox->insertItem(0, sMidiDriver);
240 schoenebeck 1461 }
241 capela 1509 m_ui.MidiDriverComboBox->setItemText(
242     m_ui.MidiDriverComboBox->currentIndex(),
243 capela 1499 sMidiDriver);
244 schoenebeck 1461 }
245     selectMidiDriverItem(sMidiDriver);
246 capela 1499 if (!bNew) {
247 capela 1509 m_ui.MidiDeviceComboBox->setItemText(
248     m_ui.MidiDeviceComboBox->currentIndex(),
249 capela 1499 midiDevice.deviceName());
250     }
251 capela 1509 selectMidiDeviceItem(m_ui.MidiDeviceComboBox->currentIndex());
252 schoenebeck 1461 // MIDI input port...
253 capela 1509 m_ui.MidiPortSpinBox->setValue(pChannel->midiPort());
254 schoenebeck 1461 // MIDI input channel...
255     int iMidiChannel = pChannel->midiChannel();
256     // When new, try to suggest a sensible MIDI channel...
257     if (iMidiChannel < 0)
258     iMidiChannel = (::lscp_get_channels(pMainForm->client()) % 16);
259 capela 1509 m_ui.MidiChannelComboBox->setCurrentIndex(iMidiChannel);
260 schoenebeck 1461 // MIDI instrument map...
261     int iMidiMap = (bNew ? pOptions->iMidiMap : pChannel->midiMap());
262     // When new, try to suggest a sensible MIDI map...
263     if (iMidiMap < 0)
264     iMidiMap = 0;
265     const QString& sMapName = qsamplerInstrument::getMapName(iMidiMap);
266 capela 1499 if (!sMapName.isEmpty()) {
267 capela 1509 m_ui.MidiMapComboBox->setItemText(
268     m_ui.MidiMapComboBox->currentIndex(),
269 capela 1499 sMapName);
270     }
271 schoenebeck 1461 // It might be no maps around...
272 capela 1509 bool bMidiMapEnabled = (m_ui.MidiMapComboBox->count() > 0);
273     m_ui.MidiMapTextLabel->setEnabled(bMidiMapEnabled);
274     m_ui.MidiMapComboBox->setEnabled(bMidiMapEnabled);
275 schoenebeck 1461
276     // Audio output device...
277     qsamplerDevice audioDevice(qsamplerDevice::Audio, m_pChannel->audioDevice());
278     // Audio output driver...
279     QString sAudioDriver = audioDevice.driverName();
280     if (sAudioDriver.isEmpty() || bNew)
281 capela 1499 sAudioDriver = pOptions->sAudioDriver.toUpper();
282 schoenebeck 1461 if (!sAudioDriver.isEmpty()) {
283 capela 1509 if (m_ui.AudioDriverComboBox->findText(sAudioDriver,
284 schoenebeck 1474 Qt::MatchExactly | Qt::MatchCaseSensitive) < 0) {
285 capela 1509 m_ui.AudioDriverComboBox->insertItem(0, sAudioDriver);
286 schoenebeck 1461 }
287 capela 1509 m_ui.AudioDriverComboBox->setItemText(
288     m_ui.AudioDriverComboBox->currentIndex(),
289 capela 1499 sAudioDriver);
290 schoenebeck 1461 }
291     selectAudioDriverItem(sAudioDriver);
292 capela 1499 if (!bNew) {
293 capela 1509 m_ui.AudioDeviceComboBox->setItemText(
294     m_ui.AudioDeviceComboBox->currentIndex(),
295 capela 1499 audioDevice.deviceName());
296     }
297 capela 1509 selectAudioDeviceItem(m_ui.AudioDeviceComboBox->currentIndex());
298 schoenebeck 1461
299 capela 1509 // Let the audio routing table see the light,
300     // if we're editing an existing sampler channel...
301     m_ui.AudioRoutingTable->setVisible(!bNew);
302    
303 schoenebeck 1461 // As convenient, make it ready on stabilizeForm() for
304     // prompt acceptance, if we got the minimum required...
305     /* if (sEngineName != qsamplerChannel::noEngineName() &&
306     sInstrumentFile != qsamplerChannel::noInstrumentName())
307     m_iDirtyCount++; */
308     // Done.
309     m_iDirtySetup--;
310     stabilizeForm();
311     }
312    
313    
314     // Accept settings (OK button slot).
315     void ChannelForm::accept (void)
316     {
317     if (m_pChannel == NULL)
318     return;
319    
320     MainForm *pMainForm = MainForm::getInstance();
321     if (pMainForm == NULL)
322     return;
323     if (pMainForm->client() == NULL)
324     return;
325    
326     qsamplerOptions *pOptions = pMainForm->options();
327     if (pOptions == NULL)
328     return;
329    
330     // Flush any pending editing...
331 capela 1509 //m_ui.AudioRoutingTable->flush();
332 schoenebeck 1461
333     // We'll go for it!
334     if (m_iDirtyCount > 0) {
335     int iErrors = 0;
336     // Are we a new channel?
337     if (!m_pChannel->addChannel())
338     iErrors++;
339     // Accept Audio driver or device selection...
340     if (m_audioDevices.isEmpty()) {
341 capela 1509 if (!m_pChannel->setAudioDriver(m_ui.AudioDriverComboBox->currentText()))
342 schoenebeck 1461 iErrors++;
343     } else {
344 capela 1504 qsamplerDevice *pDevice = NULL;
345 capela 1509 int iAudioItem = m_ui.AudioDeviceComboBox->currentIndex();
346 capela 1504 if (iAudioItem >= 0 && iAudioItem < m_audioDevices.count())
347     pDevice = m_audioDevices.at(iAudioItem);
348 capela 1509 qsamplerChannelRoutingMap routingMap = m_routingModel.routingMap();
349 schoenebeck 1461 if (pDevice == NULL)
350     iErrors++;
351     else if (!m_pChannel->setAudioDevice(pDevice->deviceID()))
352     iErrors++;
353 schoenebeck 1489 else if (!routingMap.isEmpty()) {
354 schoenebeck 1461 // Set the audio route changes...
355     qsamplerChannelRoutingMap::ConstIterator iter;
356 schoenebeck 1489 for (iter = routingMap.begin();
357     iter != routingMap.end(); ++iter) {
358 capela 1499 if (!m_pChannel->setAudioChannel(iter.key(), iter.value()))
359 schoenebeck 1461 iErrors++;
360     }
361     }
362     }
363     // Accept MIDI driver or device selection...
364     if (m_midiDevices.isEmpty()) {
365 capela 1509 if (!m_pChannel->setMidiDriver(m_ui.MidiDriverComboBox->currentText()))
366 schoenebeck 1461 iErrors++;
367     } else {
368 capela 1504 qsamplerDevice *pDevice = NULL;
369 capela 1509 int iMidiItem = m_ui.MidiDeviceComboBox->currentIndex();
370 capela 1504 if (iMidiItem >= 0 && iMidiItem < m_midiDevices.count())
371     pDevice = m_midiDevices.at(iMidiItem);
372 schoenebeck 1461 if (pDevice == NULL)
373     iErrors++;
374     else if (!m_pChannel->setMidiDevice(pDevice->deviceID()))
375     iErrors++;
376     }
377     // MIDI input port number...
378 capela 1509 if (!m_pChannel->setMidiPort(m_ui.MidiPortSpinBox->value()))
379 schoenebeck 1461 iErrors++;
380     // MIDI input channel...
381 capela 1509 if (!m_pChannel->setMidiChannel(m_ui.MidiChannelComboBox->currentIndex()))
382 schoenebeck 1461 iErrors++;
383     // Engine name...
384 capela 1509 if (!m_pChannel->loadEngine(m_ui.EngineNameComboBox->currentText()))
385 schoenebeck 1461 iErrors++;
386     // Instrument file and index...
387 capela 1509 const QString& sPath = m_ui.InstrumentFileComboBox->currentText();
388 schoenebeck 1461 if (!sPath.isEmpty() && QFileInfo(sPath).exists()) {
389 capela 1509 if (!m_pChannel->loadInstrument(sPath, m_ui.InstrumentNrComboBox->currentIndex()))
390 schoenebeck 1461 iErrors++;
391     }
392     // MIDI intrument map...
393 capela 1509 if (!m_pChannel->setMidiMap(m_ui.MidiMapComboBox->currentIndex()))
394 schoenebeck 1461 iErrors++;
395     // Show error messages?
396 capela 1510 if (iErrors > 0) {
397     m_pChannel->appendMessagesError(
398     tr("Some channel settings could not be set.\n\nSorry."));
399     }
400 schoenebeck 1461 }
401    
402     // Save default engine name, instrument directory and history...
403 capela 1499 pOptions->sInstrumentDir = QFileInfo(
404 capela 1509 m_ui.InstrumentFileComboBox->currentText()).dir().absolutePath();
405     pOptions->sEngineName = m_ui.EngineNameComboBox->currentText();
406     pOptions->sAudioDriver = m_ui.AudioDriverComboBox->currentText();
407     pOptions->sMidiDriver = m_ui.MidiDriverComboBox->currentText();
408     pOptions->iMidiMap = m_ui.MidiMapComboBox->currentIndex();
409     pOptions->saveComboBoxHistory(m_ui.InstrumentFileComboBox);
410 schoenebeck 1461
411     // Just go with dialog acceptance.
412     QDialog::accept();
413     }
414    
415    
416     // Reject settings (Cancel button slot).
417     void ChannelForm::reject (void)
418     {
419     bool bReject = true;
420    
421     // Check if there's any pending changes...
422 capela 1509 if (m_iDirtyCount > 0 && m_ui.OkPushButton->isEnabled()) {
423 schoenebeck 1461 switch (QMessageBox::warning(this,
424     QSAMPLER_TITLE ": " + tr("Warning"),
425     tr("Some channel settings have been changed.\n\n"
426     "Do you want to apply the changes?"),
427     tr("Apply"), tr("Discard"), tr("Cancel"))) {
428     case 0: // Apply...
429     accept();
430     return;
431     case 1: // Discard
432     break;
433     default: // Cancel.
434     bReject = false;
435     break;
436     }
437     }
438    
439     if (bReject)
440     QDialog::reject();
441     }
442    
443    
444     // Browse and open an instrument file.
445     void ChannelForm::openInstrumentFile (void)
446     {
447     MainForm *pMainForm = MainForm::getInstance();
448     if (pMainForm == NULL)
449     return;
450     if (pMainForm->client() == NULL)
451     return;
452    
453     qsamplerOptions *pOptions = pMainForm->options();
454     if (pOptions == NULL)
455     return;
456    
457     // FIXME: the instrument file filters should be restricted,
458     // depending on the current engine.
459 capela 1499 QString sInstrumentFile = QFileDialog::getOpenFileName(this,
460     QSAMPLER_TITLE ": " + tr("Instrument files"), // Caption.
461     pOptions->sInstrumentDir, // Start here.
462     tr("Instrument files") + " (*.gig *.dls)" // Filter (GIG and DLS files)
463 schoenebeck 1461 );
464    
465     if (sInstrumentFile.isEmpty())
466     return;
467    
468 capela 1509 m_ui.InstrumentFileComboBox->setEditText(sInstrumentFile);
469 schoenebeck 1461 updateInstrumentName();
470     }
471    
472    
473     // Refresh the actual instrument name.
474     void ChannelForm::updateInstrumentName (void)
475     {
476     MainForm *pMainForm = MainForm::getInstance();
477     if (pMainForm == NULL)
478     return;
479     if (pMainForm->client() == NULL)
480     return;
481    
482     qsamplerOptions *pOptions = pMainForm->options();
483     if (pOptions == NULL)
484     return;
485    
486     // Finally this better idea would be to use libgig
487     // to retrieve the REAL instrument names.
488 capela 1509 m_ui.InstrumentNrComboBox->clear();
489     m_ui.InstrumentNrComboBox->insertItems(0,
490 schoenebeck 1461 qsamplerChannel::getInstrumentList(
491 capela 1509 m_ui.InstrumentFileComboBox->currentText(),
492 schoenebeck 1461 pOptions->bInstrumentNames)
493     );
494    
495     optionsChanged();
496     }
497    
498    
499     // Show device options dialog.
500     void ChannelForm::setupDevice ( qsamplerDevice *pDevice,
501 capela 1509 qsamplerDevice::DeviceType deviceTypeMode,
502 schoenebeck 1461 const QString& sDriverName )
503     {
504 capela 1504 if (pDevice == NULL)
505     return;
506    
507 schoenebeck 1461 MainForm *pMainForm = MainForm::getInstance();
508     if (pMainForm == NULL)
509     return;
510     if (pMainForm->client() == NULL)
511     return;
512    
513     // Create the device form if not already...
514     if (m_pDeviceForm == NULL) {
515     m_pDeviceForm = new DeviceForm(this, Qt::Dialog);
516 capela 1510 m_pDeviceForm->setAttribute(Qt::WA_ShowModal);
517 schoenebeck 1461 QObject::connect(m_pDeviceForm, SIGNAL(devicesChanged()),
518     this, SLOT(updateDevices()));
519     }
520    
521     // Refresh the device form with selected data.
522     if (m_pDeviceForm) {
523     m_pDeviceForm->setDeviceTypeMode(deviceTypeMode);
524     m_pDeviceForm->refreshDevices();
525     m_pDeviceForm->setDevice(pDevice);
526     m_pDeviceForm->setDriverName(sDriverName);
527     m_pDeviceForm->show();
528     }
529     }
530    
531    
532     // Refresh MIDI driver item devices.
533     void ChannelForm::selectMidiDriverItem ( const QString& sMidiDriver )
534     {
535     MainForm *pMainForm = MainForm::getInstance();
536     if (pMainForm == NULL)
537     return;
538     if (pMainForm->client() == NULL)
539     return;
540    
541 capela 1499 const QString sDriverName = sMidiDriver.toUpper();
542 schoenebeck 1461
543     // Save current device id.
544 capela 1504 // Save current device id.
545 schoenebeck 1461 int iDeviceID = 0;
546 capela 1504 qsamplerDevice *pDevice = NULL;
547 capela 1509 int iMidiItem = m_ui.MidiDeviceComboBox->currentIndex();
548 capela 1504 if (iMidiItem >= 0 && iMidiItem < m_midiDevices.count())
549     pDevice = m_midiDevices.at(iMidiItem);
550 schoenebeck 1461 if (pDevice)
551     iDeviceID = pDevice->deviceID();
552    
553     // Clean maplist.
554 capela 1509 m_ui.MidiDeviceComboBox->clear();
555 capela 1499 qDeleteAll(m_midiDevices);
556 schoenebeck 1461 m_midiDevices.clear();
557    
558     // Populate with the current ones...
559 schoenebeck 1489 const QPixmap midiPixmap(":/icons/midi2.png");
560 schoenebeck 1461 int *piDeviceIDs = qsamplerDevice::getDevices(pMainForm->client(),
561     qsamplerDevice::Midi);
562     for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {
563     pDevice = new qsamplerDevice(qsamplerDevice::Midi, piDeviceIDs[i]);
564 capela 1499 if (pDevice->driverName().toUpper() == sDriverName) {
565 capela 1510 m_ui.MidiDeviceComboBox->insertItem(0,
566     midiPixmap, pDevice->deviceName());
567 schoenebeck 1461 m_midiDevices.append(pDevice);
568     } else {
569     delete pDevice;
570     }
571     }
572    
573     // Do proper enabling...
574     bool bEnabled = !m_midiDevices.isEmpty();
575     if (bEnabled) {
576     // Select the previous current device...
577 capela 1504 iMidiItem = 0;
578 capela 1499 QListIterator<qsamplerDevice *> iter(m_midiDevices);
579     while (iter.hasNext()) {
580     pDevice = iter.next();
581 schoenebeck 1461 if (pDevice->deviceID() == iDeviceID) {
582 capela 1509 m_ui.MidiDeviceComboBox->setCurrentIndex(iMidiItem);
583 schoenebeck 1461 selectMidiDeviceItem(iMidiItem);
584     break;
585     }
586     iMidiItem++;
587     }
588     } else {
589 capela 1509 m_ui.MidiDeviceComboBox->insertItem(0,
590 schoenebeck 1461 tr("(New MIDI %1 device)").arg(sMidiDriver));
591     }
592 capela 1509 m_ui.MidiDeviceTextLabel->setEnabled(bEnabled);
593     m_ui.MidiDeviceComboBox->setEnabled(bEnabled);
594 schoenebeck 1461 }
595    
596    
597     // Refresh MIDI device options slot.
598     void ChannelForm::selectMidiDriver ( const QString& sMidiDriver )
599     {
600     if (m_iDirtySetup > 0)
601     return;
602    
603     selectMidiDriverItem(sMidiDriver);
604     optionsChanged();
605     }
606    
607    
608     // Select MIDI device item.
609     void ChannelForm::selectMidiDeviceItem ( int iMidiItem )
610     {
611 capela 1504 qsamplerDevice *pDevice = NULL;
612     if (iMidiItem >= 0 && iMidiItem < m_midiDevices.count())
613     pDevice = m_midiDevices.at(iMidiItem);
614 schoenebeck 1461 if (pDevice) {
615     const qsamplerDeviceParamMap& params = pDevice->params();
616     int iPorts = params["PORTS"].value.toInt();
617 capela 1509 m_ui.MidiPortTextLabel->setEnabled(iPorts > 0);
618     m_ui.MidiPortSpinBox->setEnabled(iPorts > 0);
619 schoenebeck 1461 if (iPorts > 0)
620 capela 1509 m_ui.MidiPortSpinBox->setMaximum(iPorts - 1);
621 schoenebeck 1461 }
622     }
623    
624    
625     // Select MIDI device options slot.
626     void ChannelForm::selectMidiDevice ( int iMidiItem )
627     {
628     if (m_iDirtySetup > 0)
629     return;
630    
631     selectMidiDeviceItem(iMidiItem);
632     optionsChanged();
633     }
634    
635    
636     // MIDI device options.
637     void ChannelForm::setupMidiDevice (void)
638     {
639 capela 1504 qsamplerDevice *pDevice = NULL;
640 capela 1509 int iMidiItem = m_ui.MidiDeviceComboBox->currentIndex();
641 capela 1504 if (iMidiItem >= 0 && iMidiItem < m_midiDevices.count())
642     pDevice = m_midiDevices.at(iMidiItem);
643     setupDevice(pDevice,
644 capela 1509 qsamplerDevice::Midi, m_ui.MidiDriverComboBox->currentText());
645 schoenebeck 1461 }
646    
647    
648     // Refresh Audio driver item devices.
649     void ChannelForm::selectAudioDriverItem ( const QString& sAudioDriver )
650     {
651     MainForm *pMainForm = MainForm::getInstance();
652     if (pMainForm == NULL)
653     return;
654     if (pMainForm->client() == NULL)
655     return;
656    
657 capela 1499 const QString sDriverName = sAudioDriver.toUpper();
658 schoenebeck 1461
659     // Save current device id.
660     int iDeviceID = 0;
661 capela 1504 qsamplerDevice *pDevice = NULL;
662 capela 1509 int iAudioItem = m_ui.AudioDeviceComboBox->currentIndex();
663 capela 1504 if (iAudioItem >= 0 && iAudioItem < m_audioDevices.count())
664     pDevice = m_audioDevices.at(iAudioItem);
665 schoenebeck 1461 if (pDevice)
666     iDeviceID = pDevice->deviceID();
667    
668     // Clean maplist.
669 capela 1509 m_ui.AudioDeviceComboBox->clear();
670 capela 1499 qDeleteAll(m_audioDevices);
671 schoenebeck 1461 m_audioDevices.clear();
672    
673     // Populate with the current ones...
674 schoenebeck 1489 const QPixmap audioPixmap(":/icons/audio2.png");
675 schoenebeck 1461 int *piDeviceIDs = qsamplerDevice::getDevices(pMainForm->client(),
676     qsamplerDevice::Audio);
677     for (int i = 0; piDeviceIDs && piDeviceIDs[i] >= 0; i++) {
678     pDevice = new qsamplerDevice(qsamplerDevice::Audio, piDeviceIDs[i]);
679 capela 1499 if (pDevice->driverName().toUpper() == sDriverName) {
680 capela 1510 m_ui.AudioDeviceComboBox->insertItem(0,
681     audioPixmap, pDevice->deviceName());
682 schoenebeck 1461 m_audioDevices.append(pDevice);
683     } else {
684     delete pDevice;
685     }
686     }
687    
688     // Do proper enabling...
689     bool bEnabled = !m_audioDevices.isEmpty();
690     if (bEnabled) {
691     // Select the previous current device...
692 capela 1504 iAudioItem = 0;
693 capela 1499 QListIterator<qsamplerDevice *> iter(m_audioDevices);
694     while (iter.hasNext()) {
695     pDevice = iter.next();
696 schoenebeck 1461 if (pDevice->deviceID() == iDeviceID) {
697 capela 1509 m_ui.AudioDeviceComboBox->setCurrentIndex(iAudioItem);
698 schoenebeck 1461 selectAudioDeviceItem(iAudioItem);
699     break;
700     }
701     iAudioItem++;
702     }
703     } else {
704 capela 1509 m_ui.AudioDeviceComboBox->insertItem(0,
705 schoenebeck 1461 tr("(New Audio %1 device)").arg(sAudioDriver));
706 capela 1509 //m_ui.AudioRoutingTable->setNumRows(0);
707 schoenebeck 1461 }
708 capela 1509 m_ui.AudioDeviceTextLabel->setEnabled(bEnabled);
709     m_ui.AudioDeviceComboBox->setEnabled(bEnabled);
710     m_ui.AudioRoutingTable->setEnabled(bEnabled);
711 schoenebeck 1461 }
712    
713    
714     // Refresh Audio device options slot.
715     void ChannelForm::selectAudioDriver ( const QString& sAudioDriver )
716     {
717     if (m_iDirtySetup > 0)
718     return;
719    
720     selectAudioDriverItem(sAudioDriver);
721     optionsChanged();
722     }
723    
724    
725     // Select Audio device item.
726     void ChannelForm::selectAudioDeviceItem ( int iAudioItem )
727     {
728 capela 1504 qsamplerDevice *pDevice = NULL;
729     if (iAudioItem >= 0 && iAudioItem < m_audioDevices.count())
730     pDevice = m_audioDevices.at(iAudioItem);
731 schoenebeck 1461 if (pDevice) {
732     // Refresh the audio routing table.
733 capela 1509 m_routingModel.refresh(pDevice, m_pChannel->audioRouting());
734 schoenebeck 1461 // Reset routing change map.
735 capela 1509 m_routingModel.clear();
736 schoenebeck 1461 }
737     }
738    
739    
740     // Select Audio device options slot.
741     void ChannelForm::selectAudioDevice ( int iAudioItem )
742     {
743     if (m_iDirtySetup > 0)
744     return;
745    
746     selectAudioDeviceItem(iAudioItem);
747     optionsChanged();
748     }
749    
750    
751     // Audio device options.
752     void ChannelForm::setupAudioDevice (void)
753     {
754 capela 1504 qsamplerDevice *pDevice = NULL;
755 capela 1509 int iAudioItem = m_ui.AudioDeviceComboBox->currentIndex();
756 capela 1504 if (iAudioItem >= 0 && iAudioItem < m_audioDevices.count())
757     pDevice = m_audioDevices.at(iAudioItem);
758     setupDevice(pDevice,
759 capela 1509 qsamplerDevice::Audio, m_ui.AudioDriverComboBox->currentText());
760 schoenebeck 1461 }
761    
762     // UPdate all device lists slot.
763     void ChannelForm::updateDevices (void)
764     {
765     if (m_iDirtySetup > 0)
766     return;
767    
768 capela 1509 selectMidiDriverItem(m_ui.MidiDriverComboBox->currentText());
769     selectAudioDriverItem(m_ui.AudioDriverComboBox->currentText());
770 schoenebeck 1461 optionsChanged();
771     }
772    
773    
774     // Dirty up settings.
775     void ChannelForm::optionsChanged (void)
776     {
777     if (m_iDirtySetup > 0)
778     return;
779    
780     m_iDirtyCount++;
781     stabilizeForm();
782     }
783    
784    
785     // Stabilize current form state.
786     void ChannelForm::stabilizeForm (void)
787     {
788 schoenebeck 1506 const bool bValid =
789 capela 1509 m_ui.EngineNameComboBox->currentIndex() >= 0 &&
790 capela 1510 m_ui.EngineNameComboBox->currentText()
791     != qsamplerChannel::noEngineName();
792 schoenebeck 1461 #if 0
793     const QString& sPath = InstrumentFileComboBox->currentText();
794     bValid = bValid && !sPath.isEmpty() && QFileInfo(sPath).exists();
795     #endif
796 capela 1509 m_ui.OkPushButton->setEnabled(m_iDirtyCount > 0 && bValid);
797 schoenebeck 1461 }
798    
799 capela 1509
800     void ChannelForm::updateTableCellRenderers (void)
801     {
802 capela 1510 const int rows = m_routingModel.rowCount();
803     const int cols = m_routingModel.columnCount();
804     updateTableCellRenderers(
805 capela 1509 m_routingModel.index(0, 0),
806     m_routingModel.index(rows - 1, cols - 1));
807 schoenebeck 1489 }
808 schoenebeck 1461
809 capela 1509
810     void ChannelForm::updateTableCellRenderers (
811     const QModelIndex& topLeft, const QModelIndex& bottomRight )
812     {
813 capela 1510 for (int r = topLeft.row(); r <= bottomRight.row(); r++) {
814     for (int c = topLeft.column(); c <= bottomRight.column(); c++) {
815     const QModelIndex index = m_routingModel.index(r, c);
816     m_ui.AudioRoutingTable->openPersistentEditor(index);
817     }
818     }
819 schoenebeck 1489 }
820    
821 schoenebeck 1461 } // namespace QSampler
822 capela 1464
823    
824     // end of qsamplerChannelForm.cpp

  ViewVC Help
Powered by ViewVC