/[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 470 by capela, Wed Mar 16 22:07:14 2005 UTC revision 519 by schoenebeck, Sun May 8 17:04:10 2005 UTC
# Line 51  Line 51 
51  #include <signal.h>  #include <signal.h>
52  #endif  #endif
53    
54    #if 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 218  void qsamplerMainForm::setup ( qsamplerO Line 222  void qsamplerMainForm::setup ( qsamplerO
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);      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 666  bool qsamplerMainForm::saveSessionFile ( Line 671  bool qsamplerMainForm::saveSessionFile (
671          piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Audio);          piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Audio);
672          for (iDevice = 0; piDeviceIDs && piDeviceIDs[iDevice] >= 0; iDevice++) {          for (iDevice = 0; piDeviceIDs && piDeviceIDs[iDevice] >= 0; iDevice++) {
673                  ts << endl;                  ts << endl;
674                  qsamplerDevice device(m_pClient, qsamplerDevice::Audio, piDeviceIDs[iDevice]);                  qsamplerDevice device(this, qsamplerDevice::Audio, piDeviceIDs[iDevice]);
675                  // Audio device specification...                  // Audio device specification...
676                  ts << "# " << device.deviceTypeName() << " " << device.driverName()                  ts << "# " << device.deviceTypeName() << " " << device.driverName()
677                     << " " << tr("Device") << " " << iDevice << endl;                     << " " << tr("Device") << " " << iDevice << endl;
# Line 676  bool qsamplerMainForm::saveSessionFile ( Line 681  bool qsamplerMainForm::saveSessionFile (
681                                  deviceParam != device.params().end();                                  deviceParam != device.params().end();
682                                          ++deviceParam) {                                          ++deviceParam) {
683                          const qsamplerDeviceParam& param = deviceParam.data();                          const qsamplerDeviceParam& param = deviceParam.data();
684                          if (!param.fix && !param.value.isEmpty())                          if (param.value.isEmpty()) ts << "# ";
685                                  ts << " " << deviceParam.key() << "='" << param.value << "'";                          ts << " " << deviceParam.key() << "='" << param.value << "'";
686                  }                  }
687                  ts << endl;                  ts << endl;
688                  // Audio channel parameters...                  // Audio channel parameters...
# Line 690  bool qsamplerMainForm::saveSessionFile ( Line 695  bool qsamplerMainForm::saveSessionFile (
695                                          portParam != pPort->params().end();                                          portParam != pPort->params().end();
696                                                  ++portParam) {                                                  ++portParam) {
697                                  const qsamplerDeviceParam& param = portParam.data();                                  const qsamplerDeviceParam& param = portParam.data();
698                                  if (!param.fix && !param.value.isEmpty()) {                                  if (param.fix || param.value.isEmpty()) ts << "# ";
699                                          ts << "SET AUDIO_OUTPUT_CHANNEL_PARAMETER " << iDevice                                  ts << "SET AUDIO_OUTPUT_CHANNEL_PARAMETER " << iDevice
700                                             << " " << iPort << " " << portParam.key()                                     << " " << iPort << " " << portParam.key()
701                                             << "='" << param.value << "'" << endl;                                     << "='" << param.value << "'" << endl;
                                 }  
702                          }                          }
703                  }                  }
704                  // Audio device index/id mapping.                  // Audio device index/id mapping.
# Line 707  bool qsamplerMainForm::saveSessionFile ( Line 711  bool qsamplerMainForm::saveSessionFile (
711          piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Midi);          piDeviceIDs = qsamplerDevice::getDevices(m_pClient, qsamplerDevice::Midi);
712          for (iDevice = 0; piDeviceIDs && piDeviceIDs[iDevice] >= 0; iDevice++) {          for (iDevice = 0; piDeviceIDs && piDeviceIDs[iDevice] >= 0; iDevice++) {
713                  ts << endl;                  ts << endl;
714                  qsamplerDevice device(m_pClient, qsamplerDevice::Midi, piDeviceIDs[iDevice]);                  qsamplerDevice device(this, qsamplerDevice::Midi, piDeviceIDs[iDevice]);
715                  // MIDI device specification...                  // MIDI device specification...
716          ts << "# " << device.deviceTypeName() << " " << device.driverName()          ts << "# " << device.deviceTypeName() << " " << device.driverName()
717                     << " " << tr("Device") << " " << iDevice << endl;                     << " " << tr("Device") << " " << iDevice << endl;
# Line 717  bool qsamplerMainForm::saveSessionFile ( Line 721  bool qsamplerMainForm::saveSessionFile (
721                                  deviceParam != device.params().end();                                  deviceParam != device.params().end();
722                                          ++deviceParam) {                                          ++deviceParam) {
723                          const qsamplerDeviceParam& param = deviceParam.data();                          const qsamplerDeviceParam& param = deviceParam.data();
724                          if (!param.fix && !param.value.isEmpty())                          if (param.value.isEmpty()) ts << "# ";
725                                  ts << " " << deviceParam.key() << "='" << param.value << "'";                          ts << " " << deviceParam.key() << "='" << param.value << "'";
726                  }                  }
727                  ts << endl;                  ts << endl;
728                  // MIDI port parameters...                  // MIDI port parameters...
# Line 731  bool qsamplerMainForm::saveSessionFile ( Line 735  bool qsamplerMainForm::saveSessionFile (
735                                          portParam != pPort->params().end();                                          portParam != pPort->params().end();
736                                                  ++portParam) {                                                  ++portParam) {
737                                  const qsamplerDeviceParam& param = portParam.data();                                  const qsamplerDeviceParam& param = portParam.data();
738                                  if (!param.fix && !param.value.isEmpty()) {                                  if (param.fix || param.value.isEmpty()) ts << "# ";
739                                          ts << "SET MIDI_INPUT_CHANNEL_PARAMETER " << iDevice                                  ts << "SET MIDI_INPUT_PORT_PARAMETER " << iDevice
740                                             << " " << iPort << " " << portParam.key()                                     << " " << iPort << " " << portParam.key()
741                                             << "='" << param.value << "'" << endl;                                     << "='" << param.value << "'" << endl;
                                 }  
742                          }                          }
743                  }                  }
744                  // MIDI device index/id mapping.                  // MIDI device index/id mapping.
# Line 1296  void qsamplerMainForm::helpAbout (void) Line 1299  void qsamplerMainForm::helpAbout (void)
1299      sText += ::lscp_client_package();      sText += ::lscp_client_package();
1300      sText += " ";      sText += " ";
1301      sText += ::lscp_client_version();      sText += ::lscp_client_version();
1302    #if CONFIG_LIBGIG
1303        sText += ", ";
1304        sText += gig::libraryName();
1305        sText += " ";
1306        sText += gig::libraryVersion();
1307    #endif
1308      sText += "<br />\n";      sText += "<br />\n";
1309      sText += "<br />\n";      sText += "<br />\n";
1310      sText += tr("Website") + ": <a href=\"" QSAMPLER_WEBSITE "\">" QSAMPLER_WEBSITE "</a><br />\n";      sText += tr("Website") + ": <a href=\"" QSAMPLER_WEBSITE "\">" QSAMPLER_WEBSITE "</a><br />\n";

Legend:
Removed from v.470  
changed lines
  Added in v.519

  ViewVC Help
Powered by ViewVC