/[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 1673 by schoenebeck, Wed Feb 6 22:08:29 2008 UTC revision 2169 by persson, Sun Mar 6 07:51:04 2011 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006 - 2008 Andreas Persson   * Copyright (C) 2006-2011 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 18  Line 18 
18   */   */
19    
20  #include <iostream>  #include <iostream>
21    #include <cstring>
22    
23    #include <gtkmm/aboutdialog.h>
24  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
25  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
26  #include <gtkmm/stock.h>  #include <gtkmm/stock.h>
27  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
28  #include <gtkmm/main.h>  #include <gtkmm/main.h>
29    #include <gtkmm/radiomenuitem.h>
30  #include <gtkmm/toggleaction.h>  #include <gtkmm/toggleaction.h>
31    #include "wrapLabel.hh"
32    
33  #include "global.h"  #include "global.h"
34    #include "compat.h"
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  
 #define ABOUT_DIALOG  
 #include <gtkmm/aboutdialog.h>  
 #endif  
   
 #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION < 6) || GLIBMM_MAJOR_VERSION < 2  
 namespace Glib {  
 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  
35    
36  #include <stdio.h>  #include <stdio.h>
37  #include <sndfile.h>  #include <sndfile.h>
# Line 128  MainWindow::MainWindow() : Line 116  MainWindow::MainWindow() :
116      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
117    
118    
119      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, "Samples");      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
120      m_TreeViewNotebook.append_page(m_ScrolledWindow, "Instruments");      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
121    
122    
123      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
# Line 177  MainWindow::MainWindow() : Line 165  MainWindow::MainWindow() :
165      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
166      actionGroup->add(Gtk::Action::create("MenuHelp",      actionGroup->add(Gtk::Action::create("MenuHelp",
167                                           action->property_label()));                                           action->property_label()));
 #ifdef ABOUT_DIALOG  
168      actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),      actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),
169                       sigc::mem_fun(                       sigc::mem_fun(
170                           *this, &MainWindow::on_action_help_about));                           *this, &MainWindow::on_action_help_about));
 #endif  
171      actionGroup->add(      actionGroup->add(
172          Gtk::Action::create("AddInstrument", _("Add _Instrument")),          Gtk::Action::create("AddInstrument", _("Add _Instrument")),
173          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)
# Line 201  MainWindow::MainWindow() : Line 187  MainWindow::MainWindow() :
187          sigc::mem_fun(*this, &MainWindow::on_action_add_group)          sigc::mem_fun(*this, &MainWindow::on_action_add_group)
188      );      );
189      actionGroup->add(      actionGroup->add(
190          Gtk::Action::create("AddSample", _("Add _Sample(s)")),          Gtk::Action::create("AddSample", _("Add _Sample(s)...")),
191          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
192      );      );
193      actionGroup->add(      actionGroup->add(
# Line 209  MainWindow::MainWindow() : Line 195  MainWindow::MainWindow() :
195          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
196      );      );
197      actionGroup->add(      actionGroup->add(
198          Gtk::Action::create("ReplaceAllSamplesInAllGroups", _("Replace All Samples In All Groups")),          Gtk::Action::create("ReplaceAllSamplesInAllGroups",
199                                _("Replace All Samples in All Groups...")),
200          sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)          sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
201      );      );
202    
# Line 236  MainWindow::MainWindow() : Line 223  MainWindow::MainWindow() :
223          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
224          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
225          "    </menu>"          "    </menu>"
 #ifdef ABOUT_DIALOG  
226          "    <menu action='MenuHelp'>"          "    <menu action='MenuHelp'>"
227          "      <menuitem action='About'/>"          "      <menuitem action='About'/>"
228          "    </menu>"          "    </menu>"
 #endif  
