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

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

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

revision 2107 by capela, Sat Jul 10 09:47:33 2010 UTC revision 2108 by capela, Thu Jul 15 08:03:32 2010 UTC
# Line 473  void ChannelForm::openInstrumentFile (vo Line 473  void ChannelForm::openInstrumentFile (vo
473    
474          // FIXME: the instrument file filters should be restricted,          // FIXME: the instrument file filters should be restricted,
475          // depending on the current engine.          // depending on the current engine.
476            QStringList filters;
477            filters << tr("GIG Instrument files") + " (*.gig *.dls)";
478            filters << tr("SFZ Instrument files") + " (*.sfz)";
479    //      filters << tr("SF2 Instrument files") + " (*.sf2)";
480            filters << tr("All files") + " (*.*)";
481            const QString& filter = filters.join(";;");
482    
483          QString sInstrumentFile = QFileDialog::getOpenFileName(this,          QString sInstrumentFile = QFileDialog::getOpenFileName(this,
484                  QSAMPLER_TITLE ": " + tr("Instrument files"), // Caption.                  QSAMPLER_TITLE ": " + tr("Instrument files"), // Caption.
485                  pOptions->sInstrumentDir,                 // Start here.                  pOptions->sInstrumentDir, // Start here.
486                  tr("Instrument files") + " (*.gig *.dls)" // Filter (GIG and DLS files)                  filter                    // File filter.
487          );          );
488    
489          if (sInstrumentFile.isEmpty())          if (sInstrumentFile.isEmpty())

Legend:
Removed from v.2107  
changed lines
  Added in v.2108

  ViewVC Help
Powered by ViewVC