/[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 1436 by schoenebeck, Mon Oct 15 15:29:58 2007 UTC revision 2246 by persson, Fri Aug 19 10:55:41 2011 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006, 2007 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 59  template<class T> inline std::string ToS Line 47  template<class T> inline std::string ToS
47      return ss.str();      return ss.str();
48  }  }
49    
50  MainWindow::MainWindow()  Table::Table(int x, int y) : Gtk::Table(x, y), rowno(0) {  }
51    
52    void Table::add(BoolEntry& boolentry)
53    {
54        attach(boolentry.widget, 0, 2, rowno, rowno + 1,
55               Gtk::FILL, Gtk::SHRINK);
56        rowno++;
57    }
58    
59    void Table::add(BoolEntryPlus6& boolentry)
60    {
61        attach(boolentry.widget, 0, 2, rowno, rowno + 1,
62               Gtk::FILL, Gtk::SHRINK);
63        rowno++;
64    }
65    
66    void Table::add(LabelWidget& prop)
67    {
68        attach(prop.label, 1, 2, rowno, rowno + 1,
69               Gtk::FILL, Gtk::SHRINK);
70        attach(prop.widget, 2, 3, rowno, rowno + 1,
71               Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);
72        rowno++;
73    }
74    
75    MainWindow::MainWindow() :
76        dimreg_label(_("Changes apply to:")),
77        dimreg_all_regions(_("all regions")),
78        dimreg_all_dimregs(_("all dimension splits")),
79        dimreg_stereo(_("both channels"))
80  {  {
81  //    set_border_width(5);  //    set_border_width(5);
82  //    set_default_size(400, 200);  //    set_default_size(400, 200);
# Line 89  MainWindow::MainWindow() Line 106  MainWindow::MainWindow()
106      m_TreeViewNotebook.set_size_request(300);      m_TreeViewNotebook.set_size_request(300);
107    
108      m_HPaned.add1(m_TreeViewNotebook);      m_HPaned.add1(m_TreeViewNotebook);
109      m_HPaned.add2(dimreg_edit);      dimreg_hbox.add(dimreg_label);
110        dimreg_hbox.add(dimreg_all_regions);
111        dimreg_hbox.add(dimreg_all_dimregs);
112        dimreg_stereo.set_active();
113        dimreg_hbox.add(dimreg_stereo);
114        dimreg_vbox.add(dimreg_edit);
115        dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);
116        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 141  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 165  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(
194          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),
195          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
196      );      );
197        actionGroup->add(
198            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)
201        );
202    
203      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
204      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
# Line 196  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 212  MainWindow::MainWindow() Line 237  MainWindow::MainWindow()
237          "    <menuitem action='SampleProperties'/>"          "    <menuitem action='SampleProperties'/>"
238          "    <menuitem action='AddGroup'/>"          "    <menuitem action='AddGroup'/>"
239          "    <menuitem action='AddSample'/>"          "    <menuitem action='AddSample'/>"
240            "    <menuitem action='ReplaceAllSamplesInAllGroups' />"
241          "    <separator/>"          "    <separator/>"
242          "    <menuitem action='RemoveSample'/>"          "    <menuitem action='RemoveSample'/>"
243          "  </popup>"          "  </popup>"
# Line 224  MainWindow::MainWindow() Line 250  MainWindow::MainWindow()
250      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
251      m_VBox.pack_start(m_HPaned);      m_VBox.pack_start(m_HPaned);
252      m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK);
253        m_VBox.pack_start(m_RegionChooser.m_VirtKeybPropsBox, Gtk::PACK_SHRINK);
254      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);
255      m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);
256    
257        set_file_is_shared(false);
258    
259      // Status Bar:      // Status Bar:
260      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);
261      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);
# Line 263  MainWindow::MainWindow() Line 292  MainWindow::MainWindow()
292      );      );
293    
294      // 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
295      std::list<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
296      drag_target_gig_sample.push_back( Gtk::TargetEntry("gig::Sample") );      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
297      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);
298      m_TreeViewSamples.signal_drag_begin().connect(      m_TreeViewSamples.signal_drag_begin().connect(
299          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)
# Line 284  MainWindow::MainWindow() Line 313  MainWindow::MainWindow()
313          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
314      instrumentProps.signal_instrument_changed().connect(      instrumentProps.signal_instrument_changed().connect(
315          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
316        propDialog.signal_info_changed().connect(
317            sigc::mem_fun(*this, &MainWindow::file_changed));
318    
319      dimreg_edit.signal_dimreg_to_be_changed().connect(      dimreg_edit.signal_dimreg_to_be_changed().connect(
320          dimreg_to_be_changed_signal.make_slot());          dimreg_to_be_changed_signal.make_slot());
# Line 313  MainWindow::MainWindow() Line 344  MainWindow::MainWindow()
344      m_RegionChooser.signal_region_changed_signal().connect(      m_RegionChooser.signal_region_changed_signal().connect(
345          region_changed_signal.make_slot());          region_changed_signal.make_slot());
346    
347        note_on_signal.connect(
348            sigc::mem_fun(m_RegionChooser, &RegionChooser::on_note_on_event));
349        note_off_signal.connect(
350            sigc::mem_fun(m_RegionChooser, &RegionChooser::on_note_off_event));
351    
352        dimreg_all_regions.signal_toggled().connect(
353            sigc::mem_fun(*this, &MainWindow::update_dimregs));
354        dimreg_all_dimregs.signal_toggled().connect(
355            sigc::mem_fun(*this, &MainWindow::dimreg_all_dimregs_toggled));
356        dimreg_stereo.signal_toggled().connect(
357            sigc::mem_fun(*this, &MainWindow::update_dimregs));
358    
359      file = 0;      file = 0;
360      file_is_changed = false;      file_is_changed = false;
     set_file_is_shared(false);  
361    
362      show_all_children();      show_all_children();
363    
# Line 343  void MainWindow::region_changed() Line 385  void MainWindow::region_changed()
385      m_DimRegionChooser.set_region(m_RegionChooser.get_region());      m_DimRegionChooser.set_region(m_RegionChooser.get_region());
386  }  }
387    
388  void MainWindow::dimreg_changed()  gig::Instrument* MainWindow::get_instrument()
 {  
     dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion());  
 }  
   
 void MainWindow::on_sel_change()  
