/[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 1959 by persson, Fri Jul 31 10:15:27 2009 UTC revision 2689 by schoenebeck, Sun Jan 4 17:19:19 2015 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2009 Andreas Persson   * Copyright (C) 2006-2015 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 20  Line 20 
20  #include <iostream>  #include <iostream>
21  #include <cstring>  #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/toggleaction.h>  #include <gtkmm/toggleaction.h>
34    #if GTKMM_MAJOR_VERSION < 3
35  #include "wrapLabel.hh"  #include "wrapLabel.hh"
   
 #include "global.h"  
   
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  
 #define ABOUT_DIALOG  
 #include <gtkmm/aboutdialog.h>  
36  #endif  #endif
37    
38  #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION < 6) || GLIBMM_MAJOR_VERSION < 2  #include "global.h"
39  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  
40    
41  #include <stdio.h>  #include <stdio.h>
42  #include <sndfile.h>  #include <sndfile.h>
43    #include <assert.h>
44    
45  #include "mainwindow.h"  #include "mainwindow.h"
46    #include "Settings.h"
47    #include "CombineInstrumentsDialog.h"
48    #include "scripteditor.h"
49    #include "scriptslots.h"
50    #include "ReferencesView.h"
51  #include "../../gfx/status_attached.xpm"  #include "../../gfx/status_attached.xpm"
52  #include "../../gfx/status_detached.xpm"  #include "../../gfx/status_detached.xpm"
53    
 template<class T> inline std::string ToString(T o) {  
     std::stringstream ss;  
     ss << o;  
     return ss.str();  
 }  
   
 Table::Table(int x, int y) : Gtk::Table(x, y), rowno(0) {  }  
   
 void Table::add(BoolEntry& boolentry)  
 {  
     attach(boolentry.widget, 0, 2, rowno, rowno + 1,  
            Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
 }  
   
 void Table::add(BoolEntryPlus6& boolentry)  
 {  
     attach(boolentry.widget, 0, 2, rowno, rowno + 1,  
            Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
 }  
   
 void Table::add(LabelWidget& prop)  
 {  
     attach(prop.label, 1, 2, rowno, rowno + 1,  
            Gtk::FILL, Gtk::SHRINK);  
     attach(prop.widget, 2, 3, rowno, rowno + 1,  
            Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
 }  
54    
55  MainWindow::MainWindow() :  MainWindow::MainWindow() :
56        m_DimRegionChooser(*this),
57      dimreg_label(_("Changes apply to:")),      dimreg_label(_("Changes apply to:")),
58      dimreg_all_regions(_("all regions")),      dimreg_all_regions(_("all regions")),
59      dimreg_all_dimregs(_("all dimension splits")),      dimreg_all_dimregs(_("all dimension splits")),
# Line 99  MainWindow::MainWindow() : Line 66  MainWindow::MainWindow() :
66      add(m_VBox);      add(m_VBox);
67    
68      // Handle selection      // Handle selection
69      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      m_TreeView.get_selection()->signal_changed().connect(
     tree_sel_ref->signal_changed().connect(  
70          sigc::mem_fun(*this, &MainWindow::on_sel_change));          sigc::mem_fun(*this, &MainWindow::on_sel_change));
71    
72      // m_TreeView.set_reorderable();      // m_TreeView.set_reorderable();
# Line 116  MainWindow::MainWindow() : Line 82  MainWindow::MainWindow() :
82      m_ScrolledWindowSamples.add(m_TreeViewSamples);      m_ScrolledWindowSamples.add(m_TreeViewSamples);
83      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
84    
85        m_ScrolledWindowScripts.add(m_TreeViewScripts);
86        m_ScrolledWindowScripts.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
87    
88    
89      m_TreeViewNotebook.set_size_request(300);      m_TreeViewNotebook.set_size_request(300);
90    
# Line 129  MainWindow::MainWindow() : Line 98  MainWindow::MainWindow() :
98      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);
99      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
100    
101        dimreg_label.set_tooltip_text(_("To automatically apply your changes above globally to the entire instrument, check all 3 check boxes on the right."));
102        dimreg_all_regions.set_tooltip_text(_("If checked: all changes you perform above will automatically be applied to all regions of this instrument as well."));
103        dimreg_all_dimregs.set_tooltip_text(_("If checked: all changes you perform above will automatically be applied as well to all dimension splits of the region selected below."));
104        dimreg_stereo.set_tooltip_text(_("If checked: all changes you perform above will automatically be applied to both audio channel splits (only if a \"stereo\" dimension is defined below)."));
105    
106      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
107      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
108        m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));
109    
110      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
111    
# Line 163  MainWindow::MainWindow() : Line 136  MainWindow::MainWindow() :
136                                           Gtk::Stock::PROPERTIES),                                           Gtk::Stock::PROPERTIES),
137                       sigc::mem_fun(                       sigc::mem_fun(
138                           *this, &MainWindow::show_instr_props));                           *this, &MainWindow::show_instr_props));
139        actionGroup->add(Gtk::Action::create("MidiRules",
140                                             _("_Midi Rules...")),
141                         sigc::mem_fun(
142                             *this, &MainWindow::show_midi_rules));
143        actionGroup->add(Gtk::Action::create("ScriptSlots",
144                                             _("_Script Slots...")),
145                         sigc::mem_fun(
146                             *this, &MainWindow::show_script_slots));
147      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),
148                       sigc::mem_fun(                       sigc::mem_fun(
149                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
150      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));      actionGroup->add(
151            Gtk::Action::create("MenuSample", _("_Sample")),
152            sigc::mem_fun(*this, &MainWindow::show_samples_tab)
153        );
154        actionGroup->add(
155            Gtk::Action::create("MenuInstrument", _("_Instrument")),
156            sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
157        );
158        actionGroup->add(
159            Gtk::Action::create("MenuScript", _("S_cript")),
160            sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
161        );
162        actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));
163    
164        actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
165    
     actionGroup->add(Gtk::Action::create("MenuView", _("_View")));  
166      Glib::RefPtr<Gtk::ToggleAction> toggle_action =      Glib::RefPtr<Gtk::ToggleAction> toggle_action =
167            Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"));
168        toggle_action->set_active(true);
169        actionGroup->add(toggle_action);
170    
171        toggle_action =
172            Gtk::ToggleAction::create("CopySampleTune", _("Copy Sample's _Fine Tune"));
173        toggle_action->set_active(true);
174        actionGroup->add(toggle_action);
175    
176        toggle_action =
177            Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));
178        toggle_action->set_active(true);
179        actionGroup->add(toggle_action);
180    
181    
182        actionGroup->add(Gtk::Action::create("MenuView", _("_View")));
183        toggle_action =
184          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));
185      toggle_action->set_active(true);      toggle_action->set_active(true);
186      actionGroup->add(toggle_action,      actionGroup->add(toggle_action,
# Line 179  MainWindow::MainWindow() : Line 190  MainWindow::MainWindow() :
190      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
191      actionGroup->add(Gtk::Action::create("MenuHelp",      actionGroup->add(Gtk::Action::create("MenuHelp",
192                                           action->property_label()));                                           action->property_label()));
 #ifdef ABOUT_DIALOG  
193      actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),      actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),
194                       sigc::mem_fun(                       sigc::mem_fun(
195                           *this, &MainWindow::on_action_help_about));                           *this, &MainWindow::on_action_help_about));
 #endif  
196      actionGroup->add(      actionGroup->add(
197          Gtk::Action::create("AddInstrument", _("Add _Instrument")),          Gtk::Action::create("AddInstrument", _("Add _Instrument")),
198          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)
199      );      );
200      actionGroup->add(      actionGroup->add(
201            Gtk::Action::create("DupInstrument", _("_Duplicate Instrument")),
202            sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
203        );
204        actionGroup->add(
205          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),
206          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
207      );      );
208    
209    
210        actionGroup->add(Gtk::Action::create("MenuSettings", _("_Settings")));
211        
212        toggle_action =
213            Gtk::ToggleAction::create("WarnUserOnExtensions", _("Show warning on format _extensions"));
214        toggle_action->set_active(Settings::singleton()->warnUserOnExtensions);
215        actionGroup->add(
216            toggle_action,
217            sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions)
218        );
219    
220        toggle_action =
221            Gtk::ToggleAction::create("SyncSamplerInstrumentSelection", _("Synchronize sampler's instrument selection"));
222        toggle_action->set_active(Settings::singleton()->syncSamplerInstrumentSelection);
223        actionGroup->add(
224            toggle_action,
225            sigc::mem_fun(*this, &MainWindow::on_action_sync_sampler_instrument_selection)
226        );
227    
228    
229        actionGroup->add(Gtk::Action::create("MenuTools", _("_Tools")));
230    
231        actionGroup->add(
232            Gtk::Action::create("CombineInstruments", _("_Combine Instruments...")),
233            sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
234        );
235    
236        actionGroup->add(
237            Gtk::Action::create("MergeFiles", _("_Merge Files...")),
238            sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
239        );
240    
241    
242      // sample right-click popup actions      // sample right-click popup actions
243      actionGroup->add(      actionGroup->add(
244          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),
# Line 211  MainWindow::MainWindow() : Line 257  MainWindow::MainWindow() :
257          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
258      );      );
259      actionGroup->add(      actionGroup->add(
260            Gtk::Action::create("ShowSampleRefs", _("Show References...")),
261            sigc::mem_fun(*this, &MainWindow::on_action_view_references)
262        );
263        actionGroup->add(
264          Gtk::Action::create("ReplaceAllSamplesInAllGroups",          Gtk::Action::create("ReplaceAllSamplesInAllGroups",
265                              _("Replace All Samples in All Groups...")),                              _("Replace All Samples in All Groups...")),
266          sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)          sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
267      );      );
268        
269        // script right-click popup actions
270        actionGroup->add(
271            Gtk::Action::create("AddScriptGroup", _("Add _Group")),
272            sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
273        );
274        actionGroup->add(
275            Gtk::Action::create("AddScript", _("Add _Script")),
276            sigc::mem_fun(*this, &MainWindow::on_action_add_script)
277        );
278        actionGroup->add(
279            Gtk::Action::create("EditScript", _("_Edit Script...")),
280            sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
281        );
282        actionGroup->add(
283            Gtk::Action::create("RemoveScript", Gtk::Stock::REMOVE),
284            sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
285        );
286    
287      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
288      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
# Line 234  MainWindow::MainWindow() : Line 302  MainWindow::MainWindow() :
302          "      <separator/>"          "      <separator/>"
303          "      <menuitem action='Quit'/>"          "      <menuitem action='Quit'/>"
304          "    </menu>"          "    </menu>"
305            "    <menu action='MenuEdit'>"
306            "      <menuitem action='CopySampleUnity'/>"
307            "      <menuitem action='CopySampleTune'/>"
308            "      <menuitem action='CopySampleLoop'/>"
309            "    </menu>"
310            "    <menu action='MenuSample'>"
311            "      <menuitem action='SampleProperties'/>"
312            "      <menuitem action='AddGroup'/>"
313            "      <menuitem action='AddSample'/>"
314            "      <menuitem action='ShowSampleRefs'/>"
315            "      <menuitem action='ReplaceAllSamplesInAllGroups' />"
316            "      <separator/>"
317            "      <menuitem action='RemoveSample'/>"
318            "    </menu>"
319          "    <menu action='MenuInstrument'>"          "    <menu action='MenuInstrument'>"
320            "      <menu action='AllInstruments'>"
321            "      </menu>"
322            "      <separator/>"
323            "      <menuitem action='InstrProperties'/>"
324            "      <menuitem action='MidiRules'/>"
325            "      <menuitem action='ScriptSlots'/>"
326            "      <menuitem action='AddInstrument'/>"
327            "      <menuitem action='DupInstrument'/>"
328            "      <separator/>"
329            "      <menuitem action='RemoveInstrument'/>"
330            "    </menu>"
331            "    <menu action='MenuScript'>"
332            "      <menuitem action='AddScriptGroup'/>"
333            "      <menuitem action='AddScript'/>"
334            "      <menuitem action='EditScript'/>"
335            "      <separator/>"
336            "      <menuitem action='RemoveScript'/>"
337          "    </menu>"          "    </menu>"
338          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
339          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
340          "    </menu>"          "    </menu>"
341  #ifdef ABOUT_DIALOG          "    <menu action='MenuTools'>"
342            "      <menuitem action='CombineInstruments'/>"
343            "      <menuitem action='MergeFiles'/>"
344            "    </menu>"
345            "    <menu action='MenuSettings'>"
346            "      <menuitem action='WarnUserOnExtensions'/>"
347            "      <menuitem action='SyncSamplerInstrumentSelection'/>"
348            "    </menu>"
349          "    <menu action='MenuHelp'>"          "    <menu action='MenuHelp'>"
350          "      <menuitem action='About'/>"          "      <menuitem action='About'/>"
351          "    </menu>"          "    </menu>"
 #endif  