229          "  </menubar>"          "  </menubar>"
230          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
231          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
# Line 305  MainWindow::MainWindow() : Line 290  MainWindow::MainWindow() :
290      );      );
291    
292      // 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
293      std::list<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
294      drag_target_gig_sample.push_back( Gtk::TargetEntry("gig::Sample") );      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
295      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);
296      m_TreeViewSamples.signal_drag_begin().connect(      m_TreeViewSamples.signal_drag_begin().connect(
297          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)
# Line 497  void Loader::thread_function() Line 482  void Loader::thread_function()
482  }  }
483    
484  Loader::Loader(const char* filename)  Loader::Loader(const char* filename)
485      : thread(0), filename(filename)      : filename(filename), thread(0)
486  {  {
487  }  }
488    
# Line 541  void MainWindow::__clear() { Line 526  void MainWindow::__clear() {
526      Gtk::MenuItem* instrument_menu =      Gtk::MenuItem* instrument_menu =
527          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));
528      instrument_menu->hide();      instrument_menu->hide();
529      for (int i = 0; i < instrument_menu->get_submenu()->items().size(); i++) {      Gtk::Menu* menu = instrument_menu->get_submenu();
530          delete &instrument_menu->get_submenu()->items()[i];      while (menu->get_children().size()) {
531            Gtk::Widget* child = *menu->get_children().begin();
532            menu->remove(*child);
533            delete child;
534      }      }
     instrument_menu->get_submenu()->items().clear();  
535      // forget all samples that ought to be imported      // forget all samples that ought to be imported
536      m_SampleImportQueue.clear();      m_SampleImportQueue.clear();
537      // clear the samples and instruments tree views      // clear the samples and instruments tree views
# Line 568  void MainWindow::on_action_file_new() Line 555  void MainWindow::on_action_file_new()
555      gig::File* pFile = new gig::File;      gig::File* pFile = new gig::File;
556      // already add one new instrument by default      // already add one new instrument by default
557      gig::Instrument* pInstrument = pFile->AddInstrument();      gig::Instrument* pInstrument = pFile->AddInstrument();
558      pInstrument->pInfo->Name = "Unnamed Instrument";      pInstrument->pInfo->Name = _("Unnamed Instrument");
559      // update GUI with that new gig::File      // update GUI with that new gig::File
560      load_gig(pFile, 0 /*no file name yet*/);      load_gig(pFile, 0 /*no file name yet*/);
561  }  }
# Line 579  bool MainWindow::close_confirmation_dial Line 566  bool MainWindow::close_confirmation_dial
566                                   Glib::filename_display_basename(filename).c_str());                                   Glib::filename_display_basename(filename).c_str());
567      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
568      g_free(msg);      g_free(msg);
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  
569      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  
570      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
571      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
572      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 595  bool MainWindow::close_confirmation_dial Line 580  bool MainWindow::close_confirmation_dial
580  bool MainWindow::leaving_shared_mode_dialog() {  bool MainWindow::leaving_shared_mode_dialog() {
581      Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");      Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");
582      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  
583      dialog.set_secondary_text(      dialog.set_secondary_text(
584          _("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 "
585            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
586            "load it.")            "load it."));
    );  
 #endif  
