/[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 2332 by persson, Wed Mar 14 05:22:26 2012 UTC revision 2476 by schoenebeck, Mon Sep 16 13:20:46 2013 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2012 Andreas Persson   * Copyright (C) 2006-2013 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 30  Line 30 
30  #include <gtkmm/stock.h>  #include <gtkmm/stock.h>
31  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
32  #include <gtkmm/main.h>  #include <gtkmm/main.h>
 #include <gtkmm/radiomenuitem.h>  
33  #include <gtkmm/toggleaction.h>  #include <gtkmm/toggleaction.h>
34    #if GTKMM_MAJOR_VERSION < 3
35  #include "wrapLabel.hh"  #include "wrapLabel.hh"
36    #endif
37    
38  #include "global.h"  #include "global.h"
39  #include "compat.h"  #include "compat.h"
# Line 45  Line 46 
46  #include "../../gfx/status_attached.xpm"  #include "../../gfx/status_attached.xpm"
47  #include "../../gfx/status_detached.xpm"  #include "../../gfx/status_detached.xpm"
48    
 template<class T> inline std::string ToString(T o) {  
     std::stringstream ss;  
     ss << o;  
     return ss.str();  
 }  
   
 Table::Table(int x, int y) : Gtk::Table(x, y), rowno(0) {  }  
   
 void Table::add(BoolEntry& boolentry)  
 {  
     attach(boolentry.widget, 0, 2, rowno, rowno + 1,  
            Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
 }  
   
 void Table::add(BoolEntryPlus6& boolentry)  
 {  
     attach(boolentry.widget, 0, 2, rowno, rowno + 1,  
            Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
 }  
   
 void Table::add(LabelWidget& prop)  
 {  
     attach(prop.label, 1, 2, rowno, rowno + 1,  
            Gtk::FILL, Gtk::SHRINK);  
     attach(prop.widget, 2, 3, rowno, rowno + 1,  
            Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
 }  
49    
50  MainWindow::MainWindow() :  MainWindow::MainWindow() :
51      dimreg_label(_("Changes apply to:")),      dimreg_label(_("Changes apply to:")),
# Line 89  MainWindow::MainWindow() : Line 60  MainWindow::MainWindow() :
60      add(m_VBox);      add(m_VBox);
61    
62      // Handle selection      // Handle selection
63      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      m_TreeView.get_selection()->signal_changed().connect(
     tree_sel_ref->signal_changed().connect(  
64          sigc::mem_fun(*this, &MainWindow::on_sel_change));          sigc::mem_fun(*this, &MainWindow::on_sel_change));
65    
66      // m_TreeView.set_reorderable();      // m_TreeView.set_reorderable();
# Line 158  MainWindow::MainWindow() : Line 128  MainWindow::MainWindow() :
128                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
129      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));
130    
131      actionGroup->add(Gtk::Action::create("MenuView", _("_View")));  
132        actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
133    
134      Glib::RefPtr<Gtk::ToggleAction> toggle_action =      Glib::RefPtr<Gtk::ToggleAction> toggle_action =
135            Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"), "ffaga");
136        toggle_action->set_active(true);
137        //FIXME: doesn't work, why?
138        toggle_action->set_tooltip(_("Used when dragging a sample to a region's sample reference field."));
139        actionGroup->add(toggle_action);
140    
141        toggle_action =
142            Gtk::ToggleAction::create("CopySampleTune", _("Copy Sample's _Fine Tune"));
143        toggle_action->set_active(true);
144        //FIXME: doesn't work, why?
145        toggle_action->set_tooltip(_("Used when dragging a sample to a region's sample reference field."));
146        actionGroup->add(toggle_action);
147    
148        toggle_action =
149            Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));
150        toggle_action->set_active(true);
151        //FIXME: doesn't work, why?
152        toggle_action->set_tooltip(_("Used when dragging a sample to a region's sample reference field."));
153        actionGroup->add(toggle_action);
154    
155    
156        actionGroup->add(Gtk::Action::create("MenuView", _("_View")));
157        toggle_action =
158          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));
159      toggle_action->set_active(true);      toggle_action->set_active(true);
160      actionGroup->add(toggle_action,      actionGroup->add(toggle_action,
# Line 177  MainWindow::MainWindow() : Line 172  MainWindow::MainWindow() :
172          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)
173      );      );
174      actionGroup->add(      actionGroup->add(
175            Gtk::Action::create("DupInstrument", _("_Duplicate Instrument")),
176            sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
177        );
178        actionGroup->add(
179          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),
180          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
181      );      );
# Line 222  MainWindow::MainWindow() : Line 221  MainWindow::MainWindow() :
221          "      <separator/>"          "      <separator/>"
222          "      <menuitem action='Quit'/>"          "      <menuitem action='Quit'/>"
223          "    </menu>"          "    </menu>"
224            "    <menu action='MenuEdit'>"
225            "      <menuitem action='CopySampleUnity'/>"
226            "      <menuitem action='CopySampleTune'/>"
227            "      <menuitem action='CopySampleLoop'/>"
228            "    </menu>"
229          "    <menu action='MenuInstrument'>"          "    <menu action='MenuInstrument'>"
230          "    </menu>"          "    </menu>"
231          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
# Line 234  MainWindow::MainWindow() : Line 238  MainWindow::MainWindow() :
238          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
239          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
240          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
241            "    <menuitem action='DupInstrument'/>"
242          "    <separator/>"          "    <separator/>"
243          "    <menuitem action='RemoveInstrument'/>"          "    <menuitem action='RemoveInstrument'/>"
244          "  </popup>"          "  </popup>"
# Line 241  MainWindow::MainWindow() : Line 246  MainWindow::MainWindow() :
246          "    <menuitem action='SampleProperties'/>"          "    <menuitem action='SampleProperties'/>"
247          "    <menuitem action='AddGroup'/>"          "    <menuitem action='AddGroup'/>"
248          "    <menuitem action='AddSample'/>"          "    <menuitem action='AddSample'/>"
249          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"
250          "    <separator/>"          "    <separator/>"
251          "    <menuitem action='RemoveSample'/>"          "    <menuitem action='RemoveSample'/>"
252          "  </popup>"          "  </popup>"
# Line 250  MainWindow::MainWindow() : Line 255  MainWindow::MainWindow() :
255    
256      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));
257    
258        instrument_menu = static_cast<Gtk::MenuItem*>(
259            uiManager->get_widget("/MenuBar/MenuInstrument"))->get_submenu();
260    
261      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");
262      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
263      m_VBox.pack_start(m_HPaned);      m_VBox.pack_start(m_HPaned);
# Line 274  MainWindow::MainWindow() : Line 282  MainWindow::MainWindow() :
282      // Create the Tree model:      // Create the Tree model:
283      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refTreeModel = Gtk::ListStore::create(m_Columns);
284      m_TreeView.set_model(m_refTreeModel);      m_TreeView.set_model(m_refTreeModel);
285      m_refTreeModel->signal_row_changed().connect(      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(
286          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
287      );      );
288    
# Line 315  MainWindow::MainWindow() : Line 323  MainWindow::MainWindow() :
323          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
324      m_DimRegionChooser.signal_region_changed().connect(      m_DimRegionChooser.signal_region_changed().connect(
325          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
326      instrumentProps.signal_instrument_changed().connect(      instrumentProps.signal_changed().connect(
327          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
328      propDialog.signal_info_changed().connect(      propDialog.signal_changed().connect(
329          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
330    
331      dimreg_edit.signal_dimreg_to_be_changed().connect(      dimreg_edit.signal_dimreg_to_be_changed().connect(
# Line 392  void MainWindow::region_changed() Line 400  void MainWindow::region_changed()
400  gig::Instrument* MainWindow::get_instrument()  gig::Instrument* MainWindow::get_instrument()
401  {  {
402      gig::Instrument* instrument = 0;      gig::Instrument* instrument = 0;
403      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      Gtk::TreeModel::const_iterator it =
404            m_TreeView.get_selection()->get_selected();
     Gtk::TreeModel::iterator it = tree_sel_ref->get_selected();  
405      if (it) {      if (it) {
406          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
407          instrument = row[m_Columns.m_col_instr];          instrument = row[m_Columns.m_col_instr];
# Line 453  void MainWindow::dimreg_changed() Line 460  void MainWindow::dimreg_changed()
460    
461  void MainWindow::on_sel_change()  void MainWindow::on_sel_change()
462  {  {
463        // select item in instrument menu
464        Gtk::TreeModel::iterator it = m_TreeView.get_selection()->get_selected();
465        if (it) {
466            Gtk::TreePath path(it);
467            int index = path[0];
468            const std::vector<Gtk::Widget*> children =
469                instrument_menu->get_children();
470            static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();
471        }
472    
473      m_RegionChooser.set_instrument(get_instrument());      m_RegionChooser.set_instrument(get_instrument());
474  }  }
475    
# Line 531  LoadDialog::LoadDialog(const Glib::ustri Line 548  LoadDialog::LoadDialog(const Glib::ustri
548  // Clear all GUI elements / controls. This method is typically called  // Clear all GUI elements / controls. This method is typically called
549  // before a new .gig file is to be created or to be loaded.  // before a new .gig file is to be created or to be loaded.
550  void MainWindow::__clear() {  void MainWindow::__clear() {
     // remove all entries from "Instrument" menu  
     Gtk::MenuItem* instrument_menu =  
         dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));  
     instrument_menu->hide();  
     Gtk::Menu* menu = instrument_menu->get_submenu();  
     while (menu->get_children().size()) {  
         Gtk::Widget* child = *menu->get_children().begin();  
         menu->remove(*child);  
         delete child;  
     }  
551      // forget all samples that ought to be imported      // forget all samples that ought to be imported
552      m_SampleImportQueue.clear();      m_SampleImportQueue.clear();
553      // clear the samples and instruments tree views      // clear the samples and instruments tree views
554      m_refTreeModel->clear();      m_refTreeModel->clear();
555      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
556        // remove all entries from "Instrument" menu
557        while (!instrument_menu->get_children().empty()) {
558            remove_instrument_from_menu(0);
559        }
560      // free libgig's gig::File instance      // free libgig's gig::File instance
561      if (file && !file_is_shared) delete file;      if (file && !file_is_shared) delete file;
562      file = NULL;      file = NULL;
# Line 564  void MainWindow::on_action_file_new() Line 575  void MainWindow::on_action_file_new()
575      gig::File* pFile = new gig::File;      gig::File* pFile = new gig::File;
576      // already add one new instrument by default      // already add one new instrument by default
577      gig::Instrument* pInstrument = pFile->AddInstrument();      gig::Instrument* pInstrument = pFile->AddInstrument();
578      pInstrument->pInfo->Name = _("Unnamed Instrument");      pInstrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument"));
579      // update GUI with that new gig::File      // update GUI with that new gig::File
580      load_gig(pFile, 0 /*no file name yet*/);      load_gig(pFile, 0 /*no file name yet*/);
581  }  }
# Line 770  bool MainWindow::file_save_as() Line 781  bool MainWindow::file_save_as()
781      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
782      Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));      Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
783      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
784    #if GTKMM_MAJOR_VERSION < 3
785      view::WrapLabel description;      view::WrapLabel description;
786    #else
787        Gtk::Label description;
788        description.set_line_wrap();
789    #endif
790      description.set_markup(      description.set_markup(
791          _("\n<b>CAUTION:</b> You <b>MUST</b> use the "          _("\n<b>CAUTION:</b> You <b>MUST</b> use the "
792            "<span style=\"italic\">\"Save\"</span> dialog instead of "            "<span style=\"italic\">\"Save\"</span> dialog instead of "
# Line 822  void MainWindow::__import_queued_samples Line 838  void MainWindow::__import_queued_samples
838          SF_INFO info;          SF_INFO info;
839          info.format = 0;          info.format = 0;
840          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);
841            sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);
842          try {          try {
843              if (!hFile) throw std::string(_("could not open file"));              if (!hFile) throw std::string(_("could not open file"));
844              // determine sample's bit depth              // determine sample's bit depth
# Line 891  void MainWindow::__import_queued_samples Line 908  void MainWindow::__import_queued_samples
908              m_SampleImportQueue.erase(cur);              m_SampleImportQueue.erase(cur);
909          } catch (std::string what) {          } catch (std::string what) {
910              // remember the files that made trouble (and their cause)              // remember the files that made trouble (and their cause)
911              if (error_files.size()) error_files += "\n";              if (!error_files.empty()) error_files += "\n";
912              error_files += (*iter).sample_path += " (" + what + ")";              error_files += (*iter).sample_path += " (" + what + ")";
913              ++iter;              ++iter;
914          }          }
915      }      }
916      // show error message box when some sample(s) could not be imported      // show error message box when some sample(s) could not be imported
917      if (error_files.size()) {      if (!error_files.empty()) {
918          Glib::ustring txt = _("Could not import the following sample(s):\n") + error_files;          Glib::ustring txt = _("Could not import the following sample(s):\n") + error_files;
919          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
920          msg.run();          msg.run();
# Line 919  void MainWindow::on_action_help_about() Line 936  void MainWindow::on_action_help_about()
936      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
937  #endif  #endif
938      dialog.set_version(VERSION);      dialog.set_version(VERSION);
939      dialog.set_copyright("Copyright (C) 2006-2012 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2013 Andreas Persson");
940      dialog.set_comments(_(      const std::string sComment =
941          "Released under the GNU General Public License.\n"          _("Built " __DATE__ "\nUsing ") +
942          "\n"          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
943          "Please notice that this is still a very young instrument editor. "          _(
944          "So better backup your Gigasampler files before editing them with "              "Gigedit is released under the GNU General Public License.\n"
945          "this application.\n"              "\n"
946          "\n"              "Please notice that this is still a very young instrument editor. "
947          "Please report bugs to: http://bugs.linuxsampler.org")              "So better backup your Gigasampler files before editing them with "
948      );              "this application.\n"
949                "\n"
950                "Please report bugs to: http://bugs.linuxsampler.org"
951            );
952        dialog.set_comments(sComment.c_str());
953      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("http://www.linuxsampler.org");
954      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("http://www.linuxsampler.org");
955      dialog.run();      dialog.run();
# Line 952  PropDialog::PropDialog() Line 973  PropDialog::PropDialog()
973        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
974        eSubject(_("Subject")),        eSubject(_("Subject")),
975        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
976        table(2, 1),        table(2, 1)
       update_model(0)  
977  {  {
978      set_title(_("File Properties"));      set_title(_("File Properties"));
979      eName.set_width_chars(50);      eName.set_width_chars(50);
# Line 1013  PropDialog::PropDialog() Line 1033  PropDialog::PropDialog()
1033    
1034  void PropDialog::set_info(DLS::Info* info)  void PropDialog::set_info(DLS::Info* info)
1035  {  {
1036      this->info = info;      update(info);
     update_model++;  
     eName.set_value(info->Name);  
     eCreationDate.set_value(info->CreationDate);  
     eComments.set_value(info->Comments);  
     eProduct.set_value(info->Product);  
     eCopyright.set_value(info->Copyright);  
     eArtists.set_value(info->Artists);  
     eGenre.set_value(info->Genre);  
     eKeywords.set_value(info->Keywords);  
     eEngineer.set_value(info->Engineer);  
     eTechnician.set_value(info->Technician);  
     eSoftware.set_value(info->Software);  
     eMedium.set_value(info->Medium);  
     eSource.set_value(info->Source);  
     eSourceForm.set_value(info->SourceForm);  
     eCommissioned.set_value(info->Commissioned);  
     eSubject.set_value(info->Subject);  
     update_model--;  
1037  }  }
1038    
 sigc::signal<void>& PropDialog::signal_info_changed()  
 {  
     return info_changed;  
 }  
1039    
1040  void InstrumentProps::set_IsDrum(bool value)  void InstrumentProps::set_Name(const gig::String& name)
1041  {  {
1042      instrument->IsDrum = value;      m->pInfo->Name = name;
1043  }  }
1044    
1045  void InstrumentProps::set_MIDIBank(uint16_t value)  void InstrumentProps::update_name()
1046  {  {
1047      instrument->MIDIBank = value;      update_model++;
1048        eName.set_value(m->pInfo->Name);
1049        update_model--;
1050  }  }
1051    
1052  void InstrumentProps::set_MIDIProgram(uint32_t value)  void InstrumentProps::set_IsDrum(bool value)
1053  {  {
1054      instrument->MIDIProgram = value;      m->IsDrum = value;
1055  }  }
1056    
1057  void InstrumentProps::set_DimensionKeyRange_low(uint8_t value)  void InstrumentProps::set_MIDIBank(uint16_t value)
1058  {  {
1059      instrument->DimensionKeyRange.low = value;      m->MIDIBank = value;
     if (value > instrument->DimensionKeyRange.high) {  
         eDimensionKeyRangeHigh.set_value(value);  
     }  
1060  }  }
1061    
1062  void InstrumentProps::set_DimensionKeyRange_high(uint8_t value)  void InstrumentProps::set_MIDIProgram(uint32_t value)
1063  {  {
1064      instrument->DimensionKeyRange.high = value;      m->MIDIProgram = value;
     if (value < instrument->DimensionKeyRange.low) {  
         eDimensionKeyRangeLow.set_value(value);  
     }  
1065  }  }
1066    
1067  InstrumentProps::InstrumentProps()  InstrumentProps::InstrumentProps() :
1068      : update_model(0),      quitButton(Gtk::Stock::CLOSE),
1069        quitButton(Gtk::Stock::CLOSE),      table(2,1),
1070        table(2,1),      eName(_("Name")),
1071        eName(_("Name")),      eIsDrum(_("Is drum")),
1072        eIsDrum(_("Is drum")),      eMIDIBank(_("MIDI bank"), 0, 16383),
1073        eMIDIBank(_("MIDI bank"), 0, 16383),      eMIDIProgram(_("MIDI program")),
1074        eMIDIProgram(_("MIDI program")),      eAttenuation(_("Attenuation"), 0, 96, 0, 1),
1075        eAttenuation(_("Attenuation"), 0, 96, 0, 1),      eGainPlus6(_("Gain +6dB"), eAttenuation, -6),
1076        eGainPlus6(_("Gain +6dB"), eAttenuation, -6),      eEffectSend(_("Effect send"), 0, 65535),
1077        eEffectSend(_("Effect send"), 0, 65535),      eFineTune(_("Fine tune"), -8400, 8400),
1078        eFineTune(_("Fine tune"), -8400, 8400),      ePitchbendRange(_("Pitchbend range"), 0, 12),
1079        ePitchbendRange(_("Pitchbend range"), 0, 12),      ePianoReleaseMode(_("Piano release mode")),
1080        ePianoReleaseMode(_("Piano release mode")),      eDimensionKeyRangeLow(_("Keyswitching range low")),
1081        eDimensionKeyRangeLow(_("Keyswitching range low")),      eDimensionKeyRangeHigh(_("Keyswitching range high"))
       eDimensionKeyRangeHigh(_("Keyswitching range high"))  
1082  {  {
1083      set_title(_("Instrument Properties"));      set_title(_("Instrument Properties"));
1084    
# Line 1098  InstrumentProps::InstrumentProps() Line 1091  InstrumentProps::InstrumentProps()
1091            "\"keyswitching\" dimension")            "\"keyswitching\" dimension")
1092      );      );
1093    
1094        connect(eName, &InstrumentProps::set_Name);
1095      connect(eIsDrum, &InstrumentProps::set_IsDrum);      connect(eIsDrum, &InstrumentProps::set_IsDrum);
1096      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);
1097      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);
# Line 1107  InstrumentProps::InstrumentProps() Line 1101  InstrumentProps::InstrumentProps()
1101      connect(eFineTune, &gig::Instrument::FineTune);      connect(eFineTune, &gig::Instrument::FineTune);
1102      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);
1103      connect(ePianoReleaseMode, &gig::Instrument::PianoReleaseMode);      connect(ePianoReleaseMode, &gig::Instrument::PianoReleaseMode);
1104      connect(eDimensionKeyRangeLow,      connect(eDimensionKeyRangeLow, eDimensionKeyRangeHigh,
1105              &InstrumentProps::set_DimensionKeyRange_low);              &gig::Instrument::DimensionKeyRange);
1106      connect(eDimensionKeyRangeHigh,  
1107              &InstrumentProps::set_DimensionKeyRange_high);      eName.signal_value_changed().connect(sig_name_changed.make_slot());
1108    
1109      table.set_col_spacings(5);      table.set_col_spacings(5);
1110    
# Line 1149  InstrumentProps::InstrumentProps() Line 1143  InstrumentProps::InstrumentProps()
1143    
1144  void InstrumentProps::set_instrument(gig::Instrument* instrument)  void InstrumentProps::set_instrument(gig::Instrument* instrument)
1145  {  {
1146      this->instrument = instrument;      update(instrument);
1147    
1148      update_model++;      update_model++;
1149      eName.set_value(instrument->pInfo->Name);      eName.set_value(instrument->pInfo->Name);
1150      eIsDrum.set_value(instrument->IsDrum);      eIsDrum.set_value(instrument->IsDrum);
1151      eMIDIBank.set_value(instrument->MIDIBank);      eMIDIBank.set_value(instrument->MIDIBank);
1152      eMIDIProgram.set_value(instrument->MIDIProgram);      eMIDIProgram.set_value(instrument->MIDIProgram);
     eAttenuation.set_value(instrument->Attenuation);  
     eGainPlus6.set_value(instrument->Attenuation);  
     eEffectSend.set_value(instrument->EffectSend);  
     eFineTune.set_value(instrument->FineTune);  
     ePitchbendRange.set_value(instrument->PitchbendRange);  
     ePianoReleaseMode.set_value(instrument->PianoReleaseMode);  
     eDimensionKeyRangeLow.set_value(instrument->DimensionKeyRange.low);  
     eDimensionKeyRangeHigh.set_value(instrument->DimensionKeyRange.high);  
1153      update_model--;      update_model--;
1154  }  }
1155    
 sigc::signal<void>& InstrumentProps::signal_instrument_changed()  
 {  
     return instrument_changed;  
 }  
1156    
1157  void MainWindow::file_changed()  void MainWindow::file_changed()
1158  {  {
# Line 1192  void MainWindow::load_gig(gig::File* gig Line 1174  void MainWindow::load_gig(gig::File* gig
1174    
1175      propDialog.set_info(gig->pInfo);      propDialog.set_info(gig->pInfo);
1176    
1177      Gtk::MenuItem* instrument_menu =      instrument_name_connection.block();
         dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));  
   
     int instrument_index = 0;  
     Gtk::RadioMenuItem::Group instrument_group;  
1178      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
1179           instrument = gig->GetNextInstrument()) {           instrument = gig->GetNextInstrument()) {
1180            Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
1181    
1182          Gtk::TreeModel::iterator iter = m_refTreeModel->append();          Gtk::TreeModel::iterator iter = m_refTreeModel->append();
1183          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
1184          row[m_Columns.m_col_name] = instrument->pInfo->Name.c_str();          row[m_Columns.m_col_name] = name;
1185          row[m_Columns.m_col_instr] = instrument;          row[m_Columns.m_col_instr] = instrument;
1186          // create a menu item for this instrument  
1187          Gtk::RadioMenuItem* item =          add_instrument_to_menu(name);
             new Gtk::RadioMenuItem(instrument_group, instrument->pInfo->Name.c_str());  
         instrument_menu->get_submenu()->append(*item);  
         item->signal_activate().connect(  
             sigc::bind(  
                 sigc::mem_fun(*this, &MainWindow::on_instrument_selection_change),  
                 instrument_index  
             )  
         );  
         instrument_index++;  
1188      }      }
1189      instrument_menu->show();      instrument_name_connection.unblock();
1190      instrument_menu->get_submenu()->show_all_children();      uiManager->get_widget("/MenuBar/MenuInstrument")->show();
1191    
1192      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {
1193          if (group->Name != "") {          if (group->Name != "") {
1194              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
1195              Gtk::TreeModel::Row rowGroup = *iterGroup;              Gtk::TreeModel::Row rowGroup = *iterGroup;
1196              rowGroup[m_SamplesModel.m_col_name]   = group->Name.c_str();              rowGroup[m_SamplesModel.m_col_name]   = gig_to_utf8(group->Name);
1197              rowGroup[m_SamplesModel.m_col_group]  = group;              rowGroup[m_SamplesModel.m_col_group]  = group;
1198              rowGroup[m_SamplesModel.m_col_sample] = NULL;              rowGroup[m_SamplesModel.m_col_sample] = NULL;
1199              for (gig::Sample* sample = group->GetFirstSample();              for (gig::Sample* sample = group->GetFirstSample();
# Line 1230  void MainWindow::load_gig(gig::File* gig Line 1201  void MainWindow::load_gig(gig::File* gig
1201                  Gtk::TreeModel::iterator iterSample =                  Gtk::TreeModel::iterator iterSample =
1202                      m_refSamplesTreeModel->append(rowGroup.children());                      m_refSamplesTreeModel->append(rowGroup.children());
1203                  Gtk::TreeModel::Row rowSample = *iterSample;                  Gtk::TreeModel::Row rowSample = *iterSample;
1204                  rowSample[m_SamplesModel.m_col_name]   = sample->pInfo->Name.c_str();                  rowSample[m_SamplesModel.m_col_name] =
1205                        gig_to_utf8(sample->pInfo->Name);
1206                  rowSample[m_SamplesModel.m_col_sample] = sample;                  rowSample[m_SamplesModel.m_col_sample] = sample;
1207                  rowSample[m_SamplesModel.m_col_group]  = NULL;                  rowSample[m_SamplesModel.m_col_group]  = NULL;
1208              }              }
# Line 1240  void MainWindow::load_gig(gig::File* gig Line 1212  void MainWindow::load_gig(gig::File* gig
1212      file = gig;      file = gig;
1213    
1214      // select the first instrument      // select the first instrument
1215      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      m_TreeView.get_selection()->select(Gtk::TreePath("0"));
1216      tree_sel_ref->select(Gtk::TreePath("0"));  
1217        instr_props_set_instrument();
1218  }  }
1219    
1220  void MainWindow::show_instr_props()  bool MainWindow::instr_props_set_instrument()
1221  {  {
1222      gig::Instrument* instrument = get_instrument();      instrumentProps.signal_name_changed().clear();
1223      if (instrument)  
1224      {      Gtk::TreeModel::const_iterator it =
1225            m_TreeView.get_selection()->get_selected();
1226        if (it) {
1227            Gtk::TreeModel::Row row = *it;
1228            gig::Instrument* instrument = row[m_Columns.m_col_instr];
1229    
1230          instrumentProps.set_instrument(instrument);          instrumentProps.set_instrument(instrument);
1231    
1232            // make sure instrument tree is updated when user changes the
1233            // instrument name in instrument properties window
1234            instrumentProps.signal_name_changed().connect(
1235                sigc::bind(
1236                    sigc::mem_fun(*this,
1237                                  &MainWindow::instr_name_changed_by_instr_props),
1238                    it));
1239        } else {
1240            instrumentProps.hide();
1241        }
1242        return it;
1243    }
1244    
1245    void MainWindow::show_instr_props()
1246    {
1247        if (instr_props_set_instrument()) {
1248          instrumentProps.show();          instrumentProps.show();
1249          instrumentProps.deiconify();          instrumentProps.deiconify();
1250      }      }
1251  }  }
1252    
1253    void MainWindow::instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it)
1254    {
1255        Gtk::TreeModel::Row row = *it;
1256        Glib::ustring name = row[m_Columns.m_col_name];
1257    
1258        gig::Instrument* instrument = row[m_Columns.m_col_instr];
1259        Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
1260        if (gigname != name) {
1261            row[m_Columns.m_col_name] = gigname;
1262        }
1263    }
1264    
1265  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
1266      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
1267          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
# Line 1266  void MainWindow::on_action_view_status_b Line 1273  void MainWindow::on_action_view_status_b
1273      else                    m_StatusBar.hide();      else                    m_StatusBar.hide();
1274  }  }
1275    
1276    bool MainWindow::is_copy_samples_unity_note_enabled() const {
1277        Gtk::CheckMenuItem* item =
1278            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
1279        if (!item) {
1280            std::cerr << "/MenuBar/MenuEdit/CopySampleUnity == NULL\n";
1281            return true;
1282        }
1283        return item->get_active();
1284    }
1285    
1286    bool MainWindow::is_copy_samples_fine_tune_enabled() const {
1287        Gtk::CheckMenuItem* item =
1288            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
1289        if (!item) {
1290            std::cerr << "/MenuBar/MenuEdit/CopySampleTune == NULL\n";
1291            return true;
1292        }
1293        return item->get_active();
1294    }
1295    
1296    bool MainWindow::is_copy_samples_loop_enabled() const {
1297        Gtk::CheckMenuItem* item =
1298            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
1299        if (!item) {
1300            std::cerr << "/MenuBar/MenuEdit/CopySampleLoop == NULL\n";
1301            return true;
1302        }
1303        return item->get_active();
1304    }
1305    
1306  void MainWindow::on_button_release(GdkEventButton* button)  void MainWindow::on_button_release(GdkEventButton* button)
1307  {  {
1308      if (button->type == GDK_2BUTTON_PRESS) {      if (button->type == GDK_2BUTTON_PRESS) {
# Line 1275  void MainWindow::on_button_release(GdkEv Line 1312  void MainWindow::on_button_release(GdkEv
1312      }      }
1313  }  }
1314    
1315  void MainWindow::on_instrument_selection_change(int index) {  void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {
1316      m_RegionChooser.set_instrument(file->GetInstrument(index));      if (item->get_active()) {
1317            const std::vector<Gtk::Widget*> children =
1318                instrument_menu->get_children();
1319            std::vector<Gtk::Widget*>::const_iterator it =
1320                find(children.begin(), children.end(), item);
1321            if (it != children.end()) {
1322                int index = it - children.begin();
1323                m_TreeView.get_selection()->select(Gtk::TreePath(ToString(index)));
1324    
1325                m_RegionChooser.set_instrument(file->GetInstrument(index));
1326            }
1327        }
1328  }  }
1329    
1330  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
# Line 1306  void MainWindow::on_sample_treeview_butt Line 1354  void MainWindow::on_sample_treeview_butt
1354      }      }
1355  }  }
1356    
1357  void MainWindow::on_action_add_instrument() {  
1358      static int __instrument_indexer = 0;  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
1359      if (!file) return;      const Glib::ustring& name, int position) {
1360      gig::Instrument* instrument = file->AddInstrument();  
1361      __instrument_indexer++;      Gtk::RadioMenuItem::Group instrument_group;
1362      instrument->pInfo->Name =      const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
1363          _("Unnamed Instrument ") + ToString(__instrument_indexer);      if (!children.empty()) {
1364            instrument_group =
1365                static_cast<Gtk::RadioMenuItem*>(children[0])->get_group();
1366        }
1367        Gtk::RadioMenuItem* item =
1368            new Gtk::RadioMenuItem(instrument_group, name);
1369        if (position < 0) {
1370            instrument_menu->append(*item);
1371        } else {
1372            instrument_menu->insert(*item, position);
1373        }
1374        item->show();
1375        item->signal_activate().connect(
1376            sigc::bind(
1377                sigc::mem_fun(*this, &MainWindow::on_instrument_selection_change),
1378                item));
1379        return item;
1380    }
1381    
1382    void MainWindow::remove_instrument_from_menu(int index) {
1383        const std::vector<Gtk::Widget*> children =
1384            instrument_menu->get_children();
1385        Gtk::Widget* child = children[index];
1386        instrument_menu->remove(*child);
1387        delete child;
1388    }
1389    
1390    void MainWindow::add_instrument(gig::Instrument* instrument) {
1391        const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
1392    
1393      // update instrument tree view      // update instrument tree view
1394        instrument_name_connection.block();
1395      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
1396      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
1397      rowInstr[m_Columns.m_col_name] = instrument->pInfo->Name.c_str();      rowInstr[m_Columns.m_col_name] = name;
1398      rowInstr[m_Columns.m_col_instr] = instrument;      rowInstr[m_Columns.m_col_instr] = instrument;
1399        instrument_name_connection.unblock();
1400    
1401        add_instrument_to_menu(name);
1402    
1403        m_TreeView.get_selection()->select(iterInstr);
1404    
1405      file_changed();      file_changed();
1406  }  }
1407    
1408    void MainWindow::on_action_add_instrument() {
1409        static int __instrument_indexer = 0;
1410        if (!file) return;
1411        gig::Instrument* instrument = file->AddInstrument();
1412        __instrument_indexer++;
1413        instrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument ") +
1414                                                ToString(__instrument_indexer));
1415    
1416        add_instrument(instrument);
1417    }
1418    
1419    void MainWindow::on_action_duplicate_instrument() {
1420        if (!file) return;
1421    
1422        // retrieve the currently selected instrument
1423        // (being the original instrument to be duplicated)
1424        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
1425        Gtk::TreeModel::iterator itSelection = sel->get_selected();
1426        if (!itSelection) return;
1427        Gtk::TreeModel::Row row = *itSelection;
1428        gig::Instrument* instrOrig = row[m_Columns.m_col_instr];
1429        if (!instrOrig) return;
1430    
1431        // duplicate the orginal instrument
1432        gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
1433        instrNew->pInfo->Name =
1434            instrOrig->pInfo->Name +
1435            gig_from_utf8(Glib::ustring(" (") + _("Copy") + ")");
1436    
1437        add_instrument(instrNew);
1438    }
1439    
1440  void MainWindow::on_action_remove_instrument() {  void MainWindow::on_action_remove_instrument() {
1441      if (!file) return;      if (!file) return;
1442      if (file_is_shared) {      if (file_is_shared) {
# Line 1340  void MainWindow::on_action_remove_instru Line 1456  void MainWindow::on_action_remove_instru
1456          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
1457          gig::Instrument* instr = row[m_Columns.m_col_instr];          gig::Instrument* instr = row[m_Columns.m_col_instr];
1458          try {          try {
1459                Gtk::TreePath path(it);
1460                int index = path[0];
1461    
1462              // remove instrument from the gig file              // remove instrument from the gig file
1463              if (instr) file->DeleteInstrument(instr);              if (instr) file->DeleteInstrument(instr);
             // remove respective row from instruments tree view  
             m_refTreeModel->erase(it);  
1464              file_changed();              file_changed();
1465    
1466                remove_instrument_from_menu(index);
1467    
1468                // remove row from instruments tree view
1469                m_refTreeModel->erase(it);
1470    
1471    #if GTKMM_MAJOR_VERSION < 3
1472                // select another instrument (in gtk3 this is done
1473                // automatically)
1474                if (!m_refTreeModel->children().empty()) {
1475                    if (index == m_refTreeModel->children().size()) {
1476                        index--;
1477                    }
1478                    m_TreeView.get_selection()->select(
1479                        Gtk::TreePath(ToString(index)));
1480                }
1481    #endif
1482                instr_props_set_instrument();
1483          } catch (RIFF::Exception e) {          } catch (RIFF::Exception e) {
1484              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
1485              msg.run();              msg.run();
# Line 1364  void MainWindow::on_action_add_group() { Line 1499  void MainWindow::on_action_add_group() {
1499      static int __sample_indexer = 0;      static int __sample_indexer = 0;
1500      if (!file) return;      if (!file) return;
1501      gig::Group* group = file->AddGroup();      gig::Group* group = file->AddGroup();
1502      group->Name = _("Unnamed Group");      group->Name = gig_from_utf8(_("Unnamed Group"));
1503      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
1504      __sample_indexer++;      __sample_indexer++;
1505      // update sample tree view      // update sample tree view
1506      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
1507      Gtk::TreeModel::Row rowGroup = *iterGroup;      Gtk::TreeModel::Row rowGroup = *iterGroup;
1508      rowGroup[m_SamplesModel.m_col_name] = group->Name.c_str();      rowGroup[m_SamplesModel.m_col_name] = gig_to_utf8(group->Name);
1509      rowGroup[m_SamplesModel.m_col_sample] = NULL;      rowGroup[m_SamplesModel.m_col_sample] = NULL;
1510      rowGroup[m_SamplesModel.m_col_group] = group;      rowGroup[m_SamplesModel.m_col_group] = group;
1511      file_changed();      file_changed();
# Line 1479  void MainWindow::on_action_add_sample() Line 1614  void MainWindow::on_action_add_sample()
1614                          break;                          break;
1615                      }                      }
1616                  }                  }
1617                  sample->pInfo->Name = filename;                  sample->pInfo->Name = gig_from_utf8(filename);
1618                  sample->Channels = info.channels;                  sample->Channels = info.channels;
1619                  sample->BitDepth = bitdepth;                  sample->BitDepth = bitdepth;
1620                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;
# Line 1493  void MainWindow::on_action_add_sample() Line 1628  void MainWindow::on_action_add_sample()
1628                                 &instrument, sizeof(instrument)) != SF_FALSE)                                 &instrument, sizeof(instrument)) != SF_FALSE)
1629                  {                  {
1630                      sample->MIDIUnityNote = instrument.basenote;                      sample->MIDIUnityNote = instrument.basenote;
1631                        sample->FineTune      = instrument.detune;
1632    
 #if HAVE_SF_INSTRUMENT_LOOPS  
1633                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {
1634                          sample->Loops = 1;                          sample->Loops = 1;
1635    
# Line 1514  void MainWindow::on_action_add_sample() Line 1649  void MainWindow::on_action_add_sample()
1649                          sample->LoopPlayCount = instrument.loops[0].count;                          sample->LoopPlayCount = instrument.loops[0].count;
1650                          sample->LoopSize = sample->LoopEnd - sample->LoopStart + 1;                          sample->LoopSize = sample->LoopEnd - sample->LoopStart + 1;
1651                      }                      }
 #endif  
1652                  }                  }
1653    
1654                  // schedule resizing the sample (which will be done                  // schedule resizing the sample (which will be done
# Line 1532  void MainWindow::on_action_add_sample() Line 1666  void MainWindow::on_action_add_sample()
1666                  Gtk::TreeModel::iterator iterSample =                  Gtk::TreeModel::iterator iterSample =
1667                      m_refSamplesTreeModel->append(row.children());                      m_refSamplesTreeModel->append(row.children());
1668                  Gtk::TreeModel::Row rowSample = *iterSample;                  Gtk::TreeModel::Row rowSample = *iterSample;
1669                  rowSample[m_SamplesModel.m_col_name]   = filename;                  rowSample[m_SamplesModel.m_col_name] =
1670                        gig_to_utf8(sample->pInfo->Name);
1671                  rowSample[m_SamplesModel.m_col_sample] = sample;                  rowSample[m_SamplesModel.m_col_sample] = sample;
1672                  rowSample[m_SamplesModel.m_col_group]  = NULL;                  rowSample[m_SamplesModel.m_col_group]  = NULL;
1673                  // close sound file                  // close sound file
1674                  sf_close(hFile);                  sf_close(hFile);
1675                  file_changed();                  file_changed();
1676              } catch (std::string what) { // remember the files that made trouble (and their cause)              } catch (std::string what) { // remember the files that made trouble (and their cause)
1677                  if (error_files.size()) error_files += "\n";                  if (!error_files.empty()) error_files += "\n";
1678                  error_files += *iter += " (" + what + ")";                  error_files += *iter += " (" + what + ")";
1679              }              }
1680          }          }
1681          // show error message box when some file(s) could not be opened / added          // show error message box when some file(s) could not be opened / added
1682          if (error_files.size()) {          if (!error_files.empty()) {
1683              Glib::ustring txt = _("Could not add the following sample(s):\n") + error_files;              Glib::ustring txt = _("Could not add the following sample(s):\n") + error_files;
1684              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1685              msg.run();              msg.run();
# Line 1557  void MainWindow::on_action_replace_all_s Line 1692  void MainWindow::on_action_replace_all_s
1692      if (!file) return;      if (!file) return;
1693      Gtk::FileChooserDialog dialog(*this, _("Select Folder"),      Gtk::FileChooserDialog dialog(*this, _("Select Folder"),
1694                                    Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);                                    Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
1695      view::WrapLabel description(      const char* str =
1696          _("This is a very specific function. It tries to replace all samples "          _("This is a very specific function. It tries to replace all samples "
1697            "in the current gig file by samples located in the chosen "            "in the current gig file by samples located in the chosen "
1698            "directory.\n\n"            "directory.\n\n"
# Line 1571  void MainWindow::on_action_replace_all_s Line 1706  void MainWindow::on_action_replace_all_s
1706            "the sample in the gig file accordingly. If you don't need an "            "the sample in the gig file accordingly. If you don't need an "
1707            "extension, blank the field below. Any gig sample where no "            "extension, blank the field below. Any gig sample where no "
1708            "appropriate sample file could be found will be reported and left "            "appropriate sample file could be found will be reported and left "
1709            "untouched.\n")            "untouched.\n");
1710      );  #if GTKMM_MAJOR_VERSION < 3
1711        view::WrapLabel description(str);
1712    #else
1713        Gtk::Label description(str);
1714        description.set_line_wrap();
1715    #endif
1716      Gtk::HBox entryArea;      Gtk::HBox entryArea;
1717      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
1718      Gtk::Entry postfixEntryBox;      Gtk::Entry postfixEntryBox;
# Line 1598  void MainWindow::on_action_replace_all_s Line 1738  void MainWindow::on_action_replace_all_s
1738               sample; sample = file->GetNextSample())               sample; sample = file->GetNextSample())
1739          {          {
1740              std::string filename =              std::string filename =
1741                  folder + G_DIR_SEPARATOR_S + sample->pInfo->Name +                  folder + G_DIR_SEPARATOR_S +
1742                  postfixEntryBox.get_text().raw();                  Glib::filename_from_utf8(gig_to_utf8(sample->pInfo->Name) +
1743                                             postfixEntryBox.get_text());
1744              SF_INFO info;              SF_INFO info;
1745              info.format = 0;              info.format = 0;
1746              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
# Line 1632  void MainWindow::on_action_replace_all_s Line 1773  void MainWindow::on_action_replace_all_s
1773              }              }
1774              catch (std::string what)              catch (std::string what)
1775              {              {
1776                  if (error_files.size()) error_files += "\n";                  if (!error_files.empty()) error_files += "\n";
1777                      error_files += filename += " (" + what + ")";                  error_files += Glib::filename_to_utf8(filename) +
1778                        " (" + what + ")";
1779              }              }
1780          }          }
1781          // show error message box when some file(s) could not be opened / added          // show error message box when some file(s) could not be opened / added
1782          if (error_files.size()) {          if (!error_files.empty()) {
1783              Glib::ustring txt =              Glib::ustring txt =
1784                  _("Could not replace the following sample(s):\n") + error_files;                  _("Could not replace the following sample(s):\n") + error_files;
1785              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
# Line 1658  void MainWindow::on_action_remove_sample Line 1800  void MainWindow::on_action_remove_sample
1800          try {          try {
1801              // remove group or sample from the gig file              // remove group or sample from the gig file
1802              if (group) {              if (group) {
1803                  // temporarily remember the samples that bolong to                  // temporarily remember the samples that belong to
1804                  // that group (we need that to clean the queue)                  // that group (we need that to clean the queue)
1805                  std::list<gig::Sample*> members;                  std::list<gig::Sample*> members;
1806                  for (gig::Sample* pSample = group->GetFirstSample();                  for (gig::Sample* pSample = group->GetFirstSample();
# Line 1784  void MainWindow::on_sample_label_drop_dr Line 1926  void MainWindow::on_sample_label_drop_dr
1926              channels_changed = true;              channels_changed = true;
1927              region_changed();              region_changed();
1928          }          }
1929          dimreg_edit.set_sample(sample);          dimreg_edit.set_sample(
1930                sample,
1931                is_copy_samples_unity_note_enabled(),
1932                is_copy_samples_fine_tune_enabled(),
1933                is_copy_samples_loop_enabled()
1934            );
1935    
1936          if (sample->Channels == 2 && !stereo_dimension) {          if (sample->Channels == 2 && !stereo_dimension) {
1937              // add samplechannel dimension              // add samplechannel dimension
# Line 1827  void MainWindow::sample_name_changed(con Line 1974  void MainWindow::sample_name_changed(con
1974      Glib::ustring name  = row[m_SamplesModel.m_col_name];      Glib::ustring name  = row[m_SamplesModel.m_col_name];
1975      gig::Group* group   = row[m_SamplesModel.m_col_group];      gig::Group* group   = row[m_SamplesModel.m_col_group];
1976      gig::Sample* sample = row[m_SamplesModel.m_col_sample];      gig::Sample* sample = row[m_SamplesModel.m_col_sample];
1977        gig::String gigname(gig_from_utf8(name));
1978      if (group) {      if (group) {
1979          if (group->Name != name) {          if (group->Name != gigname) {
1980              group->Name = name;              group->Name = gigname;
1981              printf("group name changed\n");              printf("group name changed\n");
1982              file_changed();              file_changed();
1983          }          }
1984      } else if (sample) {      } else if (sample) {
1985          if (sample->pInfo->Name != name.raw()) {          if (sample->pInfo->Name != gigname) {
1986              sample->pInfo->Name = name.raw();              sample->pInfo->Name = gigname;
1987              printf("sample name changed\n");              printf("sample name changed\n");
1988              file_changed();              file_changed();
1989          }          }
# Line 1847  void MainWindow::instrument_name_changed Line 1995  void MainWindow::instrument_name_changed
1995      if (!iter) return;      if (!iter) return;
1996      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
1997      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_Columns.m_col_name];
1998    
1999        // change name in instrument menu
2000        int index = path[0];
2001        const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
2002        if (index < children.size()) {
2003    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 16) || GTKMM_MAJOR_VERSION > 2
2004            static_cast<Gtk::RadioMenuItem*>(children[index])->set_label(name);
2005    #else
2006            remove_instrument_from_menu(index);
2007            Gtk::RadioMenuItem* item = add_instrument_to_menu(name, index);
2008            item->set_active();
2009    #endif
2010        }
2011    
2012        // change name in gig
2013      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_Columns.m_col_instr];
2014      if (instrument && instrument->pInfo->Name != name.raw()) {      gig::String gigname(gig_from_utf8(name));
2015          instrument->pInfo->Name = name.raw();      if (instrument && instrument->pInfo->Name != gigname) {
2016            instrument->pInfo->Name = gigname;
2017    
2018            // change name in the instrument properties window
2019            if (instrumentProps.get_instrument() == instrument) {
2020                instrumentProps.update_name();
2021            }
2022    
2023          file_changed();          file_changed();
2024      }      }
2025  }  }

Legend:
Removed from v.2332  
changed lines
  Added in v.2476

  ViewVC Help
Powered by ViewVC