352          "  </menubar>"          "  </menubar>"
353          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
354          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
355            "    <menuitem action='MidiRules'/>"
356            "    <menuitem action='ScriptSlots'/>"
357          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
358            "    <menuitem action='DupInstrument'/>"
359          "    <separator/>"          "    <separator/>"
360          "    <menuitem action='RemoveInstrument'/>"          "    <menuitem action='RemoveInstrument'/>"
361          "  </popup>"          "  </popup>"
# Line 255  MainWindow::MainWindow() : Line 363  MainWindow::MainWindow() :
363          "    <menuitem action='SampleProperties'/>"          "    <menuitem action='SampleProperties'/>"
364          "    <menuitem action='AddGroup'/>"          "    <menuitem action='AddGroup'/>"
365          "    <menuitem action='AddSample'/>"          "    <menuitem action='AddSample'/>"
366          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"          "    <menuitem action='ShowSampleRefs'/>"
367            "    <menuitem action='ReplaceAllSamplesInAllGroups' />"
368          "    <separator/>"          "    <separator/>"
369          "    <menuitem action='RemoveSample'/>"          "    <menuitem action='RemoveSample'/>"
370          "  </popup>"          "  </popup>"
371            "  <popup name='ScriptPopupMenu'>"
372            "    <menuitem action='AddScriptGroup'/>"
373            "    <menuitem action='AddScript'/>"
374            "    <menuitem action='EditScript'/>"
375            "    <separator/>"
376            "    <menuitem action='RemoveScript'/>"
377            "  </popup>"
378          "</ui>";          "</ui>";
379      uiManager->add_ui_from_string(ui_info);      uiManager->add_ui_from_string(ui_info);
380    
381      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));
382        
383        // Set tooltips for menu items (for some reason, setting a tooltip on the
384        // respective Gtk::Action objects above will simply be ignored, no matter
385        // if using Gtk::Action::set_tooltip() or passing the tooltip string on
386        // Gtk::Action::create()).
387        {
388            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
389                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
390            item->set_tooltip_text(_("Used when dragging a sample to a region's sample reference field. You may disable this for example if you want to replace an existing sample in a region with a new sample, but don't want that the region's current unity note setting will be altered by this action."));
391        }
392        {
393            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
394                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
395            item->set_tooltip_text(_("Used when dragging a sample to a region's sample reference field. You may disable this for example if you want to replace an existing sample in a region with a new sample, but don't want that the region's current sample playback tuning will be altered by this action."));
396        }
397        {
398            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
399                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
400            item->set_tooltip_text(_("Used when dragging a sample to a region's sample reference field. You may disable this for example if you want to replace an existing sample in a region with a new sample, but don't want that the region's current loop informations to be altered by this action."));
401        }
402        {
403            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
404                uiManager->get_widget("/MenuBar/MenuSettings/WarnUserOnExtensions"));
405            item->set_tooltip_text(_("If checked, a warning will be shown whenever you try to use a feature which is based on a LinuxSampler extension ontop of the original gig format, which would not work with the Gigasampler/GigaStudio application."));
406        }
407        {
408            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
409                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
410            item->set_tooltip_text(_("If checked, the sampler's current instrument will automatically be switched whenever another instrument was selected in gigedit (only available in live-mode)."));
411        }
412        {
413            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
414                uiManager->get_widget("/MenuBar/MenuTools/CombineInstruments"));
415            item->set_tooltip_text(_("Create combi sounds out of individual sounds of this .gig file."));
416        }
417        {
418            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
419                uiManager->get_widget("/MenuBar/MenuTools/MergeFiles"));
420            item->set_tooltip_text(_("Add instruments and samples of other .gig files to this .gig file."));
421        }
422    
423    
424        instrument_menu = static_cast<Gtk::MenuItem*>(
425            uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();
426    
427      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");
428      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
# Line 272  MainWindow::MainWindow() : Line 432  MainWindow::MainWindow() :
432      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);
433      m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);
434    
435        set_file_is_shared(false);
436    
437      // Status Bar:      // Status Bar:
438      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);
439      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);
# Line 286  MainWindow::MainWindow() : Line 448  MainWindow::MainWindow() :
448      // Create the Tree model:      // Create the Tree model:
449      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refTreeModel = Gtk::ListStore::create(m_Columns);
450      m_TreeView.set_model(m_refTreeModel);      m_TreeView.set_model(m_refTreeModel);
451      m_refTreeModel->signal_row_changed().connect(      m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules."));
452        instrument_name_connection = m_refTreeModel->signal_row_changed().connect(
453          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
454      );      );
455    
# Line 297  MainWindow::MainWindow() : Line 460  MainWindow::MainWindow() :
460      // create samples treeview (including its data model)      // create samples treeview (including its data model)
461      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);
462      m_TreeViewSamples.set_model(m_refSamplesTreeModel);      m_TreeViewSamples.set_model(m_refSamplesTreeModel);
463        m_TreeViewSamples.set_tooltip_text(_("To actually use a sample, drag it from this list view to \"Sample\" -> \"Sample:\" on the region's settings pane on the right.\n\nRight click here for more actions on samples."));
464      // m_TreeViewSamples.set_reorderable();      // m_TreeViewSamples.set_reorderable();
465      m_TreeViewSamples.append_column_editable("Samples", m_SamplesModel.m_col_name);      m_TreeViewSamples.append_column_editable(_("Name"), m_SamplesModel.m_col_name);
466      m_TreeViewSamples.set_headers_visible(false);      m_TreeViewSamples.append_column(_("Referenced"), m_SamplesModel.m_col_refcount);
467        {
468            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(0);
469            Gtk::CellRendererText* cellrenderer =
470                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
471            column->add_attribute(
472                cellrenderer->property_foreground(), m_SamplesModel.m_color
473            );
474        }
475        {
476            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(1);
477            Gtk::CellRendererText* cellrenderer =
478                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
479            column->add_attribute(
480                cellrenderer->property_foreground(), m_SamplesModel.m_color
481            );
482        }
483        m_TreeViewSamples.set_headers_visible(true);
484      m_TreeViewSamples.signal_button_press_event().connect_notify(      m_TreeViewSamples.signal_button_press_event().connect_notify(
485          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
486      );      );
# Line 307  MainWindow::MainWindow() : Line 488  MainWindow::MainWindow() :
488          sigc::mem_fun(*this, &MainWindow::sample_name_changed)          sigc::mem_fun(*this, &MainWindow::sample_name_changed)
489      );      );
490    
491        // create scripts treeview (including its data model)
492        m_refScriptsTreeModel = ScriptsTreeStore::create(m_ScriptsModel);
493        m_TreeViewScripts.set_model(m_refScriptsTreeModel);
494        m_TreeViewScripts.set_tooltip_text(_(
495            "Use CTRL + double click for editing a script."
496            "\n\n"
497            "Note: instrument scripts are a LinuxSampler extension of the gig "
498            "format. This feature will not work with the GigaStudio software!"
499        ));
500        // m_TreeViewScripts.set_reorderable();
501        m_TreeViewScripts.append_column_editable("Samples", m_ScriptsModel.m_col_name);
502        m_TreeViewScripts.set_headers_visible(false);
503        m_TreeViewScripts.signal_button_press_event().connect_notify(
504            sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
505        );
506        //FIXME: why the heck does this double click signal_row_activated() only fired while CTRL key is pressed ?
507        m_TreeViewScripts.signal_row_activated().connect(
508            sigc::mem_fun(*this, &MainWindow::script_double_clicked)
509        );
510        m_refScriptsTreeModel->signal_row_changed().connect(
511            sigc::mem_fun(*this, &MainWindow::script_name_changed)
512        );
513    
514        // establish drag&drop between scripts tree view and ScriptSlots window
515        std::vector<Gtk::TargetEntry> drag_target_gig_script;
516        drag_target_gig_script.push_back(Gtk::TargetEntry("gig::Script"));
517        m_TreeViewScripts.drag_source_set(drag_target_gig_script);
518        m_TreeViewScripts.signal_drag_begin().connect(
519            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_begin)
520        );
521        m_TreeViewScripts.signal_drag_data_get().connect(
522            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_data_get)
523        );
524    
525      // 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
526      std::list<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
527      drag_target_gig_sample.push_back( Gtk::TargetEntry("gig::Sample") );      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
528      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);
529      m_TreeViewSamples.signal_drag_begin().connect(      m_TreeViewSamples.signal_drag_begin().connect(
530          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)
# Line 327  MainWindow::MainWindow() : Line 542  MainWindow::MainWindow() :
542          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
543      m_DimRegionChooser.signal_region_changed().connect(      m_DimRegionChooser.signal_region_changed().connect(
544          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
545      instrumentProps.signal_instrument_changed().connect(      instrumentProps.signal_changed().connect(
546            sigc::mem_fun(*this, &MainWindow::file_changed));
547        propDialog.signal_changed().connect(
548          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
549      propDialog.signal_info_changed().connect(      midiRules.signal_changed().connect(
550          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
551    
552      dimreg_edit.signal_dimreg_to_be_changed().connect(      dimreg_edit.signal_dimreg_to_be_changed().connect(
# Line 338  MainWindow::MainWindow() : Line 555  MainWindow::MainWindow() :
555          dimreg_changed_signal.make_slot());          dimreg_changed_signal.make_slot());
556      dimreg_edit.signal_sample_ref_changed().connect(      dimreg_edit.signal_sample_ref_changed().connect(
557          sample_ref_changed_signal.make_slot());          sample_ref_changed_signal.make_slot());
558        sample_ref_changed_signal.connect(
559            sigc::mem_fun(*this, &MainWindow::on_sample_ref_changed)
560        );
561        samples_to_be_removed_signal.connect(
562            sigc::mem_fun(*this, &MainWindow::on_samples_to_be_removed)
563        );
564    
565      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(
566          sigc::hide(          sigc::hide(
# Line 374  MainWindow::MainWindow() : Line 597  MainWindow::MainWindow() :
597    
598      file = 0;      file = 0;
599      file_is_changed = false;      file_is_changed = false;
     set_file_is_shared(false);  
600    
601      show_all_children();      show_all_children();
602    
603      // start with a new gig file by default      // start with a new gig file by default
604      on_action_file_new();      on_action_file_new();
605    
606        // select 'Instruments' tab by default
607        // (gtk allows this only if the tab childs are visible, thats why it's here)
608        m_TreeViewNotebook.set_current_page(1);
609  }  }
610    
611  MainWindow::~MainWindow()  MainWindow::~MainWindow()
# Line 405  void MainWindow::region_changed() Line 631  void MainWindow::region_changed()
631  gig::Instrument* MainWindow::get_instrument()  gig::Instrument* MainWindow::get_instrument()
632  {  {
633      gig::Instrument* instrument = 0;      gig::Instrument* instrument = 0;
634      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      Gtk::TreeModel::const_iterator it =
635            m_TreeView.get_selection()->get_selected();
     Gtk::TreeModel::iterator it = tree_sel_ref->get_selected();  
636      if (it) {      if (it) {
637          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
638          instrument = row[m_Columns.m_col_instr];          instrument = row[m_Columns.m_col_instr];
# Line 461  void MainWindow::dimreg_all_dimregs_togg Line 686  void MainWindow::dimreg_all_dimregs_togg
686  void MainWindow::dimreg_changed()  void MainWindow::dimreg_changed()
687  {  {
688      update_dimregs();      update_dimregs();
689      dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion());      dimreg_edit.set_dim_region(m_DimRegionChooser.get_main_dimregion());
690  }  }
691    
692  void MainWindow::on_sel_change()  void MainWindow::on_sel_change()
693  {  {
694        // select item in instrument menu
695        Gtk::TreeModel::iterator it = m_TreeView.get_selection()->get_selected();
696        if (it) {
697            Gtk::TreePath path(it);
698            int index = path[0];
699            const std::vector<Gtk::Widget*> children =
700                instrument_menu->get_children();
701            static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();
702        }
703    
704      m_RegionChooser.set_instrument(get_instrument());      m_RegionChooser.set_instrument(get_instrument());
705    
706        if (Settings::singleton()->syncSamplerInstrumentSelection) {
707            switch_sampler_instrument_signal.emit(get_instrument());
708        }
709  }  }
710    
711  void loader_progress_callback(gig::progress_t* progress)  void loader_progress_callback(gig::progress_t* progress)
# Line 478  void loader_progress_callback(gig::progr Line 717  void loader_progress_callback(gig::progr
717  void Loader::progress_callback(float fraction)  void Loader::progress_callback(float fraction)
718  {  {
719      {      {
720          Glib::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
721          progress = fraction;          progress = fraction;
722      }      }
723      progress_dispatcher();      progress_dispatcher();
# Line 486  void Loader::progress_callback(float fra Line 725  void Loader::progress_callback(float fra
725    
726  void Loader::thread_function()  void Loader::thread_function()
727  {  {
728      printf("thread_function self=%x\n", Glib::Thread::self());      printf("thread_function self=%x\n", Glib::Threads::Thread::self());
729      printf("Start %s\n", filename);      printf("Start %s\n", filename.c_str());
730      RIFF::File* riff = new RIFF::File(filename);      try {
731      gig = new gig::File(riff);          RIFF::File* riff = new RIFF::File(filename);
732      gig::progress_t progress;          gig = new gig::File(riff);
733      progress.callback = loader_progress_callback;          gig::progress_t progress;
734      progress.custom = this;          progress.callback = loader_progress_callback;
735            progress.custom = this;
736      gig->GetInstrument(0, &progress);  
737      printf("End\n");          gig->GetInstrument(0, &progress);
738      finished_dispatcher();          printf("End\n");
739            finished_dispatcher();
740        } catch (RIFF::Exception e) {
741            error_message = e.Message;
742            error_dispatcher.emit();
743        } catch (...) {
744            error_message = _("Unknown exception occurred");
745            error_dispatcher.emit();
746        }
747  }  }
748    
749  Loader::Loader(const char* filename)  Loader::Loader(const char* filename)
750      : thread(0), filename(filename)      : filename(filename), thread(0), progress(0.f)
751  {  {
752  }  }
753    
754  void Loader::launch()  void Loader::launch()
755  {  {
756    #ifdef OLD_THREADS
757      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);
758    #else
759        thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));
760    #endif
761      printf("launch thread=%x\n", thread);      printf("launch thread=%x\n", thread);
762  }  }
763    
# Line 514  float Loader::get_progress() Line 765  float Loader::get_progress()
765  {  {
766      float res;      float res;
767      {      {
768          Glib::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
769          res = progress;          res = progress;
770      }      }
771      return res;      return res;
# Line 530  Glib::Dispatcher& Loader::signal_finishe Line 781  Glib::Dispatcher& Loader::signal_finishe
781      return finished_dispatcher;      return finished_dispatcher;
782  }  }
783    
784  LoadDialog::LoadDialog(const Glib::ustring& title, Gtk::Window& parent)  Glib::Dispatcher& Loader::signal_error()
785    {
786        return error_dispatcher;
787    }
788    
789    void saver_progress_callback(gig::progress_t* progress)
790    {
791        Saver* saver = static_cast<Saver*>(progress->custom);
792        saver->progress_callback(progress->factor);
793    }
794    
795    void Saver::progress_callback(float fraction)
796    {
797        {
798            Glib::Threads::Mutex::Lock lock(progressMutex);
799            progress = fraction;
800        }
801        progress_dispatcher.emit();
802    }
803    
804    void Saver::thread_function()
805    {
806        printf("thread_function self=%x\n", Glib::Threads::Thread::self());
807        printf("Start %s\n", filename.c_str());
808        try {
809            gig::progress_t progress;
810            progress.callback = saver_progress_callback;
811            progress.custom = this;
812    
813            // if no filename was provided, that means "save", if filename was provided means "save as"
814            if (filename.empty()) {
815                gig->Save(&progress);
816            } else {
817                gig->Save(filename, &progress);
818            }
819    
820            printf("End\n");
821            finished_dispatcher.emit();
822        } catch (RIFF::Exception e) {
823            error_message = e.Message;
824            error_dispatcher.emit();
825        } catch (...) {
826            error_message = _("Unknown exception occurred");
827            error_dispatcher.emit();
828        }
829    }
830    
831    Saver::Saver(gig::File* file, Glib::ustring filename)
832        : gig(file), filename(filename), thread(0), progress(0.f)
833    {
834    }
835    
836    void Saver::launch()
837    {
838    #ifdef OLD_THREADS
839        thread = Glib::Thread::create(sigc::mem_fun(*this, &Saver::thread_function), true);
840    #else
841        thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Saver::thread_function));
842    #endif
843        printf("launch thread=%x\n", thread);
844    }
845    
846    float Saver::get_progress()
847    {
848        float res;
849        {
850            Glib::Threads::Mutex::Lock lock(progressMutex);
851            res = progress;
852        }
853        return res;
854    }
855    
856    Glib::Dispatcher& Saver::signal_progress()
857    {
858        return progress_dispatcher;
859    }
860    
861    Glib::Dispatcher& Saver::signal_finished()
862    {
863        return finished_dispatcher;
864    }
865    
866    Glib::Dispatcher& Saver::signal_error()
867    {
868        return error_dispatcher;
869    }
870    
871    ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)
872      : Gtk::Dialog(title, parent, true)      : Gtk::Dialog(title, parent, true)
873  {  {
874      get_vbox()->pack_start(progressBar);      get_vbox()->pack_start(progressBar);
875      show_all_children();      show_all_children();
876        resize(600,50);
877  }  }
878    
879  // Clear all GUI elements / controls. This method is typically called  // Clear all GUI elements / controls. This method is typically called
880  // before a new .gig file is to be created or to be loaded.  // before a new .gig file is to be created or to be loaded.
881  void MainWindow::__clear() {  void MainWindow::__clear() {
     // remove all entries from "Instrument" menu  
     Gtk::MenuItem* instrument_menu =  
         dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));  
     instrument_menu->hide();  
     for (int i = 0; i < instrument_menu->get_submenu()->items().size(); i++) {  
         delete &instrument_menu->get_submenu()->items()[i];  
     }  
     instrument_menu->get_submenu()->items().clear();  
882      // forget all samples that ought to be imported      // forget all samples that ought to be imported
883      m_SampleImportQueue.clear();      m_SampleImportQueue.clear();
884      // clear the samples and instruments tree views      // clear the samples and instruments tree views
885      m_refTreeModel->clear();      m_refTreeModel->clear();
886      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
887        m_refScriptsTreeModel->clear();
888        // remove all entries from "Instrument" menu
889        while (!instrument_menu->get_children().empty()) {
890            remove_instrument_from_menu(0);
891        }
892      // free libgig's gig::File instance      // free libgig's gig::File instance
893      if (file && !file_is_shared) delete file;      if (file && !file_is_shared) delete file;
894      file = NULL;      file = NULL;
895      set_file_is_shared(false);      set_file_is_shared(false);
896  }  }
897    
898    void MainWindow::__refreshEntireGUI() {
899        // clear the samples and instruments tree views
900        m_refTreeModel->clear();
901        m_refSamplesTreeModel->clear();
902        m_refScriptsTreeModel->clear();
903        // remove all entries from "Instrument" menu
904        while (!instrument_menu->get_children().empty()) {
905            remove_instrument_from_menu(0);
906        }
907    
908        if (!this->file) return;
909    
910        load_gig(
911            this->file, this->file->pInfo->Name.c_str(), this->file_is_shared
912        );
913    }
914    
915  void MainWindow::on_action_file_new()  void MainWindow::on_action_file_new()
916  {  {
917      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;
# Line 571  void MainWindow::on_action_file_new() Line 924  void MainWindow::on_action_file_new()
924      gig::File* pFile = new gig::File;      gig::File* pFile = new gig::File;
925      // already add one new instrument by default      // already add one new instrument by default
926      gig::Instrument* pInstrument = pFile->AddInstrument();      gig::Instrument* pInstrument = pFile->AddInstrument();
927      pInstrument->pInfo->Name = _("Unnamed Instrument");      pInstrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument"));
928      // update GUI with that new gig::File      // update GUI with that new gig::File
929      load_gig(pFile, 0 /*no file name yet*/);      load_gig(pFile, 0 /*no file name yet*/);
930  }  }
# Line 582  bool MainWindow::close_confirmation_dial Line 935  bool MainWindow::close_confirmation_dial
935                                   Glib::filename_display_basename(filename).c_str());                                   Glib::filename_display_basename(filename).c_str());
936      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);      Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
937      g_free(msg);      g_free(msg);
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 6) || GTKMM_MAJOR_VERSION > 2  
938      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  
939      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
940      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
941      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);
942      dialog.set_default_response(Gtk::RESPONSE_YES);      dialog.set_default_response(Gtk::RESPONSE_YES);
943      int response = dialog.run();      int response = dialog.run();
944      dialog.hide();      dialog.hide();
945      if (response == Gtk::RESPONSE_YES) return file_save();  
946      return response != Gtk::RESPONSE_CANCEL;      // TODO: the following return valid is disabled and hard coded instead for
947        // now, due to the fact that saving with progress bar is now implemented
948        // asynchronously, as a result the app does not close automatically anymore
949        // after saving the file has completed
950        //
951        //   if (response == Gtk::RESPONSE_YES) return file_save();
952        //   return response != Gtk::RESPONSE_CANCEL;
953        //
954        if (response == Gtk::RESPONSE_YES) file_save();
955        return false; // always prevent closing the app for now (see comment above)
956  }  }
957    
958  bool MainWindow::leaving_shared_mode_dialog() {  bool MainWindow::leaving_shared_mode_dialog() {
959      Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");      Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");
960      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  
961      dialog.set_secondary_text(      dialog.set_secondary_text(
962          _("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 "
963            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
964            "load it.")            "load it."));
    );  
 #endif  
