/[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 1382 by schoenebeck, Thu Oct 4 23:29:22 2007 UTC revision 2423 by persson, Sun Feb 24 15:19:39 2013 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006, 2007 Andreas Persson   * Copyright (C) 2006-2013 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 17  Line 17 
17   * 02110-1301 USA.   * 02110-1301 USA.
18   */   */
19    
 #include <libintl.h>  
20  #include <iostream>  #include <iostream>
21    #include <cstring>
22    
23    #include <glibmm/convert.h>
24    #include <glibmm/dispatcher.h>
25    #include <glibmm/miscutils.h>
26    #include <glibmm/stringutils.h>
27    #include <gtkmm/aboutdialog.h>
28  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
29  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
30  #include <gtkmm/stock.h>  #include <gtkmm/stock.h>
31  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
32  #include <gtkmm/main.h>  #include <gtkmm/main.h>
33    #include <gtkmm/radiomenuitem.h>
34  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  #include <gtkmm/toggleaction.h>
35  #define ABOUT_DIALOG  #if GTKMM_MAJOR_VERSION < 3
36  #include <gtkmm/aboutdialog.h>  #include "wrapLabel.hh"
37  #endif  #endif
38    
39  #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION < 6) || GLIBMM_MAJOR_VERSION < 2  #include "global.h"
40  namespace Glib {  #include "compat.h"
 Glib::ustring filename_display_basename(const std::string& filename)  
 {  
     gchar* gstr = g_path_get_basename(filename.c_str());  
     Glib::ustring str(gstr);  
     g_free(gstr);  
     return Glib::filename_to_utf8(str);  
 }  
 }  
 #endif  
41    
42  #include <stdio.h>  #include <stdio.h>
43  #include <sndfile.h>  #include <sndfile.h>
44    
45  #include "mainwindow.h"  #include "mainwindow.h"
46    
47  #define _(String) gettext(String)  #include "../../gfx/status_attached.xpm"
48    #include "../../gfx/status_detached.xpm"
49    
50  template<class T> inline std::string ToString(T o) {  template<class T> inline std::string ToString(T o) {
51      std::stringstream ss;      std::stringstream ss;
# Line 56  template<class T> inline std::string ToS Line 53  template<class T> inline std::string ToS
53      return ss.str();      return ss.str();
54  }  }
55    
56  MainWindow::MainWindow()  
57    MainWindow::MainWindow() :
58        dimreg_label(_("Changes apply to:")),
59        dimreg_all_regions(_("all regions")),
60        dimreg_all_dimregs(_("all dimension splits")),
61        dimreg_stereo(_("both channels"))
62  {  {
63  //    set_border_width(5);  //    set_border_width(5);
64  //    set_default_size(400, 200);  //    set_default_size(400, 200);
# Line 86  MainWindow::MainWindow() Line 88  MainWindow::MainWindow()
88      m_TreeViewNotebook.set_size_request(300);      m_TreeViewNotebook.set_size_request(300);
89    
90      m_HPaned.add1(m_TreeViewNotebook);      m_HPaned.add1(m_TreeViewNotebook);
91      m_HPaned.add2(dimreg_edit);      dimreg_hbox.add(dimreg_label);
92        dimreg_hbox.add(dimreg_all_regions);
93        dimreg_hbox.add(dimreg_all_dimregs);
94        dimreg_stereo.set_active();
95        dimreg_hbox.add(dimreg_stereo);
96        dimreg_vbox.add(dimreg_edit);
97        dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);
98        m_HPaned.add2(dimreg_vbox);
99    
100    
101      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, "Samples");      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
102      m_TreeViewNotebook.append_page(m_ScrolledWindow, "Instruments");      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
103    
104    
105      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
# Line 127  MainWindow::MainWindow() Line 136  MainWindow::MainWindow()
136                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
137      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));
138    
139        actionGroup->add(Gtk::Action::create("MenuView", _("_View")));
140        Glib::RefPtr<Gtk::ToggleAction> toggle_action =
141            Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));
142        toggle_action->set_active(true);
143        actionGroup->add(toggle_action,
144                         sigc::mem_fun(
145                             *this, &MainWindow::on_action_view_status_bar));
146    
147      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
148      actionGroup->add(Gtk::Action::create("MenuHelp",      actionGroup->add(Gtk::Action::create("MenuHelp",
149                                           action->property_label()));                                           action->property_label()));
 #ifdef ABOUT_DIALOG  
150      actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),      actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),
151                       sigc::mem_fun(                       sigc::mem_fun(
152                           *this, &MainWindow::on_action_help_about));                           *this, &MainWindow::on_action_help_about));
 #endif  
153      actionGroup->add(      actionGroup->add(
154          Gtk::Action::create("AddInstrument", _("Add _Instrument")),          Gtk::Action::create("AddInstrument", _("Add _Instrument")),
155          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)
156      );      );
157      actionGroup->add(      actionGroup->add(
158            Gtk::Action::create("DupInstrument", _("_Duplicate Instrument")),
159            sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
160        );
161        actionGroup->add(
162          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),
163          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
164      );      );
# Line 154  MainWindow::MainWindow() Line 173  MainWindow::MainWindow()
173          sigc::mem_fun(*this, &MainWindow::on_action_add_group)          sigc::mem_fun(*this, &MainWindow::on_action_add_group)
174      );      );
175      actionGroup->add(      actionGroup->add(
176          Gtk::Action::create("AddSample", _("Add _Sample(s)")),          Gtk::Action::create("AddSample", _("Add _Sample(s)...")),
177          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
178      );      );
179      actionGroup->add(      actionGroup->add(
180          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),
181          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
182      );      );
183        actionGroup->add(
184            Gtk::Action::create("ReplaceAllSamplesInAllGroups",
185                                _("Replace All Samples in All Groups...")),
186            sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
187        );
188    
189      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
190      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
# Line 182  MainWindow::MainWindow() Line 206  MainWindow::MainWindow()
206          "    </menu>"          "    </menu>"
207          "    <menu action='MenuInstrument'>"          "    <menu action='MenuInstrument'>"
208          "    </menu>"          "    </menu>"
209  #ifdef ABOUT_DIALOG          "    <menu action='MenuView'>"
210            "      <menuitem action='Statusbar'/>"
211            "    </menu>"
212          "    <menu action='MenuHelp'>"          "    <menu action='MenuHelp'>"
213          "      <menuitem action='About'/>"          "      <menuitem action='About'/>"
214          "    </menu>"          "    </menu>"
 #endif  
