/[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 2395 by schoenebeck, Mon Jan 7 23:35:08 2013 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006 - 2008 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 18  Line 18 
18   */   */
19    
20  #include <iostream>  #include <iostream>
21    #include <cstring>
22    
23    #include <glibmm/convert.h>
24    #include <glibmm/dispatcher.h>
25    #include <glibmm/miscutils.h>
26    #include <glibmm/stringutils.h>
27    #include <gtkmm/aboutdialog.h>
28  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
29  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
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>
33    #include <gtkmm/radiomenuitem.h>
34  #include <gtkmm/toggleaction.h>  #include <gtkmm/toggleaction.h>
35    #if GTKMM_MAJOR_VERSION < 3
36  #include "global.h"  #include "wrapLabel.hh"
   
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  
 #define ABOUT_DIALOG  
 #include <gtkmm/aboutdialog.h>  
37  #endif  #endif
38    
39  #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION < 6) || GLIBMM_MAJOR_VERSION < 2  #include "global.h"
40  namespace Glib {  #include "compat.h"
 Glib::ustring filename_display_basename(const std::string& filename)  
 {  
     gchar* gstr = g_path_get_basename(filename.c_str());  
     Glib::ustring str(gstr);  
     g_free(gstr);  
     return Glib::filename_to_utf8(str);  
 }  
 }  
 #endif  
41    
42  #include <stdio.h>  #include <stdio.h>
43  #include <sndfile.h>  #include <sndfile.h>
# Line 128  MainWindow::MainWindow() : Line 122  MainWindow::MainWindow() :
122      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
123    
124    
125      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, "Samples");      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
126      m_TreeViewNotebook.append_page(m_ScrolledWindow, "Instruments");      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
127    
128    
129      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
# Line 177  MainWindow::MainWindow() : Line 171  MainWindow::MainWindow() :
171      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
172      actionGroup->add(Gtk::Action::create("MenuHelp",      actionGroup->add(Gtk::Action::create("MenuHelp",
173                                           action->property_label()));                                           action->property_label()));
 #ifdef ABOUT_DIALOG  
174      actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),      actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),
175                       sigc::mem_fun(                       sigc::mem_fun(
176                           *this, &MainWindow::on_action_help_about));                           *this, &MainWindow::on_action_help_about));
 #endif  
177      actionGroup->add(      actionGroup->add(
178          Gtk::Action::create("AddInstrument", _("Add _Instrument")),          Gtk::Action::create("AddInstrument", _("Add _Instrument")),
179          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)
180      );      );
181      actionGroup->add(      actionGroup->add(
182            Gtk::Action::create("DupInstrument", _("_Duplicate Instrument")),
183            sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
184        );
185        actionGroup->add(
186          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),
187          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
188      );      );
# Line 201  MainWindow::MainWindow() : Line 197  MainWindow::MainWindow() :
197          sigc::mem_fun(*this, &MainWindow::on_action_add_group)          sigc::mem_fun(*this, &MainWindow::on_action_add_group)
198      );      );
199      actionGroup->add(      actionGroup->add(
200          Gtk::Action::create("AddSample", _("Add _Sample(s)")),          Gtk::Action::create("AddSample", _("Add _Sample(s)...")),
201          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
202      );      );
203      actionGroup->add(      actionGroup->add(
204          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),
205          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
206      );      );
207        actionGroup->add(
208            Gtk::Action::create("ReplaceAllSamplesInAllGroups",
209                                _("Replace All Samples in All Groups...")),
210            sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
211        );
212    
213      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
214      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
# Line 232  MainWindow::MainWindow() : Line 233  MainWindow::MainWindow() :
233          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
234          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
235          "    </menu>"          "    </menu>"
 #ifdef ABOUT_DIALOG  
236          "    <menu action='MenuHelp'>"          "    <menu action='MenuHelp'>"
237          "      <menuitem action='About'/>"          "      <menuitem action='About'/>"
238          "    </menu>"          "    </menu>"
 #endif  
