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

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

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

revision 404 by capela, Wed Feb 23 13:47:47 2005 UTC revision 662 by capela, Sat Jun 18 10:46:57 2005 UTC
# Line 41  Line 41 
41  #include "qsamplerMessages.h"  #include "qsamplerMessages.h"
42    
43  #include "qsamplerChannelStrip.h"  #include "qsamplerChannelStrip.h"
44    
45    #include "qsamplerDeviceForm.h"
46  #include "qsamplerOptionsForm.h"  #include "qsamplerOptionsForm.h"
47    
48  #include "config.h"  #include "config.h"
# Line 49  Line 51 
51  #include <signal.h>  #include <signal.h>
52  #endif  #endif
53    
54    #ifdef CONFIG_LIBGIG
55    #include <gig.h>
56    #endif
57    
58  // Timer constant stuff.  // Timer constant stuff.
59  #define QSAMPLER_TIMER_MSECS    200  #define QSAMPLER_TIMER_MSECS    200
60    
# Line 105  void qsamplerMainForm::init (void) Line 111  void qsamplerMainForm::init (void)
111      m_pOptions = NULL;      m_pOptions = NULL;
112    
113      // All child forms are to be created later, not earlier than setup.      // All child forms are to be created later, not earlier than setup.
114      m_pMessages = NULL;      m_pMessages   = NULL;
115        m_pDeviceForm = NULL;
116    
117      // We'll start clean.      // We'll start clean.
118      m_iUntitled   = 0;      m_iUntitled   = 0;
# Line 138  void qsamplerMainForm::init (void) Line 145  void qsamplerMainForm::init (void)
145      pLabel = new QLabel(tr("Connected"), this);      pLabel = new QLabel(tr("Connected"), this);
146      pLabel->setAlignment(Qt::AlignLeft);      pLabel->setAlignment(Qt::AlignLeft);
147      pLabel->setMinimumSize(pLabel->sizeHint());      pLabel->setMinimumSize(pLabel->sizeHint());
148      m_status[QSAMPLER_STATUS_CLIENT] = pLabel;      m_statusItem[QSAMPLER_STATUS_CLIENT] = pLabel;
149      statusBar()->addWidget(pLabel);      statusBar()->addWidget(pLabel);
150      // Server address.      // Server address.
151      pLabel = new QLabel(this);      pLabel = new QLabel(this);
152      pLabel->setAlignment(Qt::AlignLeft);      pLabel->setAlignment(Qt::AlignLeft);
153      m_status[QSAMPLER_STATUS_SERVER] = pLabel;      m_statusItem[QSAMPLER_STATUS_SERVER] = pLabel;
154      statusBar()->addWidget(pLabel, 1);      statusBar()->addWidget(pLabel, 1);
155      // Channel title.      // Channel title.
156      pLabel = new QLabel(this);      pLabel = new QLabel(this);
157      pLabel->setAlignment(Qt::AlignLeft);      pLabel->setAlignment(Qt::AlignLeft);
158      m_status[QSAMPLER_STATUS_CHANNEL] = pLabel;      m_statusItem[QSAMPLER_STATUS_CHANNEL] = pLabel;
159      statusBar()->addWidget(pLabel, 2);      statusBar()->addWidget(pLabel, 2);
160      // Session modification status.      // Session modification status.
161      pLabel = new QLabel(tr("MOD"), this);      pLabel = new QLabel(tr("MOD"), this);
162      pLabel->setAlignment(Qt::AlignHCenter);      pLabel->setAlignment(Qt::AlignHCenter);
163      pLabel->setMinimumSize(pLabel->sizeHint());      pLabel->setMinimumSize(pLabel->sizeHint());
164      m_status[QSAMPLER_STATUS_SESSION] = pLabel;      m_statusItem[QSAMPLER_STATUS_SESSION] = pLabel;
165      statusBar()->addWidget(pLabel);      statusBar()->addWidget(pLabel);
166    
167      // Create the recent files sub-menu.      // Create the recent files sub-menu.
# Line 173  void qsamplerMainForm::destroy (void) Line 180  void qsamplerMainForm::destroy (void)
180  {  {
181      // Do final processing anyway.      // Do final processing anyway.
182      processServerExit();      processServerExit();
183        
184      // Delete recentfiles menu.  #if defined(WIN32)
185      if (m_pRecentFilesMenu)      WSACleanup();
186          delete m_pRecentFilesMenu;  #endif
     // Delete status item labels one by one.  
     if (m_status[QSAMPLER_STATUS_CLIENT])  
         delete m_status[QSAMPLER_STATUS_CLIENT];  
     if (m_status[QSAMPLER_STATUS_SERVER])  
         delete m_status[QSAMPLER_STATUS_SERVER];  
     if (m_status[QSAMPLER_STATUS_CHANNEL])  
         delete m_status[QSAMPLER_STATUS_CHANNEL];  
     if (m_status[QSAMPLER_STATUS_SESSION])  
         delete m_status[QSAMPLER_STATUS_SESSION];  
187    
188      // Finally drop any widgets around...      // Finally drop any widgets around...
189        if (m_pDeviceForm)
190            delete m_pDeviceForm;
191      if (m_pMessages)      if (m_pMessages)
192          delete m_pMessages;          delete m_pMessages;
193      if (m_pWorkspace)      if (m_pWorkspace)
194          delete m_pWorkspace;          delete m_pWorkspace;
195    
196  #if defined(WIN32)      // Delete status item labels one by one.
197      WSACleanup();      if (m_statusItem[QSAMPLER_STATUS_CLIENT])
198  #endif          delete m_statusItem[QSAMPLER_STATUS_CLIENT];
199        if (m_statusItem[QSAMPLER_STATUS_SERVER])
200            delete m_statusItem[QSAMPLER_STATUS_SERVER];
201        if (m_statusItem[QSAMPLER_STATUS_CHANNEL])
202            delete m_statusItem[QSAMPLER_STATUS_CHANNEL];
203        if (m_statusItem[QSAMPLER_STATUS_SESSION])
204            delete m_statusItem[QSAMPLER_STATUS_SESSION];
205    
206        // Delete recentfiles menu.
207        if (m_pRecentFilesMenu)
208            delete m_pRecentFilesMenu;
209  }  }
210    
211    
# Line 205  void qsamplerMainForm::setup ( qsamplerO Line 215  void qsamplerMainForm::setup ( qsamplerO
215      // We got options?      // We got options?
216      m_pOptions = pOptions;      m_pOptions = pOptions;
217    
218        // What style do we create these forms?
219        WFlags wflags = Qt::WType_TopLevel;
220        if (m_pOptions->bKeepOnTop)
221            wflags |= Qt::WStyle_Tool;
222      // Some child forms are to be created right now.      // Some child forms are to be created right now.
223      m_pMessages = new qsamplerMessages(this);      m_pMessages = new qsamplerMessages(this);
224        m_pDeviceForm = new qsamplerDeviceForm(this, 0, wflags);
225        m_pDeviceForm->setMainForm(this); // An important life immutable!
226      // Set message defaults...      // Set message defaults...
227      updateMessagesFont();      updateMessagesFont();
228      updateMessagesLimit();      updateMessagesLimit();
# Line 235  void qsamplerMainForm::setup ( qsamplerO Line 251  void qsamplerMainForm::setup ( qsamplerO
251          QTextIStream istr(&sDockables);          QTextIStream istr(&sDockables);
252          istr >> *this;          istr >> *this;
253      }      }
254      // Try to restore old window positioning.      // Try to restore old window positioning and initial visibility.
255      m_pOptions->loadWidgetGeometry(this);      m_pOptions->loadWidgetGeometry(this);
256        m_pOptions->loadWidgetGeometry(m_pDeviceForm);
257    
258      // Final startup stabilization...      // Final startup stabilization...
259      updateRecentFilesMenu();      updateRecentFilesMenu();
# Line 274  bool qsamplerMainForm::queryClose (void) Line 291  bool qsamplerMainForm::queryClose (void)
291              QTextOStream ostr(&sDockables);              QTextOStream ostr(&sDockables);
292              ostr << *this;              ostr << *this;
293              m_pOptions->settings().writeEntry("/Layout/DockWindows", sDockables);              m_pOptions->settings().writeEntry("/Layout/DockWindows", sDockables);
294              // And the main windows state.              // And the children, and the main windows state,.
295              m_pOptions->saveWidgetGeometry(this);                          m_pOptions->saveWidgetGeometry(m_pDeviceForm);
296                            m_pOptions->saveWidgetGeometry(this);
297                            // Close popup widgets.
298                            if (m_pDeviceForm)
299                                    m_pDeviceForm->close();
300              // Stop client and/or server, gracefully.              // Stop client and/or server, gracefully.
301              stopServer();              stopServer();
302          }          }
# Line 305  bool qsamplerMainForm::decodeDragFiles ( Line 326  bool qsamplerMainForm::decodeDragFiles (
326          if (bDecode) {          if (bDecode) {
327              files = QStringList::split('\n', sText);              files = QStringList::split('\n', sText);
328              for (QStringList::Iterator iter = files.begin(); iter != files.end(); iter++)              for (QStringList::Iterator iter = files.begin(); iter != files.end(); iter++)
329                  *iter = (*iter).stripWhiteSpace().replace(QRegExp("^file:"), QString::null);                  *iter = QUrl((*iter).stripWhiteSpace().replace(QRegExp("^file:"), QString::null)).path();
330          }          }
331      }      }
332    
# Line 328  void qsamplerMainForm::dropEvent ( QDrop Line 349  void qsamplerMainForm::dropEvent ( QDrop
349      if (!decodeDragFiles(pDropEvent, files))      if (!decodeDragFiles(pDropEvent, files))
350          return;          return;
351    
352      for (QStringList::Iterator iter = files.begin(); iter != files.end(); iter++) {          for (QStringList::Iterator iter = files.begin(); iter != files.end(); iter++) {
353                  const QString& sPath = QUrl(*iter).path();                  const QString& sPath = *iter;
354                  if (qsamplerChannel::isInstrumentFile(sPath)) {                  if (qsamplerChannel::isInstrumentFile(sPath)) {
355                          // Try to create a new channel from instrument file...                          // Try to create a new channel from instrument file...
356                      qsamplerChannel *pChannel = new qsamplerChannel(this);                          qsamplerChannel *pChannel = new qsamplerChannel(this);
357                      if (pChannel == NULL)                          if (pChannel == NULL)
358                          return;                                  return;
359                          // Start setting the instrument filename...                          // Start setting the instrument filename...
360                          pChannel->setInstrument(sPath, 0);                          pChannel->setInstrument(sPath, 0);
361                      // Before we show it up, may be we'll                          // Before we show it up, may be we'll
362                      // better ask for some initial values?                          // better ask for some initial values?
363                      if (!pChannel->channelSetup(this)) {                          if (!pChannel->channelSetup(this)) {
364                          delete pChannel;                                  delete pChannel;
365                          return;                                  return;
366                      }                          }
367                      // Finally, give it to a new channel strip...                          // Finally, give it to a new channel strip...
368                          if (!createChannelStrip(pChannel)) {                          if (!createChannelStrip(pChannel)) {
369                          delete pChannel;                                  delete pChannel;
370                          return;                                  return;
371                          }                          }
372                      // Make that an overall update.                          // Make that an overall update.
373                      m_iDirtyCount++;                          m_iDirtyCount++;
374                      stabilizeForm();                          stabilizeForm();
375                  }   // Otherwise, load an usual session file (LSCP script)...                  }   // Otherwise, load an usual session file (LSCP script)...
376                  else if (closeSession(true))                  else if (closeSession(true))
377                          loadSessionFile(sPath);                          loadSessionFile(sPath);
# Line 369  void qsamplerMainForm::customEvent ( QCu Line 390  void qsamplerMainForm::customEvent ( QCu
390          appendMessagesColor(tr("Notify event: %1 data: %2")          appendMessagesColor(tr("Notify event: %1 data: %2")
391              .arg(::lscp_event_to_text(pEvent->event()))              .arg(::lscp_event_to_text(pEvent->event()))
392              .arg(pEvent->data()), "#996699");              .arg(pEvent->data()), "#996699");
393                    if (pEvent->event() == LSCP_EVENT_CHANNEL_INFO) {
394                            int iChannelID = pEvent->data().toInt();
395                            qsamplerChannelStrip *pChannelStrip = channelStrip(iChannelID);
396                            if (pChannelStrip)
397                                    channelStripChanged(pChannelStrip);
398                    }
399      }      }
400  }  }
401    
# Line 377  void qsamplerMainForm::customEvent ( QCu Line 404  void qsamplerMainForm::customEvent ( QCu
404  void qsamplerMainForm::contextMenuEvent( QContextMenuEvent *pEvent )  void qsamplerMainForm::contextMenuEvent( QContextMenuEvent *pEvent )
405  {  {
406      stabilizeForm();      stabilizeForm();
407        
408      editMenu->exec(pEvent->globalPos());      editMenu->exec(pEvent->globalPos());
409  }  }
410    
# Line 582  bool qsamplerMainForm::loadSessionFile ( Line 609  bool qsamplerMainForm::loadSessionFile (
609              if (::lscp_client_query(m_pClient, sCommand.latin1()) != LSCP_OK) {              if (::lscp_client_query(m_pClient, sCommand.latin1()) != LSCP_OK) {
610                  appendMessagesClient("lscp_client_query");                  appendMessagesClient("lscp_client_query");
611                  iErrors++;                  iErrors++;
                 break;  
612              }              }
613          }          }
614          // Try to make it snappy :)          // Try to make it snappy :)
# Line 592  bool qsamplerMainForm::loadSessionFile ( Line 618  bool qsamplerMainForm::loadSessionFile (
618      // Ok. we've read it.      // Ok. we've read it.
619      file.close();      file.close();
620    
     // Have we any errors?  
     if (iErrors > 0)  
         appendMessagesError(tr("Session could not be loaded\nfrom \"%1\".\n\nSorry.").arg(sFilename));  
   