215          "  </menubar>"          "  </menubar>"
216          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
217          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
218          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
219            "    <menuitem action='DupInstrument'/>"
220          "    <separator/>"          "    <separator/>"
221          "    <menuitem action='RemoveInstrument'/>"          "    <menuitem action='RemoveInstrument'/>"
222          "  </popup>"          "  </popup>"
# Line 198  MainWindow::MainWindow() Line 224  MainWindow::MainWindow()
224          "    <menuitem action='SampleProperties'/>"          "    <menuitem action='SampleProperties'/>"
225          "    <menuitem action='AddGroup'/>"          "    <menuitem action='AddGroup'/>"
226          "    <menuitem action='AddSample'/>"          "    <menuitem action='AddSample'/>"
227            "    <menuitem action='ReplaceAllSamplesInAllGroups' />"
228          "    <separator/>"          "    <separator/>"
229          "    <menuitem action='RemoveSample'/>"          "    <menuitem action='RemoveSample'/>"
230          "  </popup>"          "  </popup>"
# Line 210  MainWindow::MainWindow() Line 237  MainWindow::MainWindow()
237      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
238      m_VBox.pack_start(m_HPaned);      m_VBox.pack_start(m_HPaned);
239      m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK);
240        m_VBox.pack_start(m_RegionChooser.m_VirtKeybPropsBox, Gtk::PACK_SHRINK);
241      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);
242        m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);
243    
244        set_file_is_shared(false);
245    
246        // Status Bar:
247        m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);
248        m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);
249        m_StatusBar.show();
250    
251      m_RegionChooser.signal_region_selected().connect(      m_RegionChooser.signal_region_selected().connect(
252          sigc::mem_fun(*this, &MainWindow::region_changed) );          sigc::mem_fun(*this, &MainWindow::region_changed) );
# Line 243  MainWindow::MainWindow() Line 279  MainWindow::MainWindow()
279      );      );
280    
281      // 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
282      std::list<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
283      drag_target_gig_sample.push_back( Gtk::TargetEntry("gig::Sample") );      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
284      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);
285      m_TreeViewSamples.signal_drag_begin().connect(      m_TreeViewSamples.signal_drag_begin().connect(
286          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)
# Line 262  MainWindow::MainWindow() Line 298  MainWindow::MainWindow()
298          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
299      m_DimRegionChooser.signal_region_changed().connect(      m_DimRegionChooser.signal_region_changed().connect(
300          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
301      instrumentProps.signal_instrument_changed().connect(      instrumentProps.signal_changed().connect(
302            sigc::mem_fun(*this, &MainWindow::file_changed));
303        propDialog.signal_changed().connect(
304          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
305    
306      dimreg_edit.signal_dimreg_to_be_changed().connect(      dimreg_edit.signal_dimreg_to_be_changed().connect(
# Line 293  MainWindow::MainWindow() Line 331  MainWindow::MainWindow()
331      m_RegionChooser.signal_region_changed_signal().connect(      m_RegionChooser.signal_region_changed_signal().connect(
332          region_changed_signal.make_slot());          region_changed_signal.make_slot());
333    
334        note_on_signal.connect(
335            sigc::mem_fun(m_RegionChooser, &RegionChooser::on_note_on_event));
336        note_off_signal.connect(
337            sigc::mem_fun(m_RegionChooser, &RegionChooser::on_note_off_event));
338    
339        dimreg_all_regions.signal_toggled().connect(
340            sigc::mem_fun(*this, &MainWindow::update_dimregs));
341        dimreg_all_dimregs.signal_toggled().connect(
342            sigc::mem_fun(*this, &MainWindow::dimreg_all_dimregs_toggled));
343        dimreg_stereo.signal_toggled().connect(
344            sigc::mem_fun(*this, &MainWindow::update_dimregs));
345    
346      file = 0;      file = 0;
347      file_is_changed = false;      file_is_changed = false;
     file_is_shared  = false;  
348    
349      show_all_children();      show_all_children();
350    
# Line 323  void MainWindow::region_changed() Line 372  void MainWindow::region_changed()
372      m_DimRegionChooser.set_region(m_RegionChooser.get_region());      m_DimRegionChooser.set_region(m_RegionChooser.get_region());
373  }  }
374    
375  void MainWindow::dimreg_changed()  gig::Instrument* MainWindow::get_instrument()
 {  
     dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion());  
 }  
   
 void MainWindow::on_sel_change()  
376  {  {
377        gig::Instrument* instrument = 0;
378      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();
379    
380      Gtk::TreeModel::iterator it = tree_sel_ref->get_selected();      Gtk::TreeModel::iterator it = tree_sel_ref->get_selected();
381      if (it) {      if (it) {
382          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
383          std::cout << row[m_Columns.m_col_name] << std::endl;          instrument = row[m_Columns.m_col_instr];
384        }
385        return instrument;
386    }
387    
388          m_RegionChooser.set_instrument(row[m_Columns.m_col_instr]);  void MainWindow::add_region_to_dimregs(gig::Region* region, bool stereo, bool all_dimregs)
389    {
390        if (all_dimregs) {
391            for (int i = 0 ; i < region->DimensionRegions ; i++) {
392                if (region->pDimensionRegions[i]) {
393                    dimreg_edit.dimregs.insert(region->pDimensionRegions[i]);
394                }
395            }
396      } else {      } else {
397          m_RegionChooser.set_instrument(0);          m_DimRegionChooser.get_dimregions(region, stereo, dimreg_edit.dimregs);
398      }      }
399  }  }
400    
401    void MainWindow::update_dimregs()
402    {
403        dimreg_edit.dimregs.clear();
404        bool all_regions = dimreg_all_regions.get_active();
405        bool stereo = dimreg_stereo.get_active();
406        bool all_dimregs = dimreg_all_dimregs.get_active();
407    
408        if (all_regions) {
409            gig::Instrument* instrument = get_instrument();
410            if (instrument) {
411                for (gig::Region* region = instrument->GetFirstRegion() ;
412                     region ;
413                     region = instrument->GetNextRegion()) {
414                    add_region_to_dimregs(region, stereo, all_dimregs);
415                }
416            }
417        } else {
418            gig::Region* region = m_RegionChooser.get_region();
419            if (region) {
420                add_region_to_dimregs(region, stereo, all_dimregs);
421            }
422        }
423    }
424    
425    void MainWindow::dimreg_all_dimregs_toggled()
426    {
427        dimreg_stereo.set_sensitive(!dimreg_all_dimregs.get_active());
428        update_dimregs();
429    }
430    
431    void MainWindow::dimreg_changed()
432    {
433        update_dimregs();
434        dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion());
435    }
436    
437    void MainWindow::on_sel_change()
438    {
439        m_RegionChooser.set_instrument(get_instrument());
440    }
441    
442  void loader_progress_callback(gig::progress_t* progress)  void loader_progress_callback(gig::progress_t* progress)
443  {  {
444      Loader* loader = static_cast<Loader*>(progress->custom);      Loader* loader = static_cast<Loader*>(progress->custom);
# Line 352  void loader_progress_callback(gig::progr Line 448  void loader_progress_callback(gig::progr
448  void Loader::progress_callback(float fraction)  void Loader::progress_callback(float fraction)
449  {  {
450      {      {
451          Glib::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
452          progress = fraction;          progress = fraction;
453      }      }
454      progress_dispatcher();      progress_dispatcher();
# Line 360  void Loader::progress_callback(float fra Line 456  void Loader::progress_callback(float fra
456    
457  void Loader::thread_function()  void Loader::thread_function()
458  {  {
459      printf("thread_function self=%x\n", Glib::Thread::self());      printf("thread_function self=%x\n", Glib::Threads::Thread::self());
460      printf("Start %s\n", filename);      printf("Start %s\n", filename);
461      RIFF::File* riff = new RIFF::File(filename);      RIFF::File* riff = new RIFF::File(filename);
462      gig = new gig::File(riff);      gig = new gig::File(riff);
# Line 374  void Loader::thread_function() Line 470  void Loader::thread_function()
470  }  }
471    
472  Loader::Loader(const char* filename)  Loader::Loader(const char* filename)
473      : thread(0), filename(filename)      : filename(filename), thread(0)
474  {  {
475  }  }
476    
477  void Loader::launch()  void Loader::launch()
478  {  {
479    #ifdef OLD_THREADS
480      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);
481    #else
482        thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));
483    #endif
484      printf("launch thread=%x\n", thread);      printf("launch thread=%x\n", thread);
485  }  }
486    
# Line 388  float Loader::get_progress() Line 488  float Loader::get_progress()
488  {  {
489      float res;      float res;
490      {      {
491          Glib::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
492          res = progress;          res = progress;
493      }      }
494      return res;      return res;
# Line 418  void MainWindow::__clear() { Line 518  void MainWindow::__clear() {
518      Gtk::MenuItem* instrument_menu =      Gtk::MenuItem* instrument_menu =
519          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));
520      instrument_menu->hide();      instrument_menu->hide();
521      for (int i = 0; i < instrument_menu->get_submenu()->items().size(); i++) {      Gtk::Menu* menu = instrument_menu->get_submenu();
522          delete &instrument_menu->get_submenu()->items()[i];      while (menu->get_children().size()) {
523            Gtk::Widget* child = *menu->get_children().begin();
524            menu->remove(*child);
525            delete child;
526      }      }
     instrument_menu->get_submenu()->items().clear();  
527      // forget all samples that ought to be imported      // forget all samples that ought to be imported
528      m_SampleImportQueue.clear();      m_SampleImportQueue.clear();
529      // clear the samples and instruments tree views      // clear the samples and instruments tree views
# Line 430  void MainWindow::__clear() { Line 532  void MainWindow::__clear() {
532      // free libgig's gig::File instance      // free libgig's gig::File instance
533      if (file && !file_is_shared) delete file;      if (file && !file_is_shared) delete file;
534      file = NULL;      file = NULL;
535      file_is_shared = false;      set_file_is_shared(false);
536  }  }
537    
538  void MainWindow::on_action_file_new()  void MainWindow::on_action_file_new()
# Line 445  void MainWindow::on_action_file_new() Line 547  void MainWindow::on_action_file_new()
547      gig::File* pFile = new gig::File;      gig::File* pFile = new gig::File;
548      // already add one new instrument by default      // already add one new instrument by default
549      gig::Instrument* pInstrument = pFile->AddInstrument();      gig::Instrument* pInstrument = pFile->AddInstrument();
550      pInstrument->pInfo->Name = "Unnamed Instrument";      pInstrument->pInfo->Name = _("Unnamed Instrument");
551      // update GUI with that new gig::File      // update GUI with that new gig::File
552      load_gig(pFile, 0 /*no file name yet*/);      load_gig(pFile, 0 /*no file name yet*/);
553  }  }
# Line 456  bool MainWindow::close_confirmation_dial Line 558  bool MainWindow::close_confirmation_dial
558                                   Glib::filename_display_basename(filename).c_str());                                   Glib::filename_display_basename(filename).c_str());
559      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
560      g_free(msg);      g_free(msg);
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  
561      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  
562      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
563      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
564      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 472  bool MainWindow::close_confirmation_dial Line 572  bool MainWindow::close_confirmation_dial
572  bool MainWindow::leaving_shared_mode_dialog() {  bool MainWindow::leaving_shared_mode_dialog() {
573      Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");      Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");
574      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  
575      dialog.set_secondary_text(      dialog.set_secondary_text(
576          _("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 "
577            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
578            "load it.")            "load it."));
    );  
 #endif  