239          "  </menubar>"          "  </menubar>"
240          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
241          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
242          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
243            "    <menuitem action='DupInstrument'/>"
244          "    <separator/>"          "    <separator/>"
245          "    <menuitem action='RemoveInstrument'/>"          "    <menuitem action='RemoveInstrument'/>"
246          "  </popup>"          "  </popup>"
# Line 248  MainWindow::MainWindow() : Line 248  MainWindow::MainWindow() :
248          "    <menuitem action='SampleProperties'/>"          "    <menuitem action='SampleProperties'/>"
249          "    <menuitem action='AddGroup'/>"          "    <menuitem action='AddGroup'/>"
250          "    <menuitem action='AddSample'/>"          "    <menuitem action='AddSample'/>"
251            "    <menuitem action='ReplaceAllSamplesInAllGroups' />"
252          "    <separator/>"          "    <separator/>"
253          "    <menuitem action='RemoveSample'/>"          "    <menuitem action='RemoveSample'/>"
254          "  </popup>"          "  </popup>"
# Line 264  MainWindow::MainWindow() : Line 265  MainWindow::MainWindow() :
265      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);
266      m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);
267    
268        set_file_is_shared(false);
269    
270      // Status Bar:      // Status Bar:
271      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);
272      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);
# Line 300  MainWindow::MainWindow() : Line 303  MainWindow::MainWindow() :
303      );      );
304    
305      // establish drag&drop between samples tree view and dimension region 'Sample' text entry      // establish drag&drop between samples tree view and dimension region 'Sample' text entry
306      std::list<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
307      drag_target_gig_sample.push_back( Gtk::TargetEntry("gig::Sample") );      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
308      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);
309      m_TreeViewSamples.signal_drag_begin().connect(      m_TreeViewSamples.signal_drag_begin().connect(
310          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)
# Line 366  MainWindow::MainWindow() : Line 369  MainWindow::MainWindow() :
369    
370      file = 0;      file = 0;
371      file_is_changed = false;      file_is_changed = false;
     set_file_is_shared(false);  
372    
373      show_all_children();      show_all_children();
374    
# Line 470  void loader_progress_callback(gig::progr Line 472  void loader_progress_callback(gig::progr
472  void Loader::progress_callback(float fraction)  void Loader::progress_callback(float fraction)
473  {  {
474      {      {
475          Glib::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
476          progress = fraction;          progress = fraction;
477      }      }
478      progress_dispatcher();      progress_dispatcher();
# Line 478  void Loader::progress_callback(float fra Line 480  void Loader::progress_callback(float fra
480    
481  void Loader::thread_function()  void Loader::thread_function()
482  {  {
483      printf("thread_function self=%x\n", Glib::Thread::self());      printf("thread_function self=%x\n", Glib::Threads::Thread::self());
484      printf("Start %s\n", filename);      printf("Start %s\n", filename);
485      RIFF::File* riff = new RIFF::File(filename);      RIFF::File* riff = new RIFF::File(filename);
486      gig = new gig::File(riff);      gig = new gig::File(riff);
# Line 492  void Loader::thread_function() Line 494  void Loader::thread_function()
494  }  }
495    
496  Loader::Loader(const char* filename)  Loader::Loader(const char* filename)
497      : thread(0), filename(filename)      : filename(filename), thread(0)
498  {  {
499  }  }
500    
501  void Loader::launch()  void Loader::launch()
502  {  {
503    #ifdef OLD_THREADS
504      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);
505    #else
506        thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));
507    #endif
508      printf("launch thread=%x\n", thread);      printf("launch thread=%x\n", thread);
509  }  }
510    
# Line 506  float Loader::get_progress() Line 512  float Loader::get_progress()
512  {  {
513      float res;      float res;
514      {      {
515          Glib::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
516          res = progress;          res = progress;
517      }      }
518      return res;      return res;
# Line 536  void MainWindow::__clear() { Line 542  void MainWindow::__clear() {
542      Gtk::MenuItem* instrument_menu =      Gtk::MenuItem* instrument_menu =
543          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));
544      instrument_menu->hide();      instrument_menu->hide();
545      for (int i = 0; i < instrument_menu->get_submenu()->items().size(); i++) {      Gtk::Menu* menu = instrument_menu->get_submenu();
546          delete &instrument_menu->get_submenu()->items()[i];      while (menu->get_children().size()) {
547            Gtk::Widget* child = *menu->get_children().begin();
548            menu->remove(*child);
549            delete child;
550      }      }
     instrument_menu->get_submenu()->items().clear();  
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
# 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 574  bool MainWindow::close_confirmation_dial Line 582  bool MainWindow::close_confirmation_dial
582                                   Glib::filename_display_basename(filename).c_str());                                   Glib::filename_display_basename(filename).c_str());
583      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
584      g_free(msg);      g_free(msg);
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  
585      dialog.set_secondary_text(_("If you close without saving, your changes will be lost."));      dialog.set_secondary_text(_("If you close without saving, your changes will be lost."));
 #endif  