621          // Now we'll try to create (update) the whole GUI session.          // Now we'll try to create (update) the whole GUI session.
622          updateSession();          updateSession();
623    
624            // Have we any errors?
625            if (iErrors > 0)
626                    appendMessagesError(tr("Session loaded with errors\nfrom \"%1\".\n\nSorry.").arg(sFilename));
627    
628      // Save as default session directory.      // Save as default session directory.
629      if (m_pOptions)      if (m_pOptions)
630          m_pOptions->sSessionDir = QFileInfo(sFilename).dirPath(true);          m_pOptions->sSessionDir = QFileInfo(sFilename).dirPath(true);
631      // We're not dirty anymore.          // We're not dirty anymore, if loaded without errors,
632      m_iDirtyCount = 0;          m_iDirtyCount = iErrors;
633      // Stabilize form...      // Stabilize form...
634      m_sFilename = sFilename;      m_sFilename = sFilename;
635      updateRecentFiles(sFilename);      updateRecentFiles(sFilename);
636      appendMessages(tr("Open session: \"%1\".").arg(sessionName(m_sFilename)));      appendMessages(tr("Open session: \"%1\".").arg(sessionName(m_sFilename)));
637        
638      // Make that an overall update.      // Make that an overall update.
639      stabilizeForm();      stabilizeForm();
640      return true;      return true;
# Line 626  bool qsamplerMainForm::saveSessionFile ( Line 652  bool qsamplerMainForm::saveSessionFile (
652      }      }
653    
654      // Write the file.      // Write the file.
655      int iErrors = 0;      int  iErrors = 0;
656      QTextStream ts(&file);      QTextStream ts(&file);
657      ts << "# " << QSAMPLER_TITLE " - " << tr(QSAMPLER_SUBTITLE) << endl;      ts << "# " << QSAMPLER_TITLE " - " << tr(QSAMPLER_SUBTITLE) << endl;
658      ts << "# " << tr("Version")      ts << "# " << tr("Version")
# Line 637  bool qsamplerMainForm::saveSessionFile ( Line 663  bool qsamplerMainForm::saveSessionFile (
663      ts << "# " << tr("File")      ts << "# " << tr("File")
664         << ": " << QFileInfo(sFilename).fileName() << endl;         << ": " << QFileInfo(sFilename).fileName() << endl;
665      ts << "# " << tr("Date")      ts << "# " << tr("Date")
666         << ": " << QDate::currentDate().toString("MMMM dd yyyy")         << ": " << QDate::currentDate().toString("MMM dd yyyy")
667         << " "  << QTime::currentTime().toString("hh:mm:ss") << endl;         << " "  << QTime::currentTime().toString("hh:mm:ss") << endl;
668      ts << "#"  << endl;      ts << "#"  << endl;
669      ts << endl;      ts << endl;
670            // It is assumed that this new kind of device+session file
671            // will be loaded from a complete
672            int *piDeviceIDs;
673            int  iDevice;
674            ts << "RESET" << endl;
675            // Audio device mapping.
676            QMap<int, int> audioDeviceMap;
677            piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Audio);
678            for (iDevice = 0; piDeviceIDs && piDeviceIDs[iDevice] >= 0; iDevice++) {
679                    ts << endl;
680                    qsamplerDevice device(this, qsamplerDevice::Audio, piDeviceIDs[iDevice]);
681                    // Audio device specification...
682                    ts << "# " << device.deviceTypeName() << " " << device.driverName()
683                            << " " << tr("Device") << " " << iDevice << endl;
684                    ts << "CREATE AUDIO_OUTPUT_DEVICE " << device.driverName();
685                    qsamplerDeviceParamMap::ConstIterator deviceParam;
686                    for (deviceParam = device.params().begin();
687                                    deviceParam != device.params().end();
688                                            ++deviceParam) {
689                            const qsamplerDeviceParam& param = deviceParam.data();
690                            if (param.value.isEmpty()) ts << "# ";
691                            ts << " " << deviceParam.key() << "='" << param.value << "'";
692                    }
693                    ts << endl;
694                    // Audio channel parameters...
695                    int iPort = 0;
696                    for (qsamplerDevicePort *pPort = device.ports().first();
697                                    pPort;
698                                            pPort = device.ports().next(), ++iPort) {
699                            qsamplerDeviceParamMap::ConstIterator portParam;
700                            for (portParam = pPort->params().begin();
701                                            portParam != pPort->params().end();
702                                                    ++portParam) {
703                                    const qsamplerDeviceParam& param = portParam.data();
704                                    if (param.fix || param.value.isEmpty()) ts << "# ";
705                                    ts << "SET AUDIO_OUTPUT_CHANNEL_PARAMETER " << iDevice
706                                            << " " << iPort << " " << portParam.key()
707                                            << "='" << param.value << "'" << endl;
708                            }
709                    }
710                    // Audio device index/id mapping.
711                    audioDeviceMap[device.deviceID()] = iDevice;
712            // Try to keep it snappy :)
713            QApplication::eventLoop()->processEvents(QEventLoop::ExcludeUserInput);
714            }
715            // MIDI device mapping.
716            QMap<int, int> midiDeviceMap;
717            piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Midi);
718            for (iDevice = 0; piDeviceIDs && piDeviceIDs[iDevice] >= 0; iDevice++) {
719                    ts << endl;
720                    qsamplerDevice device(this, qsamplerDevice::Midi, piDeviceIDs[iDevice]);
721                    // MIDI device specification...
722                    ts << "# " << device.deviceTypeName() << " " << device.driverName()
723                            << " " << tr("Device") << " " << iDevice << endl;
724                    ts << "CREATE MIDI_INPUT_DEVICE " << device.driverName();
725                    qsamplerDeviceParamMap::ConstIterator deviceParam;
726                    for (deviceParam = device.params().begin();
727                                    deviceParam != device.params().end();
728                                            ++deviceParam) {
729                            const qsamplerDeviceParam& param = deviceParam.data();
730                            if (param.value.isEmpty()) ts << "# ";
731                            ts << " " << deviceParam.key() << "='" << param.value << "'";
732                    }
733                    ts << endl;
734                    // MIDI port parameters...
735                    int iPort = 0;
736                    for (qsamplerDevicePort *pPort = device.ports().first();
737                                    pPort;
738                                            pPort = device.ports().next(), ++iPort) {
739                            qsamplerDeviceParamMap::ConstIterator portParam;
740                            for (portParam = pPort->params().begin();
741                                            portParam != pPort->params().end();
742                                                    ++portParam) {
743                                    const qsamplerDeviceParam& param = portParam.data();
744                                    if (param.fix || param.value.isEmpty()) ts << "# ";
745                                    ts << "SET MIDI_INPUT_PORT_PARAMETER " << iDevice
746                                       << " " << iPort << " " << portParam.key()
747                                       << "='" << param.value << "'" << endl;
748                            }
749                    }
750                    // MIDI device index/id mapping.
751                    midiDeviceMap[device.deviceID()] = iDevice;
752            // Try to keep it snappy :)
753            QApplication::eventLoop()->processEvents(QEventLoop::ExcludeUserInput);
754            }
755            ts << endl;
756            // Sampler channel mapping.
757      QWidgetList wlist = m_pWorkspace->windowList();      QWidgetList wlist = m_pWorkspace->windowList();
758      for (int iChannel = 0; iChannel < (int) wlist.count(); iChannel++) {      for (int iChannel = 0; iChannel < (int) wlist.count(); iChannel++) {
759          qsamplerChannelStrip *pChannelStrip = (qsamplerChannelStrip *) wlist.at(iChannel);          qsamplerChannelStrip *pChannelStrip = (qsamplerChannelStrip *) wlist.at(iChannel);
760          if (pChannelStrip) {          if (pChannelStrip) {
761              qsamplerChannel *pChannel = pChannelStrip->channel();              qsamplerChannel *pChannel = pChannelStrip->channel();
762              if (pChannel) {              if (pChannel) {
763                  int iChannelID = pChannel->channelID();                  ts << "# " << tr("Channel") << " " << iChannel << endl;
                 ts << "# " << pChannelStrip->caption() << endl;  
764                  ts << "ADD CHANNEL" << endl;                  ts << "ADD CHANNEL" << endl;
765                  ts << "SET CHANNEL AUDIO_OUTPUT_TYPE " << iChannelID << " " << pChannel->audioDriver() << endl;                                  if (audioDeviceMap.isEmpty()) {
766                  ts << "SET CHANNEL MIDI_INPUT_TYPE " << iChannelID << " " << pChannel->midiDriver() << endl;                                          ts << "SET CHANNEL AUDIO_OUTPUT_TYPE " << iChannel
767                  ts << "SET CHANNEL MIDI_INPUT_PORT " << iChannelID << " " << pChannel->midiPort() << endl;                                                  << " " << pChannel->audioDriver() << endl;
768                  ts << "SET CHANNEL MIDI_INPUT_CHANNEL " << iChannelID << " ";                                  } else {
769                                            ts << "SET CHANNEL AUDIO_OUTPUT_DEVICE " << iChannel
770                                                    << " " << audioDeviceMap[pChannel->audioDevice()] << endl;
771                                    }
772                                    if (midiDeviceMap.isEmpty()) {
773                                            ts << "SET CHANNEL MIDI_INPUT_TYPE " << iChannel
774                                                    << " " << pChannel->midiDriver() << endl;
775                                    } else {
776                                            ts << "SET CHANNEL MIDI_INPUT_DEVICE " << iChannel
777                                                    << " " << midiDeviceMap[pChannel->midiDevice()] << endl;
778                                    }
779                                    ts << "SET CHANNEL MIDI_INPUT_PORT " << iChannel
780                                            << " " << pChannel->midiPort() << endl;
781                    ts << "SET CHANNEL MIDI_INPUT_CHANNEL " << iChannel << " ";
782                  if (pChannel->midiChannel() == LSCP_MIDI_CHANNEL_ALL)                  if (pChannel->midiChannel() == LSCP_MIDI_CHANNEL_ALL)
783                      ts << "ALL";                      ts << "ALL";
784                  else                  else
785                      ts << pChannel->midiChannel();                      ts << pChannel->midiChannel();
786                  ts << endl;                  ts << endl;
787                  ts << "LOAD ENGINE " << pChannel->engineName() << " " << iChannelID << endl;                  ts << "LOAD ENGINE " << pChannel->engineName() << " " << iChannel << endl;
788                  ts << "LOAD INSTRUMENT NON_MODAL '" << pChannel->instrumentFile() << "' " << pChannel->instrumentNr() << " " << iChannelID << endl;                  ts << "LOAD INSTRUMENT NON_MODAL '" << pChannel->instrumentFile() << "' " << pChannel->instrumentNr() << " " << iChannel << endl;
789                  ts << "SET CHANNEL VOLUME " << iChannelID << " " << pChannel->volume() << endl;                  ts << "SET CHANNEL VOLUME " << iChannel << " " << pChannel->volume() << endl;
790                  ts << endl;                  ts << endl;
791              }              }
792          }          }
# Line 690  bool qsamplerMainForm::saveSessionFile ( Line 815  bool qsamplerMainForm::saveSessionFile (
815  }  }
816    
817    
818    // Session change receiver slot.
819    void qsamplerMainForm::sessionDirty (void)
820    {
821        // Just mark the dirty form.
822        m_iDirtyCount++;
823        // and update the form status...
824        stabilizeForm();
825    }
826    
827    
828  //-------------------------------------------------------------------------  //-------------------------------------------------------------------------
829  // qsamplerMainForm -- File Action slots.  // qsamplerMainForm -- File Action slots.
830    
# Line 747  void qsamplerMainForm::fileReset (void) Line 882  void qsamplerMainForm::fileReset (void)
882          tr("Resetting the sampler instance will close\n"          tr("Resetting the sampler instance will close\n"
883             "all device and channel configurations.\n\n"             "all device and channel configurations.\n\n"
884             "Please note that this operation may cause\n"             "Please note that this operation may cause\n"
885             "temporary MIDI and Audio disruption\n\n"             "temporary MIDI and Audio disruption.\n\n"
886             "Do you want to reset the sampler engine now?"),             "Do you want to reset the sampler engine now?"),
887          tr("Reset"), tr("Cancel")) > 0)          tr("Reset"), tr("Cancel")) > 0)
888          return;          return;
# Line 772  void qsamplerMainForm::fileRestart (void Line 907  void qsamplerMainForm::fileRestart (void
907  {  {
908      if (m_pOptions == NULL)      if (m_pOptions == NULL)
909          return;          return;
910            
911      bool bRestart = true;      bool bRestart = true;
912        
913      // Ask user whether he/she want's a complete restart...      // Ask user whether he/she want's a complete restart...
914      // (if we're currently up and running)      // (if we're currently up and running)
915      if (bRestart && m_pClient) {      if (bRestart && m_pClient) {
# Line 782  void qsamplerMainForm::fileRestart (void Line 917  void qsamplerMainForm::fileRestart (void
917              tr("New settings will be effective after\n"              tr("New settings will be effective after\n"
918                 "restarting the client/server connection.\n\n"                 "restarting the client/server connection.\n\n"
919                 "Please note that this operation may cause\n"                 "Please note that this operation may cause\n"
920                 "temporary MIDI and Audio disruption\n\n"                 "temporary MIDI and Audio disruption.\n\n"
921                 "Do you want to restart the connection now?"),                 "Do you want to restart the connection now?"),
922              tr("Restart"), tr("Cancel")) == 0);              tr("Restart"), tr("Cancel")) == 0);
923      }      }
# Line 825  void qsamplerMainForm::editAddChannel (v Line 960  void qsamplerMainForm::editAddChannel (v
960          delete pChannel;          delete pChannel;
961          return;          return;
962      }      }
963        
964      // And give it to the strip (will own the channel instance, if successful).      // And give it to the strip (will own the channel instance, if successful).
965      if (!createChannelStrip(pChannel)) {      if (!createChannelStrip(pChannel)) {
966          delete pChannel;          delete pChannel;
# Line 847  void qsamplerMainForm::editRemoveChannel Line 982  void qsamplerMainForm::editRemoveChannel
982      qsamplerChannelStrip *pChannelStrip = activeChannelStrip();      qsamplerChannelStrip *pChannelStrip = activeChannelStrip();
983      if (pChannelStrip == NULL)      if (pChannelStrip == NULL)
984          return;          return;
985            
986      qsamplerChannel *pChannel = pChannelStrip->channel();      qsamplerChannel *pChannel = pChannelStrip->channel();
987      if (pChannel == NULL)      if (pChannel == NULL)
988          return;          return;
# Line 869  void qsamplerMainForm::editRemoveChannel Line 1004  void qsamplerMainForm::editRemoveChannel
1004    
1005      // Just delete the channel strip.      // Just delete the channel strip.
1006      delete pChannelStrip;      delete pChannelStrip;
1007        
1008      // Do we auto-arrange?      // Do we auto-arrange?
1009      if (m_pOptions && m_pOptions->bAutoArrange)      if (m_pOptions && m_pOptions->bAutoArrange)
1010          channelsArrange();          channelsArrange();
# Line 913  void qsamplerMainForm::editResetChannel Line 1048  void qsamplerMainForm::editResetChannel
1048  // Reset all sampler channels.  // Reset all sampler channels.
1049  void qsamplerMainForm::editResetAllChannels (void)  void qsamplerMainForm::editResetAllChannels (void)
1050  {  {
1051      if (m_pClient == NULL)          if (m_pClient == NULL)
1052          return;                  return;
1053    
1054      // Invoque the channel strip procedure,          // Invoque the channel strip procedure,
1055          // for all channels out there...          // for all channels out there...
1056      m_pWorkspace->setUpdatesEnabled(false);          m_pWorkspace->setUpdatesEnabled(false);
1057      QWidgetList wlist = m_pWorkspace->windowList();          QWidgetList wlist = m_pWorkspace->windowList();
1058      for (int iChannel = 0; iChannel < (int) wlist.count(); iChannel++) {          for (int iChannel = 0; iChannel < (int) wlist.count(); iChannel++) {
1059          qsamplerChannelStrip *pChannelStrip = (qsamplerChannelStrip *) wlist.at(iChannel);                  qsamplerChannelStrip *pChannelStrip = (qsamplerChannelStrip *) wlist.at(iChannel);
1060          if (pChannelStrip)                  if (pChannelStrip)
1061                  pChannelStrip->channelReset();                          pChannelStrip->channelReset();
1062      }          }
1063      m_pWorkspace->setUpdatesEnabled(true);          m_pWorkspace->setUpdatesEnabled(true);
1064  }  }
1065    
1066    
# Line 977  void qsamplerMainForm::viewMessages ( bo Line 1112  void qsamplerMainForm::viewMessages ( bo
1112  }  }
1113    
1114    
1115    // Show/hide the device configurator form.
1116    void qsamplerMainForm::viewDevices (void)
1117    {
1118            if (m_pOptions == NULL)
1119                    return;
1120    
1121            if (m_pDeviceForm) {
1122                    m_pOptions->saveWidgetGeometry(m_pDeviceForm);
1123                    m_pDeviceForm->setClient(m_pClient);
1124                    if (m_pDeviceForm->isVisible()) {
1125                            m_pDeviceForm->hide();
1126                    } else {
1127                            m_pDeviceForm->show();
1128                            m_pDeviceForm->raise();
1129                            m_pDeviceForm->setActiveWindow();
1130                    }
1131            }
1132    }
1133    
1134    
1135  // Show options dialog.  // Show options dialog.
1136  void qsamplerMainForm::viewOptions (void)  void qsamplerMainForm::viewOptions (void)
1137  {  {
# Line 1001  void qsamplerMainForm::viewOptions (void Line 1156  void qsamplerMainForm::viewOptions (void
1156          bool    bOldDisplayEffect   = m_pOptions->bDisplayEffect;          bool    bOldDisplayEffect   = m_pOptions->bDisplayEffect;
1157          int     iOldMaxVolume       = m_pOptions->iMaxVolume;          int     iOldMaxVolume       = m_pOptions->iMaxVolume;
1158          QString sOldMessagesFont    = m_pOptions->sMessagesFont;          QString sOldMessagesFont    = m_pOptions->sMessagesFont;
1159            bool    bOldKeepOnTop       = m_pOptions->bKeepOnTop;
1160          bool    bOldStdoutCapture   = m_pOptions->bStdoutCapture;          bool    bOldStdoutCapture   = m_pOptions->bStdoutCapture;
1161          int     bOldMessagesLimit   = m_pOptions->bMessagesLimit;          int     bOldMessagesLimit   = m_pOptions->bMessagesLimit;
1162          int     iOldMessagesLimitLines = m_pOptions->iMessagesLimitLines;          int     iOldMessagesLimitLines = m_pOptions->iMessagesLimitLines;
# Line 1013  void qsamplerMainForm::viewOptions (void Line 1169  void qsamplerMainForm::viewOptions (void
1169          if (pOptionsForm->exec()) {          if (pOptionsForm->exec()) {
1170              // Warn if something will be only effective on next run.              // Warn if something will be only effective on next run.
1171              if (( bOldStdoutCapture && !m_pOptions->bStdoutCapture) ||              if (( bOldStdoutCapture && !m_pOptions->bStdoutCapture) ||
1172                  (!bOldStdoutCapture &&  m_pOptions->bStdoutCapture)) {                  (!bOldStdoutCapture &&  m_pOptions->bStdoutCapture) ||
1173                    ( bOldKeepOnTop     && !m_pOptions->bKeepOnTop)     ||
1174                    (!bOldKeepOnTop     &&  m_pOptions->bKeepOnTop)) {
1175                  QMessageBox::information(this, tr("Information"),                  QMessageBox::information(this, tr("Information"),
1176                      tr("Some settings may be only effective\n"                      tr("Some settings may be only effective\n"
1177                         "next time you start this program."), tr("OK"));                         "next time you start this program."), tr("OK"));
# Line 1088  void qsamplerMainForm::channelsArrange ( Line 1246  void qsamplerMainForm::channelsArrange (
1246          y += iHeight;          y += iHeight;
1247      }      }
1248      m_pWorkspace->setUpdatesEnabled(true);      m_pWorkspace->setUpdatesEnabled(true);
1249        
1250      stabilizeForm();      stabilizeForm();
1251  }  }
1252    
# Line 1147  void qsamplerMainForm::helpAbout (void) Line 1305  void qsamplerMainForm::helpAbout (void)
1305      sText += ::lscp_client_package();      sText += ::lscp_client_package();
1306      sText += " ";      sText += " ";
1307      sText += ::lscp_client_version();      sText += ::lscp_client_version();
1308    #ifdef CONFIG_LIBGIG
1309        sText += ", ";
1310        sText += gig::libraryName();
1311        sText += " ";
1312        sText += gig::libraryVersion();
1313    #endif
1314      sText += "<br />\n";      sText += "<br />\n";
1315      sText += "<br />\n";      sText += "<br />\n";
1316      sText += tr("Website") + ": <a href=\"" QSAMPLER_WEBSITE "\">" QSAMPLER_WEBSITE "</a><br />\n";      sText += tr("Website") + ": <a href=\"" QSAMPLER_WEBSITE "\">" QSAMPLER_WEBSITE "</a><br />\n";
# Line 1169  void qsamplerMainForm::helpAbout (void) Line 1333  void qsamplerMainForm::helpAbout (void)
1333  void qsamplerMainForm::stabilizeForm (void)  void qsamplerMainForm::stabilizeForm (void)
1334  {  {
1335      // Update the main application caption...      // Update the main application caption...
1336      QString sSessioName = sessionName(m_sFilename);      QString sSessionName = sessionName(m_sFilename);
1337      if (m_iDirtyCount > 0)      if (m_iDirtyCount > 0)
1338          sSessioName += '*';          sSessionName += '*';
1339      setCaption(tr(QSAMPLER_TITLE " - [%1]").arg(sSessioName));      setCaption(tr(QSAMPLER_TITLE " - [%1]").arg(sSessionName));
1340    
1341      // Update the main menu state...      // Update the main menu state...
1342      qsamplerChannelStrip *pChannelStrip = activeChannelStrip();      qsamplerChannelStrip *pChannelStrip = activeChannelStrip();
# Line 1189  void qsamplerMainForm::stabilizeForm (vo Line 1353  void qsamplerMainForm::stabilizeForm (vo
1353      editSetupChannelAction->setEnabled(bHasChannel);      editSetupChannelAction->setEnabled(bHasChannel);
1354      editResetChannelAction->setEnabled(bHasChannel);      editResetChannelAction->setEnabled(bHasChannel);
1355      editResetAllChannelsAction->setEnabled(bHasChannel);      editResetAllChannelsAction->setEnabled(bHasChannel);
     channelsArrangeAction->setEnabled(bHasChannel);  
1356      viewMessagesAction->setOn(m_pMessages && m_pMessages->isVisible());      viewMessagesAction->setOn(m_pMessages && m_pMessages->isVisible());
1357        viewDevicesAction->setOn(m_pDeviceForm && m_pDeviceForm->isVisible());
1358        viewDevicesAction->setEnabled(bHasClient);
1359        channelsArrangeAction->setEnabled(bHasChannel);
1360    
1361      // Client/Server status...      // Client/Server status...
1362      if (bHasClient) {      if (bHasClient) {
1363          m_status[QSAMPLER_STATUS_CLIENT]->setText(tr("Connected"));          m_statusItem[QSAMPLER_STATUS_CLIENT]->setText(tr("Connected"));
1364          m_status[QSAMPLER_STATUS_SERVER]->setText(m_pOptions->sServerHost + ":" + QString::number(m_pOptions->iServerPort));          m_statusItem[QSAMPLER_STATUS_SERVER]->setText(m_pOptions->sServerHost + ":" + QString::number(m_pOptions->iServerPort));
1365      } else {      } else {
1366          m_status[QSAMPLER_STATUS_CLIENT]->clear();          m_statusItem[QSAMPLER_STATUS_CLIENT]->clear();
1367          m_status[QSAMPLER_STATUS_SERVER]->clear();          m_statusItem[QSAMPLER_STATUS_SERVER]->clear();
1368      }      }
1369      // Channel status...      // Channel status...
1370      if (bHasChannel)      if (bHasChannel)
1371          m_status[QSAMPLER_STATUS_CHANNEL]->setText(pChannelStrip->caption());          m_statusItem[QSAMPLER_STATUS_CHANNEL]->setText(pChannelStrip->caption());
1372      else      else
1373          m_status[QSAMPLER_STATUS_CHANNEL]->clear();          m_statusItem[QSAMPLER_STATUS_CHANNEL]->clear();
1374      // Session status...      // Session status...
1375      if (m_iDirtyCount > 0)      if (m_iDirtyCount > 0)
1376          m_status[QSAMPLER_STATUS_SESSION]->setText(tr("MOD"));          m_statusItem[QSAMPLER_STATUS_SESSION]->setText(tr("MOD"));
1377      else      else
1378          m_status[QSAMPLER_STATUS_SESSION]->clear();          m_statusItem[QSAMPLER_STATUS_SESSION]->clear();
1379    
1380      // Recent files menu.      // Recent files menu.
1381      m_pRecentFilesMenu->setEnabled(bHasClient && m_pOptions->recentFiles.count() > 0);      m_pRecentFilesMenu->setEnabled(bHasClient && m_pOptions->recentFiles.count() > 0);
# Line 1224  void qsamplerMainForm::stabilizeForm (vo Line 1390  void qsamplerMainForm::stabilizeForm (vo
1390  void qsamplerMainForm::channelStripChanged( qsamplerChannelStrip *pChannelStrip )  void qsamplerMainForm::channelStripChanged( qsamplerChannelStrip *pChannelStrip )
1391  {  {
1392          // Add this strip to the changed list...          // Add this strip to the changed list...
1393          if (m_changedStrips.containsRef(pChannelStrip) == 0)          if (m_changedStrips.containsRef(pChannelStrip) == 0) {
1394                  m_changedStrips.append(pChannelStrip);                  m_changedStrips.append(pChannelStrip);
1395                    pChannelStrip->resetErrorCount();
1396            }
1397    
1398      // Just mark the dirty form.      // Just mark the dirty form.
1399      m_iDirtyCount++;      m_iDirtyCount++;
# Line 1257  void qsamplerMainForm::updateSession (vo Line 1425  void qsamplerMainForm::updateSession (vo
1425                  QApplication::eventLoop()->processEvents(QEventLoop::ExcludeUserInput);                  QApplication::eventLoop()->processEvents(QEventLoop::ExcludeUserInput);
1426          }          }
1427          m_pWorkspace->setUpdatesEnabled(true);          m_pWorkspace->setUpdatesEnabled(true);
1428            
1429            // Remember to refresh devices
1430            if (m_pDeviceForm)
1431                m_pDeviceForm->refreshDevices();
1432  }  }
1433    
1434    
# Line 1467  void qsamplerMainForm::updateMessagesLim Line 1639  void qsamplerMainForm::updateMessagesLim
1639          if (m_pOptions->bMessagesLimit)          if (m_pOptions->bMessagesLimit)
1640              m_pMessages->setMessagesLimit(m_pOptions->iMessagesLimitLines);              m_pMessages->setMessagesLimit(m_pOptions->iMessagesLimitLines);
1641          else          else
1642              m_pMessages->setMessagesLimit(0);              m_pMessages->setMessagesLimit(-1);
1643      }      }
1644  }  }
1645    
# Line 1511  qsamplerChannelStrip *qsamplerMainForm:: Line 1683  qsamplerChannelStrip *qsamplerMainForm::
1683      pChannelStrip = new qsamplerChannelStrip(m_pWorkspace, 0, wflags);      pChannelStrip = new qsamplerChannelStrip(m_pWorkspace, 0, wflags);
1684      if (pChannelStrip == NULL)      if (pChannelStrip == NULL)
1685          return NULL;          return NULL;
1686            
1687      // Actual channel strip setup...      // Actual channel strip setup...
1688      pChannelStrip->setup(pChannel);      pChannelStrip->setup(pChannel);
1689      QObject::connect(pChannelStrip, SIGNAL(channelChanged(qsamplerChannelStrip *)), this, SLOT(channelStripChanged(qsamplerChannelStrip *)));      QObject::connect(pChannelStrip, SIGNAL(channelChanged(qsamplerChannelStrip *)), this, SLOT(channelStripChanged(qsamplerChannelStrip *)));
# Line 1569  qsamplerChannelStrip *qsamplerMainForm:: Line 1741  qsamplerChannelStrip *qsamplerMainForm::
1741          QWidgetList wlist = m_pWorkspace->windowList();          QWidgetList wlist = m_pWorkspace->windowList();
1742          if (wlist.isEmpty())          if (wlist.isEmpty())
1743                  return NULL;                  return NULL;
1744            
1745          for (int iChannel = 0; iChannel < (int) wlist.count(); iChannel++) {          for (int iChannel = 0; iChannel < (int) wlist.count(); iChannel++) {
1746                  qsamplerChannelStrip *pChannelStrip = (qsamplerChannelStrip *) wlist.at(iChannel);                  qsamplerChannelStrip *pChannelStrip = (qsamplerChannelStrip *) wlist.at(iChannel);
1747                  if (pChannelStrip) {                  if (pChannelStrip) {
# Line 1650  void qsamplerMainForm::timerSlot (void) Line 1822  void qsamplerMainForm::timerSlot (void)
1822              }              }
1823          }          }
1824      }      }
1825        
1826          // Refresh each channel usage, on each period...          // Refresh each channel usage, on each period...
1827      if (m_pClient && (m_changedStrips.count() > 0 || m_pOptions->bAutoRefresh)) {          if (m_pClient && (m_changedStrips.count() > 0 || m_pOptions->bAutoRefresh)) {
1828          m_iTimerSlot += QSAMPLER_TIMER_MSECS;                  m_iTimerSlot += QSAMPLER_TIMER_MSECS;
1829          if (m_iTimerSlot >= m_pOptions->iAutoRefreshTime && m_pWorkspace->isUpdatesEnabled())  {                  if (m_iTimerSlot >= m_pOptions->iAutoRefreshTime && m_pWorkspace->isUpdatesEnabled())  {
1830              m_iTimerSlot = 0;                          m_iTimerSlot = 0;
1831              // Update the channel information for each pending strip...                          // Update the channel information for each pending strip...
1832              for (qsamplerChannelStrip *pChannelStrip = m_changedStrips.first();                          for (qsamplerChannelStrip *pChannelStrip = m_changedStrips.first();
1833                      pChannelStrip;                                          pChannelStrip;
1834                                                  pChannelStrip = m_changedStrips.next()) {                                                  pChannelStrip = m_changedStrips.next()) {
1835                                  // If successfull, remove from pending list...                                  // If successfull, remove from pending list...
1836                                  if (pChannelStrip->updateChannelInfo())                                  if (pChannelStrip->updateChannelInfo())
1837                      m_changedStrips.remove(pChannelStrip);                                          m_changedStrips.remove(pChannelStrip);
1838                          }                          }
1839              // Update the channel stream usage for each strip...                          // Update the channel stream usage for each strip...
1840              QWidgetList wlist = m_pWorkspace->windowList();                          QWidgetList wlist = m_pWorkspace->windowList();
1841              for (int iChannel = 0; iChannel < (int) wlist.count(); iChannel++) {                          for (int iChannel = 0; iChannel < (int) wlist.count(); iChannel++) {
1842                  qsamplerChannelStrip *pChannelStrip = (qsamplerChannelStrip *) wlist.at(iChannel);                                  qsamplerChannelStrip *pChannelStrip = (qsamplerChannelStrip *) wlist.at(iChannel);
1843                  if (pChannelStrip && pChannelStrip->isVisible())                                  if (pChannelStrip && pChannelStrip->isVisible())
1844                      pChannelStrip->updateChannelUsage();                                          pChannelStrip->updateChannelUsage();
1845              }                          }
1846          }                  }
1847      }          }
1848    
1849      // Register the next timer slot.      // Register the next timer slot.
1850      QTimer::singleShot(QSAMPLER_TIMER_MSECS, this, SLOT(timerSlot()));      QTimer::singleShot(QSAMPLER_TIMER_MSECS, this, SLOT(timerSlot()));
# Line 1853  bool qsamplerMainForm::startClient (void Line 2025  bool qsamplerMainForm::startClient (void
2025      ::lscp_client_set_timeout(m_pClient, m_pOptions->iServerTimeout);      ::lscp_client_set_timeout(m_pClient, m_pOptions->iServerTimeout);
2026      appendMessages(tr("Client receive timeout is set to %1 msec.").arg(::lscp_client_get_timeout(m_pClient)));      appendMessages(tr("Client receive timeout is set to %1 msec.").arg(::lscp_client_get_timeout(m_pClient)));
2027    
2028            // Subscribe to channel info change notifications...
2029            if (::lscp_client_subscribe(m_pClient, LSCP_EVENT_CHANNEL_INFO) != LSCP_OK)
2030                    appendMessagesClient("lscp_client_subscribe");
2031    
2032      // We may stop scheduling around.      // We may stop scheduling around.
2033      stopSchedule();      stopSchedule();
2034    
# Line 1862  bool qsamplerMainForm::startClient (void Line 2038  bool qsamplerMainForm::startClient (void
2038      // Log success here.      // Log success here.
2039      appendMessages(tr("Client connected."));      appendMessages(tr("Client connected."));
2040    
2041            // Hard-notify device configuration form,
2042            // if visible, that we're ready...
2043            if (m_pDeviceForm && m_pDeviceForm->isVisible())
2044                m_pDeviceForm->setClient(m_pClient);
2045    
2046      // Is any session pending to be loaded?      // Is any session pending to be loaded?
2047      if (!m_pOptions->sSessionFile.isEmpty()) {      if (!m_pOptions->sSessionFile.isEmpty()) {
2048          // Just load the prabably startup session...          // Just load the prabably startup session...
# Line 1882  void qsamplerMainForm::stopClient (void) Line 2063  void qsamplerMainForm::stopClient (void)
2063      if (m_pClient == NULL)      if (m_pClient == NULL)
2064          return;          return;
2065    
2066            // Hard-notify device configuration form,
2067            // if visible, that we're running out...
2068            if (m_pDeviceForm && m_pDeviceForm->isVisible())
2069                m_pDeviceForm->setClient(NULL);
2070    
2071      // Log prepare here.      // Log prepare here.
2072      appendMessages(tr("Client disconnecting..."));      appendMessages(tr("Client disconnecting..."));
2073    
# Line 1896  void qsamplerMainForm::stopClient (void) Line 2082  void qsamplerMainForm::stopClient (void)
2082      // channels from the back-end server.      // channels from the back-end server.
2083      m_iDirtyCount = 0;      m_iDirtyCount = 0;
2084      closeSession(false);      closeSession(false);
2085        
2086      // Close us as a client...      // Close us as a client...
2087      lscp_client_destroy(m_pClient);          ::lscp_client_unsubscribe(m_pClient, LSCP_EVENT_CHANNEL_INFO);
2088        ::lscp_client_destroy(m_pClient);
2089      m_pClient = NULL;      m_pClient = NULL;
2090    
2091      // Log final here.      // Log final here.

Legend:
Removed from v.404  
changed lines
  Added in v.662

  ViewVC Help
Powered by ViewVC