965      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
966      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
967      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
# Line 623  void MainWindow::on_action_file_open() Line 980  void MainWindow::on_action_file_open()
980      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
981      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
982      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
983    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
984      Gtk::FileFilter filter;      Gtk::FileFilter filter;
985      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
986    #else
987        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
988        filter->add_pattern("*.gig");
989    #endif
990      dialog.set_filter(filter);      dialog.set_filter(filter);
991      if (current_gig_dir != "") {      if (current_gig_dir != "") {
992          dialog.set_current_folder(current_gig_dir);          dialog.set_current_folder(current_gig_dir);
# Line 632  void MainWindow::on_action_file_open() Line 994  void MainWindow::on_action_file_open()
994      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
995          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
996          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
997          printf("on_action_file_open self=%x\n", Glib::Thread::self());          printf("on_action_file_open self=%x\n", Glib::Threads::Thread::self());
998          load_file(filename.c_str());          load_file(filename.c_str());
999          current_gig_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
1000      }      }
# Line 641  void MainWindow::on_action_file_open() Line 1003  void MainWindow::on_action_file_open()
1003  void MainWindow::load_file(const char* name)  void MainWindow::load_file(const char* name)
1004  {  {
1005      __clear();      __clear();
1006      load_dialog = new LoadDialog(_("Loading..."), *this);  
1007      load_dialog->show_all();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
1008      loader = new Loader(strdup(name));          _("Loading") +  Glib::ustring(" '") +
1009            Glib::filename_display_basename(name) + "' ...",
1010            *this
1011        );
1012        progress_dialog->show_all();
1013        loader = new Loader(name); //FIXME: memory leak!
1014      loader->signal_progress().connect(      loader->signal_progress().connect(
1015          sigc::mem_fun(*this, &MainWindow::on_loader_progress));          sigc::mem_fun(*this, &MainWindow::on_loader_progress));
1016      loader->signal_finished().connect(      loader->signal_finished().connect(
1017          sigc::mem_fun(*this, &MainWindow::on_loader_finished));          sigc::mem_fun(*this, &MainWindow::on_loader_finished));
1018        loader->signal_error().connect(
1019            sigc::mem_fun(*this, &MainWindow::on_loader_error));
1020      loader->launch();      loader->launch();
1021  }  }
1022    
# Line 663  void MainWindow::load_instrument(gig::In Line 1032  void MainWindow::load_instrument(gig::In
1032      // load the instrument      // load the instrument
1033      gig::File* pFile = (gig::File*) instr->GetParent();      gig::File* pFile = (gig::File*) instr->GetParent();
1034      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);
1035      //TODO: automatically select the given instrument      // automatically select the given instrument
1036        int i = 0;
1037        for (gig::Instrument* instrument = pFile->GetFirstInstrument(); instrument;
1038             instrument = pFile->GetNextInstrument(), ++i)
1039        {
1040            if (instrument == instr) {
1041                // select item in "instruments" tree view
1042                m_TreeView.get_selection()->select(Gtk::TreePath(ToString(i)));
1043                // make sure the selected item in the "instruments" tree view is
1044                // visible (scroll to it)
1045                m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));
1046                // select item in instrument menu
1047                {
1048                    const std::vector<Gtk::Widget*> children =
1049                        instrument_menu->get_children();
1050                    static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();
1051                }
1052                // update region chooser and dimension region chooser
1053                m_RegionChooser.set_instrument(instr);
1054                break;
1055            }
1056        }
1057  }  }
1058    
1059  void MainWindow::on_loader_progress()  void MainWindow::on_loader_progress()
1060  {  {
1061      load_dialog->set_fraction(loader->get_progress());      progress_dialog->set_fraction(loader->get_progress());
1062  }  }
1063    
1064  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
1065  {  {
1066      printf("Loader finished!\n");      printf("Loader finished!\n");
1067      printf("on_loader_finished self=%x\n", Glib::Thread::self());      printf("on_loader_finished self=%x\n", Glib::Threads::Thread::self());
1068      load_gig(loader->gig, loader->filename);      load_gig(loader->gig, loader->filename.c_str());
1069      load_dialog->hide();      progress_dialog->hide();
1070    }
1071    
1072    void MainWindow::on_loader_error()
1073    {
1074        Glib::ustring txt = _("Could not load file: ") + loader->error_message;
1075        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1076        msg.run();
1077        progress_dialog->hide();
1078  }  }
1079    
1080  void MainWindow::on_action_file_save()  void MainWindow::on_action_file_save()
# Line 715  bool MainWindow::file_save() Line 1113  bool MainWindow::file_save()
1113    
1114      std::cout << "Saving file\n" << std::flush;      std::cout << "Saving file\n" << std::flush;
1115      file_structure_to_be_changed_signal.emit(this->file);      file_structure_to_be_changed_signal.emit(this->file);
1116      try {  
1117          file->Save();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
1118          if (file_is_changed) {          _("Saving") +  Glib::ustring(" '") +
1119              set_title(get_title().substr(1));          Glib::filename_display_basename(this->filename) + "' ...",
1120              file_is_changed = false;          *this
1121          }      );
1122      } catch (RIFF::Exception e) {      progress_dialog->show_all();
1123          file_structure_changed_signal.emit(this->file);      saver = new Saver(this->file); //FIXME: memory leak!
1124          Glib::ustring txt = _("Could not save file: ") + e.Message;      saver->signal_progress().connect(
1125          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);          sigc::mem_fun(*this, &MainWindow::on_saver_progress));
1126          msg.run();      saver->signal_finished().connect(
1127          return false;          sigc::mem_fun(*this, &MainWindow::on_saver_finished));
1128      }      saver->signal_error().connect(
1129      std::cout << "Saving file done\n" << std::flush;          sigc::mem_fun(*this, &MainWindow::on_saver_error));
1130        saver->launch();
1131    
1132        return true;
1133    }
1134    
1135    void MainWindow::on_saver_progress()
1136    {
1137        progress_dialog->set_fraction(saver->get_progress());
1138    }
1139    
1140    void MainWindow::on_saver_error()
1141    {
1142        file_structure_changed_signal.emit(this->file);
1143        Glib::ustring txt = _("Could not save file: ") + saver->error_message;
1144        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1145        msg.run();
1146    }
1147    
1148    void MainWindow::on_saver_finished()
1149    {
1150        this->file = saver->gig;
1151        this->filename = saver->filename;
1152        current_gig_dir = Glib::path_get_dirname(filename);
1153        set_title(Glib::filename_display_basename(filename));
1154        file_has_name = true;
1155        file_is_changed = false;
1156        std::cout << "Saving file done. Importing queued samples now ...\n" << std::flush;
1157      __import_queued_samples();      __import_queued_samples();
1158        std::cout << "Importing queued samples done.\n" << std::flush;
1159    
1160      file_structure_changed_signal.emit(this->file);      file_structure_changed_signal.emit(this->file);
1161      return true;  
1162        load_gig(this->file, this->filename.c_str());
1163        progress_dialog->hide();
1164  }  }
1165    
1166  void MainWindow::on_action_file_save_as()  void MainWindow::on_action_file_save_as()
# Line 746  bool MainWindow::file_save_as() Line 1175  bool MainWindow::file_save_as()
1175      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1176      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
1177      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  
1178      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
1179      // TODO: an overwrite dialog for gtkmm < 2.8  
1180  #endif  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1181      Gtk::FileFilter filter;      Gtk::FileFilter filter;
1182      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
1183    #else
1184        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
1185        filter->add_pattern("*.gig");
1186    #endif
1187      dialog.set_filter(filter);      dialog.set_filter(filter);
1188    
1189      // set initial dir and filename of the Save As dialog      // set initial dir and filename of the Save As dialog
# Line 775  bool MainWindow::file_save_as() Line 1206  bool MainWindow::file_save_as()
1206      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
1207      Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));      Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
1208      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
1209    #if GTKMM_MAJOR_VERSION < 3
1210      view::WrapLabel description;      view::WrapLabel description;
1211    #else
1212        Gtk::Label description;
1213        description.set_line_wrap();
1214    #endif
1215      description.set_markup(      description.set_markup(
1216          _("\n<b>CAUTION:</b> You <b>MUST</b> use the "          _("\n<b>CAUTION:</b> You <b>MUST</b> use the "
1217            "<span style=\"italic\">\"Save\"</span> dialog instead of "            "<span style=\"italic\">\"Save\"</span> dialog instead of "
# Line 789  bool MainWindow::file_save_as() Line 1225  bool MainWindow::file_save_as()
1225      descriptionArea.show_all();      descriptionArea.show_all();
1226    
1227      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1228          file_structure_to_be_changed_signal.emit(this->file);          std::string filename = dialog.get_filename();
1229          try {          if (!Glib::str_has_suffix(filename, ".gig")) {
1230              std::string filename = dialog.get_filename();              filename += ".gig";
             if (!Glib::str_has_suffix(filename, ".gig")) {  
                 filename += ".gig";  
             }  
             printf("filename=%s\n", filename.c_str());  
             file->Save(filename);  
             this->filename = filename;  
             current_gig_dir = Glib::path_get_dirname(filename);  
             set_title(Glib::filename_display_basename(filename));  
             file_has_name = true;  
             file_is_changed = false;  
         } catch (RIFF::Exception e) {  
             file_structure_changed_signal.emit(this->file);  
             Glib::ustring txt = _("Could not save file: ") + e.Message;  
             Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);  
             msg.run();  
             return false;  
1231          }          }
1232          __import_queued_samples();          printf("filename=%s\n", filename.c_str());
1233          file_structure_changed_signal.emit(this->file);  
1234            progress_dialog = new ProgressDialog( //FIXME: memory leak!
1235                _("Saving") +  Glib::ustring(" '") +
1236                Glib::filename_display_basename(filename) + "' ...",
1237                *this
1238            );
1239            progress_dialog->show_all();
1240    
1241            saver = new Saver(file, filename); //FIXME: memory leak!
1242            saver->signal_progress().connect(
1243                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
1244            saver->signal_finished().connect(
1245                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
1246            saver->signal_error().connect(
1247                sigc::mem_fun(*this, &MainWindow::on_saver_error));
1248            saver->launch();
1249    
1250          return true;          return true;
1251      }      }
1252      return false;      return false;
# Line 827  void MainWindow::__import_queued_samples Line 1263  void MainWindow::__import_queued_samples
1263          SF_INFO info;          SF_INFO info;
1264          info.format = 0;          info.format = 0;
1265          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);
1266            sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);
1267          try {          try {
1268              if (!hFile) throw std::string(_("could not open file"));              if (!hFile) throw std::string(_("could not open file"));
1269              // determine sample's bit depth              // determine sample's bit depth
# Line 896  void MainWindow::__import_queued_samples Line 1333  void MainWindow::__import_queued_samples
1333              m_SampleImportQueue.erase(cur);              m_SampleImportQueue.erase(cur);
1334          } catch (std::string what) {          } catch (std::string what) {
1335              // remember the files that made trouble (and their cause)              // remember the files that made trouble (and their cause)
1336              if (error_files.size()) error_files += "\n";              if (!error_files.empty()) error_files += "\n";
1337              error_files += (*iter).sample_path += " (" + what + ")";              error_files += (*iter).sample_path += " (" + what + ")";
1338              ++iter;              ++iter;
1339          }          }
1340      }      }
1341      // show error message box when some sample(s) could not be imported      // show error message box when some sample(s) could not be imported
1342      if (error_files.size()) {      if (!error_files.empty()) {
1343          Glib::ustring txt = _("Could not import the following sample(s):\n") + error_files;          Glib::ustring txt = _("Could not import the following sample(s):\n") + error_files;
1344          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1345          msg.run();          msg.run();
# Line 915  void MainWindow::on_action_file_properti Line 1352  void MainWindow::on_action_file_properti
1352      propDialog.deiconify();      propDialog.deiconify();
1353  }  }
1354    
1355    void MainWindow::on_action_warn_user_on_extensions() {
1356        Settings::singleton()->warnUserOnExtensions =
1357            !Settings::singleton()->warnUserOnExtensions;
1358    }
1359    
1360    void MainWindow::on_action_sync_sampler_instrument_selection() {
1361        Settings::singleton()->syncSamplerInstrumentSelection =
1362            !Settings::singleton()->syncSamplerInstrumentSelection;
1363    }
1364    
1365  void MainWindow::on_action_help_about()  void MainWindow::on_action_help_about()
1366  {  {
 #ifdef ABOUT_DIALOG  
1367      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
1368  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 12) || GTKMM_MAJOR_VERSION > 2  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 12) || GTKMM_MAJOR_VERSION > 2
1369      dialog.set_program_name("Gigedit");      dialog.set_program_name("Gigedit");
# Line 925  void MainWindow::on_action_help_about() Line 1371  void MainWindow::on_action_help_about()
1371      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
1372  #endif  #endif
1373      dialog.set_version(VERSION);      dialog.set_version(VERSION);
1374      dialog.set_copyright("Copyright (C) 2006-2009 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2015 Andreas Persson");
1375      dialog.set_comments(_(      const std::string sComment =
1376          "Released under the GNU General Public License.\n"          _("Built " __DATE__ "\nUsing ") +
1377          "\n"          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
1378          "Please notice that this is still a very young instrument editor. "          _(
1379          "So better backup your Gigasampler files before editing them with "              "Gigedit is released under the GNU General Public License.\n"
1380          "this application.\n"              "\n"
1381          "\n"              "This program is distributed WITHOUT ANY WARRANTY; So better "
1382          "Please report bugs to: http://bugs.linuxsampler.org")              "backup your Gigasampler/GigaStudio files before editing them with "
1383      );              "this application.\n"
1384                "\n"
1385                "Please report bugs to: http://bugs.linuxsampler.org"
1386            );
1387        dialog.set_comments(sComment.c_str());
1388      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("http://www.linuxsampler.org");
1389      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("http://www.linuxsampler.org");
1390      dialog.run();      dialog.run();
 #endif  
