/[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 1799 by persson, Sat Dec 6 13:49:26 2008 UTC revision 1959 by persson, Fri Jul 31 10:15:27 2009 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006 - 2008 Andreas Persson   * Copyright (C) 2006-2009 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 130  MainWindow::MainWindow() : Line 130  MainWindow::MainWindow() :
130      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
131    
132    
133      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, "Samples");      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
134      m_TreeViewNotebook.append_page(m_ScrolledWindow, "Instruments");      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
135    
136    
137      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
# Line 571  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 641  void MainWindow::on_action_file_open() Line 641  void MainWindow::on_action_file_open()
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 760  bool MainWindow::file_save_as() Line 760  bool MainWindow::file_save_as()
760      {      {
761          std::string basename = Glib::path_get_basename(filename);          std::string basename = Glib::path_get_basename(filename);
762          std::string dir = Glib::path_get_dirname(filename);          std::string dir = Glib::path_get_dirname(filename);
763          basename = std::string("copy_of_") + basename;          basename = std::string(_("copy_of_")) + basename;
764          Glib::ustring copyFileName = Glib::build_filename(dir, basename);          Glib::ustring copyFileName = Glib::build_filename(dir, basename);
765          if (Glib::path_is_absolute(filename)) {          if (Glib::path_is_absolute(filename)) {
766              dialog.set_filename(copyFileName);              dialog.set_filename(copyFileName);
# Line 828  void MainWindow::__import_queued_samples Line 828  void MainWindow::__import_queued_samples
828          info.format = 0;          info.format = 0;
829          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);
830          try {          try {
831              if (!hFile) throw std::string("could not open file");              if (!hFile) throw std::string(_("could not open file"));
832              // determine sample's bit depth              // determine sample's bit depth
833              int bitdepth;              int bitdepth;
834              switch (info.format & 0xff) {              switch (info.format & 0xff) {
# Line 845  void MainWindow::__import_queued_samples Line 845  void MainWindow::__import_queued_samples
845                      break;                      break;
846                  default:                  default:
847                      sf_close(hFile); // close sound file                      sf_close(hFile); // close sound file
848                      throw std::string("format not supported"); // unsupported subformat (yet?)                      throw std::string(_("format not supported")); // unsupported subformat (yet?)
849              }              }
850    
851              const int bufsize = 10000;              const int bufsize = 10000;
# Line 887  void MainWindow::__import_queued_samples Line 887  void MainWindow::__import_queued_samples
887              }              }
888              // cleanup              // cleanup
889              sf_close(hFile);              sf_close(hFile);
890                // let the sampler re-cache the sample if needed
891                sample_changed_signal.emit(iter->gig_sample);
892              // on success we remove the sample from the import queue,              // on success we remove the sample from the import queue,
893              // otherwise keep it, maybe it works the next time ?              // otherwise keep it, maybe it works the next time ?
894              std::list<SampleImportItem>::iterator cur = iter;              std::list<SampleImportItem>::iterator cur = iter;
# Line 917  void MainWindow::on_action_help_about() Line 919  void MainWindow::on_action_help_about()
919  {  {
920  #ifdef ABOUT_DIALOG  #ifdef ABOUT_DIALOG
921      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
922    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 12) || GTKMM_MAJOR_VERSION > 2
923        dialog.set_program_name("Gigedit");
924    #else
925        dialog.set_name("Gigedit");
926    #endif
927      dialog.set_version(VERSION);      dialog.set_version(VERSION);
928      dialog.set_copyright("Copyright (C) 2006,2007 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2009 Andreas Persson");
929      dialog.set_comments(      dialog.set_comments(_(
930          "Released under the GNU General Public License.\n"          "Released under the GNU General Public License.\n"
931          "\n"          "\n"
932          "Please notice that this is still a very young instrument editor. "          "Please notice that this is still a very young instrument editor. "
933          "So better backup your Gigasampler files before editing them with "          "So better backup your Gigasampler files before editing them with "
934          "this application.\n"          "this application.\n"
935          "\n"          "\n"
936          "Please report bugs to: http://bugs.linuxsampler.org"          "Please report bugs to: http://bugs.linuxsampler.org")
937      );      );
938      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("http://www.linuxsampler.org");
939      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("http://www.linuxsampler.org");
# Line 936  void MainWindow::on_action_help_about() Line 943  void MainWindow::on_action_help_about()
943    
944  PropDialog::PropDialog()  PropDialog::PropDialog()
945      : table(2,1),      : table(2,1),
946        eName("Name"),        eName(_("Name")),
947        eCreationDate("Creation date"),        eCreationDate(_("Creation date")),
948        eComments("Comments"),        eComments(_("Comments")),
949        eProduct("Product"),        eProduct(_("Product")),
950        eCopyright("Copyright"),        eCopyright(_("Copyright")),
951        eArtists("Artists"),        eArtists(_("Artists")),
952        eGenre("Genre"),        eGenre(_("Genre")),
953        eKeywords("Keywords"),        eKeywords(_("Keywords")),
954        eEngineer("Engineer"),        eEngineer(_("Engineer")),
955        eTechnician("Technician"),        eTechnician(_("Technician")),
956        eSoftware("Software"),        eSoftware(_("Software")),
957        eMedium("Medium"),        eMedium(_("Medium")),
958        eSource("Source"),        eSource(_("Source")),
959        eSourceForm("Source form"),        eSourceForm(_("Source form")),
960        eCommissioned("Commissioned"),        eCommissioned(_("Commissioned")),
961        eSubject("Subject"),        eSubject(_("Subject")),
962        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
963        update_model(0)        update_model(0)
964  {  {
965      set_title("File Properties");      set_title(_("File Properties"));
966      eName.set_width_chars(50);      eName.set_width_chars(50);
967    
968      connect(eName, &DLS::Info::Name);      connect(eName, &DLS::Info::Name);
# Line 1073  void InstrumentProps::set_DimensionKeyRa Line 1080  void InstrumentProps::set_DimensionKeyRa
1080  InstrumentProps::InstrumentProps()  InstrumentProps::InstrumentProps()
1081      : table(2,1),      : table(2,1),
1082        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
1083        eName("Name"),        eName(_("Name")),
1084        eIsDrum("Is drum"),        eIsDrum(_("Is drum")),
1085        eMIDIBank("MIDI bank", 0, 16383),        eMIDIBank(_("MIDI bank"), 0, 16383),
1086        eMIDIProgram("MIDI program"),        eMIDIProgram(_("MIDI program")),
1087        eAttenuation("Attenuation", 0, 96, 0, 1),        eAttenuation(_("Attenuation"), 0, 96, 0, 1),
1088        eGainPlus6("Gain +6dB", eAttenuation, -6),        eGainPlus6(_("Gain +6dB"), eAttenuation, -6),
1089        eEffectSend("Effect send", 0, 65535),        eEffectSend(_("Effect send"), 0, 65535),
1090        eFineTune("Fine tune", -8400, 8400),        eFineTune(_("Fine tune"), -8400, 8400),
1091        ePitchbendRange("Pitchbend range", 0, 12),        ePitchbendRange(_("Pitchbend range"), 0, 12),
1092        ePianoReleaseMode("Piano release mode"),        ePianoReleaseMode(_("Piano release mode")),
1093        eDimensionKeyRangeLow("Keyswitching range low"),        eDimensionKeyRangeLow(_("Keyswitching range low")),
1094        eDimensionKeyRangeHigh("Keyswitching range high"),        eDimensionKeyRangeHigh(_("Keyswitching range high")),
1095        update_model(0)        update_model(0)
1096  {  {
1097      set_title("Instrument Properties");      set_title(_("Instrument Properties"));
1098    
1099      eDimensionKeyRangeLow.set_tip(      eDimensionKeyRangeLow.set_tip(
1100          _("start of the keyboard area which should switch the "          _("start of the keyboard area which should switch the "
# Line 1312  void MainWindow::on_action_add_instrumen Line 1319  void MainWindow::on_action_add_instrumen
1319      gig::Instrument* instrument = file->AddInstrument();      gig::Instrument* instrument = file->AddInstrument();
1320      __instrument_indexer++;      __instrument_indexer++;
1321      instrument->pInfo->Name =      instrument->pInfo->Name =
1322          "Unnamed Instrument " + ToString(__instrument_indexer);          _("Unnamed Instrument ") + ToString(__instrument_indexer);
1323      // update instrument tree view      // update instrument tree view
1324      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
1325      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
# Line 1355  void MainWindow::on_action_remove_instru Line 1362  void MainWindow::on_action_remove_instru
1362  void MainWindow::on_action_sample_properties() {  void MainWindow::on_action_sample_properties() {
1363      //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
1364      Gtk::MessageDialog msg(      Gtk::MessageDialog msg(
1365          *this, "Sorry, yet to be implemented!", false, Gtk::MESSAGE_INFO          *this, _("Sorry, yet to be implemented!"), false, Gtk::MESSAGE_INFO
1366      );      );
1367      msg.run();      msg.run();
1368  }  }
# Line 1364  void MainWindow::on_action_add_group() { Line 1371  void MainWindow::on_action_add_group() {
1371      static int __sample_indexer = 0;      static int __sample_indexer = 0;
1372      if (!file) return;      if (!file) return;
1373      gig::Group* group = file->AddGroup();      gig::Group* group = file->AddGroup();
1374      group->Name = "Unnamed Group";      group->Name = _("Unnamed Group");
1375      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
1376      __sample_indexer++;      __sample_indexer++;
1377      // update sample tree view      // update sample tree view
# Line 1408  void MainWindow::on_action_add_sample() Line 1415  void MainWindow::on_action_add_sample()
1415      };      };
1416      for (int i = 0; supportedFileTypes[i]; i++)      for (int i = 0; supportedFileTypes[i]; i++)
1417          soundfilter.add_pattern(supportedFileTypes[i]);          soundfilter.add_pattern(supportedFileTypes[i]);
1418      soundfilter.set_name("Sound Files");      soundfilter.set_name(_("Sound Files"));
1419      Gtk::FileFilter allpassfilter; // matches every file      Gtk::FileFilter allpassfilter; // matches every file
1420      allpassfilter.add_pattern("*.*");      allpassfilter.add_pattern("*.*");
1421      allpassfilter.set_name("All Files");      allpassfilter.set_name(_("All Files"));
1422      dialog.add_filter(soundfilter);      dialog.add_filter(soundfilter);
1423      dialog.add_filter(allpassfilter);      dialog.add_filter(allpassfilter);
1424      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 1429  void MainWindow::on_action_add_sample() Line 1436  void MainWindow::on_action_add_sample()
1436              info.format = 0;              info.format = 0;
1437              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
1438              try {              try {
1439                  if (!hFile) throw std::string("could not open file");                  if (!hFile) throw std::string(_("could not open file"));
1440                  int bitdepth;                  int bitdepth;
1441                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
1442                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
# Line 1445  void MainWindow::on_action_add_sample() Line 1452  void MainWindow::on_action_add_sample()
1452                          break;                          break;
1453                      default:                      default:
1454                          sf_close(hFile); // close sound file                          sf_close(hFile); // close sound file
1455                          throw std::string("format not supported"); // unsupported subformat (yet?)                          throw std::string(_("format not supported")); // unsupported subformat (yet?)
1456                  }                  }
1457                  // add a new sample to the .gig file                  // add a new sample to the .gig file
1458                  gig::Sample* sample = file->AddSample();                  gig::Sample* sample = file->AddSample();
# Line 1584  void MainWindow::on_action_replace_all_s Line 1591  void MainWindow::on_action_replace_all_s
1591              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
1592              try              try
1593              {              {
1594                  if (!hFile) throw std::string("could not open file");                  if (!hFile) throw std::string(_("could not open file"));
1595                  int bitdepth;                  int bitdepth;
1596                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
1597                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
# Line 1600  void MainWindow::on_action_replace_all_s Line 1607  void MainWindow::on_action_replace_all_s
1607                          break;                          break;
1608                      default:                      default:
1609                          sf_close(hFile);                          sf_close(hFile);
1610                          throw std::string("format not supported");                          throw std::string(_("format not supported"));
1611                  }                  }
1612                  SampleImportItem sched_item;                  SampleImportItem sched_item;
1613                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
# Line 1873  sigc::signal<void, gig::Region*>& MainWi Line 1880  sigc::signal<void, gig::Region*>& MainWi
1880      return region_changed_signal;      return region_changed_signal;
1881  }  }
1882    
1883    sigc::signal<void, gig::Sample*>& MainWindow::signal_sample_changed() {
1884        return sample_changed_signal;
1885    }
1886    
1887  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() {
1888      return sample_ref_changed_signal;      return sample_ref_changed_signal;
1889  }  }

Legend:
Removed from v.1799  
changed lines
  Added in v.1959

  ViewVC Help
Powered by ViewVC