389  {  {
390        gig::Instrument* instrument = 0;
391      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();
392    
393      Gtk::TreeModel::iterator it = tree_sel_ref->get_selected();      Gtk::TreeModel::iterator it = tree_sel_ref->get_selected();
394      if (it) {      if (it) {
395          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
396          std::cout << row[m_Columns.m_col_name] << std::endl;          instrument = row[m_Columns.m_col_instr];
397        }
398        return instrument;
399    }
400    
401          m_RegionChooser.set_instrument(row[m_Columns.m_col_instr]);  void MainWindow::add_region_to_dimregs(gig::Region* region, bool stereo, bool all_dimregs)
402    {
403        if (all_dimregs) {
404            for (int i = 0 ; i < region->DimensionRegions ; i++) {
405                if (region->pDimensionRegions[i]) {
406                    dimreg_edit.dimregs.insert(region->pDimensionRegions[i]);
407                }
408            }
409      } else {      } else {
410          m_RegionChooser.set_instrument(0);          m_DimRegionChooser.get_dimregions(region, stereo, dimreg_edit.dimregs);
411      }      }
412  }  }
413    
414    void MainWindow::update_dimregs()
415    {
416        dimreg_edit.dimregs.clear();
417        bool all_regions = dimreg_all_regions.get_active();
418        bool stereo = dimreg_stereo.get_active();
419        bool all_dimregs = dimreg_all_dimregs.get_active();
420    
421        if (all_regions) {
422            gig::Instrument* instrument = get_instrument();
423            if (instrument) {
424                for (gig::Region* region = instrument->GetFirstRegion() ;
425                     region ;
426                     region = instrument->GetNextRegion()) {
427                    add_region_to_dimregs(region, stereo, all_dimregs);
428                }
429            }
430        } else {
431            gig::Region* region = m_RegionChooser.get_region();
432            if (region) {
433                add_region_to_dimregs(region, stereo, all_dimregs);
434            }
435        }
436    }
437    
438    void MainWindow::dimreg_all_dimregs_toggled()
439    {
440        dimreg_stereo.set_sensitive(!dimreg_all_dimregs.get_active());
441        update_dimregs();
442    }
443    
444    void MainWindow::dimreg_changed()
445    {
446        update_dimregs();
447        dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion());
448    }
449    
450    void MainWindow::on_sel_change()
451    {
452        m_RegionChooser.set_instrument(get_instrument());
453    }
454    
455  void loader_progress_callback(gig::progress_t* progress)  void loader_progress_callback(gig::progress_t* progress)
456  {  {
457      Loader* loader = static_cast<Loader*>(progress->custom);      Loader* loader = static_cast<Loader*>(progress->custom);
# Line 394  void Loader::thread_function() Line 483  void Loader::thread_function()
483  }  }
484    
485  Loader::Loader(const char* filename)  Loader::Loader(const char* filename)
486      : thread(0), filename(filename)      : filename(filename), thread(0)
487  {  {
488  }  }
489    
# Line 438  void MainWindow::__clear() { Line 527  void MainWindow::__clear() {
527      Gtk::MenuItem* instrument_menu =      Gtk::MenuItem* instrument_menu =
528          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));
529      instrument_menu->hide();      instrument_menu->hide();
530      for (int i = 0; i < instrument_menu->get_submenu()->items().size(); i++) {      Gtk::Menu* menu = instrument_menu->get_submenu();
531          delete &instrument_menu->get_submenu()->items()[i];      while (menu->get_children().size()) {
532            Gtk::Widget* child = *menu->get_children().begin();
533            menu->remove(*child);
534            delete child;
535      }      }
     instrument_menu->get_submenu()->items().clear();  
536      // forget all samples that ought to be imported      // forget all samples that ought to be imported
537      m_SampleImportQueue.clear();      m_SampleImportQueue.clear();
538      // clear the samples and instruments tree views      // clear the samples and instruments tree views
# Line 465  void MainWindow::on_action_file_new() Line 556  void MainWindow::on_action_file_new()
556      gig::File* pFile = new gig::File;      gig::File* pFile = new gig::File;
557      // already add one new instrument by default      // already add one new instrument by default
558      gig::Instrument* pInstrument = pFile->AddInstrument();      gig::Instrument* pInstrument = pFile->AddInstrument();
559      pInstrument->pInfo->Name = "Unnamed Instrument";      pInstrument->pInfo->Name = _("Unnamed Instrument");
560      // update GUI with that new gig::File      // update GUI with that new gig::File
561      load_gig(pFile, 0 /*no file name yet*/);      load_gig(pFile, 0 /*no file name yet*/);
562  }  }
# Line 476  bool MainWindow::close_confirmation_dial Line 567  bool MainWindow::close_confirmation_dial
567                                   Glib::filename_display_basename(filename).c_str());                                   Glib::filename_display_basename(filename).c_str());
568      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
569      g_free(msg);      g_free(msg);
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  
570      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  
571      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
572      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
573      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 492  bool MainWindow::close_confirmation_dial Line 581  bool MainWindow::close_confirmation_dial
581  bool MainWindow::leaving_shared_mode_dialog() {  bool MainWindow::leaving_shared_mode_dialog() {
582      Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");      Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");
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);
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  
584      dialog.set_secondary_text(      dialog.set_secondary_text(
585          _("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 "
586            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
587            "load it.")            "load it."));
    );  
 #endif  