587      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
588      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
589      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
# Line 620  void MainWindow::on_action_file_open() Line 602  void MainWindow::on_action_file_open()
602      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
603      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
604      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
605    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
606      Gtk::FileFilter filter;      Gtk::FileFilter filter;
607      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
608    #else
609        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
610        filter->add_pattern("*.gig");
611    #endif
612      dialog.set_filter(filter);      dialog.set_filter(filter);
613      if (current_dir != "") {      if (current_gig_dir != "") {
614          dialog.set_current_folder(current_dir);          dialog.set_current_folder(current_gig_dir);
615      }      }
616      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
617          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
618          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
619          printf("on_action_file_open self=%x\n", Glib::Thread::self());          printf("on_action_file_open self=%x\n", Glib::Thread::self());
620          load_file(filename.c_str());          load_file(filename.c_str());
621          current_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
622      }      }
623  }  }
624    
625  void MainWindow::load_file(const char* name)  void MainWindow::load_file(const char* name)
626  {  {
627      __clear();      __clear();
628      load_dialog = new LoadDialog("Loading...", *this);      load_dialog = new LoadDialog(_("Loading..."), *this);
629      load_dialog->show_all();      load_dialog->show_all();
630      loader = new Loader(strdup(name));      loader = new Loader(strdup(name));
631      loader->signal_progress().connect(      loader->signal_progress().connect(
# Line 743  bool MainWindow::file_save_as() Line 730  bool MainWindow::file_save_as()
730      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
731      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
732      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  
733      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
734      // TODO: an overwrite dialog for gtkmm < 2.8  
735  #endif  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
736      Gtk::FileFilter filter;      Gtk::FileFilter filter;
737      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
738    #else
739        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
740        filter->add_pattern("*.gig");
741    #endif
742      dialog.set_filter(filter);      dialog.set_filter(filter);
743    
744      if (Glib::path_is_absolute(filename)) {      // set initial dir and filename of the Save As dialog
745          dialog.set_filename(filename);      // and prepare that initial filename as a copy of the gig
746      } else if (current_dir != "") {      {
747          dialog.set_current_folder(current_dir);          std::string basename = Glib::path_get_basename(filename);
748      }          std::string dir = Glib::path_get_dirname(filename);
749      dialog.set_current_name(Glib::filename_display_basename(filename));          basename = std::string(_("copy_of_")) + basename;
750            Glib::ustring copyFileName = Glib::build_filename(dir, basename);
751            if (Glib::path_is_absolute(filename)) {
752                dialog.set_filename(copyFileName);
753            } else {
754                if (current_gig_dir != "") dialog.set_current_folder(current_gig_dir);
755            }
756            dialog.set_current_name(Glib::filename_display_basename(copyFileName));
757        }
758    
759        // show warning in the dialog
760        Gtk::HBox descriptionArea;
761        descriptionArea.set_spacing(15);
762        Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
763        descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
764        view::WrapLabel description;
765        description.set_markup(
766            _("\n<b>CAUTION:</b> You <b>MUST</b> use the "
767              "<span style=\"italic\">\"Save\"</span> dialog instead of "
768              "<span style=\"italic\">\"Save As...\"</span> if you want to save "
769              "to the same .gig file. Using "
770              "<span style=\"italic\">\"Save As...\"</span> for writing to the "
771              "same .gig file will end up in corrupted sample wave data!\n")
772        );
773        descriptionArea.pack_start(description);
774        dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
775        descriptionArea.show_all();
776    
777      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
778          file_structure_to_be_changed_signal.emit(this->file);          file_structure_to_be_changed_signal.emit(this->file);
# Line 769  bool MainWindow::file_save_as() Line 784  bool MainWindow::file_save_as()
784              printf("filename=%s\n", filename.c_str());              printf("filename=%s\n", filename.c_str());
785              file->Save(filename);              file->Save(filename);
786              this->filename = filename;              this->filename = filename;
787              current_dir = Glib::path_get_dirname(filename);              current_gig_dir = Glib::path_get_dirname(filename);
788              set_title(Glib::filename_display_basename(filename));              set_title(Glib::filename_display_basename(filename));
789              file_has_name = true;              file_has_name = true;
790              file_is_changed = false;              file_is_changed = false;
# Line 799  void MainWindow::__import_queued_samples Line 814  void MainWindow::__import_queued_samples
814          info.format = 0;          info.format = 0;
815          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);
816          try {          try {
817              if (!hFile) throw std::string("could not open file");              if (!hFile) throw std::string(_("could not open file"));
818              // determine sample's bit depth              // determine sample's bit depth
819              int bitdepth;              int bitdepth;
820              switch (info.format & 0xff) {              switch (info.format & 0xff) {
# Line 816  void MainWindow::__import_queued_samples Line 831  void MainWindow::__import_queued_samples
831                      break;                      break;
832                  default:                  default:
833                      sf_close(hFile); // close sound file                      sf_close(hFile); // close sound file
834                      throw std::string("format not supported"); // unsupported subformat (yet?)                      throw std::string(_("format not supported")); // unsupported subformat (yet?)
835              }              }
836    
837              const int bufsize = 10000;              const int bufsize = 10000;
# Line 858  void MainWindow::__import_queued_samples Line 873  void MainWindow::__import_queued_samples
873              }              }
874              // cleanup              // cleanup
875              sf_close(hFile);              sf_close(hFile);
876                // let the sampler re-cache the sample if needed
877                sample_changed_signal.emit(iter->gig_sample);
878              // on success we remove the sample from the import queue,              // on success we remove the sample from the import queue,
879              // otherwise keep it, maybe it works the next time ?              // otherwise keep it, maybe it works the next time ?
880              std::list<SampleImportItem>::iterator cur = iter;              std::list<SampleImportItem>::iterator cur = iter;
# Line 886  void MainWindow::on_action_file_properti Line 903  void MainWindow::on_action_file_properti
903    
904  void MainWindow::on_action_help_about()  void MainWindow::on_action_help_about()
905  {  {
 #ifdef ABOUT_DIALOG  
906      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
907    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 12) || GTKMM_MAJOR_VERSION > 2
908        dialog.set_program_name("Gigedit");
909    #else
910        dialog.set_name("Gigedit");
911    #endif
912      dialog.set_version(VERSION);      dialog.set_version(VERSION);
913      dialog.set_copyright("Copyright (C) 2006,2007 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2011 Andreas Persson");
914      dialog.set_comments(      dialog.set_comments(_(
915          "Released under the GNU General Public License.\n"          "Released under the GNU General Public License.\n"
916          "\n"          "\n"
917          "Please notice that this is still a very young instrument editor. "          "Please notice that this is still a very young instrument editor. "
918          "So better backup your Gigasampler files before editing them with "          "So better backup your Gigasampler files before editing them with "
919          "this application.\n"          "this application.\n"
920          "\n"          "\n"
921          "Please report bugs to: http://bugs.linuxsampler.org"          "Please report bugs to: http://bugs.linuxsampler.org")
922      );      );
923      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("http://www.linuxsampler.org");
924      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("http://www.linuxsampler.org");
925      dialog.run();      dialog.run();
 #endif  
926  }  }
927    
928  PropDialog::PropDialog()  PropDialog::PropDialog()
929      : table(2,1),      : eName(_("Name")),
930        eName("Name"),        eCreationDate(_("Creation date")),
931        eCreationDate("Creation date"),        eComments(_("Comments")),
932        eComments("Comments"),        eProduct(_("Product")),
933        eProduct("Product"),        eCopyright(_("Copyright")),
934        eCopyright("Copyright"),        eArtists(_("Artists")),
935        eArtists("Artists"),        eGenre(_("Genre")),
936        eGenre("Genre"),        eKeywords(_("Keywords")),
937        eKeywords("Keywords"),        eEngineer(_("Engineer")),
938        eEngineer("Engineer"),        eTechnician(_("Technician")),
939        eTechnician("Technician"),        eSoftware(_("Software")),
940        eSoftware("Software"),        eMedium(_("Medium")),
941        eMedium("Medium"),        eSource(_("Source")),
942        eSource("Source"),        eSourceForm(_("Source form")),
943        eSourceForm("Source form"),        eCommissioned(_("Commissioned")),
944        eCommissioned("Commissioned"),        eSubject(_("Subject")),
       eSubject("Subject"),  
945        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
946          table(2, 1),
947        update_model(0)        update_model(0)
948  {  {
949      set_title("File Properties");      set_title(_("File Properties"));
950      eName.set_width_chars(50);      eName.set_width_chars(50);
951    
952      connect(eName, &DLS::Info::Name);      connect(eName, &DLS::Info::Name);
# Line 972  PropDialog::PropDialog() Line 992  PropDialog::PropDialog()
992      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
993      buttonBox.show();      buttonBox.show();
994      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
995      quitButton.set_flags(Gtk::CAN_DEFAULT);      quitButton.set_can_default();
996      quitButton.grab_focus();      quitButton.grab_focus();
997      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
998          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &PropDialog::hide));
# Line 1042  void InstrumentProps::set_DimensionKeyRa Line 1062  void InstrumentProps::set_DimensionKeyRa
1062  }  }
1063    
1064  InstrumentProps::InstrumentProps()  InstrumentProps::InstrumentProps()
1065      : table(2,1),      : update_model(0),
1066        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
1067        eName("Name"),        table(2,1),
1068        eIsDrum("Is drum"),        eName(_("Name")),
1069        eMIDIBank("MIDI bank", 0, 16383),        eIsDrum(_("Is drum")),
1070        eMIDIProgram("MIDI program"),        eMIDIBank(_("MIDI bank"), 0, 16383),
1071        eAttenuation("Attenuation", 0, 96, 0, 1),        eMIDIProgram(_("MIDI program")),
1072        eGainPlus6("Gain +6dB", eAttenuation, -6),        eAttenuation(_("Attenuation"), 0, 96, 0, 1),
1073        eEffectSend("Effect send", 0, 65535),        eGainPlus6(_("Gain +6dB"), eAttenuation, -6),
1074        eFineTune("Fine tune", -8400, 8400),        eEffectSend(_("Effect send"), 0, 65535),
1075        ePitchbendRange("Pitchbend range", 0, 12),        eFineTune(_("Fine tune"), -8400, 8400),
1076        ePianoReleaseMode("Piano release mode"),        ePitchbendRange(_("Pitchbend range"), 0, 12),
1077        eDimensionKeyRangeLow("Keyswitching range low"),        ePianoReleaseMode(_("Piano release mode")),
1078        eDimensionKeyRangeHigh("Keyswitching range high"),        eDimensionKeyRangeLow(_("Keyswitching range low")),
1079        update_model(0)        eDimensionKeyRangeHigh(_("Keyswitching range high"))
1080  {  {
1081      set_title("Instrument Properties");      set_title(_("Instrument Properties"));
1082    
1083      eDimensionKeyRangeLow.set_tip(      eDimensionKeyRangeLow.set_tip(
1084          _("start of the keyboard area which should switch the "          _("start of the keyboard area which should switch the "
# Line 1107  InstrumentProps::InstrumentProps() Line 1127  InstrumentProps::InstrumentProps()
1127      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
1128      buttonBox.show();      buttonBox.show();
1129      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
1130      quitButton.set_flags(Gtk::CAN_DEFAULT);      quitButton.set_can_default();
1131      quitButton.grab_focus();      quitButton.grab_focus();
1132    
1133      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
# Line 1283  void MainWindow::on_action_add_instrumen Line 1303  void MainWindow::on_action_add_instrumen
1303      gig::Instrument* instrument = file->AddInstrument();      gig::Instrument* instrument = file->AddInstrument();
1304      __instrument_indexer++;      __instrument_indexer++;
1305      instrument->pInfo->Name =      instrument->pInfo->Name =
1306          "Unnamed Instrument " + ToString(__instrument_indexer);          _("Unnamed Instrument ") + ToString(__instrument_indexer);
1307      // update instrument tree view      // update instrument tree view
1308      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
1309      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
# Line 1326  void MainWindow::on_action_remove_instru Line 1346  void MainWindow::on_action_remove_instru
1346  void MainWindow::on_action_sample_properties() {  void MainWindow::on_action_sample_properties() {
1347      //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
1348      Gtk::MessageDialog msg(      Gtk::MessageDialog msg(
1349          *this, "Sorry, yet to be implemented!", false, Gtk::MESSAGE_INFO          *this, _("Sorry, yet to be implemented!"), false, Gtk::MESSAGE_INFO
1350      );      );
1351      msg.run();      msg.run();
1352  }  }
# Line 1335  void MainWindow::on_action_add_group() { Line 1355  void MainWindow::on_action_add_group() {
1355      static int __sample_indexer = 0;      static int __sample_indexer = 0;
1356      if (!file) return;      if (!file) return;
1357      gig::Group* group = file->AddGroup();      gig::Group* group = file->AddGroup();
1358      group->Name = "Unnamed Group";      group->Name = _("Unnamed Group");
1359      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
1360      __sample_indexer++;      __sample_indexer++;
1361      // update sample tree view      // update sample tree view
# Line 1369  void MainWindow::on_action_add_sample() Line 1389  void MainWindow::on_action_add_sample()
1389      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1390      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
1391      dialog.set_select_multiple(true);      dialog.set_select_multiple(true);
1392      Gtk::FileFilter soundfilter; // matches all file types supported by libsndfile  
1393        // matches all file types supported by libsndfile
1394    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1395        Gtk::FileFilter soundfilter;
1396    #else
1397        Glib::RefPtr<Gtk::FileFilter> soundfilter = Gtk::FileFilter::create();
1398    #endif
1399      const char* const supportedFileTypes[] = {      const char* const supportedFileTypes[] = {
1400          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",
1401          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",
# Line 1377  void MainWindow::on_action_add_sample() Line 1403  void MainWindow::on_action_add_sample()
1403          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",
1404          "*.caf", "*.CAF", NULL          "*.caf", "*.CAF", NULL
1405      };      };
1406        const char* soundfiles = _("Sound Files");
1407        const char* allfiles = _("All Files");
1408    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1409      for (int i = 0; supportedFileTypes[i]; i++)      for (int i = 0; supportedFileTypes[i]; i++)
1410          soundfilter.add_pattern(supportedFileTypes[i]);          soundfilter.add_pattern(supportedFileTypes[i]);
1411      soundfilter.set_name("Sound Files");      soundfilter.set_name(soundfiles);
1412      Gtk::FileFilter allpassfilter; // matches every file  
1413        // matches every file
1414        Gtk::FileFilter allpassfilter;
1415      allpassfilter.add_pattern("*.*");      allpassfilter.add_pattern("*.*");
1416      allpassfilter.set_name("All Files");      allpassfilter.set_name(allfiles);
1417    #else
1418        for (int i = 0; supportedFileTypes[i]; i++)
1419            soundfilter->add_pattern(supportedFileTypes[i]);
1420        soundfilter->set_name(soundfiles);
1421    
1422        // matches every file
1423        Glib::RefPtr<Gtk::FileFilter> allpassfilter = Gtk::FileFilter::create();
1424        allpassfilter->add_pattern("*.*");
1425        allpassfilter->set_name(allfiles);
1426    #endif
1427      dialog.add_filter(soundfilter);      dialog.add_filter(soundfilter);
1428      dialog.add_filter(allpassfilter);      dialog.add_filter(allpassfilter);
1429        if (current_sample_dir != "") {
1430            dialog.set_current_folder(current_sample_dir);
1431        }
1432      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1433            current_sample_dir = dialog.get_current_folder();
1434          Glib::ustring error_files;          Glib::ustring error_files;
1435          Glib::SListHandle<Glib::ustring> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
1436          for (Glib::SListHandle<Glib::ustring>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
1437               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
1438              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
1439              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file informations
# Line 1396  void MainWindow::on_action_add_sample() Line 1441  void MainWindow::on_action_add_sample()
1441              info.format = 0;              info.format = 0;
1442              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
1443              try {              try {
1444                  if (!hFile) throw std::string("could not open file");                  if (!hFile) throw std::string(_("could not open file"));
1445                  int bitdepth;                  int bitdepth;
1446                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
1447                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
# Line 1412  void MainWindow::on_action_add_sample() Line 1457  void MainWindow::on_action_add_sample()
1457                          break;                          break;
1458                      default:                      default:
1459                          sf_close(hFile); // close sound file                          sf_close(hFile); // close sound file
1460                          throw std::string("format not supported"); // unsupported subformat (yet?)                          throw std::string(_("format not supported")); // unsupported subformat (yet?)
1461                  }                  }
1462                  // add a new sample to the .gig file                  // add a new sample to the .gig file
1463                  gig::Sample* sample = file->AddSample();                  gig::Sample* sample = file->AddSample();
# Line 1503  void MainWindow::on_action_replace_all_s Line 1548  void MainWindow::on_action_replace_all_s
1548      if (!file) return;      if (!file) return;
1549      Gtk::FileChooserDialog dialog(*this, _("Select Folder"),      Gtk::FileChooserDialog dialog(*this, _("Select Folder"),
1550                                    Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);                                    Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
1551      Gtk::Label description(      view::WrapLabel description(
1552          _("This is a very specific function. It tries to replace all samples "          _("This is a very specific function. It tries to replace all samples "
1553            "in the current gig file by samples located in the directory chosen "            "in the current gig file by samples located in the chosen "
1554            "by you above.\n\n"            "directory.\n\n"
1555            "It works like this: For each sample in the gig file it tries to "            "It works like this: For each sample in the gig file, it tries to "
1556            "find a sample file in the selected directory with the same name as "            "find a sample file in the selected directory with the same name as "
1557            "the sample in the gig file. Optionally you can add a filename "            "the sample in the gig file. Optionally, you can add a filename "
1558            "postfix below, which will be added to the filename expected to be "            "extension below, which will be added to the filename expected to be "
1559            "found. That is, assume you have a gig file with a sample called "            "found. That is, assume you have a gig file with a sample called "
1560            "'Snare', if you enter '.wav' below (like it's done by default), it "            "'Snare', if you enter '.wav' below (like it's done by default), it "
1561            "assumes to find a sample file called 'Snare.wav' and will replace "            "expects to find a sample file called 'Snare.wav' and will replace "
1562            "the sample in the gig file accordingly. If you don't need such a "            "the sample in the gig file accordingly. If you don't need an "
1563            "postfix, blank the field below. Any gig sample where no "            "extension, blank the field below. Any gig sample where no "
1564            "appropriate sample file could be found, will be reported and left "            "appropriate sample file could be found will be reported and left "
1565            "untouched.\n\n")            "untouched.\n")
1566      );      );
     description.set_line_wrap(true);  
1567      Gtk::HBox entryArea;      Gtk::HBox entryArea;
1568      Gtk::Label entryLabel( _("Add Filename Extension: "), Gtk::ALIGN_RIGHT);      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
1569      Gtk::Entry postfixEntryBox;      Gtk::Entry postfixEntryBox;
1570      postfixEntryBox.set_text(".wav");      postfixEntryBox.set_text(".wav");
1571      entryArea.pack_start(entryLabel);      entryArea.pack_start(entryLabel);
# Line 1529  void MainWindow::on_action_replace_all_s Line 1573  void MainWindow::on_action_replace_all_s
1573      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);
1574      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
1575      description.show();      description.show();
1576      entryLabel.show();      entryArea.show_all();
     postfixEntryBox.show();  
     entryArea.show();  
1577      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1578      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
1579      dialog.set_select_multiple(false);      dialog.set_select_multiple(false);
1580      // fix label width (because Gtk by design doesn't      if (current_sample_dir != "") {
1581      // know anything about the parent's size)          dialog.set_current_folder(current_sample_dir);
1582  #if 0 //FIXME: doesn't work      }
     int dialogW, dialogH, labelW, labelH;  
     dialog.get_size_request(dialogW, dialogH);  
     description.get_size_request(labelW, labelH);  
     std::cout << "dialog(" << dialogW << "," << dialogH << ")\nlabel(" << labelW << "," << labelH << ")\n" << std::flush;  
     description.set_size_request(dialogW, labelH);  
 #endif  
1583      if (dialog.run() == Gtk::RESPONSE_OK)      if (dialog.run() == Gtk::RESPONSE_OK)
1584      {      {
1585            current_sample_dir = dialog.get_current_folder();
1586          Glib::ustring error_files;          Glib::ustring error_files;
1587          Glib::ustring folder = dialog.get_filename();          std::string folder = dialog.get_filename();
1588          for (gig::Sample* sample = file->GetFirstSample();          for (gig::Sample* sample = file->GetFirstSample();
1589               sample; sample = file->GetNextSample())               sample; sample = file->GetNextSample())
1590          {          {
# Line 1559  void MainWindow::on_action_replace_all_s Line 1596  void MainWindow::on_action_replace_all_s
1596              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
1597              try              try
1598              {              {
1599                  if (!hFile) throw std::string("could not open file");                  if (!hFile) throw std::string(_("could not open file"));
1600                  int bitdepth;                  int bitdepth;
1601                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
1602                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
# Line 1575  void MainWindow::on_action_replace_all_s Line 1612  void MainWindow::on_action_replace_all_s
1612                          break;                          break;
1613                      default:                      default:
1614                          sf_close(hFile);                          sf_close(hFile);
1615                          throw std::string("format not supported");                          throw std::string(_("format not supported"));
1616                  }                  }
1617                  SampleImportItem sched_item;                  SampleImportItem sched_item;
1618                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
# Line 1848  sigc::signal<void, gig::Region*>& MainWi Line 1885  sigc::signal<void, gig::Region*>& MainWi
1885      return region_changed_signal;      return region_changed_signal;
1886  }  }
1887    
1888    sigc::signal<void, gig::Sample*>& MainWindow::signal_sample_changed() {
1889        return sample_changed_signal;
1890    }
1891    
1892  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() {
1893      return sample_ref_changed_signal;      return sample_ref_changed_signal;
1894  }  }

Legend:
Removed from v.1673  
changed lines
  Added in v.2169

  ViewVC Help
Powered by ViewVC