1391  }  }
1392    
1393  PropDialog::PropDialog()  PropDialog::PropDialog()
1394      : table(2,1),      : eFileFormat(_("File Format")),
1395        eName(_("Name")),        eName(_("Name")),
1396        eCreationDate(_("Creation date")),        eCreationDate(_("Creation date")),
1397        eComments(_("Comments")),        eComments(_("Comments")),
# Line 960  PropDialog::PropDialog() Line 1409  PropDialog::PropDialog()
1409        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
1410        eSubject(_("Subject")),        eSubject(_("Subject")),
1411        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
1412        update_model(0)        table(2, 1),
1413          m_file(NULL)
1414  {  {
1415      set_title(_("File Properties"));      set_title(_("File Properties"));
1416      eName.set_width_chars(50);      eName.set_width_chars(50);
# Line 982  PropDialog::PropDialog() Line 1432  PropDialog::PropDialog()
1432      connect(eCommissioned, &DLS::Info::Commissioned);      connect(eCommissioned, &DLS::Info::Commissioned);
1433      connect(eSubject, &DLS::Info::Subject);      connect(eSubject, &DLS::Info::Subject);
1434    
1435        table.add(eFileFormat);
1436      table.add(eName);      table.add(eName);
1437      table.add(eCreationDate);      table.add(eCreationDate);
1438      table.add(eComments);      table.add(eComments);
# Line 1008  PropDialog::PropDialog() Line 1459  PropDialog::PropDialog()
1459      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
1460      buttonBox.show();      buttonBox.show();
1461      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
1462      quitButton.set_flags(Gtk::CAN_DEFAULT);      quitButton.set_can_default();
1463      quitButton.grab_focus();      quitButton.grab_focus();
1464      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
1465          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &PropDialog::hide));
1466        eFileFormat.signal_value_changed().connect(
1467            sigc::mem_fun(*this, &PropDialog::onFileFormatChanged));
1468    
1469      quitButton.show();      quitButton.show();
1470      vbox.show();      vbox.show();
1471      show_all_children();      show_all_children();
1472  }  }
1473    
1474  void PropDialog::set_info(DLS::Info* info)  void PropDialog::set_file(gig::File* file)
1475  {  {
1476      this->info = info;      m_file = file;
1477      update_model++;  
1478      eName.set_value(info->Name);      // update file format version combo box
1479      eCreationDate.set_value(info->CreationDate);      const std::string sGiga = "Gigasampler/GigaStudio v";
1480      eComments.set_value(info->Comments);      const int major = file->pVersion->major;
1481      eProduct.set_value(info->Product);      std::vector<std::string> txts;
1482      eCopyright.set_value(info->Copyright);      std::vector<int> values;
1483      eArtists.set_value(info->Artists);      txts.push_back(sGiga + "2"); values.push_back(2);
1484      eGenre.set_value(info->Genre);      txts.push_back(sGiga + "3/v4"); values.push_back(3);
1485      eKeywords.set_value(info->Keywords);      if (major != 2 && major != 3) {
1486      eEngineer.set_value(info->Engineer);          txts.push_back(sGiga + ToString(major)); values.push_back(major);
1487      eTechnician.set_value(info->Technician);      }
1488      eSoftware.set_value(info->Software);      std::vector<const char*> texts;
1489      eMedium.set_value(info->Medium);      for (int i = 0; i < txts.size(); ++i) texts.push_back(txts[i].c_str());
1490      eSource.set_value(info->Source);      texts.push_back(NULL); values.push_back(0);
1491      eSourceForm.set_value(info->SourceForm);      eFileFormat.set_choices(&texts[0], &values[0]);
1492      eCommissioned.set_value(info->Commissioned);      eFileFormat.set_value(major);
1493      eSubject.set_value(info->Subject);  }
1494      update_model--;  
1495    void PropDialog::onFileFormatChanged() {
1496        const int major = eFileFormat.get_value();
1497        if (m_file) m_file->pVersion->major = major;
1498  }  }
1499    
1500  sigc::signal<void>& PropDialog::signal_info_changed()  void PropDialog::set_info(DLS::Info* info)
1501  {  {
1502      return info_changed;      update(info);
1503  }  }
1504    
1505  void InstrumentProps::set_IsDrum(bool value)  
1506    void InstrumentProps::set_Name(const gig::String& name)
1507  {  {
1508      instrument->IsDrum = value;      m->pInfo->Name = name;
1509  }  }
1510    
1511  void InstrumentProps::set_MIDIBank(uint16_t value)  void InstrumentProps::update_name()
1512  {  {
1513      instrument->MIDIBank = value;      update_model++;
1514        eName.set_value(m->pInfo->Name);
1515        update_model--;
1516  }  }
1517    
1518  void InstrumentProps::set_MIDIProgram(uint32_t value)  void InstrumentProps::set_IsDrum(bool value)
1519  {  {
1520      instrument->MIDIProgram = value;      m->IsDrum = value;
1521  }  }
1522    
1523  void InstrumentProps::set_DimensionKeyRange_low(uint8_t value)  void InstrumentProps::set_MIDIBank(uint16_t value)
1524  {  {
1525      instrument->DimensionKeyRange.low = value;      m->MIDIBank = value;
     if (value > instrument->DimensionKeyRange.high) {  
         eDimensionKeyRangeHigh.set_value(value);  
     }  
1526  }  }
1527    
1528  void InstrumentProps::set_DimensionKeyRange_high(uint8_t value)  void InstrumentProps::set_MIDIProgram(uint32_t value)
1529  {  {
1530      instrument->DimensionKeyRange.high = value;      m->MIDIProgram = value;
     if (value < instrument->DimensionKeyRange.low) {  
         eDimensionKeyRangeLow.set_value(value);  
     }  
1531  }  }
1532    
1533  InstrumentProps::InstrumentProps()  InstrumentProps::InstrumentProps() :
1534      : table(2,1),      quitButton(Gtk::Stock::CLOSE),
1535        quitButton(Gtk::Stock::CLOSE),      table(2,1),
1536        eName(_("Name")),      eName(_("Name")),
1537        eIsDrum(_("Is drum")),      eIsDrum(_("Is drum")),
1538        eMIDIBank(_("MIDI bank"), 0, 16383),      eMIDIBank(_("MIDI bank"), 0, 16383),
1539        eMIDIProgram(_("MIDI program")),      eMIDIProgram(_("MIDI program")),
1540        eAttenuation(_("Attenuation"), 0, 96, 0, 1),      eAttenuation(_("Attenuation"), 0, 96, 0, 1),
1541        eGainPlus6(_("Gain +6dB"), eAttenuation, -6),      eGainPlus6(_("Gain +6dB"), eAttenuation, -6),
1542        eEffectSend(_("Effect send"), 0, 65535),      eEffectSend(_("Effect send"), 0, 65535),
1543        eFineTune(_("Fine tune"), -8400, 8400),      eFineTune(_("Fine tune"), -8400, 8400),
1544        ePitchbendRange(_("Pitchbend range"), 0, 12),      ePitchbendRange(_("Pitchbend range"), 0, 12),
1545        ePianoReleaseMode(_("Piano release mode")),      ePianoReleaseMode(_("Piano release mode")),
1546        eDimensionKeyRangeLow(_("Keyswitching range low")),      eDimensionKeyRangeLow(_("Keyswitching range low")),
1547        eDimensionKeyRangeHigh(_("Keyswitching range high")),      eDimensionKeyRangeHigh(_("Keyswitching range high"))
       update_model(0)  