588      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
589      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
590      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
# Line 517  void MainWindow::on_action_file_open() Line 603  void MainWindow::on_action_file_open()
603      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
604      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
605      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
606    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
607      Gtk::FileFilter filter;      Gtk::FileFilter filter;
608      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
609    #else
610        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
611        filter->add_pattern("*.gig");
612    #endif
613      dialog.set_filter(filter);      dialog.set_filter(filter);
614      if (current_dir != "") {      if (current_gig_dir != "") {
615          dialog.set_current_folder(current_dir);          dialog.set_current_folder(current_gig_dir);
616      }      }
617      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
618          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
619          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
620          printf("on_action_file_open self=%x\n", Glib::Thread::self());          printf("on_action_file_open self=%x\n", Glib::Thread::self());
621          load_file(filename.c_str());          load_file(filename.c_str());
622          current_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
623      }      }
624  }  }
625    
626  void MainWindow::load_file(const char* name)  void MainWindow::load_file(const char* name)
627  {  {
628      __clear();      __clear();
629      load_dialog = new LoadDialog("Loading...", *this);      load_dialog = new LoadDialog(_("Loading..."), *this);
630      load_dialog->show_all();      load_dialog->show_all();
631      loader = new Loader(strdup(name));      loader = new Loader(strdup(name));
632      loader->signal_progress().connect(      loader->signal_progress().connect(
# Line 640  bool MainWindow::file_save_as() Line 731  bool MainWindow::file_save_as()
731      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
732      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
733      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  
734      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
735      // TODO: an overwrite dialog for gtkmm < 2.8  
736  #endif  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
737      Gtk::FileFilter filter;      Gtk::FileFilter filter;
738      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
739    #else
740        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
741        filter->add_pattern("*.gig");
742    #endif
743      dialog.set_filter(filter);      dialog.set_filter(filter);
744    
745      if (Glib::path_is_absolute(filename)) {      // set initial dir and filename of the Save As dialog
746          dialog.set_filename(filename);      // and prepare that initial filename as a copy of the gig
747      } else if (current_dir != "") {      {
748          dialog.set_current_folder(current_dir);          std::string basename = Glib::path_get_basename(filename);
749            std::string dir = Glib::path_get_dirname(filename);
750            basename = std::string(_("copy_of_")) + basename;
751            Glib::ustring copyFileName = Glib::build_filename(dir, basename);
752            if (Glib::path_is_absolute(filename)) {
753                dialog.set_filename(copyFileName);
754            } else {
755                if (current_gig_dir != "") dialog.set_current_folder(current_gig_dir);
756            }
757            dialog.set_current_name(Glib::filename_display_basename(copyFileName));
758      }      }
759      dialog.set_current_name(Glib::filename_display_basename(filename));  
760        // show warning in the dialog
761        Gtk::HBox descriptionArea;
762        descriptionArea.set_spacing(15);
763        Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
764        descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
765        view::WrapLabel description;
766        description.set_markup(
767            _("\n<b>CAUTION:</b> You <b>MUST</b> use the "
768              "<span style=\"italic\">\"Save\"</span> dialog instead of "
769              "<span style=\"italic\">\"Save As...\"</span> if you want to save "
770              "to the same .gig file. Using "
771              "<span style=\"italic\">\"Save As...\"</span> for writing to the "
772              "same .gig file will end up in corrupted sample wave data!\n")
773        );
774        descriptionArea.pack_start(description);
775        dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
776        descriptionArea.show_all();
777    
778      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
779          file_structure_to_be_changed_signal.emit(this->file);          file_structure_to_be_changed_signal.emit(this->file);
# Line 666  bool MainWindow::file_save_as() Line 785  bool MainWindow::file_save_as()
785              printf("filename=%s\n", filename.c_str());              printf("filename=%s\n", filename.c_str());
786              file->Save(filename);              file->Save(filename);
787              this->filename = filename;              this->filename = filename;
788              current_dir = Glib::path_get_dirname(filename);              current_gig_dir = Glib::path_get_dirname(filename);
789              set_title(Glib::filename_display_basename(filename));              set_title(Glib::filename_display_basename(filename));
790              file_has_name = true;              file_has_name = true;
791              file_is_changed = false;              file_is_changed = false;
# Line 696  void MainWindow::__import_queued_samples Line 815  void MainWindow::__import_queued_samples
815          info.format = 0;          info.format = 0;
816          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);
817          try {          try {
818              if (!hFile) throw std::string("could not open file");              if (!hFile) throw std::string(_("could not open file"));
819              // determine sample's bit depth              // determine sample's bit depth
820              int bitdepth;              int bitdepth;
821              switch (info.format & 0xff) {              switch (info.format & 0xff) {
# Line 713  void MainWindow::__import_queued_samples Line 832  void MainWindow::__import_queued_samples
832                      break;                      break;
833                  default:                  default:
834                      sf_close(hFile); // close sound file                      sf_close(hFile); // close sound file
835                      throw std::string("format not supported"); // unsupported subformat (yet?)                      throw std::string(_("format not supported")); // unsupported subformat (yet?)
836              }              }
837    
838              const int bufsize = 10000;              const int bufsize = 10000;
# Line 755  void MainWindow::__import_queued_samples Line 874  void MainWindow::__import_queued_samples
874              }              }
875              // cleanup              // cleanup
876              sf_close(hFile);              sf_close(hFile);
877                // let the sampler re-cache the sample if needed
878                sample_changed_signal.emit(iter->gig_sample);
879              // on success we remove the sample from the import queue,              // on success we remove the sample from the import queue,
880              // otherwise keep it, maybe it works the next time ?              // otherwise keep it, maybe it works the next time ?
881              std::list<SampleImportItem>::iterator cur = iter;              std::list<SampleImportItem>::iterator cur = iter;
# Line 783  void MainWindow::on_action_file_properti Line 904  void MainWindow::on_action_file_properti
904    
905  void MainWindow::on_action_help_about()  void MainWindow::on_action_help_about()
906  {  {
 #ifdef ABOUT_DIALOG  
907      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
908    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 12) || GTKMM_MAJOR_VERSION > 2
909        dialog.set_program_name("Gigedit");
910    #else
911        dialog.set_name("Gigedit");
912    #endif
913      dialog.set_version(VERSION);      dialog.set_version(VERSION);
914      dialog.set_copyright("Copyright (C) 2006,2007 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2011 Andreas Persson");
915      dialog.set_comments(      dialog.set_comments(_(
916          "Released under the GNU General Public License.\n"          "Released under the GNU General Public License.\n"
917          "\n"          "\n"
918          "Please notice that this is still a very young instrument editor. "          "Please notice that this is still a very young instrument editor. "
919          "So better backup your Gigasampler files before editing them with "          "So better backup your Gigasampler files before editing them with "
920          "this application.\n"          "this application.\n"
921          "\n"          "\n"
922          "Please report bugs to: http://bugs.linuxsampler.org"          "Please report bugs to: http://bugs.linuxsampler.org")
923      );      );
924      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("http://www.linuxsampler.org");
925      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("http://www.linuxsampler.org");
926      dialog.run();      dialog.run();
 #endif  
927  }  }
928    
929  PropDialog::PropDialog()  PropDialog::PropDialog()
930      : table(2,1)      : eName(_("Name")),
931          eCreationDate(_("Creation date")),
932          eComments(_("Comments")),
933          eProduct(_("Product")),
934          eCopyright(_("Copyright")),
935          eArtists(_("Artists")),
936          eGenre(_("Genre")),
937          eKeywords(_("Keywords")),
938          eEngineer(_("Engineer")),
939          eTechnician(_("Technician")),
940          eSoftware(_("Software")),
941          eMedium(_("Medium")),
942          eSource(_("Source")),
943          eSourceForm(_("Source form")),
944          eCommissioned(_("Commissioned")),
945          eSubject(_("Subject")),
946          quitButton(Gtk::Stock::CLOSE),
947          table(2, 1),
948          update_model(0)
949  {  {
950        set_title(_("File Properties"));
951        eName.set_width_chars(50);
952    
953        connect(eName, &DLS::Info::Name);
954        connect(eCreationDate, &DLS::Info::CreationDate);
955        connect(eComments, &DLS::Info::Comments);
956        connect(eProduct, &DLS::Info::Product);
957        connect(eCopyright, &DLS::Info::Copyright);
958        connect(eArtists, &DLS::Info::Artists);
959        connect(eGenre, &DLS::Info::Genre);
960        connect(eKeywords, &DLS::Info::Keywords);
961        connect(eEngineer, &DLS::Info::Engineer);
962        connect(eTechnician, &DLS::Info::Technician);
963        connect(eSoftware, &DLS::Info::Software);
964        connect(eMedium, &DLS::Info::Medium);
965        connect(eSource, &DLS::Info::Source);
966        connect(eSourceForm, &DLS::Info::SourceForm);
967        connect(eCommissioned, &DLS::Info::Commissioned);
968        connect(eSubject, &DLS::Info::Subject);
969    
970        table.add(eName);
971        table.add(eCreationDate);
972        table.add(eComments);
973        table.add(eProduct);
974        table.add(eCopyright);
975        table.add(eArtists);
976        table.add(eGenre);
977        table.add(eKeywords);
978        table.add(eEngineer);
979        table.add(eTechnician);
980        table.add(eSoftware);
981        table.add(eMedium);
982        table.add(eSource);
983        table.add(eSourceForm);
984        table.add(eCommissioned);
985        table.add(eSubject);
986    
987      table.set_col_spacings(5);      table.set_col_spacings(5);
988      const char* propLabels[] = {      add(vbox);
989          "Name:",      table.set_border_width(5);
990          "CreationDate:",      vbox.add(table);
991          "Comments:", // TODO: multiline      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
992          "Product:",      buttonBox.set_layout(Gtk::BUTTONBOX_END);
993          "Copyright:",      buttonBox.set_border_width(5);
994          "Artists:",      buttonBox.show();
995          "Genre:",      buttonBox.pack_start(quitButton);
996          "Keywords:",      quitButton.set_can_default();
997          "Engineer:",      quitButton.grab_focus();
998          "Technician:",      quitButton.signal_clicked().connect(
999          "Software:", // TODO: readonly          sigc::mem_fun(*this, &PropDialog::hide));
         "Medium:",  
         "Source:",  
         "SourceForm:",  
         "Commissioned:",  
         "Subject:"  
     };  
     for (int i = 0 ; i < sizeof(propLabels) / sizeof(char*) ; i++) {  
         label[i].set_text(propLabels[i]);  
         label[i].set_alignment(Gtk::ALIGN_LEFT);  
         table.attach(label[i], 0, 1, i, i + 1, Gtk::FILL, Gtk::SHRINK);  
         table.attach(entry[i], 1, 2, i, i + 1, Gtk::FILL | Gtk::EXPAND,  
                      Gtk::SHRINK);  
     }  
1000    
1001      add(table);      quitButton.show();
1002      // add_button(Gtk::Stock::CANCEL, 0);      vbox.show();
     // add_button(Gtk::Stock::OK, 1);  
1003      show_all_children();      show_all_children();
1004  }  }
1005    
1006  void PropDialog::set_info(DLS::Info* info)  void PropDialog::set_info(DLS::Info* info)
1007  {  {
1008      entry[0].set_text(info->Name);      this->info = info;
1009      entry[1].set_text(info->CreationDate);      update_model++;
1010      entry[2].set_text(Glib::convert(info->Comments, "UTF-8", "ISO-8859-1"));      eName.set_value(info->Name);
1011      entry[3].set_text(info->Product);      eCreationDate.set_value(info->CreationDate);
1012      entry[4].set_text(info->Copyright);      eComments.set_value(info->Comments);
1013      entry[5].set_text(info->Artists);      eProduct.set_value(info->Product);
1014      entry[6].set_text(info->Genre);      eCopyright.set_value(info->Copyright);
1015      entry[7].set_text(info->Keywords);      eArtists.set_value(info->Artists);
1016      entry[8].set_text(info->Engineer);      eGenre.set_value(info->Genre);
1017      entry[9].set_text(info->Technician);      eKeywords.set_value(info->Keywords);
1018      entry[10].set_text(info->Software);      eEngineer.set_value(info->Engineer);
1019      entry[11].set_text(info->Medium);      eTechnician.set_value(info->Technician);
1020      entry[12].set_text(info->Source);      eSoftware.set_value(info->Software);
1021      entry[13].set_text(info->SourceForm);      eMedium.set_value(info->Medium);
1022      entry[14].set_text(info->Commissioned);      eSource.set_value(info->Source);
1023      entry[15].set_text(info->Subject);      eSourceForm.set_value(info->SourceForm);
1024        eCommissioned.set_value(info->Commissioned);
1025        eSubject.set_value(info->Subject);
1026        update_model--;
1027  }  }
1028    
1029  void InstrumentProps::add_prop(BoolEntry& boolentry)  sigc::signal<void>& PropDialog::signal_info_changed()
1030  {  {
1031      table.attach(boolentry.widget, 0, 2, rowno, rowno + 1,      return info_changed;
                  Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
     boolentry.signal_changed_by_user().connect(instrument_changed.make_slot());  
1032  }  }
1033    
1034  void InstrumentProps::add_prop(BoolEntryPlus6& boolentry)  void InstrumentProps::set_IsDrum(bool value)
1035  {  {
1036      table.attach(boolentry.widget, 0, 2, rowno, rowno + 1,      instrument->IsDrum = value;
                  Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
     boolentry.signal_changed_by_user().connect(instrument_changed.make_slot());  
1037  }  }
1038    
1039  void InstrumentProps::add_prop(LabelWidget& prop)  void InstrumentProps::set_MIDIBank(uint16_t value)
1040  {  {
1041      table.attach(prop.label, 0, 1, rowno, rowno + 1,      instrument->MIDIBank = value;
1042                   Gtk::FILL, Gtk::SHRINK);  }
1043      table.attach(prop.widget, 1, 2, rowno, rowno + 1,  
1044                   Gtk::FILL | Gtk::EXPAND, Gtk::SHRINK);  void InstrumentProps::set_MIDIProgram(uint32_t value)
1045      rowno++;  {
1046      prop.signal_changed_by_user().connect(instrument_changed.make_slot());      instrument->MIDIProgram = value;
1047    }
1048    
1049    void InstrumentProps::set_DimensionKeyRange_low(uint8_t value)
1050    {
1051        instrument->DimensionKeyRange.low = value;
1052        if (value > instrument->DimensionKeyRange.high) {
1053            eDimensionKeyRangeHigh.set_value(value);
1054        }
1055    }
1056    
1057    void InstrumentProps::set_DimensionKeyRange_high(uint8_t value)
1058    {
1059        instrument->DimensionKeyRange.high = value;
1060        if (value < instrument->DimensionKeyRange.low) {
1061            eDimensionKeyRangeLow.set_value(value);
1062        }
1063  }  }
1064    
1065  InstrumentProps::InstrumentProps()  InstrumentProps::InstrumentProps()
1066      : table(2,1),      : update_model(0),
1067        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
1068        eName("Name"),        table(2,1),
1069        eIsDrum("Is drum"),        eName(_("Name")),
1070        eMIDIBank("MIDI bank", 0, 16383),        eIsDrum(_("Is drum")),
1071        eMIDIProgram("MIDI program"),        eMIDIBank(_("MIDI bank"), 0, 16383),
1072        eAttenuation("Attenuation", 0, 96, 0, 1),        eMIDIProgram(_("MIDI program")),
1073        eGainPlus6("Gain +6dB", eAttenuation, -6),        eAttenuation(_("Attenuation"), 0, 96, 0, 1),
1074        eEffectSend("Effect send", 0, 65535),        eGainPlus6(_("Gain +6dB"), eAttenuation, -6),
1075        eFineTune("Fine tune", -8400, 8400),        eEffectSend(_("Effect send"), 0, 65535),
1076        ePitchbendRange("Pitchbend range", 0, 12),        eFineTune(_("Fine tune"), -8400, 8400),
1077        ePianoReleaseMode("Piano release mode"),        ePitchbendRange(_("Pitchbend range"), 0, 12),
1078        eDimensionKeyRangeLow("Dimension key range low"),        ePianoReleaseMode(_("Piano release mode")),
1079        eDimensionKeyRangeHigh("Dimension key range high")        eDimensionKeyRangeLow(_("Keyswitching range low")),
1080  {        eDimensionKeyRangeHigh(_("Keyswitching range high"))
1081      set_title("Instrument properties");  {
1082        set_title(_("Instrument Properties"));
1083    
1084        eDimensionKeyRangeLow.set_tip(
1085            _("start of the keyboard area which should switch the "
1086              "\"keyswitching\" dimension")
1087        );
1088        eDimensionKeyRangeHigh.set_tip(
1089            _("end of the keyboard area which should switch the "
1090              "\"keyswitching\" dimension")
1091        );
1092    
1093        connect(eIsDrum, &InstrumentProps::set_IsDrum);
1094        connect(eMIDIBank, &InstrumentProps::set_MIDIBank);
1095        connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);
1096        connect(eAttenuation, &gig::Instrument::Attenuation);
1097        connect(eGainPlus6, &gig::Instrument::Attenuation);
1098        connect(eEffectSend, &gig::Instrument::EffectSend);
1099        connect(eFineTune, &gig::Instrument::FineTune);
1100        connect(ePitchbendRange, &gig::Instrument::PitchbendRange);
1101        connect(ePianoReleaseMode, &gig::Instrument::PianoReleaseMode);
1102        connect(eDimensionKeyRangeLow,
1103                &InstrumentProps::set_DimensionKeyRange_low);
1104        connect(eDimensionKeyRangeHigh,
1105                &InstrumentProps::set_DimensionKeyRange_high);
1106    
     rowno = 0;  
1107      table.set_col_spacings(5);      table.set_col_spacings(5);
1108    
1109      add_prop(eName);      table.add(eName);
1110      add_prop(eIsDrum);      table.add(eIsDrum);
1111      add_prop(eMIDIBank);      table.add(eMIDIBank);
1112      add_prop(eMIDIProgram);      table.add(eMIDIProgram);
1113      add_prop(eAttenuation);      table.add(eAttenuation);
1114      add_prop(eGainPlus6);      table.add(eGainPlus6);
1115      add_prop(eEffectSend);      table.add(eEffectSend);
1116      add_prop(eFineTune);      table.add(eFineTune);
1117      add_prop(ePitchbendRange);      table.add(ePitchbendRange);
1118      add_prop(ePianoReleaseMode);      table.add(ePianoReleaseMode);
1119      add_prop(eDimensionKeyRangeLow);      table.add(eDimensionKeyRangeLow);
1120      add_prop(eDimensionKeyRangeHigh);      table.add(eDimensionKeyRangeHigh);
   
     eDimensionKeyRangeLow.signal_changed_by_user().connect(  
         sigc::mem_fun(*this, &InstrumentProps::key_range_low_changed));  
     eDimensionKeyRangeHigh.signal_changed_by_user().connect(  
         sigc::mem_fun(*this, &InstrumentProps::key_range_high_changed));  
1121    
1122      add(vbox);      add(vbox);
1123      table.set_border_width(5);      table.set_border_width(5);
# Line 932  InstrumentProps::InstrumentProps() Line 1128  InstrumentProps::InstrumentProps()
1128      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
1129      buttonBox.show();      buttonBox.show();
1130      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
1131      quitButton.set_flags(Gtk::CAN_DEFAULT);      quitButton.set_can_default();
1132      quitButton.grab_focus();      quitButton.grab_focus();
1133    
1134      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
# Line 945  InstrumentProps::InstrumentProps() Line 1141  InstrumentProps::InstrumentProps()
1141    
1142  void InstrumentProps::set_instrument(gig::Instrument* instrument)  void InstrumentProps::set_instrument(gig::Instrument* instrument)
1143  {  {
1144      eName.set_ptr(&instrument->pInfo->Name);      this->instrument = instrument;
1145      eIsDrum.set_ptr(&instrument->IsDrum);  
1146      eMIDIBank.set_ptr(&instrument->MIDIBank);      update_model++;
1147      eMIDIProgram.set_ptr(&instrument->MIDIProgram);      eName.set_value(instrument->pInfo->Name);
1148      eAttenuation.set_ptr(&instrument->Attenuation);      eIsDrum.set_value(instrument->IsDrum);
1149      eGainPlus6.set_ptr(&instrument->Attenuation);      eMIDIBank.set_value(instrument->MIDIBank);
1150      eEffectSend.set_ptr(&instrument->EffectSend);      eMIDIProgram.set_value(instrument->MIDIProgram);
1151      eFineTune.set_ptr(&instrument->FineTune);      eAttenuation.set_value(instrument->Attenuation);
1152      ePitchbendRange.set_ptr(&instrument->PitchbendRange);      eGainPlus6.set_value(instrument->Attenuation);
1153      ePianoReleaseMode.set_ptr(&instrument->PianoReleaseMode);      eEffectSend.set_value(instrument->EffectSend);
1154      eDimensionKeyRangeLow.set_ptr(0);      eFineTune.set_value(instrument->FineTune);
1155      eDimensionKeyRangeHigh.set_ptr(0);      ePitchbendRange.set_value(instrument->PitchbendRange);
1156      eDimensionKeyRangeLow.set_ptr(&instrument->DimensionKeyRange.low);      ePianoReleaseMode.set_value(instrument->PianoReleaseMode);
1157      eDimensionKeyRangeHigh.set_ptr(&instrument->DimensionKeyRange.high);      eDimensionKeyRangeLow.set_value(instrument->DimensionKeyRange.low);
1158  }      eDimensionKeyRangeHigh.set_value(instrument->DimensionKeyRange.high);
1159        update_model--;
 void InstrumentProps::key_range_low_changed()  
 {  
     double l = eDimensionKeyRangeLow.get_value();  
     double h = eDimensionKeyRangeHigh.get_value();  
     if (h < l) eDimensionKeyRangeHigh.set_value(l);  
 }  
   
 void InstrumentProps::key_range_high_changed()  
 {  
     double l = eDimensionKeyRangeLow.get_value();  
     double h = eDimensionKeyRangeHigh.get_value();  
     if (h < l) eDimensionKeyRangeLow.set_value(h);  
1160  }  }
1161    
1162  sigc::signal<void>& InstrumentProps::signal_instrument_changed()  sigc::signal<void>& InstrumentProps::signal_instrument_changed()
# Line 1054  void MainWindow::load_gig(gig::File* gig Line 1238  void MainWindow::load_gig(gig::File* gig
1238    
1239  void MainWindow::show_instr_props()  void MainWindow::show_instr_props()
1240  {  {
1241      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      gig::Instrument* instrument = get_instrument();
1242      Gtk::TreeModel::iterator it = tree_sel_ref->get_selected();      if (instrument)
     if (it)  
1243      {      {
1244          Gtk::TreeModel::Row row = *it;          instrumentProps.set_instrument(instrument);
1245          if (row[m_Columns.m_col_instr])          instrumentProps.show();
1246          {          instrumentProps.deiconify();
             instrumentProps.set_instrument(row[m_Columns.m_col_instr]);  
             instrumentProps.show();  
             instrumentProps.deiconify();  
         }  
1247      }      }
1248  }  }
1249    
# Line 1125  void MainWindow::on_action_add_instrumen Line 1304  void MainWindow::on_action_add_instrumen
1304      gig::Instrument* instrument = file->AddInstrument();      gig::Instrument* instrument = file->AddInstrument();
1305      __instrument_indexer++;      __instrument_indexer++;
1306      instrument->pInfo->Name =      instrument->pInfo->Name =
1307          "Unnamed Instrument " + ToString(__instrument_indexer);          _("Unnamed Instrument ") + ToString(__instrument_indexer);
1308      // update instrument tree view      // update instrument tree view
1309      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
1310      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
# Line 1168  void MainWindow::on_action_remove_instru Line 1347  void MainWindow::on_action_remove_instru
1347  void MainWindow::on_action_sample_properties() {  void MainWindow::on_action_sample_properties() {
1348      //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
1349      Gtk::MessageDialog msg(      Gtk::MessageDialog msg(
1350          *this, "Sorry, yet to be implemented!", false, Gtk::MESSAGE_INFO          *this, _("Sorry, yet to be implemented!"), false, Gtk::MESSAGE_INFO
1351      );      );
1352      msg.run();      msg.run();
1353  }  }
# Line 1177  void MainWindow::on_action_add_group() { Line 1356  void MainWindow::on_action_add_group() {
1356      static int __sample_indexer = 0;      static int __sample_indexer = 0;
1357      if (!file) return;      if (!file) return;
1358      gig::Group* group = file->AddGroup();      gig::Group* group = file->AddGroup();
1359      group->Name = "Unnamed Group";      group->Name = _("Unnamed Group");
1360      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
1361      __sample_indexer++;      __sample_indexer++;
1362      // update sample tree view      // update sample tree view
# Line 1211  void MainWindow::on_action_add_sample() Line 1390  void MainWindow::on_action_add_sample()
1390      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1391      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
1392      dialog.set_select_multiple(true);      dialog.set_select_multiple(true);
1393      Gtk::FileFilter soundfilter; // matches all file types supported by libsndfile  
1394        // matches all file types supported by libsndfile
1395    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1396        Gtk::FileFilter soundfilter;
1397    #else
1398        Glib::RefPtr<Gtk::FileFilter> soundfilter = Gtk::FileFilter::create();
1399    #endif
1400      const char* const supportedFileTypes[] = {      const char* const supportedFileTypes[] = {
1401          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",
1402          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",
# Line 1219  void MainWindow::on_action_add_sample() Line 1404  void MainWindow::on_action_add_sample()
1404          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",
1405          "*.caf", "*.CAF", NULL          "*.caf", "*.CAF", NULL
1406      };      };
1407        const char* soundfiles = _("Sound Files");
1408        const char* allfiles = _("All Files");
1409    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1410      for (int i = 0; supportedFileTypes[i]; i++)      for (int i = 0; supportedFileTypes[i]; i++)
1411          soundfilter.add_pattern(supportedFileTypes[i]);          soundfilter.add_pattern(supportedFileTypes[i]);
1412      soundfilter.set_name("Sound Files");      soundfilter.set_name(soundfiles);
1413      Gtk::FileFilter allpassfilter; // matches every file  
1414        // matches every file
1415        Gtk::FileFilter allpassfilter;
1416      allpassfilter.add_pattern("*.*");      allpassfilter.add_pattern("*.*");
1417      allpassfilter.set_name("All Files");      allpassfilter.set_name(allfiles);
1418    #else
1419        for (int i = 0; supportedFileTypes[i]; i++)
1420            soundfilter->add_pattern(supportedFileTypes[i]);
1421        soundfilter->set_name(soundfiles);
1422    
1423        // matches every file
1424        Glib::RefPtr<Gtk::FileFilter> allpassfilter = Gtk::FileFilter::create();
1425        allpassfilter->add_pattern("*.*");
1426        allpassfilter->set_name(allfiles);
1427    #endif
1428      dialog.add_filter(soundfilter);      dialog.add_filter(soundfilter);
1429      dialog.add_filter(allpassfilter);      dialog.add_filter(allpassfilter);
1430        if (current_sample_dir != "") {
1431            dialog.set_current_folder(current_sample_dir);
1432        }
1433      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1434            current_sample_dir = dialog.get_current_folder();
1435          Glib::ustring error_files;          Glib::ustring error_files;
1436          Glib::SListHandle<Glib::ustring> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
1437          for (Glib::SListHandle<Glib::ustring>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
1438               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
1439              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
1440              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file informations
# Line 1238  void MainWindow::on_action_add_sample() Line 1442  void MainWindow::on_action_add_sample()
1442              info.format = 0;              info.format = 0;
1443              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
1444              try {              try {
1445                  if (!hFile) throw std::string("could not open file");                  if (!hFile) throw std::string(_("could not open file"));
1446                  int bitdepth;                  int bitdepth;
1447                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
1448                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
# Line 1254  void MainWindow::on_action_add_sample() Line 1458  void MainWindow::on_action_add_sample()
1458                          break;                          break;
1459                      default:                      default:
1460                          sf_close(hFile); // close sound file                          sf_close(hFile); // close sound file
1461                          throw std::string("format not supported"); // unsupported subformat (yet?)                          throw std::string(_("format not supported")); // unsupported subformat (yet?)
1462                  }                  }
1463                  // add a new sample to the .gig file                  // add a new sample to the .gig file
1464                  gig::Sample* sample = file->AddSample();                  gig::Sample* sample = file->AddSample();
# Line 1340  void MainWindow::on_action_add_sample() Line 1544  void MainWindow::on_action_add_sample()
1544      }      }
1545  }  }
1546    
1547    void MainWindow::on_action_replace_all_samples_in_all_groups()
1548    {
1549        if (!file) return;
1550        Gtk::FileChooserDialog dialog(*this, _("Select Folder"),
1551                                      Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
1552        view::WrapLabel description(
1553            _("This is a very specific function. It tries to replace all samples "
1554              "in the current gig file by samples located in the chosen "
1555              "directory.\n\n"
1556              "It works like this: For each sample in the gig file, it tries to "
1557              "find a sample file in the selected directory with the same name as "
1558              "the sample in the gig file. Optionally, you can add a filename "
1559              "extension below, which will be added to the filename expected to be "
1560              "found. That is, assume you have a gig file with a sample called "
1561              "'Snare', if you enter '.wav' below (like it's done by default), it "
1562              "expects to find a sample file called 'Snare.wav' and will replace "
1563              "the sample in the gig file accordingly. If you don't need an "
1564              "extension, blank the field below. Any gig sample where no "
1565              "appropriate sample file could be found will be reported and left "
1566              "untouched.\n")
1567        );
1568        Gtk::HBox entryArea;
1569        Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
1570        Gtk::Entry postfixEntryBox;
1571        postfixEntryBox.set_text(".wav");
1572        entryArea.pack_start(entryLabel);
1573        entryArea.pack_start(postfixEntryBox);
1574        dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);
1575        dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
1576        description.show();
1577        entryArea.show_all();
1578        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1579        dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
1580        dialog.set_select_multiple(false);
1581        if (current_sample_dir != "") {
1582            dialog.set_current_folder(current_sample_dir);
1583        }
1584        if (dialog.run() == Gtk::RESPONSE_OK)
1585        {
1586            current_sample_dir = dialog.get_current_folder();
1587            Glib::ustring error_files;
1588            std::string folder = dialog.get_filename();
1589            for (gig::Sample* sample = file->GetFirstSample();
1590                 sample; sample = file->GetNextSample())
1591            {
1592                std::string filename =
1593                    folder + G_DIR_SEPARATOR_S + sample->pInfo->Name +
1594                    postfixEntryBox.get_text().raw();
1595                SF_INFO info;
1596                info.format = 0;
1597                SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
1598                try
1599                {
1600                    if (!hFile) throw std::string(_("could not open file"));
1601                    int bitdepth;
1602                    switch (info.format & 0xff) {
1603                        case SF_FORMAT_PCM_S8:
1604                        case SF_FORMAT_PCM_16:
1605                        case SF_FORMAT_PCM_U8:
1606                            bitdepth = 16;
1607                            break;
1608                        case SF_FORMAT_PCM_24:
1609                        case SF_FORMAT_PCM_32:
1610                        case SF_FORMAT_FLOAT:
1611                        case SF_FORMAT_DOUBLE:
1612                            bitdepth = 24;
1613                            break;
1614                        default:
1615                            sf_close(hFile);
1616                            throw std::string(_("format not supported"));
1617                    }
1618                    SampleImportItem sched_item;
1619                    sched_item.gig_sample  = sample;
1620                    sched_item.sample_path = filename;
1621                    m_SampleImportQueue.push_back(sched_item);
1622                    sf_close(hFile);
1623                    file_changed();
1624                }
1625                catch (std::string what)
1626                {
1627                    if (error_files.size()) error_files += "\n";
1628                        error_files += filename += " (" + what + ")";
1629                }
1630            }
1631            // show error message box when some file(s) could not be opened / added
1632            if (error_files.size()) {
1633                Glib::ustring txt =
1634                    _("Could not replace the following sample(s):\n") + error_files;
1635                Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1636                msg.run();
1637            }
1638        }
1639    }
1640    
1641  void MainWindow::on_action_remove_sample() {  void MainWindow::on_action_remove_sample() {
1642      if (!file) return;      if (!file) return;
1643      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
# Line 1506  void MainWindow::on_sample_label_drop_dr Line 1804  void MainWindow::on_sample_label_drop_dr
1804          // notify we're done with altering          // notify we're done with altering
1805          region_changed_signal.emit(region);          region_changed_signal.emit(region);
1806    
1807            file_changed();
1808    
1809          return;          return;
1810      }      }
1811      // drop failed      // drop failed
# Line 1586  sigc::signal<void, gig::Region*>& MainWi Line 1886  sigc::signal<void, gig::Region*>& MainWi
1886      return region_changed_signal;      return region_changed_signal;
1887  }  }
1888    
1889    sigc::signal<void, gig::Sample*>& MainWindow::signal_sample_changed() {
1890        return sample_changed_signal;
1891    }
1892    
1893  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() {
1894      return sample_ref_changed_signal;      return sample_ref_changed_signal;
1895  }  }
# Line 1597  sigc::signal<void, gig::DimensionRegion* Line 1901  sigc::signal<void, gig::DimensionRegion*
1901  sigc::signal<void, gig::DimensionRegion*>& MainWindow::signal_dimreg_changed() {  sigc::signal<void, gig::DimensionRegion*>& MainWindow::signal_dimreg_changed() {
1902      return dimreg_changed_signal;      return dimreg_changed_signal;
1903  }  }
1904    
1905    sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_note_on() {
1906        return note_on_signal;
1907    }
1908    
1909    sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_note_off() {
1910        return note_off_signal;
1911    }
1912    
1913    sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_hit() {
1914        return m_RegionChooser.signal_keyboard_key_hit();
1915    }
1916    
1917    sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {
1918        return m_RegionChooser.signal_keyboard_key_released();
1919    }

Legend:
Removed from v.1436  
changed lines
  Added in v.2246

  ViewVC Help
Powered by ViewVC