586      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
587      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
588      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);
# Line 590  bool MainWindow::close_confirmation_dial Line 596  bool MainWindow::close_confirmation_dial
596  bool MainWindow::leaving_shared_mode_dialog() {  bool MainWindow::leaving_shared_mode_dialog() {
597      Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");      Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");
598      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  
599      dialog.set_secondary_text(      dialog.set_secondary_text(
600          _("If you proceed to work on another instrument file, it won't be "          _("If you proceed to work on another instrument file, it won't be "
601            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
602            "load it.")            "load it."));
    );  
 #endif  
603      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
604      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
605      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
# Line 615  void MainWindow::on_action_file_open() Line 618  void MainWindow::on_action_file_open()
618      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
619      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
620      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
621    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
622      Gtk::FileFilter filter;      Gtk::FileFilter filter;
623      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
624    #else
625        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
626        filter->add_pattern("*.gig");
627    #endif
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::Threads::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 666  void MainWindow::on_loader_progress() Line 674  void MainWindow::on_loader_progress()
674  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
675  {  {
676      printf("Loader finished!\n");      printf("Loader finished!\n");
677      printf("on_loader_finished self=%x\n", Glib::Thread::self());      printf("on_loader_finished self=%x\n", Glib::Threads::Thread::self());
678      load_gig(loader->gig, loader->filename);      load_gig(loader->gig, loader->filename);
679      load_dialog->hide();      load_dialog->hide();
680  }  }
# Line 738  bool MainWindow::file_save_as() Line 746  bool MainWindow::file_save_as()
746      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
747      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
748      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
   
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 8) || GTKMM_MAJOR_VERSION > 2  
749      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
750      // TODO: an overwrite dialog for gtkmm < 2.8  
751  #endif  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
752      Gtk::FileFilter filter;      Gtk::FileFilter filter;
753      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
754    #else
755        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
756        filter->add_pattern("*.gig");
757    #endif
758      dialog.set_filter(filter);      dialog.set_filter(filter);
759    
760      if (Glib::path_is_absolute(filename)) {      // set initial dir and filename of the Save As dialog
761          dialog.set_filename(filename);      // and prepare that initial filename as a copy of the gig
762      } else if (current_dir != "") {      {
763          dialog.set_current_folder(current_dir);          std::string basename = Glib::path_get_basename(filename);
764            std::string dir = Glib::path_get_dirname(filename);
765            basename = std::string(_("copy_of_")) + basename;
766            Glib::ustring copyFileName = Glib::build_filename(dir, basename);
767            if (Glib::path_is_absolute(filename)) {
768                dialog.set_filename(copyFileName);
769            } else {
770                if (current_gig_dir != "") dialog.set_current_folder(current_gig_dir);
771            }
772            dialog.set_current_name(Glib::filename_display_basename(copyFileName));
773      }      }
774      dialog.set_current_name(Glib::filename_display_basename(filename));  
775        // show warning in the dialog
776        Gtk::HBox descriptionArea;
777        descriptionArea.set_spacing(15);
778        Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
779        descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
780    #if GTKMM_MAJOR_VERSION < 3
781        view::WrapLabel description;
782    #else
783        Gtk::Label description;
784        description.set_line_wrap();
785    #endif
786        description.set_markup(
787            _("\n<b>CAUTION:</b> You <b>MUST</b> use the "
788              "<span style=\"italic\">\"Save\"</span> dialog instead of "
789              "<span style=\"italic\">\"Save As...\"</span> if you want to save "
790              "to the same .gig file. Using "
791              "<span style=\"italic\">\"Save As...\"</span> for writing to the "
792              "same .gig file will end up in corrupted sample wave data!\n")
793        );
794        descriptionArea.pack_start(description);
795        dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
796        descriptionArea.show_all();
797    
798      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
799          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 805  bool MainWindow::file_save_as()
805              printf("filename=%s\n", filename.c_str());              printf("filename=%s\n", filename.c_str());
806              file->Save(filename);              file->Save(filename);
807              this->filename = filename;              this->filename = filename;
808              current_dir = Glib::path_get_dirname(filename);              current_gig_dir = Glib::path_get_dirname(filename);
809              set_title(Glib::filename_display_basename(filename));              set_title(Glib::filename_display_basename(filename));
810              file_has_name = true;              file_has_name = true;
811              file_is_changed = false;              file_is_changed = false;
# Line 794  void MainWindow::__import_queued_samples Line 835  void MainWindow::__import_queued_samples
835          info.format = 0;          info.format = 0;
836          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);
837          try {          try {
838              if (!hFile) throw std::string("could not open file");              if (!hFile) throw std::string(_("could not open file"));
839              // determine sample's bit depth              // determine sample's bit depth
840              int bitdepth;              int bitdepth;
841              switch (info.format & 0xff) {              switch (info.format & 0xff) {
# Line 811  void MainWindow::__import_queued_samples Line 852  void MainWindow::__import_queued_samples
852                      break;                      break;
853                  default:                  default:
854                      sf_close(hFile); // close sound file                      sf_close(hFile); // close sound file
855                      throw std::string("format not supported"); // unsupported subformat (yet?)                      throw std::string(_("format not supported")); // unsupported subformat (yet?)
856              }              }
857    
858              const int bufsize = 10000;              const int bufsize = 10000;
# Line 853  void MainWindow::__import_queued_samples Line 894  void MainWindow::__import_queued_samples
894              }              }
895              // cleanup              // cleanup
896              sf_close(hFile);              sf_close(hFile);
897                // let the sampler re-cache the sample if needed
898                sample_changed_signal.emit(iter->gig_sample);
899              // on success we remove the sample from the import queue,              // on success we remove the sample from the import queue,
900              // otherwise keep it, maybe it works the next time ?              // otherwise keep it, maybe it works the next time ?
901              std::list<SampleImportItem>::iterator cur = iter;              std::list<SampleImportItem>::iterator cur = iter;
# Line 881  void MainWindow::on_action_file_properti Line 924  void MainWindow::on_action_file_properti
924    
925  void MainWindow::on_action_help_about()  void MainWindow::on_action_help_about()
926  {  {
 #ifdef ABOUT_DIALOG  
927      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
928    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 12) || GTKMM_MAJOR_VERSION > 2
929        dialog.set_program_name("Gigedit");
930    #else
931        dialog.set_name("Gigedit");
932    #endif
933      dialog.set_version(VERSION);      dialog.set_version(VERSION);
934      dialog.set_copyright("Copyright (C) 2006,2007 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2013 Andreas Persson");
935      dialog.set_comments(      dialog.set_comments(_(
936          "Released under the GNU General Public License.\n"          "Released under the GNU General Public License.\n"
937          "\n"          "\n"
938          "Please notice that this is still a very young instrument editor. "          "Please notice that this is still a very young instrument editor. "
939          "So better backup your Gigasampler files before editing them with "          "So better backup your Gigasampler files before editing them with "
940          "this application.\n"          "this application.\n"
941          "\n"          "\n"
942          "Please report bugs to: http://bugs.linuxsampler.org"          "Please report bugs to: http://bugs.linuxsampler.org")
943      );      );
944      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("http://www.linuxsampler.org");
945      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("http://www.linuxsampler.org");
946      dialog.run();      dialog.run();
 #endif  
947  }  }
948    
949  PropDialog::PropDialog()  PropDialog::PropDialog()
950      : table(2,1),      : eName(_("Name")),
951        eName("Name"),        eCreationDate(_("Creation date")),
952        eCreationDate("Creation date"),        eComments(_("Comments")),
953        eComments("Comments"),        eProduct(_("Product")),
954        eProduct("Product"),        eCopyright(_("Copyright")),
955        eCopyright("Copyright"),        eArtists(_("Artists")),
956        eArtists("Artists"),        eGenre(_("Genre")),
957        eGenre("Genre"),        eKeywords(_("Keywords")),
958        eKeywords("Keywords"),        eEngineer(_("Engineer")),
959        eEngineer("Engineer"),        eTechnician(_("Technician")),
960        eTechnician("Technician"),        eSoftware(_("Software")),
961        eSoftware("Software"),        eMedium(_("Medium")),
962        eMedium("Medium"),        eSource(_("Source")),
963        eSource("Source"),        eSourceForm(_("Source form")),
964        eSourceForm("Source form"),        eCommissioned(_("Commissioned")),
965        eCommissioned("Commissioned"),        eSubject(_("Subject")),
       eSubject("Subject"),  
