/[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 150 by capela, Sat Jun 26 17:40:38 2004 UTC revision 176 by capela, Tue Jul 6 10:54:45 2004 UTC
# Line 601  bool qsamplerMainForm::saveSessionFile ( Line 601  bool qsamplerMainForm::saveSessionFile (
601          ts << "ADD CHANNEL" << endl;          ts << "ADD CHANNEL" << endl;
602          ts << "SET CHANNEL AUDIO_OUTPUT_TYPE " << iChannelID << " " << pChannel->audioDriver() << endl;          ts << "SET CHANNEL AUDIO_OUTPUT_TYPE " << iChannelID << " " << pChannel->audioDriver() << endl;
603          ts << "SET CHANNEL MIDI_INPUT_TYPE " << iChannelID << " " << pChannel->midiDriver() << endl;          ts << "SET CHANNEL MIDI_INPUT_TYPE " << iChannelID << " " << pChannel->midiDriver() << endl;
604      //  ts << "SET CHANNEL MIDI_INPUT_PORT " << iChannelID << " " << pChannel->midiPort() << endl;          ts << "SET CHANNEL MIDI_INPUT_PORT " << iChannelID << " " << pChannel->midiPort() << endl;
605          ts << "SET CHANNEL MIDI_INPUT_CHANNEL " << iChannelID << " " << pChannel->midiChannel() << endl;          ts << "SET CHANNEL MIDI_INPUT_CHANNEL " << iChannelID << " " << pChannel->midiChannel() << endl;
606          ts << "LOAD ENGINE " << pChannel->engineName() << " " << iChannelID << endl;          ts << "LOAD ENGINE " << pChannel->engineName() << " " << iChannelID << endl;
607          ts << "LOAD INSTRUMENT NON_MODAL '" << pChannel->instrumentFile() << "' " << pChannel->instrumentNr() << " " << iChannelID << endl;          ts << "LOAD INSTRUMENT NON_MODAL '" << pChannel->instrumentFile() << "' " << pChannel->instrumentNr() << " " << iChannelID << endl;
# Line 800  void qsamplerMainForm::editSetupChannel Line 800  void qsamplerMainForm::editSetupChannel
800          return;          return;
801    
802      // Just invoque the channel strip procedure.      // Just invoque the channel strip procedure.
803      pChannel->channelSetup();      pChannel->channelSetup(false);
804  }  }
805    
806    
# Line 1024  void qsamplerMainForm::helpAbout (void) Line 1024  void qsamplerMainForm::helpAbout (void)
1024      sText += tr("Debugging option enabled.");      sText += tr("Debugging option enabled.");
1025      sText += "</font></small><br />";      sText += "</font></small><br />";
1026  #endif  #endif
1027    #ifndef CONFIG_LIBGIG
1028        sText += "<small><font color=\"red\">";
1029        sText += tr("GIG (libgig) file support disabled.");
1030        sText += "</font></small><br />";
1031    #endif
1032      sText += "<br />\n";      sText += "<br />\n";
1033      sText += tr("Using") + ": ";      sText += tr("Using") + ": ";
1034      sText += ::lscp_client_package();      sText += ::lscp_client_package();
# Line 1326  void qsamplerMainForm::createChannel ( i Line 1331  void qsamplerMainForm::createChannel ( i
1331      // Before we show it up, may be we'll      // Before we show it up, may be we'll
1332      // better ask for some initial values?      // better ask for some initial values?
1333      if (bPrompt)      if (bPrompt)
1334          pChannel->channelSetup();                pChannel->channelSetup(true);
1335      // Now we show up us to the world.      // Now we show up us to the world.
1336      pChannel->show();      pChannel->show();
1337      // Only then, we'll auto-arrange...      // Only then, we'll auto-arrange...

Legend:
Removed from v.150  
changed lines
  Added in v.176

  ViewVC Help
Powered by ViewVC