1548  {  {
1549      set_title(_("Instrument Properties"));      set_title(_("Instrument Properties"));
1550    
# Line 1105  InstrumentProps::InstrumentProps() Line 1557  InstrumentProps::InstrumentProps()
1557            "\"keyswitching\" dimension")            "\"keyswitching\" dimension")
1558      );      );
1559    
1560        connect(eName, &InstrumentProps::set_Name);
1561      connect(eIsDrum, &InstrumentProps::set_IsDrum);      connect(eIsDrum, &InstrumentProps::set_IsDrum);
1562      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);
1563      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);
# Line 1114  InstrumentProps::InstrumentProps() Line 1567  InstrumentProps::InstrumentProps()
1567      connect(eFineTune, &gig::Instrument::FineTune);      connect(eFineTune, &gig::Instrument::FineTune);
1568      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);
1569      connect(ePianoReleaseMode, &gig::Instrument::PianoReleaseMode);      connect(ePianoReleaseMode, &gig::Instrument::PianoReleaseMode);
1570      connect(eDimensionKeyRangeLow,      connect(eDimensionKeyRangeLow, eDimensionKeyRangeHigh,
1571              &InstrumentProps::set_DimensionKeyRange_low);              &gig::Instrument::DimensionKeyRange);
1572      connect(eDimensionKeyRangeHigh,  
1573              &InstrumentProps::set_DimensionKeyRange_high);      eName.signal_value_changed().connect(sig_name_changed.make_slot());
1574    
1575      table.set_col_spacings(5);      table.set_col_spacings(5);
1576    
# Line 1143  InstrumentProps::InstrumentProps() Line 1596  InstrumentProps::InstrumentProps()
1596      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
1597      buttonBox.show();      buttonBox.show();
1598      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
1599      quitButton.set_flags(Gtk::CAN_DEFAULT);      quitButton.set_can_default();
1600      quitButton.grab_focus();      quitButton.grab_focus();
1601    
1602      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
# Line 1156  InstrumentProps::InstrumentProps() Line 1609  InstrumentProps::InstrumentProps()
1609    
1610  void InstrumentProps::set_instrument(gig::Instrument* instrument)  void InstrumentProps::set_instrument(gig::Instrument* instrument)
1611  {  {
1612      this->instrument = instrument;      update(instrument);
1613    
1614      update_model++;      update_model++;
1615      eName.set_value(instrument->pInfo->Name);      eName.set_value(instrument->pInfo->Name);
1616      eIsDrum.set_value(instrument->IsDrum);      eIsDrum.set_value(instrument->IsDrum);
1617      eMIDIBank.set_value(instrument->MIDIBank);      eMIDIBank.set_value(instrument->MIDIBank);
1618      eMIDIProgram.set_value(instrument->MIDIProgram);      eMIDIProgram.set_value(instrument->MIDIProgram);
     eAttenuation.set_value(instrument->Attenuation);  
     eGainPlus6.set_value(instrument->Attenuation);  
     eEffectSend.set_value(instrument->EffectSend);  
     eFineTune.set_value(instrument->FineTune);  
     ePitchbendRange.set_value(instrument->PitchbendRange);  
     ePianoReleaseMode.set_value(instrument->PianoReleaseMode);  
     eDimensionKeyRangeLow.set_value(instrument->DimensionKeyRange.low);  
     eDimensionKeyRangeHigh.set_value(instrument->DimensionKeyRange.high);  
1619      update_model--;      update_model--;
1620  }  }
1621    
 sigc::signal<void>& InstrumentProps::signal_instrument_changed()  
 {  
     return instrument_changed;  
 }  
1622    
1623  void MainWindow::file_changed()  void MainWindow::file_changed()
1624  {  {
# Line 1187  void MainWindow::file_changed() Line 1628  void MainWindow::file_changed()
1628      }      }
1629  }  }
1630    
1631    void MainWindow::updateSampleRefCountMap(gig::File* gig) {
1632        sample_ref_count.clear();
1633        
1634        if (!gig) return;
1635    
1636        for (gig::Instrument* instrument = gig->GetFirstInstrument(); instrument;
1637             instrument = gig->GetNextInstrument())
1638        {
1639            for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
1640                 rgn = instrument->GetNextRegion())
1641            {
1642                for (int i = 0; i < 256; ++i) {
1643                    if (!rgn->pDimensionRegions[i]) continue;
1644                    if (rgn->pDimensionRegions[i]->pSample) {
1645                        sample_ref_count[rgn->pDimensionRegions[i]->pSample]++;
1646                    }
1647                }
1648            }
1649        }
1650    }
1651    
1652  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
1653  {  {
1654      file = 0;      file = 0;
# Line 1197  void MainWindow::load_gig(gig::File* gig Line 1659  void MainWindow::load_gig(gig::File* gig
1659      file_has_name = filename;      file_has_name = filename;
1660      file_is_changed = false;      file_is_changed = false;
1661    
1662        propDialog.set_file(gig);
1663      propDialog.set_info(gig->pInfo);      propDialog.set_info(gig->pInfo);
1664    
1665      Gtk::MenuItem* instrument_menu =      instrument_name_connection.block();
         dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));  
   
     int instrument_index = 0;  
     Gtk::RadioMenuItem::Group instrument_group;  