966        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
967          table(2, 1),
968        update_model(0)        update_model(0)
969  {  {
970      set_title("File Properties");      set_title(_("File Properties"));
971      eName.set_width_chars(50);      eName.set_width_chars(50);
972    
973      connect(eName, &DLS::Info::Name);      connect(eName, &DLS::Info::Name);
# Line 967  PropDialog::PropDialog() Line 1013  PropDialog::PropDialog()
1013      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
1014      buttonBox.show();      buttonBox.show();
1015      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
1016      quitButton.set_flags(Gtk::CAN_DEFAULT);      quitButton.set_can_default();
1017      quitButton.grab_focus();      quitButton.grab_focus();
1018      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
1019          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &PropDialog::hide));
# Line 1037  void InstrumentProps::set_DimensionKeyRa Line 1083  void InstrumentProps::set_DimensionKeyRa
1083  }  }
1084    
1085  InstrumentProps::InstrumentProps()  InstrumentProps::InstrumentProps()
1086      : table(2,1),      : update_model(0),
1087        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
1088        eName("Name"),        table(2,1),
1089        eIsDrum("Is drum"),        eName(_("Name")),
1090        eMIDIBank("MIDI bank", 0, 16383),        eIsDrum(_("Is drum")),
1091        eMIDIProgram("MIDI program"),        eMIDIBank(_("MIDI bank"), 0, 16383),
1092        eAttenuation("Attenuation", 0, 96, 0, 1),        eMIDIProgram(_("MIDI program")),
1093        eGainPlus6("Gain +6dB", eAttenuation, -6),        eAttenuation(_("Attenuation"), 0, 96, 0, 1),
1094        eEffectSend("Effect send", 0, 65535),        eGainPlus6(_("Gain +6dB"), eAttenuation, -6),
1095        eFineTune("Fine tune", -8400, 8400),        eEffectSend(_("Effect send"), 0, 65535),
1096        ePitchbendRange("Pitchbend range", 0, 12),        eFineTune(_("Fine tune"), -8400, 8400),
1097        ePianoReleaseMode("Piano release mode"),        ePitchbendRange(_("Pitchbend range"), 0, 12),
1098        eDimensionKeyRangeLow("Keyswitching range low"),        ePianoReleaseMode(_("Piano release mode")),
1099        eDimensionKeyRangeHigh("Keyswitching range high"),        eDimensionKeyRangeLow(_("Keyswitching range low")),
1100        update_model(0)        eDimensionKeyRangeHigh(_("Keyswitching range high"))
1101  {  {
1102      set_title("Instrument Properties");      set_title(_("Instrument Properties"));
1103    
1104      eDimensionKeyRangeLow.set_tip(      eDimensionKeyRangeLow.set_tip(
1105          _("start of the keyboard area which should switch the "          _("start of the keyboard area which should switch the "
# Line 1102  InstrumentProps::InstrumentProps() Line 1148  InstrumentProps::InstrumentProps()
1148      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
1149      buttonBox.show();      buttonBox.show();
1150      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
1151      quitButton.set_flags(Gtk::CAN_DEFAULT);      quitButton.set_can_default();
1152      quitButton.grab_focus();      quitButton.grab_focus();
1153    
1154      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
# Line 1278  void MainWindow::on_action_add_instrumen Line 1324  void MainWindow::on_action_add_instrumen
1324      gig::Instrument* instrument = file->AddInstrument();      gig::Instrument* instrument = file->AddInstrument();
1325      __instrument_indexer++;      __instrument_indexer++;
1326      instrument->pInfo->Name =      instrument->pInfo->Name =
1327          "Unnamed Instrument " + ToString(__instrument_indexer);          _("Unnamed Instrument ") + ToString(__instrument_indexer);
1328      // update instrument tree view      // update instrument tree view
1329      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
1330      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
# Line 1287  void MainWindow::on_action_add_instrumen Line 1333  void MainWindow::on_action_add_instrumen
1333      file_changed();      file_changed();
1334  }  }
1335    
1336    void MainWindow::on_action_duplicate_instrument() {
1337        if (!file) return;
1338        
1339        // retrieve the currently selected instrument
1340        // (being the original instrument to be duplicated)
1341        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
1342        Gtk::TreeModel::iterator itSelection = sel->get_selected();
1343        if (!itSelection) return;
1344        Gtk::TreeModel::Row row = *itSelection;
1345        gig::Instrument* instrOrig = row[m_Columns.m_col_instr];
1346        if (!instrOrig) return;
1347        
1348        // duplicate the orginal instrument
1349        gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
1350        instrNew->pInfo->Name =
1351            instrOrig->pInfo->Name + " (" + _("Copy") + ")";
1352            
1353        // update instrument tree view
1354        Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
1355        Gtk::TreeModel::Row rowInstr = *iterInstr;
1356        rowInstr[m_Columns.m_col_name] = instrNew->pInfo->Name.c_str();
1357        rowInstr[m_Columns.m_col_instr] = instrNew;
1358        file_changed();
1359    }
1360    
1361  void MainWindow::on_action_remove_instrument() {  void MainWindow::on_action_remove_instrument() {
1362      if (!file) return;      if (!file) return;
1363      if (file_is_shared) {      if (file_is_shared) {
# Line 1321  void MainWindow::on_action_remove_instru Line 1392  void MainWindow::on_action_remove_instru
1392  void MainWindow::on_action_sample_properties() {  void MainWindow::on_action_sample_properties() {
1393      //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
1394      Gtk::MessageDialog msg(      Gtk::MessageDialog msg(
1395          *this, "Sorry, yet to be implemented!", false, Gtk::MESSAGE_INFO          *this, _("Sorry, yet to be implemented!"), false, Gtk::MESSAGE_INFO
1396      );      );
1397      msg.run();      msg.run();
1398  }  }
# Line 1330  void MainWindow::on_action_add_group() { Line 1401  void MainWindow::on_action_add_group() {
1401      static int __sample_indexer = 0;      static int __sample_indexer = 0;
1402      if (!file) return;      if (!file) return;
1403      gig::Group* group = file->AddGroup();      gig::Group* group = file->AddGroup();
1404      group->Name = "Unnamed Group";      group->Name = _("Unnamed Group");
1405      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
1406      __sample_indexer++;      __sample_indexer++;
1407      // update sample tree view      // update sample tree view
# Line 1364  void MainWindow::on_action_add_sample() Line 1435  void MainWindow::on_action_add_sample()
1435      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1436      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
1437      dialog.set_select_multiple(true);      dialog.set_select_multiple(true);
1438      Gtk::FileFilter soundfilter; // matches all file types supported by libsndfile  
1439        // matches all file types supported by libsndfile
1440    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1441        Gtk::FileFilter soundfilter;
1442    #else
1443        Glib::RefPtr<Gtk::FileFilter> soundfilter = Gtk::FileFilter::create();
1444    #endif
1445      const char* const supportedFileTypes[] = {      const char* const supportedFileTypes[] = {
1446          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",
1447          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",
# Line 1372  void MainWindow::on_action_add_sample() Line 1449  void MainWindow::on_action_add_sample()
1449          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",
1450          "*.caf", "*.CAF", NULL          "*.caf", "*.CAF", NULL
1451      };      };
1452        const char* soundfiles = _("Sound Files");
1453        const char* allfiles = _("All Files");
1454    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1455      for (int i = 0; supportedFileTypes[i]; i++)      for (int i = 0; supportedFileTypes[i]; i++)
1456          soundfilter.add_pattern(supportedFileTypes[i]);          soundfilter.add_pattern(supportedFileTypes[i]);
1457      soundfilter.set_name("Sound Files");      soundfilter.set_name(soundfiles);
1458      Gtk::FileFilter allpassfilter; // matches every file  
1459        // matches every file
1460        Gtk::FileFilter allpassfilter;
1461      allpassfilter.add_pattern("*.*");      allpassfilter.add_pattern("*.*");
1462      allpassfilter.set_name("All Files");      allpassfilter.set_name(allfiles);
1463    #else
1464        for (int i = 0; supportedFileTypes[i]; i++)
1465            soundfilter->add_pattern(supportedFileTypes[i]);
1466        soundfilter->set_name(soundfiles);
1467    
1468        // matches every file
1469        Glib::RefPtr<Gtk::FileFilter> allpassfilter = Gtk::FileFilter::create();
1470        allpassfilter->add_pattern("*.*");
1471        allpassfilter->set_name(allfiles);
1472    #endif
1473      dialog.add_filter(soundfilter);      dialog.add_filter(soundfilter);
1474      dialog.add_filter(allpassfilter);      dialog.add_filter(allpassfilter);
1475        if (current_sample_dir != "") {
1476            dialog.set_current_folder(current_sample_dir);
1477        }
1478      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1479            current_sample_dir = dialog.get_current_folder();
1480          Glib::ustring error_files;          Glib::ustring error_files;
1481          Glib::SListHandle<Glib::ustring> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
1482          for (Glib::SListHandle<Glib::ustring>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
1483               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
1484              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
1485              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file informations
# Line 1391  void MainWindow::on_action_add_sample() Line 1487  void MainWindow::on_action_add_sample()
1487              info.format = 0;              info.format = 0;
1488              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
1489              try {              try {
1490                  if (!hFile) throw std::string("could not open file");                  if (!hFile) throw std::string(_("could not open file"));
1491                  int bitdepth;                  int bitdepth;
1492                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
1493                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
# Line 1407  void MainWindow::on_action_add_sample() Line 1503  void MainWindow::on_action_add_sample()
1503                          break;                          break;
1504                      default:                      default:
1505                          sf_close(hFile); // close sound file                          sf_close(hFile); // close sound file
1506                          throw std::string("format not supported"); // unsupported subformat (yet?)                          throw std::string(_("format not supported")); // unsupported subformat (yet?)
1507                  }                  }
1508                  // add a new sample to the .gig file                  // add a new sample to the .gig file
1509                  gig::Sample* sample = file->AddSample();                  gig::Sample* sample = file->AddSample();
# Line 1493  void MainWindow::on_action_add_sample() Line 1589  void MainWindow::on_action_add_sample()
1589      }      }
1590  }  }
1591    
1592    void MainWindow::on_action_replace_all_samples_in_all_groups()
1593    {
1594        if (!file) return;
1595        Gtk::FileChooserDialog dialog(*this, _("Select Folder"),
1596                                      Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
1597        const char* str =
1598            _("This is a very specific function. It tries to replace all samples "
1599              "in the current gig file by samples located in the chosen "
1600              "directory.\n\n"
1601              "It works like this: For each sample in the gig file, it tries to "
1602              "find a sample file in the selected directory with the same name as "
1603              "the sample in the gig file. Optionally, you can add a filename "
1604              "extension below, which will be added to the filename expected to be "
1605              "found. That is, assume you have a gig file with a sample called "
1606              "'Snare', if you enter '.wav' below (like it's done by default), it "
1607              "expects to find a sample file called 'Snare.wav' and will replace "
1608              "the sample in the gig file accordingly. If you don't need an "
1609              "extension, blank the field below. Any gig sample where no "
1610              "appropriate sample file could be found will be reported and left "
1611              "untouched.\n");
1612    #if GTKMM_MAJOR_VERSION < 3
1613        view::WrapLabel description(str);
1614    #else
1615        Gtk::Label description(str);
1616        description.set_line_wrap();
1617    #endif
1618        Gtk::HBox entryArea;
1619        Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
1620        Gtk::Entry postfixEntryBox;
1621        postfixEntryBox.set_text(".wav");
1622        entryArea.pack_start(entryLabel);
1623        entryArea.pack_start(postfixEntryBox);
1624        dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);
1625        dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
1626        description.show();
1627        entryArea.show_all();
1628        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1629        dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
1630        dialog.set_select_multiple(false);
1631        if (current_sample_dir != "") {
1632            dialog.set_current_folder(current_sample_dir);
1633        }
1634        if (dialog.run() == Gtk::RESPONSE_OK)
1635        {
1636            current_sample_dir = dialog.get_current_folder();
1637            Glib::ustring error_files;
1638            std::string folder = dialog.get_filename();
1639            for (gig::Sample* sample = file->GetFirstSample();
1640                 sample; sample = file->GetNextSample())
1641            {
1642                std::string filename =
1643                    folder + G_DIR_SEPARATOR_S + sample->pInfo->Name +
1644                    postfixEntryBox.get_text().raw();
1645                SF_INFO info;
1646                info.format = 0;
1647                SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
1648                try
1649                {
1650                    if (!hFile) throw std::string(_("could not open file"));
1651                    int bitdepth;
1652                    switch (info.format & 0xff) {
1653                        case SF_FORMAT_PCM_S8:
1654                        case SF_FORMAT_PCM_16:
1655                        case SF_FORMAT_PCM_U8:
1656                            bitdepth = 16;
1657                            break;
1658                        case SF_FORMAT_PCM_24:
1659                        case SF_FORMAT_PCM_32:
1660                        case SF_FORMAT_FLOAT:
1661                        case SF_FORMAT_DOUBLE:
1662                            bitdepth = 24;
1663                            break;
1664                        default:
1665                            sf_close(hFile);
1666                            throw std::string(_("format not supported"));
1667                    }
1668                    SampleImportItem sched_item;
1669                    sched_item.gig_sample  = sample;
1670                    sched_item.sample_path = filename;
1671                    m_SampleImportQueue.push_back(sched_item);
1672                    sf_close(hFile);
1673                    file_changed();
1674                }
1675                catch (std::string what)
1676                {
1677                    if (error_files.size()) error_files += "\n";
1678                        error_files += filename += " (" + what + ")";
1679                }
1680            }
1681            // show error message box when some file(s) could not be opened / added
1682            if (error_files.size()) {
1683                Glib::ustring txt =
1684                    _("Could not replace the following sample(s):\n") + error_files;
1685                Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1686                msg.run();
1687            }
1688        }
1689    }
1690    
1691  void MainWindow::on_action_remove_sample() {  void MainWindow::on_action_remove_sample() {
1692      if (!file) return;      if (!file) return;
1693      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 1936  sigc::signal<void, gig::Region*>& MainWi
1936      return region_changed_signal;      return region_changed_signal;
1937  }  }
1938    
1939    sigc::signal<void, gig::Sample*>& MainWindow::signal_sample_changed() {
1940        return sample_changed_signal;
1941    }
1942    
1943  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() {
1944      return sample_ref_changed_signal;      return sample_ref_changed_signal;
1945  }  }

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

  ViewVC Help
Powered by ViewVC