/[svn]/gigedit/trunk/src/gigedit/mainwindow.cpp
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/mainwindow.cpp

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

revision 1661 by schoenebeck, Sun Feb 3 14:10:47 2008 UTC revision 1853 by schoenebeck, Sun Mar 1 22:26:36 2009 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006 - 2008 Andreas Persson   * Copyright (C) 2006-2009 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 18  Line 18 
18   */   */
19    
20  #include <iostream>  #include <iostream>
21    #include <cstring>
22    
23  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
24  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
# Line 25  Line 26 
26  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
27  #include <gtkmm/main.h>  #include <gtkmm/main.h>
28  #include <gtkmm/toggleaction.h>  #include <gtkmm/toggleaction.h>
29    #include "wrapLabel.hh"
30    
31  #include "global.h"  #include "global.h"
32    
# Line 128  MainWindow::MainWindow() : Line 130  MainWindow::MainWindow() :
130      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
131    
132    
133      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, "Samples");      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
134      m_TreeViewNotebook.append_page(m_ScrolledWindow, "Instruments");      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
135    
136    
137      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
# Line 201  MainWindow::MainWindow() : Line 203  MainWindow::MainWindow() :
203          sigc::mem_fun(*this, &MainWindow::on_action_add_group)          sigc::mem_fun(*this, &MainWindow::on_action_add_group)
204      );      );
205      actionGroup->add(      actionGroup->add(
206          Gtk::Action::create("AddSample", _("Add _Sample(s)")),          Gtk::Action::create("AddSample", _("Add _Sample(s)...")),
207          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
208      );      );
209      actionGroup->add(      actionGroup->add(
210          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),
211          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
212      );      );
213        actionGroup->add(
214            Gtk::Action::create("ReplaceAllSamplesInAllGroups",
215                                _("Replace All Samples in All Groups...")),
216            sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
217        );
218    
219      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
220      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
# Line 248  MainWindow::MainWindow() : Line 255  MainWindow::MainWindow() :
255          "    <menuitem action='SampleProperties'/>"          "    <menuitem action='SampleProperties'/>"
256          "    <menuitem action='AddGroup'/>"          "    <menuitem action='AddGroup'/>"
257          "    <menuitem action='AddSample'/>"          "    <menuitem action='AddSample'/>"
258            "    <menuitem action='ReplaceAllSamplesInAllGroups' />"
259          "    <separator/>"          "    <separator/>"
260          "    <menuitem action='RemoveSample'/>"          "    <menuitem action='RemoveSample'/>"
261          "  </popup>"          "  </popup>"
# Line 563  void MainWindow::on_action_file_new() Line 571  void MainWindow::on_action_file_new()
571      gig::File* pFile = new gig::File;      gig::File* pFile = new gig::File;
572      // already add one new instrument by default      // already add one new instrument by default
573      gig::Instrument* pInstrument = pFile->AddInstrument();      gig::Instrument* pInstrument = pFile->AddInstrument();
574      pInstrument->pInfo->Name = "Unnamed Instrument";      pInstrument->pInfo->Name = _("Unnamed Instrument");
575      // update GUI with that new gig::File      // update GUI with that new gig::File
576      load_gig(pFile, 0 /*no file name yet*/);      load_gig(pFile, 0 /*no file name yet*/);
577  }  }
# Line 618  void MainWindow::on_action_file_open() Line 626  void MainWindow::on_action_file_open()
626      Gtk::FileFilter filter;      Gtk::FileFilter filter;
627      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
628      dialog.set_filter(filter);      dialog.set_filter(filter);
629      if (current_dir != "") {      if (current_gig_dir != "") {
630          dialog.set_current_folder(current_dir);          dialog.set_current_folder(current_gig_dir);
631      }      }
632      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
633          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
634          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
635          printf("on_action_file_open self=%x\n", Glib::Thread::self());          printf("on_action_file_open self=%x\n", Glib::Thread::self());
636          load_file(filename.c_str());          load_file(filename.c_str());
637          current_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
638      }      }
639  }  }
640    
641  void MainWindow::load_file(const char* name)  void MainWindow::load_file(const char* name)
642  {  {
643      __clear();      __clear();
644      load_dialog = new LoadDialog("Loading...", *this);      load_dialog = new LoadDialog(_("Loading..."), *this);
645      load_dialog->show_all();      load_dialog->show_all();
646      loader = new Loader(strdup(name));      loader = new Loader(strdup(name));
647      loader->signal_progress().connect(      loader->signal_progress().connect(
# Line 747  bool MainWindow::file_save_as() Line 755  bool MainWindow::file_save_as()
755      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
756      dialog.set_filter(filter);      dialog.set_filter(filter);
757    
758      if (Glib::path_is_absolute(filename)) {      // set initial dir and filename of the Save As dialog
759          dialog.set_filename(filename);      // and prepare that initial filename as a copy of the gig
760      } else if (current_dir != "") {      {
761          dialog.set_current_folder(current_dir);          std::string basename = Glib::path_get_basename(filename);
762            std::string dir = Glib::path_get_dirname(filename);
763            basename = std::string(_("copy_of_")) + basename;
764            Glib::ustring copyFileName = Glib::build_filename(dir, basename);
765            if (Glib::path_is_absolute(filename)) {
766                dialog.set_filename(copyFileName);
767            } else {
768                if (current_gig_dir != "") dialog.set_current_folder(current_gig_dir);
769            }
770            dialog.set_current_name(Glib::filename_display_basename(copyFileName));
771      }      }
772      dialog.set_current_name(Glib::filename_display_basename(filename));  
773        // show warning in the dialog
774        Gtk::HBox descriptionArea;
775        descriptionArea.set_spacing(15);
776        Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
777        descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
778        view::WrapLabel description;
779        description.set_markup(
780            _("\n<b>CAUTION:</b> You <b>MUST</b> use the "
781              "<span style=\"italic\">\"Save\"</span> dialog instead of "
782              "<span style=\"italic\">\"Save As...\"</span> if you want to save "
783              "to the same .gig file. Using "
784              "<span style=\"italic\">\"Save As...\"</span> for writing to the "
785              "same .gig file will end up in corrupted sample wave data!\n")
786        );
787        descriptionArea.pack_start(description);
788        dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
789        descriptionArea.show_all();
790    
791      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
792          file_structure_to_be_changed_signal.emit(this->file);          file_structure_to_be_changed_signal.emit(this->file);
# Line 764  bool MainWindow::file_save_as() Line 798  bool MainWindow::file_save_as()
798              printf("filename=%s\n", filename.c_str());              printf("filename=%s\n", filename.c_str());
799              file->Save(filename);              file->Save(filename);
800              this->filename = filename;              this->filename = filename;
801              current_dir = Glib::path_get_dirname(filename);              current_gig_dir = Glib::path_get_dirname(filename);
802              set_title(Glib::filename_display_basename(filename));              set_title(Glib::filename_display_basename(filename));
803              file_has_name = true;              file_has_name = true;
804              file_is_changed = false;              file_is_changed = false;
# Line 794  void MainWindow::__import_queued_samples Line 828  void MainWindow::__import_queued_samples
828          info.format = 0;          info.format = 0;
829          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);
830          try {          try {
831              if (!hFile) throw std::string("could not open file");              if (!hFile) throw std::string(_("could not open file"));
832              // determine sample's bit depth              // determine sample's bit depth
833              int bitdepth;              int bitdepth;
834              switch (info.format & 0xff) {              switch (info.format & 0xff) {
# Line 811  void MainWindow::__import_queued_samples Line 845  void MainWindow::__import_queued_samples
845                      break;                      break;
846                  default:                  default:
847                      sf_close(hFile); // close sound file                      sf_close(hFile); // close sound file
848                      throw std::string("format not supported"); // unsupported subformat (yet?)                      throw std::string(_("format not supported")); // unsupported subformat (yet?)
849              }              }
850    
851              const int bufsize = 10000;              const int bufsize = 10000;
# Line 853  void MainWindow::__import_queued_samples Line 887  void MainWindow::__import_queued_samples
887              }              }
888              // cleanup              // cleanup
889              sf_close(hFile);              sf_close(hFile);
890                // let the sampler re-cache the sample if needed
891                sample_changed_signal.emit(iter->gig_sample);
892              // on success we remove the sample from the import queue,              // on success we remove the sample from the import queue,
893              // otherwise keep it, maybe it works the next time ?              // otherwise keep it, maybe it works the next time ?
894              std::list<SampleImportItem>::iterator cur = iter;              std::list<SampleImportItem>::iterator cur = iter;
# Line 884  void MainWindow::on_action_help_about() Line 920  void MainWindow::on_action_help_about()
920  #ifdef ABOUT_DIALOG  #ifdef ABOUT_DIALOG
921      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
922      dialog.set_version(VERSION);      dialog.set_version(VERSION);
923      dialog.set_copyright("Copyright (C) 2006,2007 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2009 Andreas Persson");
924      dialog.set_comments(      dialog.set_comments(_(
925          "Released under the GNU General Public License.\n"          "Released under the GNU General Public License.\n"
926          "\n"          "\n"
927          "Please notice that this is still a very young instrument editor. "          "Please notice that this is still a very young instrument editor. "
928          "So better backup your Gigasampler files before editing them with "          "So better backup your Gigasampler files before editing them with "
929          "this application.\n"          "this application.\n"
930          "\n"          "\n"
931          "Please report bugs to: http://bugs.linuxsampler.org"          "Please report bugs to: http://bugs.linuxsampler.org")
932      );      );
933      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("http://www.linuxsampler.org");
934      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("http://www.linuxsampler.org");
# Line 902  void MainWindow::on_action_help_about() Line 938  void MainWindow::on_action_help_about()
938    
939  PropDialog::PropDialog()  PropDialog::PropDialog()
940      : table(2,1),      : table(2,1),
941        eName("Name"),        eName(_("Name")),
942        eCreationDate("Creation date"),        eCreationDate(_("Creation date")),
943        eComments("Comments"),        eComments(_("Comments")),
944        eProduct("Product"),        eProduct(_("Product")),
945        eCopyright("Copyright"),        eCopyright(_("Copyright")),
946        eArtists("Artists"),        eArtists(_("Artists")),
947        eGenre("Genre"),        eGenre(_("Genre")),
948        eKeywords("Keywords"),        eKeywords(_("Keywords")),
949        eEngineer("Engineer"),        eEngineer(_("Engineer")),
950        eTechnician("Technician"),        eTechnician(_("Technician")),
951        eSoftware("Software"),        eSoftware(_("Software")),
952        eMedium("Medium"),        eMedium(_("Medium")),
953        eSource("Source"),        eSource(_("Source")),
954        eSourceForm("Source form"),        eSourceForm(_("Source form")),
955        eCommissioned("Commissioned"),        eCommissioned(_("Commissioned")),
956        eSubject("Subject"),        eSubject(_("Subject")),
957        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
958        update_model(0)        update_model(0)
959  {  {
960      set_title("File Properties");      set_title(_("File Properties"));
961      eName.set_width_chars(50);      eName.set_width_chars(50);
962    
963      connect(eName, &DLS::Info::Name);      connect(eName, &DLS::Info::Name);
# Line 1039  void InstrumentProps::set_DimensionKeyRa Line 1075  void InstrumentProps::set_DimensionKeyRa
1075  InstrumentProps::InstrumentProps()  InstrumentProps::InstrumentProps()
1076      : table(2,1),      : table(2,1),
1077        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
1078        eName("Name"),        eName(_("Name")),
1079        eIsDrum("Is drum"),        eIsDrum(_("Is drum")),
1080        eMIDIBank("MIDI bank", 0, 16383),        eMIDIBank(_("MIDI bank"), 0, 16383),
1081        eMIDIProgram("MIDI program"),        eMIDIProgram(_("MIDI program")),
1082        eAttenuation("Attenuation", 0, 96, 0, 1),        eAttenuation(_("Attenuation"), 0, 96, 0, 1),
1083        eGainPlus6("Gain +6dB", eAttenuation, -6),        eGainPlus6(_("Gain +6dB"), eAttenuation, -6),
1084        eEffectSend("Effect send", 0, 65535),        eEffectSend(_("Effect send"), 0, 65535),
1085        eFineTune("Fine tune", -8400, 8400),        eFineTune(_("Fine tune"), -8400, 8400),
1086        ePitchbendRange("Pitchbend range", 0, 12),        ePitchbendRange(_("Pitchbend range"), 0, 12),
1087        ePianoReleaseMode("Piano release mode"),        ePianoReleaseMode(_("Piano release mode")),
1088        eDimensionKeyRangeLow("Keyswitching range low"),        eDimensionKeyRangeLow(_("Keyswitching range low")),
1089        eDimensionKeyRangeHigh("Keyswitching range high"),        eDimensionKeyRangeHigh(_("Keyswitching range high")),
1090        update_model(0)        update_model(0)
1091  {  {
1092      set_title("Instrument Properties");      set_title(_("Instrument Properties"));
1093    
1094      eDimensionKeyRangeLow.set_tip(      eDimensionKeyRangeLow.set_tip(
1095          _("start of the keyboard area which should switch the "          _("start of the keyboard area which should switch the "
# Line 1278  void MainWindow::on_action_add_instrumen Line 1314  void MainWindow::on_action_add_instrumen
1314      gig::Instrument* instrument = file->AddInstrument();      gig::Instrument* instrument = file->AddInstrument();
1315      __instrument_indexer++;      __instrument_indexer++;
1316      instrument->pInfo->Name =      instrument->pInfo->Name =
1317          "Unnamed Instrument " + ToString(__instrument_indexer);          _("Unnamed Instrument ") + ToString(__instrument_indexer);
1318      // update instrument tree view      // update instrument tree view
1319      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
1320      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
# Line 1321  void MainWindow::on_action_remove_instru Line 1357  void MainWindow::on_action_remove_instru
1357  void MainWindow::on_action_sample_properties() {  void MainWindow::on_action_sample_properties() {
1358      //TODO: show a dialog where the selected sample's properties can be edited      //TODO: show a dialog where the selected sample's properties can be edited
1359      Gtk::MessageDialog msg(      Gtk::MessageDialog msg(
1360          *this, "Sorry, yet to be implemented!", false, Gtk::MESSAGE_INFO          *this, _("Sorry, yet to be implemented!"), false, Gtk::MESSAGE_INFO
1361      );      );
1362      msg.run();      msg.run();
1363  }  }
# Line 1330  void MainWindow::on_action_add_group() { Line 1366  void MainWindow::on_action_add_group() {
1366      static int __sample_indexer = 0;      static int __sample_indexer = 0;
1367      if (!file) return;      if (!file) return;
1368      gig::Group* group = file->AddGroup();      gig::Group* group = file->AddGroup();
1369      group->Name = "Unnamed Group";      group->Name = _("Unnamed Group");
1370      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
1371      __sample_indexer++;      __sample_indexer++;
1372      // update sample tree view      // update sample tree view
# Line 1374  void MainWindow::on_action_add_sample() Line 1410  void MainWindow::on_action_add_sample()
1410      };      };
1411      for (int i = 0; supportedFileTypes[i]; i++)      for (int i = 0; supportedFileTypes[i]; i++)
1412          soundfilter.add_pattern(supportedFileTypes[i]);          soundfilter.add_pattern(supportedFileTypes[i]);
1413      soundfilter.set_name("Sound Files");      soundfilter.set_name(_("Sound Files"));
1414      Gtk::FileFilter allpassfilter; // matches every file      Gtk::FileFilter allpassfilter; // matches every file
1415      allpassfilter.add_pattern("*.*");      allpassfilter.add_pattern("*.*");
1416      allpassfilter.set_name("All Files");      allpassfilter.set_name(_("All Files"));
1417      dialog.add_filter(soundfilter);      dialog.add_filter(soundfilter);
1418      dialog.add_filter(allpassfilter);      dialog.add_filter(allpassfilter);
1419        if (current_sample_dir != "") {
1420            dialog.set_current_folder(current_sample_dir);
1421        }
1422      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1423            current_sample_dir = dialog.get_current_folder();
1424          Glib::ustring error_files;          Glib::ustring error_files;
1425          Glib::SListHandle<Glib::ustring> filenames = dialog.get_filenames();          Glib::SListHandle<Glib::ustring> filenames = dialog.get_filenames();
1426          for (Glib::SListHandle<Glib::ustring>::iterator iter = filenames.begin();          for (Glib::SListHandle<Glib::ustring>::iterator iter = filenames.begin();
# Line 1391  void MainWindow::on_action_add_sample() Line 1431  void MainWindow::on_action_add_sample()
1431              info.format = 0;              info.format = 0;
1432              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
1433              try {              try {
1434                  if (!hFile) throw std::string("could not open file");                  if (!hFile) throw std::string(_("could not open file"));
1435                  int bitdepth;                  int bitdepth;
1436                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
1437                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
# Line 1407  void MainWindow::on_action_add_sample() Line 1447  void MainWindow::on_action_add_sample()
1447                          break;                          break;
1448                      default:                      default:
1449                          sf_close(hFile); // close sound file                          sf_close(hFile); // close sound file
1450                          throw std::string("format not supported"); // unsupported subformat (yet?)                          throw std::string(_("format not supported")); // unsupported subformat (yet?)
1451                  }                  }
1452                  // add a new sample to the .gig file                  // add a new sample to the .gig file
1453                  gig::Sample* sample = file->AddSample();                  gig::Sample* sample = file->AddSample();
# Line 1493  void MainWindow::on_action_add_sample() Line 1533  void MainWindow::on_action_add_sample()
1533      }      }
1534  }  }
1535    
1536    void MainWindow::on_action_replace_all_samples_in_all_groups()
1537    {
1538        if (!file) return;
1539        Gtk::FileChooserDialog dialog(*this, _("Select Folder"),
1540                                      Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
1541        view::WrapLabel description(
1542            _("This is a very specific function. It tries to replace all samples "
1543              "in the current gig file by samples located in the chosen "
1544              "directory.\n\n"
1545              "It works like this: For each sample in the gig file, it tries to "
1546              "find a sample file in the selected directory with the same name as "
1547              "the sample in the gig file. Optionally, you can add a filename "
1548              "extension below, which will be added to the filename expected to be "
1549              "found. That is, assume you have a gig file with a sample called "
1550              "'Snare', if you enter '.wav' below (like it's done by default), it "
1551              "expects to find a sample file called 'Snare.wav' and will replace "
1552              "the sample in the gig file accordingly. If you don't need an "
1553              "extension, blank the field below. Any gig sample where no "
1554              "appropriate sample file could be found will be reported and left "
1555              "untouched.\n")
1556        );
1557        Gtk::HBox entryArea;
1558        Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_RIGHT);
1559        Gtk::Entry postfixEntryBox;
1560        postfixEntryBox.set_text(".wav");
1561        entryArea.pack_start(entryLabel);
1562        entryArea.pack_start(postfixEntryBox);
1563        dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);
1564        dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
1565        description.show();
1566        entryArea.show_all();
1567        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1568        dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
1569        dialog.set_select_multiple(false);
1570        if (current_sample_dir != "") {
1571            dialog.set_current_folder(current_sample_dir);
1572        }
1573        if (dialog.run() == Gtk::RESPONSE_OK)
1574        {
1575            current_sample_dir = dialog.get_current_folder();
1576            Glib::ustring error_files;
1577            Glib::ustring folder = dialog.get_filename();
1578            for (gig::Sample* sample = file->GetFirstSample();
1579                 sample; sample = file->GetNextSample())
1580            {
1581                std::string filename =
1582                    folder + G_DIR_SEPARATOR_S + sample->pInfo->Name +
1583                    postfixEntryBox.get_text().raw();
1584                SF_INFO info;
1585                info.format = 0;
1586                SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
1587                try
1588                {
1589                    if (!hFile) throw std::string(_("could not open file"));
1590                    int bitdepth;
1591                    switch (info.format & 0xff) {
1592                        case SF_FORMAT_PCM_S8:
1593                        case SF_FORMAT_PCM_16:
1594                        case SF_FORMAT_PCM_U8:
1595                            bitdepth = 16;
1596                            break;
1597                        case SF_FORMAT_PCM_24:
1598                        case SF_FORMAT_PCM_32:
1599                        case SF_FORMAT_FLOAT:
1600                        case SF_FORMAT_DOUBLE:
1601                            bitdepth = 24;
1602                            break;
1603                        default:
1604                            sf_close(hFile);
1605                            throw std::string(_("format not supported"));
1606                    }
1607                    SampleImportItem sched_item;
1608                    sched_item.gig_sample  = sample;
1609                    sched_item.sample_path = filename;
1610                    m_SampleImportQueue.push_back(sched_item);
1611                    sf_close(hFile);
1612                    file_changed();
1613                }
1614                catch (std::string what)
1615                {
1616                    if (error_files.size()) error_files += "\n";
1617                        error_files += filename += " (" + what + ")";
1618                }
1619            }
1620            // show error message box when some file(s) could not be opened / added
1621            if (error_files.size()) {
1622                Glib::ustring txt =
1623                    _("Could not replace the following sample(s):\n") + error_files;
1624                Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1625                msg.run();
1626            }
1627        }
1628    }
1629    
1630  void MainWindow::on_action_remove_sample() {  void MainWindow::on_action_remove_sample() {
1631      if (!file) return;      if (!file) return;
1632      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
# Line 1741  sigc::signal<void, gig::Region*>& MainWi Line 1875  sigc::signal<void, gig::Region*>& MainWi
1875      return region_changed_signal;      return region_changed_signal;
1876  }  }
1877    
1878    sigc::signal<void, gig::Sample*>& MainWindow::signal_sample_changed() {
1879        return sample_changed_signal;
1880    }
1881    
1882  sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& MainWindow::signal_sample_ref_changed() {  sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& MainWindow::signal_sample_ref_changed() {
1883      return sample_ref_changed_signal;      return sample_ref_changed_signal;
1884  }  }

Legend:
Removed from v.1661  
changed lines
  Added in v.1853

  ViewVC Help
Powered by ViewVC