1666      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
1667           instrument = gig->GetNextInstrument()) {           instrument = gig->GetNextInstrument()) {
1668            Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
1669    
1670          Gtk::TreeModel::iterator iter = m_refTreeModel->append();          Gtk::TreeModel::iterator iter = m_refTreeModel->append();
1671          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
1672          row[m_Columns.m_col_name] = instrument->pInfo->Name.c_str();          row[m_Columns.m_col_name] = name;
1673          row[m_Columns.m_col_instr] = instrument;          row[m_Columns.m_col_instr] = instrument;
1674          // create a menu item for this instrument  
1675          Gtk::RadioMenuItem* item =          add_instrument_to_menu(name);
             new Gtk::RadioMenuItem(instrument_group, instrument->pInfo->Name.c_str());  
         instrument_menu->get_submenu()->append(*item);  
         item->signal_activate().connect(  
             sigc::bind(  
                 sigc::mem_fun(*this, &MainWindow::on_instrument_selection_change),  
                 instrument_index  
             )  
         );  
         instrument_index++;  
1676      }      }
1677      instrument_menu->show();      instrument_name_connection.unblock();
1678      instrument_menu->get_submenu()->show_all_children();      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();
1679    
1680        updateSampleRefCountMap(gig);
1681    
1682      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {
1683          if (group->Name != "") {          if (group->Name != "") {
1684              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
1685              Gtk::TreeModel::Row rowGroup = *iterGroup;              Gtk::TreeModel::Row rowGroup = *iterGroup;
1686              rowGroup[m_SamplesModel.m_col_name]   = group->Name.c_str();              rowGroup[m_SamplesModel.m_col_name]   = gig_to_utf8(group->Name);
1687              rowGroup[m_SamplesModel.m_col_group]  = group;              rowGroup[m_SamplesModel.m_col_group]  = group;
1688              rowGroup[m_SamplesModel.m_col_sample] = NULL;              rowGroup[m_SamplesModel.m_col_sample] = NULL;
1689              for (gig::Sample* sample = group->GetFirstSample();              for (gig::Sample* sample = group->GetFirstSample();
# Line 1237  void MainWindow::load_gig(gig::File* gig Line 1691  void MainWindow::load_gig(gig::File* gig
1691                  Gtk::TreeModel::iterator iterSample =                  Gtk::TreeModel::iterator iterSample =
1692                      m_refSamplesTreeModel->append(rowGroup.children());                      m_refSamplesTreeModel->append(rowGroup.children());
1693                  Gtk::TreeModel::Row rowSample = *iterSample;                  Gtk::TreeModel::Row rowSample = *iterSample;
1694                  rowSample[m_SamplesModel.m_col_name]   = sample->pInfo->Name.c_str();                  rowSample[m_SamplesModel.m_col_name] =
1695                        gig_to_utf8(sample->pInfo->Name);
1696                  rowSample[m_SamplesModel.m_col_sample] = sample;                  rowSample[m_SamplesModel.m_col_sample] = sample;
1697                  rowSample[m_SamplesModel.m_col_group]  = NULL;                  rowSample[m_SamplesModel.m_col_group]  = NULL;
1698                    int refcount = sample_ref_count.count(sample) ? sample_ref_count[sample] : 0;
1699                    rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
1700                    rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
1701              }              }
1702          }          }
1703      }      }
1704        
1705        for (int i = 0; gig->GetScriptGroup(i); ++i) {
1706            gig::ScriptGroup* group = gig->GetScriptGroup(i);
1707    
1708            Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
1709            Gtk::TreeModel::Row rowGroup = *iterGroup;
1710            rowGroup[m_ScriptsModel.m_col_name]   = gig_to_utf8(group->Name);
1711            rowGroup[m_ScriptsModel.m_col_group]  = group;
1712            rowGroup[m_ScriptsModel.m_col_script] = NULL;
1713            for (int s = 0; group->GetScript(s); ++s) {
1714                gig::Script* script = group->GetScript(s);
1715    
1716                Gtk::TreeModel::iterator iterScript =
1717                    m_refScriptsTreeModel->append(rowGroup.children());
1718                Gtk::TreeModel::Row rowScript = *iterScript;
1719                rowScript[m_ScriptsModel.m_col_name] = gig_to_utf8(script->Name);
1720                rowScript[m_ScriptsModel.m_col_script] = script;
1721                rowScript[m_ScriptsModel.m_col_group]  = NULL;
1722            }
1723        }
1724        // unfold all sample groups & script groups by default
1725        m_TreeViewSamples.expand_all();
1726        m_TreeViewScripts.expand_all();
1727    
1728      file = gig;      file = gig;
1729    
1730      // select the first instrument      // select the first instrument
1731      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      m_TreeView.get_selection()->select(Gtk::TreePath("0"));
1732      tree_sel_ref->select(Gtk::TreePath("0"));  
1733        instr_props_set_instrument();
1734        gig::Instrument* instrument = get_instrument();
1735        if (instrument) {
1736            midiRules.set_instrument(instrument);
1737        }
1738  }  }
1739    
1740  void MainWindow::show_instr_props()  bool MainWindow::instr_props_set_instrument()
1741  {  {
1742      gig::Instrument* instrument = get_instrument();      instrumentProps.signal_name_changed().clear();
1743      if (instrument)  
1744      {      Gtk::TreeModel::const_iterator it =
1745            m_TreeView.get_selection()->get_selected();
1746        if (it) {
1747            Gtk::TreeModel::Row row = *it;
1748            gig::Instrument* instrument = row[m_Columns.m_col_instr];
1749    
1750          instrumentProps.set_instrument(instrument);          instrumentProps.set_instrument(instrument);
1751    
1752            // make sure instrument tree is updated when user changes the
1753            // instrument name in instrument properties window
1754            instrumentProps.signal_name_changed().connect(
1755                sigc::bind(
1756                    sigc::mem_fun(*this,
1757                                  &MainWindow::instr_name_changed_by_instr_props),
1758                    it));
1759        } else {
1760            instrumentProps.hide();
1761        }
1762        return it;
1763    }
1764    
1765    void MainWindow::show_instr_props()
1766    {
1767        if (instr_props_set_instrument()) {
1768          instrumentProps.show();          instrumentProps.show();
1769          instrumentProps.deiconify();          instrumentProps.deiconify();
1770      }      }
1771  }  }
1772    
1773    void MainWindow::instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it)
1774    {
1775        Gtk::TreeModel::Row row = *it;
1776        Glib::ustring name = row[m_Columns.m_col_name];
1777    
1778        gig::Instrument* instrument = row[m_Columns.m_col_instr];
1779        Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
1780        if (gigname != name) {
1781            row[m_Columns.m_col_name] = gigname;
1782        }
1783    }
1784    
1785    void MainWindow::show_midi_rules()
1786    {
1787        if (gig::Instrument* instrument = get_instrument())
1788        {
1789            midiRules.set_instrument(instrument);
1790            midiRules.show();
1791            midiRules.deiconify();
1792        }
1793    }
1794    
1795    void MainWindow::show_script_slots() {
1796        if (!file) return;
1797        // get selected instrument
1798        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
1799        Gtk::TreeModel::iterator it = sel->get_selected();
1800        if (!it) return;
1801        Gtk::TreeModel::Row row = *it;
1802        gig::Instrument* instrument = row[m_Columns.m_col_instr];
1803        if (!instrument) return;
1804    
1805        ScriptSlots* window = new ScriptSlots;
1806        window->setInstrument(instrument);
1807        //window->reparent(*this);
1808        window->show();
1809    }
1810    
1811  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
1812      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
1813          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
# Line 1273  void MainWindow::on_action_view_status_b Line 1819  void MainWindow::on_action_view_status_b
1819      else                    m_StatusBar.hide();      else                    m_StatusBar.hide();
1820  }  }
1821    
1822    bool MainWindow::is_copy_samples_unity_note_enabled() const {
1823        Gtk::CheckMenuItem* item =
1824            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
1825        if (!item) {
1826            std::cerr << "/MenuBar/MenuEdit/CopySampleUnity == NULL\n";
1827            return true;
1828        }
1829        return item->get_active();
1830    }
1831    
1832    bool MainWindow::is_copy_samples_fine_tune_enabled() const {
1833        Gtk::CheckMenuItem* item =
1834            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
1835        if (!item) {
1836            std::cerr << "/MenuBar/MenuEdit/CopySampleTune == NULL\n";
1837            return true;
1838        }
1839        return item->get_active();
1840    }
1841    
1842    bool MainWindow::is_copy_samples_loop_enabled() const {
1843        Gtk::CheckMenuItem* item =
1844            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
1845        if (!item) {
1846            std::cerr << "/MenuBar/MenuEdit/CopySampleLoop == NULL\n";
1847            return true;
1848        }
1849        return item->get_active();
1850    }
1851    
1852  void MainWindow::on_button_release(GdkEventButton* button)  void MainWindow::on_button_release(GdkEventButton* button)
1853  {  {
1854      if (button->type == GDK_2BUTTON_PRESS) {      if (button->type == GDK_2BUTTON_PRESS) {
1855          show_instr_props();          show_instr_props();
1856      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
1857            // gig v2 files have no midi rules
1858            const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
1859            static_cast<Gtk::MenuItem*>(
1860                uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(
1861                    bEnabled
1862                );
1863            static_cast<Gtk::MenuItem*>(
1864                uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
1865                    bEnabled
1866                );
1867          popup_menu->popup(button->button, button->time);          popup_menu->popup(button->button, button->time);
1868      }      }
1869  }  }
1870    
1871  void MainWindow::on_instrument_selection_change(int index) {  void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {
1872      m_RegionChooser.set_instrument(file->GetInstrument(index));      if (item->get_active()) {
1873            const std::vector<Gtk::Widget*> children =
1874                instrument_menu->get_children();
1875            std::vector<Gtk::Widget*>::const_iterator it =
1876                find(children.begin(), children.end(), item);
1877            if (it != children.end()) {
1878                int index = it - children.begin();
1879                m_TreeView.get_selection()->select(Gtk::TreePath(ToString(index)));
1880    
1881                m_RegionChooser.set_instrument(file->GetInstrument(index));
1882            }
1883        }
1884  }  }
1885    
1886  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
# Line 1300  void MainWindow::on_sample_treeview_butt Line 1897  void MainWindow::on_sample_treeview_butt
1897              group_selected  = row[m_SamplesModel.m_col_group];              group_selected  = row[m_SamplesModel.m_col_group];
1898              sample_selected = row[m_SamplesModel.m_col_sample];              sample_selected = row[m_SamplesModel.m_col_sample];
1899          }          }
1900            
1901                
1902          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
1903              set_sensitive(group_selected || sample_selected);              set_sensitive(group_selected || sample_selected);
1904          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
1905              set_sensitive(group_selected || sample_selected);              set_sensitive(group_selected || sample_selected);
1906          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->
1907              set_sensitive(file);              set_sensitive(file);
1908            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/ShowSampleRefs"))->
1909                set_sensitive(sample_selected);
1910          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
1911              set_sensitive(group_selected || sample_selected);              set_sensitive(group_selected || sample_selected);
1912          // show sample popup          // show sample popup
1913          sample_popup->popup(button->button, button->time);          sample_popup->popup(button->button, button->time);
1914    
1915            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->
1916                set_sensitive(group_selected || sample_selected);
1917            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->
1918                set_sensitive(group_selected || sample_selected);
1919            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddGroup"))->
1920                set_sensitive(file);
1921            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/ShowSampleRefs"))->
1922                set_sensitive(sample_selected);
1923            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->
1924                set_sensitive(group_selected || sample_selected);
1925      }      }
1926  }  }
1927    
1928  void MainWindow::on_action_add_instrument() {  void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {
1929      static int __instrument_indexer = 0;      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
1930      if (!file) return;          Gtk::Menu* script_popup =
1931      gig::Instrument* instrument = file->AddInstrument();              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));
1932      __instrument_indexer++;          // update enabled/disabled state of sample popup items
1933      instrument->pInfo->Name =          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
1934          _("Unnamed Instrument ") + ToString(__instrument_indexer);          Gtk::TreeModel::iterator it = sel->get_selected();
1935            bool group_selected  = false;
1936            bool script_selected = false;
1937            if (it) {
1938                Gtk::TreeModel::Row row = *it;
1939                group_selected  = row[m_ScriptsModel.m_col_group];
1940                script_selected = row[m_ScriptsModel.m_col_script];
1941            }
1942            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->
1943                set_sensitive(group_selected || script_selected);
1944            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->
1945                set_sensitive(file);
1946            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/EditScript"))->
1947                set_sensitive(script_selected);    
1948            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->
1949                set_sensitive(group_selected || script_selected);
1950            // show sample popup
1951            script_popup->popup(button->button, button->time);
1952    
1953            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->
1954                set_sensitive(group_selected || script_selected);
1955            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->
1956                set_sensitive(file);
1957            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/EditScript"))->
1958                set_sensitive(script_selected);    
1959            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->
1960                set_sensitive(group_selected || script_selected);
1961        }
1962    }
1963    
1964    Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
1965        const Glib::ustring& name, int position) {
1966    
1967        Gtk::RadioMenuItem::Group instrument_group;
1968        const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
1969        if (!children.empty()) {
1970            instrument_group =
1971                static_cast<Gtk::RadioMenuItem*>(children[0])->get_group();
1972        }
1973        Gtk::RadioMenuItem* item =
1974            new Gtk::RadioMenuItem(instrument_group, name);
1975        if (position < 0) {
1976            instrument_menu->append(*item);
1977        } else {
1978            instrument_menu->insert(*item, position);
1979        }
1980        item->show();
1981        item->signal_activate().connect(
1982            sigc::bind(
1983                sigc::mem_fun(*this, &MainWindow::on_instrument_selection_change),
1984                item));
1985        return item;
1986    }
1987    
1988    void MainWindow::remove_instrument_from_menu(int index) {
1989        const std::vector<Gtk::Widget*> children =
1990            instrument_menu->get_children();
1991        Gtk::Widget* child = children[index];
1992        instrument_menu->remove(*child);
1993        delete child;
1994    }
1995    
1996    void MainWindow::add_instrument(gig::Instrument* instrument) {
1997        const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
1998    
1999      // update instrument tree view      // update instrument tree view
2000        instrument_name_connection.block();
2001      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
2002      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
2003      rowInstr[m_Columns.m_col_name] = instrument->pInfo->Name.c_str();      rowInstr[m_Columns.m_col_name] = name;
2004      rowInstr[m_Columns.m_col_instr] = instrument;      rowInstr[m_Columns.m_col_instr] = instrument;
2005        instrument_name_connection.unblock();
2006    
2007        add_instrument_to_menu(name);
2008    
2009        m_TreeView.get_selection()->select(iterInstr);
2010    
2011      file_changed();      file_changed();
2012  }  }
2013    
2014    void MainWindow::on_action_add_instrument() {
2015        static int __instrument_indexer = 0;
2016        if (!file) return;
2017        gig::Instrument* instrument = file->AddInstrument();
2018        __instrument_indexer++;
2019        instrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument ") +
2020                                                ToString(__instrument_indexer));
2021    
2022        add_instrument(instrument);
2023    }
2024    
2025    void MainWindow::on_action_duplicate_instrument() {
2026        if (!file) return;
2027    
2028        // retrieve the currently selected instrument
2029        // (being the original instrument to be duplicated)
2030        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
2031        Gtk::TreeModel::iterator itSelection = sel->get_selected();
2032        if (!itSelection) return;
2033        Gtk::TreeModel::Row row = *itSelection;
2034        gig::Instrument* instrOrig = row[m_Columns.m_col_instr];
2035        if (!instrOrig) return;
2036    
2037        // duplicate the orginal instrument
2038        gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
2039        instrNew->pInfo->Name =
2040            instrOrig->pInfo->Name +
2041            gig_from_utf8(Glib::ustring(" (") + _("Copy") + ")");
2042    
2043        add_instrument(instrNew);
2044    }
2045    
2046  void MainWindow::on_action_remove_instrument() {  void MainWindow::on_action_remove_instrument() {
2047      if (!file) return;      if (!file) return;
2048      if (file_is_shared) {      if (file_is_shared) {
# Line 1347  void MainWindow::on_action_remove_instru Line 2062  void MainWindow::on_action_remove_instru
2062          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
2063          gig::Instrument* instr = row[m_Columns.m_col_instr];          gig::Instrument* instr = row[m_Columns.m_col_instr];
2064          try {          try {
2065                Gtk::TreePath path(it);
2066                int index = path[0];
2067    
2068              // remove instrument from the gig file              // remove instrument from the gig file
2069              if (instr) file->DeleteInstrument(instr);              if (instr) file->DeleteInstrument(instr);
             // remove respective row from instruments tree view  
             m_refTreeModel->erase(it);  
2070              file_changed();              file_changed();
2071    
2072                remove_instrument_from_menu(index);
2073    
2074                // remove row from instruments tree view
2075                m_refTreeModel->erase(it);
2076    
2077    #if GTKMM_MAJOR_VERSION < 3
2078                // select another instrument (in gtk3 this is done
2079                // automatically)
2080                if (!m_refTreeModel->children().empty()) {
2081                    if (index == m_refTreeModel->children().size()) {
2082                        index--;
2083                    }
2084                    m_TreeView.get_selection()->select(
2085                        Gtk::TreePath(ToString(index)));
2086                }
2087    #endif
2088                instr_props_set_instrument();
2089                instr = get_instrument();
2090                if (instr) {
2091                    midiRules.set_instrument(instr);
2092                } else {
2093                    midiRules.hide();
2094                }
2095          } catch (RIFF::Exception e) {          } catch (RIFF::Exception e) {
2096              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
2097              msg.run();              msg.run();
# Line 1367  void MainWindow::on_action_sample_proper Line 2107  void MainWindow::on_action_sample_proper
2107      msg.run();      msg.run();
2108  }  }
2109    
2110    void MainWindow::on_action_add_script_group() {
2111        static int __script_indexer = 0;
2112        if (!file) return;
2113        gig::ScriptGroup* group = file->AddScriptGroup();
2114        group->Name = gig_from_utf8(_("Unnamed Group"));
2115        if (__script_indexer) group->Name += " " + ToString(__script_indexer);
2116        __script_indexer++;
2117        // update sample tree view
2118        Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
2119        Gtk::TreeModel::Row rowGroup = *iterGroup;
2120        rowGroup[m_ScriptsModel.m_col_name] = gig_to_utf8(group->Name);
2121        rowGroup[m_ScriptsModel.m_col_script] = NULL;
2122        rowGroup[m_ScriptsModel.m_col_group] = group;
2123        file_changed();
2124    }
2125    
2126    void MainWindow::on_action_add_script() {
2127        if (!file) return;
2128        // get selected group
2129        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2130        Gtk::TreeModel::iterator it = sel->get_selected();
2131        if (!it) return;
2132        Gtk::TreeModel::Row row = *it;
2133        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
2134        if (!group) { // not a group, but a script is selected (probably)
2135            gig::Script* script = row[m_ScriptsModel.m_col_script];
2136            if (!script) return;
2137            it = row.parent(); // resolve parent (that is the script's group)
2138            if (!it) return;
2139            row = *it;
2140            group = row[m_ScriptsModel.m_col_group];
2141            if (!group) return;
2142        }
2143    
2144        // add a new script to the .gig file
2145        gig::Script* script = group->AddScript();    
2146        Glib::ustring name = _("Unnamed Script");
2147        script->Name = gig_from_utf8(name);
2148    
2149        // add script to the tree view
2150        Gtk::TreeModel::iterator iterScript =
2151            m_refScriptsTreeModel->append(row.children());
2152        Gtk::TreeModel::Row rowScript = *iterScript;
2153        rowScript[m_ScriptsModel.m_col_name] = name;
2154        rowScript[m_ScriptsModel.m_col_script] = script;
2155        rowScript[m_ScriptsModel.m_col_group]  = NULL;
2156    
2157        // unfold group of new script item in treeview
2158        Gtk::TreeModel::Path path(iterScript);
2159        m_TreeViewScripts.expand_to_path(path);
2160    }
2161    
2162    void MainWindow::on_action_edit_script() {
2163        if (!file) return;
2164        // get selected script
2165        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2166        Gtk::TreeModel::iterator it = sel->get_selected();
2167        if (!it) return;
2168        Gtk::TreeModel::Row row = *it;
2169        gig::Script* script = row[m_ScriptsModel.m_col_script];
2170        if (!script) return;
2171    
2172        ScriptEditor* editor = new ScriptEditor;
2173        editor->setScript(script);
2174        //editor->reparent(*this);
2175        editor->show();
2176    }
2177    
2178    void MainWindow::on_action_remove_script() {
2179        if (!file) return;
2180        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2181        Gtk::TreeModel::iterator it = sel->get_selected();
2182        if (it) {
2183            Gtk::TreeModel::Row row = *it;
2184            gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
2185            gig::Script* script     = row[m_ScriptsModel.m_col_script];
2186            Glib::ustring name      = row[m_ScriptsModel.m_col_name];
2187            try {
2188                // remove script group or script from the gig file
2189                if (group) {
2190                    // notify everybody that we're going to remove these samples
2191    //TODO:         scripts_to_be_removed_signal.emit(members);
2192                    // delete the group in the .gig file including the
2193                    // samples that belong to the group
2194                    file->DeleteScriptGroup(group);
2195                    // notify that we're done with removal
2196    //TODO:         scripts_removed_signal.emit();
2197                    file_changed();
2198                } else if (script) {
2199                    // notify everybody that we're going to remove this sample
2200    //TODO:         std::list<gig::Script*> lscripts;
2201    //TODO:         lscripts.push_back(script);
2202    //TODO:         scripts_to_be_removed_signal.emit(lscripts);
2203                    // remove sample from the .gig file
2204                    script->GetGroup()->DeleteScript(script);
2205                    // notify that we're done with removal
2206    //TODO:         scripts_removed_signal.emit();
2207                    dimreg_changed();
2208                    file_changed();
2209                }
2210                // remove respective row(s) from samples tree view
2211                m_refScriptsTreeModel->erase(it);
2212            } catch (RIFF::Exception e) {
2213                // pretend we're done with removal (i.e. to avoid dead locks)
2214    //TODO:     scripts_removed_signal.emit();
2215                // show error message
2216                Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
2217                msg.run();
2218            }
2219        }
2220    }
2221    
2222  void MainWindow::on_action_add_group() {  void MainWindow::on_action_add_group() {
2223      static int __sample_indexer = 0;      static int __sample_indexer = 0;
2224      if (!file) return;      if (!file) return;
2225      gig::Group* group = file->AddGroup();      gig::Group* group = file->AddGroup();
2226      group->Name = _("Unnamed Group");      group->Name = gig_from_utf8(_("Unnamed Group"));
2227      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
2228      __sample_indexer++;      __sample_indexer++;
2229      // update sample tree view      // update sample tree view
2230      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
2231      Gtk::TreeModel::Row rowGroup = *iterGroup;      Gtk::TreeModel::Row rowGroup = *iterGroup;
2232      rowGroup[m_SamplesModel.m_col_name] = group->Name.c_str();      rowGroup[m_SamplesModel.m_col_name] = gig_to_utf8(group->Name);
2233      rowGroup[m_SamplesModel.m_col_sample] = NULL;      rowGroup[m_SamplesModel.m_col_sample] = NULL;
2234      rowGroup[m_SamplesModel.m_col_group] = group;      rowGroup[m_SamplesModel.m_col_group] = group;
2235      file_changed();      file_changed();
# Line 1405  void MainWindow::on_action_add_sample() Line 2257  void MainWindow::on_action_add_sample()
2257      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2258      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
2259      dialog.set_select_multiple(true);      dialog.set_select_multiple(true);
2260      Gtk::FileFilter soundfilter; // matches all file types supported by libsndfile  
2261        // matches all file types supported by libsndfile
2262    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
2263        Gtk::FileFilter soundfilter;
2264    #else
2265        Glib::RefPtr<Gtk::FileFilter> soundfilter = Gtk::FileFilter::create();
2266    #endif
2267      const char* const supportedFileTypes[] = {      const char* const supportedFileTypes[] = {
2268          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",
2269          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",
# Line 1413  void MainWindow::on_action_add_sample() Line 2271  void MainWindow::on_action_add_sample()
2271          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",
2272          "*.caf", "*.CAF", NULL          "*.caf", "*.CAF", NULL
2273      };      };
2274        const char* soundfiles = _("Sound Files");
2275        const char* allfiles = _("All Files");
2276    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
2277      for (int i = 0; supportedFileTypes[i]; i++)      for (int i = 0; supportedFileTypes[i]; i++)
2278          soundfilter.add_pattern(supportedFileTypes[i]);          soundfilter.add_pattern(supportedFileTypes[i]);
2279      soundfilter.set_name(_("Sound Files"));      soundfilter.set_name(soundfiles);
2280      Gtk::FileFilter allpassfilter; // matches every file  
2281        // matches every file
2282        Gtk::FileFilter allpassfilter;
2283      allpassfilter.add_pattern("*.*");      allpassfilter.add_pattern("*.*");
2284      allpassfilter.set_name(_("All Files"));      allpassfilter.set_name(allfiles);
2285    #else
2286        for (int i = 0; supportedFileTypes[i]; i++)
2287            soundfilter->add_pattern(supportedFileTypes[i]);
2288        soundfilter->set_name(soundfiles);
2289    
2290        // matches every file
2291        Glib::RefPtr<Gtk::FileFilter> allpassfilter = Gtk::FileFilter::create();
2292        allpassfilter->add_pattern("*.*");
2293        allpassfilter->set_name(allfiles);
2294    #endif
2295      dialog.add_filter(soundfilter);      dialog.add_filter(soundfilter);
2296      dialog.add_filter(allpassfilter);      dialog.add_filter(allpassfilter);
2297      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 1427  void MainWindow::on_action_add_sample() Line 2300  void MainWindow::on_action_add_sample()
2300      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2301          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
2302          Glib::ustring error_files;          Glib::ustring error_files;
2303          Glib::SListHandle<Glib::ustring> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
2304          for (Glib::SListHandle<Glib::ustring>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
2305               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
2306              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
2307              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file informations
# Line 1465  void MainWindow::on_action_add_sample() Line 2338  void MainWindow::on_action_add_sample()
2338                          break;                          break;
2339                      }                      }
2340                  }                  }
2341                  sample->pInfo->Name = filename;                  sample->pInfo->Name = gig_from_utf8(filename);
2342                  sample->Channels = info.channels;                  sample->Channels = info.channels;
2343                  sample->BitDepth = bitdepth;                  sample->BitDepth = bitdepth;
2344                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;
# Line 1479  void MainWindow::on_action_add_sample() Line 2352  void MainWindow::on_action_add_sample()
2352                                 &instrument, sizeof(instrument)) != SF_FALSE)                                 &instrument, sizeof(instrument)) != SF_FALSE)
2353                  {                  {
2354                      sample->MIDIUnityNote = instrument.basenote;                      sample->MIDIUnityNote = instrument.basenote;
2355                        sample->FineTune      = instrument.detune;
2356    
 #if HAVE_SF_INSTRUMENT_LOOPS  
2357                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {
2358                          sample->Loops = 1;                          sample->Loops = 1;
2359    
# Line 1500  void MainWindow::on_action_add_sample() Line 2373  void MainWindow::on_action_add_sample()
2373                          sample->LoopPlayCount = instrument.loops[0].count;                          sample->LoopPlayCount = instrument.loops[0].count;
2374                          sample->LoopSize = sample->LoopEnd - sample->LoopStart + 1;                          sample->LoopSize = sample->LoopEnd - sample->LoopStart + 1;
2375                      }                      }
 #endif  
2376                  }                  }
2377    
2378                  // schedule resizing the sample (which will be done                  // schedule resizing the sample (which will be done
# Line 1518  void MainWindow::on_action_add_sample() Line 2390  void MainWindow::on_action_add_sample()
2390                  Gtk::TreeModel::iterator iterSample =                  Gtk::TreeModel::iterator iterSample =
2391                      m_refSamplesTreeModel->append(row.children());                      m_refSamplesTreeModel->append(row.children());
2392                  Gtk::TreeModel::Row rowSample = *iterSample;                  Gtk::TreeModel::Row rowSample = *iterSample;
2393                  rowSample[m_SamplesModel.m_col_name]   = filename;                  rowSample[m_SamplesModel.m_col_name] =
2394                        gig_to_utf8(sample->pInfo->Name);
2395                  rowSample[m_SamplesModel.m_col_sample] = sample;                  rowSample[m_SamplesModel.m_col_sample] = sample;
2396                  rowSample[m_SamplesModel.m_col_group]  = NULL;                  rowSample[m_SamplesModel.m_col_group]  = NULL;
2397                  // close sound file                  // close sound file
2398                  sf_close(hFile);                  sf_close(hFile);
2399                  file_changed();                  file_changed();
2400              } catch (std::string what) { // remember the files that made trouble (and their cause)              } catch (std::string what) { // remember the files that made trouble (and their cause)
2401                  if (error_files.size()) error_files += "\n";                  if (!error_files.empty()) error_files += "\n";
2402                  error_files += *iter += " (" + what + ")";                  error_files += *iter += " (" + what + ")";
2403              }              }
2404          }          }
2405          // show error message box when some file(s) could not be opened / added          // show error message box when some file(s) could not be opened / added
2406          if (error_files.size()) {          if (!error_files.empty()) {
2407              Glib::ustring txt = _("Could not add the following sample(s):\n") + error_files;              Glib::ustring txt = _("Could not add the following sample(s):\n") + error_files;
2408              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2409              msg.run();              msg.run();
# Line 1543  void MainWindow::on_action_replace_all_s Line 2416  void MainWindow::on_action_replace_all_s
2416      if (!file) return;      if (!file) return;
2417      Gtk::FileChooserDialog dialog(*this, _("Select Folder"),      Gtk::FileChooserDialog dialog(*this, _("Select Folder"),
2418                                    Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);                                    Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
2419      view::WrapLabel description(      const char* str =
2420          _("This is a very specific function. It tries to replace all samples "          _("This is a very specific function. It tries to replace all samples "
2421            "in the current gig file by samples located in the chosen "            "in the current gig file by samples located in the chosen "
2422            "directory.\n\n"            "directory.\n\n"
# Line 1557  void MainWindow::on_action_replace_all_s Line 2430  void MainWindow::on_action_replace_all_s
2430            "the sample in the gig file accordingly. If you don't need an "            "the sample in the gig file accordingly. If you don't need an "
2431            "extension, blank the field below. Any gig sample where no "            "extension, blank the field below. Any gig sample where no "
2432            "appropriate sample file could be found will be reported and left "            "appropriate sample file could be found will be reported and left "
2433            "untouched.\n")            "untouched.\n");
2434      );  #if GTKMM_MAJOR_VERSION < 3
2435        view::WrapLabel description(str);
2436    #else
2437        Gtk::Label description(str);
2438        description.set_line_wrap();
2439    #endif
2440      Gtk::HBox entryArea;      Gtk::HBox entryArea;
2441      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_RIGHT);      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
2442      Gtk::Entry postfixEntryBox;      Gtk::Entry postfixEntryBox;
2443      postfixEntryBox.set_text(".wav");      postfixEntryBox.set_text(".wav");
2444      entryArea.pack_start(entryLabel);      entryArea.pack_start(entryLabel);
# Line 1579  void MainWindow::on_action_replace_all_s Line 2457  void MainWindow::on_action_replace_all_s
2457      {      {
2458          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
2459          Glib::ustring error_files;          Glib::ustring error_files;
2460          Glib::ustring folder = dialog.get_filename();          std::string folder = dialog.get_filename();
2461          for (gig::Sample* sample = file->GetFirstSample();          for (gig::Sample* sample = file->GetFirstSample();
2462               sample; sample = file->GetNextSample())               sample; sample = file->GetNextSample())
2463          {          {
2464              std::string filename =              std::string filename =
2465                  folder + G_DIR_SEPARATOR_S + sample->pInfo->Name +                  folder + G_DIR_SEPARATOR_S +
2466                  postfixEntryBox.get_text().raw();                  Glib::filename_from_utf8(gig_to_utf8(sample->pInfo->Name) +
2467                                             postfixEntryBox.get_text());
2468              SF_INFO info;              SF_INFO info;
2469              info.format = 0;              info.format = 0;
2470              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
# Line 1618  void MainWindow::on_action_replace_all_s Line 2497  void MainWindow::on_action_replace_all_s
2497              }              }
2498              catch (std::string what)              catch (std::string what)
2499              {              {
2500                  if (error_files.size()) error_files += "\n";                  if (!error_files.empty()) error_files += "\n";
2501                      error_files += filename += " (" + what + ")";                  error_files += Glib::filename_to_utf8(filename) +
2502                        " (" + what + ")";
2503              }              }
2504          }          }
2505          // show error message box when some file(s) could not be opened / added          // show error message box when some file(s) could not be opened / added
2506          if (error_files.size()) {          if (!error_files.empty()) {
2507              Glib::ustring txt =              Glib::ustring txt =
2508                  _("Could not replace the following sample(s):\n") + error_files;                  _("Could not replace the following sample(s):\n") + error_files;
2509              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
# Line 1644  void MainWindow::on_action_remove_sample Line 2524  void MainWindow::on_action_remove_sample
2524          try {          try {
2525              // remove group or sample from the gig file              // remove group or sample from the gig file
2526              if (group) {              if (group) {
2527                  // temporarily remember the samples that bolong to                  // temporarily remember the samples that belong to
2528                  // that group (we need that to clean the queue)                  // that group (we need that to clean the queue)
2529                  std::list<gig::Sample*> members;                  std::list<gig::Sample*> members;
2530                  for (gig::Sample* pSample = group->GetFirstSample();                  for (gig::Sample* pSample = group->GetFirstSample();
# Line 1708  void MainWindow::on_action_remove_sample Line 2588  void MainWindow::on_action_remove_sample
2588      }      }
2589  }  }
2590    
2591    // see comment on on_sample_treeview_drag_begin()
2592    void MainWindow::on_scripts_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
2593    {
2594        first_call_to_drag_data_get = true;
2595    }
2596    
2597    void MainWindow::on_scripts_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
2598                                                       Gtk::SelectionData& selection_data, guint, guint)
2599    {
2600        if (!first_call_to_drag_data_get) return;
2601        first_call_to_drag_data_get = false;
2602    
2603        // get selected script
2604        gig::Script* script = NULL;
2605        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2606        Gtk::TreeModel::iterator it = sel->get_selected();
2607        if (it) {
2608            Gtk::TreeModel::Row row = *it;
2609            script = row[m_ScriptsModel.m_col_script];
2610        }
2611        // pass the gig::Script as pointer
2612        selection_data.set(selection_data.get_target(), 0/*unused*/,
2613                           (const guchar*)&script,
2614                           sizeof(script)/*length of data in bytes*/);
2615    }
2616    
2617  // For some reason drag_data_get gets called two times for each  // For some reason drag_data_get gets called two times for each
2618  // drag'n'drop (at least when target is an Entry). This work-around  // drag'n'drop (at least when target is an Entry). This work-around
2619  // makes sure the code in drag_data_get and drop_drag_data_received is  // makes sure the code in drag_data_get and drop_drag_data_received is
# Line 1766  void MainWindow::on_sample_label_drop_dr Line 2672  void MainWindow::on_sample_label_drop_dr
2672          bool channels_changed = false;          bool channels_changed = false;
2673          if (sample->Channels == 1 && stereo_dimension) {          if (sample->Channels == 1 && stereo_dimension) {
2674              // remove the samplechannel dimension              // remove the samplechannel dimension
2675    /* commented out, because it makes it impossible building up an instrument from scratch using two separate L/R samples
2676              region->DeleteDimension(stereo_dimension);              region->DeleteDimension(stereo_dimension);
2677              channels_changed = true;              channels_changed = true;
2678              region_changed();              region_changed();
2679    */
2680          }          }
2681          dimreg_edit.set_sample(sample);          dimreg_edit.set_sample(
2682                sample,
2683                is_copy_samples_unity_note_enabled(),
2684                is_copy_samples_fine_tune_enabled(),
2685                is_copy_samples_loop_enabled()
2686            );
2687    
2688          if (sample->Channels == 2 && !stereo_dimension) {          if (sample->Channels == 2 && !stereo_dimension) {
2689              // add samplechannel dimension              // add samplechannel dimension
# Line 1813  void MainWindow::sample_name_changed(con Line 2726  void MainWindow::sample_name_changed(con
2726      Glib::ustring name  = row[m_SamplesModel.m_col_name];      Glib::ustring name  = row[m_SamplesModel.m_col_name];
2727      gig::Group* group   = row[m_SamplesModel.m_col_group];      gig::Group* group   = row[m_SamplesModel.m_col_group];
2728      gig::Sample* sample = row[m_SamplesModel.m_col_sample];      gig::Sample* sample = row[m_SamplesModel.m_col_sample];
2729        gig::String gigname(gig_from_utf8(name));
2730      if (group) {      if (group) {
2731          if (group->Name != name) {          if (group->Name != gigname) {
2732              group->Name = name;              group->Name = gigname;
2733              printf("group name changed\n");              printf("group name changed\n");
2734              file_changed();              file_changed();
2735          }          }
2736      } else if (sample) {      } else if (sample) {
2737          if (sample->pInfo->Name != name.raw()) {          if (sample->pInfo->Name != gigname) {
2738              sample->pInfo->Name = name.raw();              sample->pInfo->Name = gigname;
2739              printf("sample name changed\n");              printf("sample name changed\n");
2740              file_changed();              file_changed();
2741          }          }
2742      }      }
2743  }  }
2744    
2745    void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,
2746                                         const Gtk::TreeModel::iterator& iter) {
2747        if (!iter) return;
2748        Gtk::TreeModel::Row row = *iter;
2749        Glib::ustring name      = row[m_ScriptsModel.m_col_name];
2750        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
2751        gig::Script* script     = row[m_ScriptsModel.m_col_script];
2752        gig::String gigname(gig_from_utf8(name));
2753        if (group) {
2754            if (group->Name != gigname) {
2755                group->Name = gigname;
2756                printf("script group name changed\n");
2757                file_changed();
2758            }
2759        } else if (script) {
2760            if (script->Name != gigname) {
2761                script->Name = gigname;
2762                printf("script name changed\n");
2763                file_changed();
2764            }
2765        }
2766    }
2767    
2768    void MainWindow::script_double_clicked(const Gtk::TreeModel::Path& path,
2769                                           Gtk::TreeViewColumn* column)
2770    {
2771        Gtk::TreeModel::iterator iter = m_refScriptsTreeModel->get_iter(path);
2772        if (!iter) return;
2773        Gtk::TreeModel::Row row = *iter;
2774        gig::Script* script = row[m_ScriptsModel.m_col_script];
2775        if (!script) return;
2776    
2777        ScriptEditor* editor = new ScriptEditor;
2778        editor->setScript(script);
2779        //editor->reparent(*this);
2780        editor->show();
2781    }
2782    
2783  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,
2784                                           const Gtk::TreeModel::iterator& iter) {                                           const Gtk::TreeModel::iterator& iter) {
2785      if (!iter) return;      if (!iter) return;
2786      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
2787      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_Columns.m_col_name];
2788    
2789        // change name in instrument menu
2790        int index = path[0];
2791        const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
2792        if (index < children.size()) {
2793    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 16) || GTKMM_MAJOR_VERSION > 2
2794            static_cast<Gtk::RadioMenuItem*>(children[index])->set_label(name);
2795    #else
2796            remove_instrument_from_menu(index);
2797            Gtk::RadioMenuItem* item = add_instrument_to_menu(name, index);
2798            item->set_active();
2799    #endif
2800        }
2801    
2802        // change name in gig
2803      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_Columns.m_col_instr];
2804      if (instrument && instrument->pInfo->Name != name.raw()) {      gig::String gigname(gig_from_utf8(name));
2805          instrument->pInfo->Name = name.raw();      if (instrument && instrument->pInfo->Name != gigname) {
2806            instrument->pInfo->Name = gigname;
2807    
2808            // change name in the instrument properties window
2809            if (instrumentProps.get_instrument() == instrument) {
2810                instrumentProps.update_name();
2811            }
2812    
2813          file_changed();          file_changed();
2814      }      }
2815  }  }
2816    
2817    void MainWindow::on_action_combine_instruments() {
2818        CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);
2819        d->show_all();
2820        d->resize(500, 400);
2821        d->run();
2822        if (d->fileWasChanged()) {
2823            // update GUI with new instrument just created
2824            add_instrument(d->newCombinedInstrument());
2825        }
2826        delete d;
2827    }
2828    
2829    void MainWindow::on_action_view_references() {
2830        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
2831        Gtk::TreeModel::iterator it = sel->get_selected();
2832        if (!it) return;
2833        Gtk::TreeModel::Row row = *it;
2834        gig::Sample* sample = row[m_SamplesModel.m_col_sample];
2835        if (!sample) return;
2836    
2837        ReferencesView* d = new ReferencesView(*this);
2838        d->setSample(sample);
2839        d->show_all();
2840        d->resize(500, 400);
2841        d->run();
2842        delete d;
2843    }
2844    
2845    void MainWindow::mergeFiles(const std::vector<std::string>& filenames) {
2846        struct _Source {
2847            std::vector<RIFF::File*> riffs;
2848            std::vector<gig::File*> gigs;
2849            
2850            ~_Source() {
2851                for (int k = 0; k < gigs.size(); ++k) delete gigs[k];
2852                for (int k = 0; k < riffs.size(); ++k) delete riffs[k];
2853                riffs.clear();
2854                gigs.clear();
2855            }
2856        } sources;
2857    
2858        if (filenames.empty())
2859            throw RIFF::Exception(_("No files selected, so nothing done."));
2860    
2861        // first open all input files (to avoid output file corruption)
2862        int i;
2863        try {
2864            for (i = 0; i < filenames.size(); ++i) {
2865                const std::string& filename = filenames[i];
2866                printf("opening file=%s\n", filename.c_str());
2867    
2868                RIFF::File* riff = new RIFF::File(filename);
2869                sources.riffs.push_back(riff);
2870    
2871                gig::File* gig = new gig::File(riff);
2872                sources.gigs.push_back(gig);
2873            }
2874        } catch (RIFF::Exception e) {
2875            throw RIFF::Exception(
2876                _("Error occurred while opening '") +
2877                filenames[i] +
2878                "': " +
2879                e.Message
2880            );
2881        } catch (...) {
2882            throw RIFF::Exception(
2883                _("Unknown exception occurred while opening '") +
2884                filenames[i] + "'"
2885            );
2886        }
2887    
2888        // now merge the opened .gig files to the main .gig file currently being
2889        // open in gigedit
2890        try {
2891            for (i = 0; i < filenames.size(); ++i) {
2892                const std::string& filename = filenames[i];
2893                printf("merging file=%s\n", filename.c_str());
2894                assert(i < sources.gigs.size());
2895    
2896                this->file->AddContentOf(sources.gigs[i]);
2897            }
2898        } catch (RIFF::Exception e) {
2899            throw RIFF::Exception(
2900                _("Error occurred while merging '") +
2901                filenames[i] +
2902                "': " +
2903                e.Message
2904            );
2905        } catch (...) {
2906            throw RIFF::Exception(
2907                _("Unknown exception occurred while merging '") +
2908                filenames[i] + "'"
2909            );
2910        }
2911    
2912        // Finally save gig file persistently to disk ...
2913        //NOTE: requires that this gig file already has a filename !
2914        {
2915            std::cout << "Saving file\n" << std::flush;
2916            file_structure_to_be_changed_signal.emit(this->file);
2917    
2918            progress_dialog = new ProgressDialog( //FIXME: memory leak!
2919                _("Saving") +  Glib::ustring(" '") +
2920                Glib::filename_display_basename(this->filename) + "' ...",
2921                *this
2922            );
2923            progress_dialog->show_all();
2924            saver = new Saver(this->file); //FIXME: memory leak!
2925            saver->signal_progress().connect(
2926                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
2927            saver->signal_finished().connect(
2928                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
2929            saver->signal_error().connect(
2930                sigc::mem_fun(*this, &MainWindow::on_saver_error));
2931            saver->launch();
2932        }
2933    }
2934    
2935    void MainWindow::on_action_merge_files() {
2936        if (this->file->GetFileName().empty()) {
2937            Glib::ustring txt = _(
2938                "You seem to have a new .gig file open that has not been saved "
2939                "yet. You must save it somewhere before starting to merge it with "
2940                "other .gig files though, because during the merge operation the "
2941                "other files' sample data must be written on file level to the "
2942                "target .gig file."
2943            );
2944            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2945            msg.run();
2946            return;
2947        }
2948    
2949        Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
2950        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2951        dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
2952        dialog.set_default_response(Gtk::RESPONSE_CANCEL);
2953    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
2954        Gtk::FileFilter filter;
2955        filter.add_pattern("*.gig");
2956    #else
2957        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
2958        filter->add_pattern("*.gig");
2959    #endif
2960        dialog.set_filter(filter);
2961        if (current_gig_dir != "") {
2962            dialog.set_current_folder(current_gig_dir);
2963        }
2964        dialog.set_select_multiple(true);
2965    
2966        // show warning in the file picker dialog
2967        Gtk::HBox descriptionArea;
2968        descriptionArea.set_spacing(15);
2969        Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
2970        descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
2971    #if GTKMM_MAJOR_VERSION < 3
2972        view::WrapLabel description;
2973    #else
2974        Gtk::Label description;
2975        description.set_line_wrap();
2976    #endif
2977        description.set_markup(_(
2978            "\nSelect at least one .gig file that shall be merged to the .gig file "
2979            "currently being open in gigedit.\n\n"
2980            "<b>Please Note:</b> Merging with other files will modify your "
2981            "currently open .gig file on file level! And be aware that the current "
2982            "merge algorithm does not detect duplicate samples yet. So if you are "
2983            "merging files which are using equivalent sample data, those "
2984            "equivalent samples will currently be treated as separate samples and "
2985            "will accordingly be stored separately in the target .gig file!"
2986        ));
2987        descriptionArea.pack_start(description);
2988        dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2989        descriptionArea.show_all();
2990    
2991        if (dialog.run() == Gtk::RESPONSE_OK) {
2992            printf("on_action_merge_files self=%x\n", Glib::Threads::Thread::self());
2993            std::vector<std::string> filenames = dialog.get_filenames();
2994    
2995            // merge the selected files to the currently open .gig file
2996            try {
2997                mergeFiles(filenames);
2998            } catch (RIFF::Exception e) {
2999                Gtk::MessageDialog msg(*this, e.Message, false, Gtk::MESSAGE_ERROR);
3000                msg.run();
3001            }
3002    
3003            // update GUI
3004            __refreshEntireGUI();        
3005        }
3006    }
3007    
3008  void MainWindow::set_file_is_shared(bool b) {  void MainWindow::set_file_is_shared(bool b) {
3009      this->file_is_shared = b;      this->file_is_shared = b;
3010    
# Line 1854  void MainWindow::set_file_is_shared(bool Line 3019  void MainWindow::set_file_is_shared(bool
3019              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)
3020          );          );
3021      }      }
3022    
3023        {
3024            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
3025                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
3026            if (item) item->set_sensitive(b);
3027        }
3028    }
3029    
3030    void MainWindow::on_sample_ref_count_incremented(gig::Sample* sample, int offset) {
3031        if (!sample) return;
3032        sample_ref_count[sample] += offset;
3033        const int refcount = sample_ref_count[sample];
3034    
3035        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
3036        for (int g = 0; g < model->children().size(); ++g) {
3037            Gtk::TreeModel::Row rowGroup = model->children()[g];
3038            for (int s = 0; s < rowGroup.children().size(); ++s) {
3039                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
3040                if (rowSample[m_SamplesModel.m_col_sample] != sample) continue;
3041                rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
3042                rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
3043            }
3044        }
3045    }
3046    
3047    void MainWindow::on_sample_ref_changed(gig::Sample* oldSample, gig::Sample* newSample) {
3048        on_sample_ref_count_incremented(oldSample, -1);
3049        on_sample_ref_count_incremented(newSample, +1);
3050    }
3051    
3052    void MainWindow::on_samples_to_be_removed(std::list<gig::Sample*> samples) {
3053        // just in case a new sample is added later with exactly the same memory
3054        // address, which would lead to incorrect refcount if not deleted here
3055        for (std::list<gig::Sample*>::const_iterator it = samples.begin();
3056             it != samples.end(); ++it)
3057        {
3058            sample_ref_count.erase(*it);
3059        }
3060    }
3061    
3062    void MainWindow::show_samples_tab() {
3063        m_TreeViewNotebook.set_current_page(0);
3064    }
3065    
3066    void MainWindow::show_intruments_tab() {
3067        m_TreeViewNotebook.set_current_page(1);
3068    }
3069    
3070    void MainWindow::show_scripts_tab() {
3071        m_TreeViewNotebook.set_current_page(2);
3072  }  }
3073    
3074  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {
# Line 1911  sigc::signal<void, int/*key*/, int/*velo Line 3126  sigc::signal<void, int/*key*/, int/*velo
3126  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {
3127      return m_RegionChooser.signal_keyboard_key_released();      return m_RegionChooser.signal_keyboard_key_released();
3128  }  }
3129    
3130    sigc::signal<void, gig::Instrument*>& MainWindow::signal_switch_sampler_instrument() {
3131        return switch_sampler_instrument_signal;
3132    }

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

  ViewVC Help
Powered by ViewVC