579      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
580      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
581      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
# Line 497  void MainWindow::on_action_file_open() Line 594  void MainWindow::on_action_file_open()
594      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
595      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
596      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
597    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
598      Gtk::FileFilter filter;      Gtk::FileFilter filter;
599      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
600    #else
601        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
602        filter->add_pattern("*.gig");
603    #endif
604      dialog.set_filter(filter);      dialog.set_filter(filter);
605      if (current_dir != "") {      if (current_gig_dir != "") {
606          dialog.set_current_folder(current_dir);          dialog.set_current_folder(current_gig_dir);
607      }      }
608      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
609          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
610          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
611          printf("on_action_file_open self=%x\n", Glib::Thread::self());          printf("on_action_file_open self=%x\n", Glib::Threads::Thread::self());
612          load_file(filename.c_str());          load_file(filename.c_str());
613          current_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
614      }      }
615  }  }
616    
617  void MainWindow::load_file(const char* name)  void MainWindow::load_file(const char* name)
618  {  {
619      __clear();      __clear();
620      load_dialog = new LoadDialog("Loading...", *this);      load_dialog = new LoadDialog(_("Loading..."), *this);
621      load_dialog->show_all();      load_dialog->show_all();
622      loader = new Loader(strdup(name));      loader = new Loader(strdup(name));
623      loader->signal_progress().connect(      loader->signal_progress().connect(
# Line 548  void MainWindow::on_loader_progress() Line 650  void MainWindow::on_loader_progress()
650  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
651  {  {
652      printf("Loader finished!\n");      printf("Loader finished!\n");
653      printf("on_loader_finished self=%x\n", Glib::Thread::self());      printf("on_loader_finished self=%x\n", Glib::Threads::Thread::self());
654      load_gig(loader->gig, loader->filename);      load_gig(loader->gig, loader->filename);
655      load_dialog->hide();      load_dialog->hide();
656  }  }
# Line 620  bool MainWindow::file_save_as() Line 722  bool MainWindow::file_save_as()
722      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
723      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
724      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  
725      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
726      // TODO: an overwrite dialog for gtkmm < 2.8  
727  #endif  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
728      Gtk::FileFilter filter;      Gtk::FileFilter filter;
729      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
730    #else
731        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
732        filter->add_pattern("*.gig");
733    #endif
734      dialog.set_filter(filter);      dialog.set_filter(filter);
735    
736      if (Glib::path_is_absolute(filename)) {      // set initial dir and filename of the Save As dialog
737          dialog.set_filename(filename);      // and prepare that initial filename as a copy of the gig
738      } else if (current_dir != "") {      {
739          dialog.set_current_folder(current_dir);          std::string basename = Glib::path_get_basename(filename);
740            std::string dir = Glib::path_get_dirname(filename);
741            basename = std::string(_("copy_of_")) + basename;
742            Glib::ustring copyFileName = Glib::build_filename(dir, basename);
743            if (Glib::path_is_absolute(filename)) {
744                dialog.set_filename(copyFileName);
745            } else {
746                if (current_gig_dir != "") dialog.set_current_folder(current_gig_dir);
747            }
748            dialog.set_current_name(Glib::filename_display_basename(copyFileName));
749      }      }
750      dialog.set_current_name(Glib::filename_display_basename(filename));  
751        // show warning in the dialog
752        Gtk::HBox descriptionArea;
753        descriptionArea.set_spacing(15);
754        Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
755        descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
756    #if GTKMM_MAJOR_VERSION < 3
757        view::WrapLabel description;
758    #else
759        Gtk::Label description;
760        description.set_line_wrap();
761    #endif
762        description.set_markup(
763            _("\n<b>CAUTION:</b> You <b>MUST</b> use the "
764              "<span style=\"italic\">\"Save\"</span> dialog instead of "
765              "<span style=\"italic\">\"Save As...\"</span> if you want to save "
766              "to the same .gig file. Using "
767              "<span style=\"italic\">\"Save As...\"</span> for writing to the "
768              "same .gig file will end up in corrupted sample wave data!\n")
769        );
770        descriptionArea.pack_start(description);
771        dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
772        descriptionArea.show_all();
773    
774      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
775          file_structure_to_be_changed_signal.emit(this->file);          file_structure_to_be_changed_signal.emit(this->file);
# Line 646  bool MainWindow::file_save_as() Line 781  bool MainWindow::file_save_as()
781              printf("filename=%s\n", filename.c_str());              printf("filename=%s\n", filename.c_str());
782              file->Save(filename);              file->Save(filename);
783              this->filename = filename;              this->filename = filename;
784              current_dir = Glib::path_get_dirname(filename);              current_gig_dir = Glib::path_get_dirname(filename);
785              set_title(Glib::filename_display_basename(filename));              set_title(Glib::filename_display_basename(filename));
786              file_has_name = true;              file_has_name = true;
787              file_is_changed = false;              file_is_changed = false;
# Line 675  void MainWindow::__import_queued_samples Line 810  void MainWindow::__import_queued_samples
810          SF_INFO info;          SF_INFO info;
811          info.format = 0;          info.format = 0;
812          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);
813            sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);
814          try {          try {
815              if (!hFile) throw std::string("could not open file");              if (!hFile) throw std::string(_("could not open file"));
816              // determine sample's bit depth              // determine sample's bit depth
817              int bitdepth;              int bitdepth;
818              switch (info.format & 0xff) {              switch (info.format & 0xff) {
# Line 693  void MainWindow::__import_queued_samples Line 829  void MainWindow::__import_queued_samples
829                      break;                      break;
830                  default:                  default:
831                      sf_close(hFile); // close sound file                      sf_close(hFile); // close sound file
832                      throw std::string("format not supported"); // unsupported subformat (yet?)                      throw std::string(_("format not supported")); // unsupported subformat (yet?)
833              }              }
834    
835              const int bufsize = 10000;              const int bufsize = 10000;
# Line 735  void MainWindow::__import_queued_samples Line 871  void MainWindow::__import_queued_samples
871              }              }
872              // cleanup              // cleanup
873              sf_close(hFile);              sf_close(hFile);
874                // let the sampler re-cache the sample if needed
875                sample_changed_signal.emit(iter->gig_sample);
876              // on success we remove the sample from the import queue,              // on success we remove the sample from the import queue,
877              // otherwise keep it, maybe it works the next time ?              // otherwise keep it, maybe it works the next time ?
878              std::list<SampleImportItem>::iterator cur = iter;              std::list<SampleImportItem>::iterator cur = iter;
# Line 763  void MainWindow::on_action_file_properti Line 901  void MainWindow::on_action_file_properti
901    
902  void MainWindow::on_action_help_about()  void MainWindow::on_action_help_about()
903  {  {
 #ifdef ABOUT_DIALOG  
904      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
905    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 12) || GTKMM_MAJOR_VERSION > 2
906        dialog.set_program_name("Gigedit");
907    #else
908        dialog.set_name("Gigedit");
909    #endif
910      dialog.set_version(VERSION);      dialog.set_version(VERSION);
911        dialog.set_copyright("Copyright (C) 2006-2013 Andreas Persson");
912        dialog.set_comments(_(
913            "Released under the GNU General Public License.\n"
914            "\n"
915            "Please notice that this is still a very young instrument editor. "
916            "So better backup your Gigasampler files before editing them with "
917            "this application.\n"
918            "\n"
919            "Please report bugs to: http://bugs.linuxsampler.org")
920        );
921        dialog.set_website("http://www.linuxsampler.org");
922        dialog.set_website_label("http://www.linuxsampler.org");
923      dialog.run();      dialog.run();
 #endif  
924  }  }
925    
926  PropDialog::PropDialog()  PropDialog::PropDialog()
927      : table(2,1)      : eName(_("Name")),
928          eCreationDate(_("Creation date")),
929          eComments(_("Comments")),
930          eProduct(_("Product")),
931          eCopyright(_("Copyright")),
932          eArtists(_("Artists")),
933          eGenre(_("Genre")),
934          eKeywords(_("Keywords")),
935          eEngineer(_("Engineer")),
936          eTechnician(_("Technician")),
937          eSoftware(_("Software")),
938          eMedium(_("Medium")),
939          eSource(_("Source")),
940          eSourceForm(_("Source form")),
941          eCommissioned(_("Commissioned")),
942          eSubject(_("Subject")),
943          quitButton(Gtk::Stock::CLOSE),
944          table(2, 1)
945  {  {
946        set_title(_("File Properties"));
947        eName.set_width_chars(50);
948    
949        connect(eName, &DLS::Info::Name);
950        connect(eCreationDate, &DLS::Info::CreationDate);
951        connect(eComments, &DLS::Info::Comments);
952        connect(eProduct, &DLS::Info::Product);
953        connect(eCopyright, &DLS::Info::Copyright);
954        connect(eArtists, &DLS::Info::Artists);
955        connect(eGenre, &DLS::Info::Genre);
956        connect(eKeywords, &DLS::Info::Keywords);
957        connect(eEngineer, &DLS::Info::Engineer);
958        connect(eTechnician, &DLS::Info::Technician);
959        connect(eSoftware, &DLS::Info::Software);
960        connect(eMedium, &DLS::Info::Medium);
961        connect(eSource, &DLS::Info::Source);
962        connect(eSourceForm, &DLS::Info::SourceForm);
963        connect(eCommissioned, &DLS::Info::Commissioned);
964        connect(eSubject, &DLS::Info::Subject);
965    
966        table.add(eName);
967        table.add(eCreationDate);
968        table.add(eComments);
969        table.add(eProduct);
970        table.add(eCopyright);
971        table.add(eArtists);
972        table.add(eGenre);
973        table.add(eKeywords);
974        table.add(eEngineer);
975        table.add(eTechnician);
976        table.add(eSoftware);
977        table.add(eMedium);
978        table.add(eSource);
979        table.add(eSourceForm);
980        table.add(eCommissioned);
981        table.add(eSubject);
982    
983      table.set_col_spacings(5);      table.set_col_spacings(5);
984      const char* propLabels[] = {      add(vbox);
985          "Name:",      table.set_border_width(5);
986          "CreationDate:",      vbox.add(table);
987          "Comments:", // TODO: multiline      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
988          "Product:",      buttonBox.set_layout(Gtk::BUTTONBOX_END);
989          "Copyright:",      buttonBox.set_border_width(5);
990          "Artists:",      buttonBox.show();
991          "Genre:",      buttonBox.pack_start(quitButton);
992          "Keywords:",      quitButton.set_can_default();
993          "Engineer:",      quitButton.grab_focus();
994          "Technician:",      quitButton.signal_clicked().connect(
995          "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);  
     }  
996    
997      add(table);      quitButton.show();
998      // add_button(Gtk::Stock::CANCEL, 0);      vbox.show();
     // add_button(Gtk::Stock::OK, 1);  
999      show_all_children();      show_all_children();
1000  }  }
1001    
1002  void PropDialog::set_info(DLS::Info* info)  void PropDialog::set_info(DLS::Info* info)
1003  {  {
1004      entry[0].set_text(info->Name);      update(info);
     entry[1].set_text(info->CreationDate);  
     entry[2].set_text(Glib::convert(info->Comments, "UTF-8", "ISO-8859-1"));  
     entry[3].set_text(info->Product);  
     entry[4].set_text(info->Copyright);  
     entry[5].set_text(info->Artists);  
     entry[6].set_text(info->Genre);  
     entry[7].set_text(info->Keywords);  
     entry[8].set_text(info->Engineer);  
     entry[9].set_text(info->Technician);  
     entry[10].set_text(info->Software);  
     entry[11].set_text(info->Medium);  
     entry[12].set_text(info->Source);  
     entry[13].set_text(info->SourceForm);  
     entry[14].set_text(info->Commissioned);  
     entry[15].set_text(info->Subject);  
 }  
   
 void InstrumentProps::add_prop(BoolEntry& boolentry)  
 {  
     table.attach(boolentry.widget, 0, 2, rowno, rowno + 1,  
                  Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
     boolentry.signal_changed_by_user().connect(instrument_changed.make_slot());  
 }  
   
 void InstrumentProps::add_prop(BoolEntryPlus6& boolentry)  
 {  
     table.attach(boolentry.widget, 0, 2, rowno, rowno + 1,  
                  Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
     boolentry.signal_changed_by_user().connect(instrument_changed.make_slot());  
 }  
   
 void InstrumentProps::add_prop(LabelWidget& prop)  
 {  
     table.attach(prop.label, 0, 1, rowno, rowno + 1,  
                  Gtk::FILL, Gtk::SHRINK);  
     table.attach(prop.widget, 1, 2, rowno, rowno + 1,  
                  Gtk::FILL | Gtk::EXPAND, Gtk::SHRINK);  
     rowno++;  
     prop.signal_changed_by_user().connect(instrument_changed.make_slot());  
1005  }  }
1006    
1007  InstrumentProps::InstrumentProps()  
1008      : table(2,1),  void InstrumentProps::set_IsDrum(bool value)
       quitButton(Gtk::Stock::CLOSE),  
       eName("Name"),  
       eIsDrum("Is drum"),  
       eMIDIBank("MIDI bank", 0, 16383),  
       eMIDIProgram("MIDI program"),  
       eAttenuation("Attenuation", 0, 96, 0, 1),  
       eGainPlus6("Gain +6dB", eAttenuation, -6),  
       eEffectSend("Effect send", 0, 65535),  
       eFineTune("Fine tune", -8400, 8400),  
       ePitchbendRange("Pitchbend range", 0, 12),  
       ePianoReleaseMode("Piano release mode"),  
       eDimensionKeyRangeLow("Dimension key range low"),  
       eDimensionKeyRangeHigh("Dimension key range high")  
1009  {  {
1010      set_title("Instrument properties");      m->IsDrum = value;
1011    }
1012    
1013    void InstrumentProps::set_MIDIBank(uint16_t value)
1014    {
1015        m->MIDIBank = value;
1016    }
1017    
1018    void InstrumentProps::set_MIDIProgram(uint32_t value)
1019    {
1020        m->MIDIProgram = value;
1021    }
1022    
1023    InstrumentProps::InstrumentProps() :
1024        quitButton(Gtk::Stock::CLOSE),
1025        table(2,1),
1026        eName(_("Name")),
1027        eIsDrum(_("Is drum")),
1028        eMIDIBank(_("MIDI bank"), 0, 16383),
1029        eMIDIProgram(_("MIDI program")),
1030        eAttenuation(_("Attenuation"), 0, 96, 0, 1),
1031        eGainPlus6(_("Gain +6dB"), eAttenuation, -6),
1032        eEffectSend(_("Effect send"), 0, 65535),
1033        eFineTune(_("Fine tune"), -8400, 8400),
1034        ePitchbendRange(_("Pitchbend range"), 0, 12),
1035        ePianoReleaseMode(_("Piano release mode")),
1036        eDimensionKeyRangeLow(_("Keyswitching range low")),
1037        eDimensionKeyRangeHigh(_("Keyswitching range high"))
1038    {
1039        set_title(_("Instrument Properties"));
1040    
1041        eDimensionKeyRangeLow.set_tip(
1042            _("start of the keyboard area which should switch the "
1043              "\"keyswitching\" dimension")
1044        );
1045        eDimensionKeyRangeHigh.set_tip(
1046            _("end of the keyboard area which should switch the "
1047              "\"keyswitching\" dimension")
1048        );
1049    
1050        connect(eIsDrum, &InstrumentProps::set_IsDrum);
1051        connect(eMIDIBank, &InstrumentProps::set_MIDIBank);
1052        connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);
1053        connect(eAttenuation, &gig::Instrument::Attenuation);
1054        connect(eGainPlus6, &gig::Instrument::Attenuation);
1055        connect(eEffectSend, &gig::Instrument::EffectSend);
1056        connect(eFineTune, &gig::Instrument::FineTune);
1057        connect(ePitchbendRange, &gig::Instrument::PitchbendRange);
1058        connect(ePianoReleaseMode, &gig::Instrument::PianoReleaseMode);
1059        connect(eDimensionKeyRangeLow, eDimensionKeyRangeHigh,
1060                &gig::Instrument::DimensionKeyRange);
1061    
     rowno = 0;  
1062      table.set_col_spacings(5);      table.set_col_spacings(5);
1063    
1064      add_prop(eName);      table.add(eName);
1065      add_prop(eIsDrum);      table.add(eIsDrum);
1066      add_prop(eMIDIBank);      table.add(eMIDIBank);
1067      add_prop(eMIDIProgram);      table.add(eMIDIProgram);
1068      add_prop(eAttenuation);      table.add(eAttenuation);
1069      add_prop(eGainPlus6);      table.add(eGainPlus6);
1070      add_prop(eEffectSend);      table.add(eEffectSend);
1071      add_prop(eFineTune);      table.add(eFineTune);
1072      add_prop(ePitchbendRange);      table.add(ePitchbendRange);
1073      add_prop(ePianoReleaseMode);      table.add(ePianoReleaseMode);
1074      add_prop(eDimensionKeyRangeLow);      table.add(eDimensionKeyRangeLow);
1075      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));  
1076    
1077      add(vbox);      add(vbox);
1078      table.set_border_width(5);      table.set_border_width(5);
# Line 900  InstrumentProps::InstrumentProps() Line 1083  InstrumentProps::InstrumentProps()
1083      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
1084      buttonBox.show();      buttonBox.show();
1085      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
1086      quitButton.set_flags(Gtk::CAN_DEFAULT);      quitButton.set_can_default();
1087      quitButton.grab_focus();      quitButton.grab_focus();
1088    
1089      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
# Line 913  InstrumentProps::InstrumentProps() Line 1096  InstrumentProps::InstrumentProps()
1096    
1097  void InstrumentProps::set_instrument(gig::Instrument* instrument)  void InstrumentProps::set_instrument(gig::Instrument* instrument)
1098  {  {
1099      eName.set_ptr(&instrument->pInfo->Name);      update(instrument);
     eIsDrum.set_ptr(&instrument->IsDrum);  
     eMIDIBank.set_ptr(&instrument->MIDIBank);  
     eMIDIProgram.set_ptr(&instrument->MIDIProgram);  
     eAttenuation.set_ptr(&instrument->Attenuation);  
     eGainPlus6.set_ptr(&instrument->Attenuation);  
     eEffectSend.set_ptr(&instrument->EffectSend);  
     eFineTune.set_ptr(&instrument->FineTune);  
     ePitchbendRange.set_ptr(&instrument->PitchbendRange);  
     ePianoReleaseMode.set_ptr(&instrument->PianoReleaseMode);  
     eDimensionKeyRangeLow.set_ptr(0);  
     eDimensionKeyRangeHigh.set_ptr(0);  
     eDimensionKeyRangeLow.set_ptr(&instrument->DimensionKeyRange.low);  
     eDimensionKeyRangeHigh.set_ptr(&instrument->DimensionKeyRange.high);  
 }  
1100    
1101  void InstrumentProps::key_range_low_changed()      update_model++;
1102  {      eIsDrum.set_value(instrument->IsDrum);
1103      double l = eDimensionKeyRangeLow.get_value();      eMIDIBank.set_value(instrument->MIDIBank);
1104      double h = eDimensionKeyRangeHigh.get_value();      eMIDIProgram.set_value(instrument->MIDIProgram);
1105      if (h < l) eDimensionKeyRangeHigh.set_value(l);      update_model--;
1106  }  }
1107    
 void InstrumentProps::key_range_high_changed()  
 {  
     double l = eDimensionKeyRangeLow.get_value();  
     double h = eDimensionKeyRangeHigh.get_value();  
     if (h < l) eDimensionKeyRangeLow.set_value(h);  
 }  
   
 sigc::signal<void>& InstrumentProps::signal_instrument_changed()  
 {  
     return instrument_changed;  
 }  
1108    
1109  void MainWindow::file_changed()  void MainWindow::file_changed()
1110  {  {
# Line 959  void MainWindow::file_changed() Line 1117  void MainWindow::file_changed()
1117  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
1118  {  {
1119      file = 0;      file = 0;
1120      file_is_shared = isSharedInstrument;      set_file_is_shared(isSharedInstrument);
1121    
1122      this->filename = filename ? filename : _("Unsaved Gig File");      this->filename = filename ? filename : _("Unsaved Gig File");
1123      set_title(Glib::filename_display_basename(this->filename));      set_title(Glib::filename_display_basename(this->filename));
# Line 1018  void MainWindow::load_gig(gig::File* gig Line 1176  void MainWindow::load_gig(gig::File* gig
1176      // select the first instrument      // select the first instrument
1177      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();
1178      tree_sel_ref->select(Gtk::TreePath("0"));      tree_sel_ref->select(Gtk::TreePath("0"));
1179    
1180        gig::Instrument* instrument = get_instrument();
1181        if (instrument) {
1182            instrumentProps.set_instrument(instrument);
1183        }
1184  }  }
1185    
1186  void MainWindow::show_instr_props()  void MainWindow::show_instr_props()
1187  {  {
1188      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      gig::Instrument* instrument = get_instrument();
1189      Gtk::TreeModel::iterator it = tree_sel_ref->get_selected();      if (instrument)
     if (it)  
1190      {      {
1191          Gtk::TreeModel::Row row = *it;          instrumentProps.set_instrument(instrument);
1192          if (row[m_Columns.m_col_instr])          instrumentProps.show();
1193          {          instrumentProps.deiconify();
1194              instrumentProps.set_instrument(row[m_Columns.m_col_instr]);      }
1195              instrumentProps.show();  }
1196              instrumentProps.deiconify();  
1197          }  void MainWindow::on_action_view_status_bar() {
1198        Gtk::CheckMenuItem* item =
1199            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
1200        if (!item) {
1201            std::cerr << "/MenuBar/MenuView/Statusbar == NULL\n";
1202            return;
1203      }      }
1204        if (item->get_active()) m_StatusBar.show();
1205        else                    m_StatusBar.hide();
1206  }  }
1207    
1208  void MainWindow::on_button_release(GdkEventButton* button)  void MainWindow::on_button_release(GdkEventButton* button)
# Line 1082  void MainWindow::on_action_add_instrumen Line 1251  void MainWindow::on_action_add_instrumen
1251      gig::Instrument* instrument = file->AddInstrument();      gig::Instrument* instrument = file->AddInstrument();
1252      __instrument_indexer++;      __instrument_indexer++;
1253      instrument->pInfo->Name =      instrument->pInfo->Name =
1254          "Unnamed Instrument " + ToString(__instrument_indexer);          _("Unnamed Instrument ") + ToString(__instrument_indexer);
1255      // update instrument tree view      // update instrument tree view
1256      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
1257      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
# Line 1091  void MainWindow::on_action_add_instrumen Line 1260  void MainWindow::on_action_add_instrumen
1260      file_changed();      file_changed();
1261  }  }
1262    
1263    void MainWindow::on_action_duplicate_instrument() {
1264        if (!file) return;
1265        
1266        // retrieve the currently selected instrument
1267        // (being the original instrument to be duplicated)
1268        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
1269        Gtk::TreeModel::iterator itSelection = sel->get_selected();
1270        if (!itSelection) return;
1271        Gtk::TreeModel::Row row = *itSelection;
1272        gig::Instrument* instrOrig = row[m_Columns.m_col_instr];
1273        if (!instrOrig) return;
1274        
1275        // duplicate the orginal instrument
1276        gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
1277        instrNew->pInfo->Name =
1278            instrOrig->pInfo->Name + " (" + _("Copy") + ")";
1279            
1280        // update instrument tree view
1281        Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
1282        Gtk::TreeModel::Row rowInstr = *iterInstr;
1283        rowInstr[m_Columns.m_col_name] = instrNew->pInfo->Name.c_str();
1284        rowInstr[m_Columns.m_col_instr] = instrNew;
1285        file_changed();
1286    }
1287    
1288  void MainWindow::on_action_remove_instrument() {  void MainWindow::on_action_remove_instrument() {
1289      if (!file) return;      if (!file) return;
1290      if (file_is_shared) {      if (file_is_shared) {
# Line 1115  void MainWindow::on_action_remove_instru Line 1309  void MainWindow::on_action_remove_instru
1309              // remove respective row from instruments tree view              // remove respective row from instruments tree view
1310              m_refTreeModel->erase(it);              m_refTreeModel->erase(it);
1311              file_changed();              file_changed();
1312    
1313                instr = get_instrument();
1314                if (instr) {
1315                    instrumentProps.set_instrument(instr);
1316                } else {
1317                    instrumentProps.hide();
1318                }
1319          } catch (RIFF::Exception e) {          } catch (RIFF::Exception e) {
1320              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
1321              msg.run();              msg.run();
# Line 1125  void MainWindow::on_action_remove_instru Line 1326  void MainWindow::on_action_remove_instru
1326  void MainWindow::on_action_sample_properties() {  void MainWindow::on_action_sample_properties() {
1327      //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
1328      Gtk::MessageDialog msg(      Gtk::MessageDialog msg(
1329          *this, "Sorry, yet to be implemented!", false, Gtk::MESSAGE_INFO          *this, _("Sorry, yet to be implemented!"), false, Gtk::MESSAGE_INFO
1330      );      );
1331      msg.run();      msg.run();
1332  }  }
# Line 1134  void MainWindow::on_action_add_group() { Line 1335  void MainWindow::on_action_add_group() {
1335      static int __sample_indexer = 0;      static int __sample_indexer = 0;
1336      if (!file) return;      if (!file) return;
1337      gig::Group* group = file->AddGroup();      gig::Group* group = file->AddGroup();
1338      group->Name = "Unnamed Group";      group->Name = _("Unnamed Group");
1339      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
1340      __sample_indexer++;      __sample_indexer++;
1341      // update sample tree view      // update sample tree view
# Line 1168  void MainWindow::on_action_add_sample() Line 1369  void MainWindow::on_action_add_sample()
1369      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1370      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
1371      dialog.set_select_multiple(true);      dialog.set_select_multiple(true);
1372      Gtk::FileFilter soundfilter; // matches all file types supported by libsndfile  
1373        // matches all file types supported by libsndfile
1374    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1375        Gtk::FileFilter soundfilter;
1376    #else
1377        Glib::RefPtr<Gtk::FileFilter> soundfilter = Gtk::FileFilter::create();
1378    #endif
1379      const char* const supportedFileTypes[] = {      const char* const supportedFileTypes[] = {
1380          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",
1381          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",
# Line 1176  void MainWindow::on_action_add_sample() Line 1383  void MainWindow::on_action_add_sample()
1383          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",
1384          "*.caf", "*.CAF", NULL          "*.caf", "*.CAF", NULL
1385      };      };
1386        const char* soundfiles = _("Sound Files");
1387        const char* allfiles = _("All Files");
1388    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1389      for (int i = 0; supportedFileTypes[i]; i++)      for (int i = 0; supportedFileTypes[i]; i++)
1390          soundfilter.add_pattern(supportedFileTypes[i]);          soundfilter.add_pattern(supportedFileTypes[i]);
1391      soundfilter.set_name("Sound Files");      soundfilter.set_name(soundfiles);
1392      Gtk::FileFilter allpassfilter; // matches every file  
1393        // matches every file
1394        Gtk::FileFilter allpassfilter;
1395      allpassfilter.add_pattern("*.*");      allpassfilter.add_pattern("*.*");
1396      allpassfilter.set_name("All Files");      allpassfilter.set_name(allfiles);
1397    #else
1398        for (int i = 0; supportedFileTypes[i]; i++)
1399            soundfilter->add_pattern(supportedFileTypes[i]);
1400        soundfilter->set_name(soundfiles);
1401    
1402        // matches every file
1403        Glib::RefPtr<Gtk::FileFilter> allpassfilter = Gtk::FileFilter::create();
1404        allpassfilter->add_pattern("*.*");
1405        allpassfilter->set_name(allfiles);
1406    #endif
1407      dialog.add_filter(soundfilter);      dialog.add_filter(soundfilter);
1408      dialog.add_filter(allpassfilter);      dialog.add_filter(allpassfilter);
1409        if (current_sample_dir != "") {
1410            dialog.set_current_folder(current_sample_dir);
1411        }
1412      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1413            current_sample_dir = dialog.get_current_folder();
1414          Glib::ustring error_files;          Glib::ustring error_files;
1415          Glib::SListHandle<Glib::ustring> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
1416          for (Glib::SListHandle<Glib::ustring>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
1417               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
1418              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
1419              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file informations
# Line 1195  void MainWindow::on_action_add_sample() Line 1421  void MainWindow::on_action_add_sample()
1421              info.format = 0;              info.format = 0;
1422              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
1423              try {              try {
1424                  if (!hFile) throw std::string("could not open file");                  if (!hFile) throw std::string(_("could not open file"));
1425                  int bitdepth;                  int bitdepth;
1426                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
1427                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
# Line 1211  void MainWindow::on_action_add_sample() Line 1437  void MainWindow::on_action_add_sample()
1437                          break;                          break;
1438                      default:                      default:
1439                          sf_close(hFile); // close sound file                          sf_close(hFile); // close sound file
1440                          throw std::string("format not supported"); // unsupported subformat (yet?)                          throw std::string(_("format not supported")); // unsupported subformat (yet?)
1441                  }                  }
1442                  // add a new sample to the .gig file                  // add a new sample to the .gig file
1443                  gig::Sample* sample = file->AddSample();                  gig::Sample* sample = file->AddSample();
# Line 1239  void MainWindow::on_action_add_sample() Line 1465  void MainWindow::on_action_add_sample()
1465                  {                  {
1466                      sample->MIDIUnityNote = instrument.basenote;                      sample->MIDIUnityNote = instrument.basenote;
1467    
 #if HAVE_SF_INSTRUMENT_LOOPS  
1468                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {
1469                          sample->Loops = 1;                          sample->Loops = 1;
1470    
# Line 1259  void MainWindow::on_action_add_sample() Line 1484  void MainWindow::on_action_add_sample()
1484                          sample->LoopPlayCount = instrument.loops[0].count;                          sample->LoopPlayCount = instrument.loops[0].count;
1485                          sample->LoopSize = sample->LoopEnd - sample->LoopStart + 1;                          sample->LoopSize = sample->LoopEnd - sample->LoopStart + 1;
1486                      }                      }
 #endif  
1487                  }                  }
1488    
1489                  // schedule resizing the sample (which will be done                  // schedule resizing the sample (which will be done
# Line 1297  void MainWindow::on_action_add_sample() Line 1521  void MainWindow::on_action_add_sample()
1521      }      }
1522  }  }
1523    
1524    void MainWindow::on_action_replace_all_samples_in_all_groups()
1525    {
1526        if (!file) return;
1527        Gtk::FileChooserDialog dialog(*this, _("Select Folder"),
1528                                      Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
1529        const char* str =
1530            _("This is a very specific function. It tries to replace all samples "
1531              "in the current gig file by samples located in the chosen "
1532              "directory.\n\n"
1533              "It works like this: For each sample in the gig file, it tries to "
1534              "find a sample file in the selected directory with the same name as "
1535              "the sample in the gig file. Optionally, you can add a filename "
1536              "extension below, which will be added to the filename expected to be "
1537              "found. That is, assume you have a gig file with a sample called "
1538              "'Snare', if you enter '.wav' below (like it's done by default), it "
1539              "expects to find a sample file called 'Snare.wav' and will replace "
1540              "the sample in the gig file accordingly. If you don't need an "
1541              "extension, blank the field below. Any gig sample where no "
1542              "appropriate sample file could be found will be reported and left "
1543              "untouched.\n");
1544    #if GTKMM_MAJOR_VERSION < 3
1545        view::WrapLabel description(str);
1546    #else
1547        Gtk::Label description(str);
1548        description.set_line_wrap();
1549    #endif
1550        Gtk::HBox entryArea;
1551        Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
1552        Gtk::Entry postfixEntryBox;
1553        postfixEntryBox.set_text(".wav");
1554        entryArea.pack_start(entryLabel);
1555        entryArea.pack_start(postfixEntryBox);
1556        dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);
1557        dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
1558        description.show();
1559        entryArea.show_all();
1560        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1561        dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
1562        dialog.set_select_multiple(false);
1563        if (current_sample_dir != "") {
1564            dialog.set_current_folder(current_sample_dir);
1565        }
1566        if (dialog.run() == Gtk::RESPONSE_OK)
1567        {
1568            current_sample_dir = dialog.get_current_folder();
1569            Glib::ustring error_files;
1570            std::string folder = dialog.get_filename();
1571            for (gig::Sample* sample = file->GetFirstSample();
1572                 sample; sample = file->GetNextSample())
1573            {
1574                std::string filename =
1575                    folder + G_DIR_SEPARATOR_S + sample->pInfo->Name +
1576                    postfixEntryBox.get_text().raw();
1577                SF_INFO info;
1578                info.format = 0;
1579                SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
1580                try
1581                {
1582                    if (!hFile) throw std::string(_("could not open file"));
1583                    int bitdepth;
1584                    switch (info.format & 0xff) {
1585                        case SF_FORMAT_PCM_S8:
1586                        case SF_FORMAT_PCM_16:
1587                        case SF_FORMAT_PCM_U8:
1588                            bitdepth = 16;
1589                            break;
1590                        case SF_FORMAT_PCM_24:
1591                        case SF_FORMAT_PCM_32:
1592                        case SF_FORMAT_FLOAT:
1593                        case SF_FORMAT_DOUBLE:
1594                            bitdepth = 24;
1595                            break;
1596                        default:
1597                            sf_close(hFile);
1598                            throw std::string(_("format not supported"));
1599                    }
1600                    SampleImportItem sched_item;
1601                    sched_item.gig_sample  = sample;
1602                    sched_item.sample_path = filename;
1603                    m_SampleImportQueue.push_back(sched_item);
1604                    sf_close(hFile);
1605                    file_changed();
1606                }
1607                catch (std::string what)
1608                {
1609                    if (error_files.size()) error_files += "\n";
1610                        error_files += filename += " (" + what + ")";
1611                }
1612            }
1613            // show error message box when some file(s) could not be opened / added
1614            if (error_files.size()) {
1615                Glib::ustring txt =
1616                    _("Could not replace the following sample(s):\n") + error_files;
1617                Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1618                msg.run();
1619            }
1620        }
1621    }
1622    
1623  void MainWindow::on_action_remove_sample() {  void MainWindow::on_action_remove_sample() {
1624      if (!file) return;      if (!file) return;
1625      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
# Line 1463  void MainWindow::on_sample_label_drop_dr Line 1786  void MainWindow::on_sample_label_drop_dr
1786          // notify we're done with altering          // notify we're done with altering
1787          region_changed_signal.emit(region);          region_changed_signal.emit(region);
1788    
1789            file_changed();
1790    
1791          return;          return;
1792      }      }
1793      // drop failed      // drop failed
# Line 1503  void MainWindow::instrument_name_changed Line 1828  void MainWindow::instrument_name_changed
1828      }      }
1829  }  }
1830    
1831    void MainWindow::set_file_is_shared(bool b) {
1832        this->file_is_shared = b;
1833    
1834        if (file_is_shared) {
1835            m_AttachedStateLabel.set_label(_("live-mode"));
1836            m_AttachedStateImage.set(
1837                Gdk::Pixbuf::create_from_xpm_data(status_attached_xpm)
1838            );
1839        } else {
1840            m_AttachedStateLabel.set_label(_("stand-alone"));
1841            m_AttachedStateImage.set(
1842                Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)
1843            );
1844        }
1845    }
1846    
1847  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {
1848      return file_structure_to_be_changed_signal;      return file_structure_to_be_changed_signal;
1849  }  }
# Line 1527  sigc::signal<void, gig::Region*>& MainWi Line 1868  sigc::signal<void, gig::Region*>& MainWi
1868      return region_changed_signal;      return region_changed_signal;
1869  }  }
1870    
1871    sigc::signal<void, gig::Sample*>& MainWindow::signal_sample_changed() {
1872        return sample_changed_signal;
1873    }
1874    
1875  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() {
1876      return sample_ref_changed_signal;      return sample_ref_changed_signal;
1877  }  }
# Line 1538  sigc::signal<void, gig::DimensionRegion* Line 1883  sigc::signal<void, gig::DimensionRegion*
1883  sigc::signal<void, gig::DimensionRegion*>& MainWindow::signal_dimreg_changed() {  sigc::signal<void, gig::DimensionRegion*>& MainWindow::signal_dimreg_changed() {
1884      return dimreg_changed_signal;      return dimreg_changed_signal;
1885  }  }
1886    
1887    sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_note_on() {
1888        return note_on_signal;
1889    }
1890    
1891    sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_note_off() {
1892        return note_off_signal;
1893    }
1894    
1895    sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_hit() {
1896        return m_RegionChooser.signal_keyboard_key_hit();
1897    }
1898    
1899    sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {
1900        return m_RegionChooser.signal_keyboard_key_released();
1901    }

Legend:
Removed from v.1382  
changed lines
  Added in v.2423

  ViewVC Help
Powered by ViewVC