/[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 2445 by persson, Sun Apr 28 06:07:22 2013 UTC revision 3151 by schoenebeck, Fri May 5 18:44:59 2017 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2013 Andreas Persson   * Copyright (C) 2006-2017 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 <glibmmconfig.h>
24    // threads.h must be included first to be able to build with
25    // G_DISABLE_DEPRECATED
26    #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION == 31 && GLIBMM_MICRO_VERSION >= 2) || \
27        (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION > 31) || GLIBMM_MAJOR_VERSION > 2
28    #include <glibmm/threads.h>
29    #endif
30    
31  #include <glibmm/convert.h>  #include <glibmm/convert.h>
32  #include <glibmm/dispatcher.h>  #include <glibmm/dispatcher.h>
33  #include <glibmm/miscutils.h>  #include <glibmm/miscutils.h>
# Line 27  Line 35 
35  #include <gtkmm/aboutdialog.h>  #include <gtkmm/aboutdialog.h>
36  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
37  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
 #include <gtkmm/stock.h>  
38  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
39  #include <gtkmm/main.h>  #include <gtkmm/main.h>
40  #include <gtkmm/toggleaction.h>  #include <gtkmm/toggleaction.h>
# Line 40  Line 47 
47    
48  #include <stdio.h>  #include <stdio.h>
49  #include <sndfile.h>  #include <sndfile.h>
50    #include <assert.h>
51    
52  #include "mainwindow.h"  #include "mainwindow.h"
53    #include "Settings.h"
54    #include "CombineInstrumentsDialog.h"
55    #include "scripteditor.h"
56    #include "scriptslots.h"
57    #include "ReferencesView.h"
58  #include "../../gfx/status_attached.xpm"  #include "../../gfx/status_attached.xpm"
59  #include "../../gfx/status_detached.xpm"  #include "../../gfx/status_detached.xpm"
60    #include "gfx/builtinpix.h"
61    #include "MacroEditor.h"
62    
63  MainWindow::MainWindow() :  MainWindow::MainWindow() :
64        m_DimRegionChooser(*this),
65      dimreg_label(_("Changes apply to:")),      dimreg_label(_("Changes apply to:")),
66      dimreg_all_regions(_("all regions")),      dimreg_all_regions(_("all regions")),
67      dimreg_all_dimregs(_("all dimension splits")),      dimreg_all_dimregs(_("all dimension splits")),
68      dimreg_stereo(_("both channels"))      dimreg_stereo(_("both channels")),
69        labelLegend(_("Legend:")),
70        labelNoSample(_(" No Sample")),
71        labelMissingSample(_(" Missing some Sample(s)")),
72        labelLooped(_(" Looped")),
73        labelSomeLoops(_(" Some Loop(s)"))
74  {  {
75        loadBuiltInPix();
76    
77  //    set_border_width(5);  //    set_border_width(5);
78  //    set_default_size(400, 200);  //    set_default_size(400, 200);
79    
   
80      add(m_VBox);      add(m_VBox);
81    
82      // Handle selection      // Handle selection
# Line 76  MainWindow::MainWindow() : Line 96  MainWindow::MainWindow() :
96      m_ScrolledWindowSamples.add(m_TreeViewSamples);      m_ScrolledWindowSamples.add(m_TreeViewSamples);
97      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
98    
99        m_ScrolledWindowScripts.add(m_TreeViewScripts);
100        m_ScrolledWindowScripts.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
101    
102    
103      m_TreeViewNotebook.set_size_request(300);      m_TreeViewNotebook.set_size_request(300);
104    
# Line 87  MainWindow::MainWindow() : Line 110  MainWindow::MainWindow() :
110      dimreg_hbox.add(dimreg_stereo);      dimreg_hbox.add(dimreg_stereo);
111      dimreg_vbox.add(dimreg_edit);      dimreg_vbox.add(dimreg_edit);
112      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);
113        {
114            legend_hbox.add(labelLegend);
115    
116            imageNoSample.set(redDot);
117            imageNoSample.set_alignment(Gtk::ALIGN_END);
118            labelNoSample.set_alignment(Gtk::ALIGN_START);
119            legend_hbox.add(imageNoSample);
120            legend_hbox.add(labelNoSample);
121    
122            imageMissingSample.set(yellowDot);
123            imageMissingSample.set_alignment(Gtk::ALIGN_END);
124            labelMissingSample.set_alignment(Gtk::ALIGN_START);
125            legend_hbox.add(imageMissingSample);
126            legend_hbox.add(labelMissingSample);
127    
128            imageLooped.set(blackLoop);
129            imageLooped.set_alignment(Gtk::ALIGN_END);
130            labelLooped.set_alignment(Gtk::ALIGN_START);
131            legend_hbox.add(imageLooped);
132            legend_hbox.add(labelLooped);
133    
134            imageSomeLoops.set(grayLoop);
135            imageSomeLoops.set_alignment(Gtk::ALIGN_END);
136            labelSomeLoops.set_alignment(Gtk::ALIGN_START);
137            legend_hbox.add(imageSomeLoops);
138            legend_hbox.add(labelSomeLoops);
139    
140            legend_hbox.show_all_children();
141        }
142        dimreg_vbox.pack_start(legend_hbox, Gtk::PACK_SHRINK);
143      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
144    
145        dimreg_label.set_tooltip_text(_("To automatically apply your changes above globally to the entire instrument, check all 3 check boxes on the right."));
146        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."));
147        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."));
148        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)."));
149    
150      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
151      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
152        m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));
153    
154      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
155    
156      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));
157      actionGroup->add(Gtk::Action::create("New", Gtk::Stock::NEW),      actionGroup->add(Gtk::Action::create("New", _("_New")),
158                         Gtk::AccelKey("<control>n"),
159                       sigc::mem_fun(                       sigc::mem_fun(
160                           *this, &MainWindow::on_action_file_new));                           *this, &MainWindow::on_action_file_new));
161      Glib::RefPtr<Gtk::Action> action =      actionGroup->add(Gtk::Action::create("Open", _("_Open...")),
162          Gtk::Action::create("Open", Gtk::Stock::OPEN);                       Gtk::AccelKey("<control>o"),
     action->property_label() = action->property_label() + "...";  
     actionGroup->add(action,  
163                       sigc::mem_fun(                       sigc::mem_fun(
164                           *this, &MainWindow::on_action_file_open));                           *this, &MainWindow::on_action_file_open));
165      actionGroup->add(Gtk::Action::create("Save", Gtk::Stock::SAVE),      actionGroup->add(Gtk::Action::create("Save", _("_Save")),
166                         Gtk::AccelKey("<control>s"),
167                       sigc::mem_fun(                       sigc::mem_fun(
168                           *this, &MainWindow::on_action_file_save));                           *this, &MainWindow::on_action_file_save));
169      action = Gtk::Action::create("SaveAs", Gtk::Stock::SAVE_AS);      actionGroup->add(Gtk::Action::create("SaveAs", _("Save _As...")),
     action->property_label() = action->property_label() + "...";  
     actionGroup->add(action,  
170                       Gtk::AccelKey("<shift><control>s"),                       Gtk::AccelKey("<shift><control>s"),
171                       sigc::mem_fun(                       sigc::mem_fun(
172                           *this, &MainWindow::on_action_file_save_as));                           *this, &MainWindow::on_action_file_save_as));
173      actionGroup->add(Gtk::Action::create("Properties",      actionGroup->add(Gtk::Action::create("Properties",
174                                           Gtk::Stock::PROPERTIES),                                           _("_Properties")),
175                       sigc::mem_fun(                       sigc::mem_fun(
176                           *this, &MainWindow::on_action_file_properties));                           *this, &MainWindow::on_action_file_properties));
177      actionGroup->add(Gtk::Action::create("InstrProperties",      actionGroup->add(Gtk::Action::create("InstrProperties",
178                                           Gtk::Stock::PROPERTIES),                                           _("_Properties")),
179                       sigc::mem_fun(                       sigc::mem_fun(
180                           *this, &MainWindow::show_instr_props));                           *this, &MainWindow::show_instr_props));
181      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),      actionGroup->add(Gtk::Action::create("MidiRules",
182                                             _("_Midi Rules...")),
183                         sigc::mem_fun(
184                             *this, &MainWindow::show_midi_rules));
185        actionGroup->add(Gtk::Action::create("ScriptSlots",
186                                             _("_Script Slots...")),
187                         sigc::mem_fun(
188                             *this, &MainWindow::show_script_slots));
189        actionGroup->add(Gtk::Action::create("Quit", _("_Quit")),
190                         Gtk::AccelKey("<control>q"),
191                       sigc::mem_fun(                       sigc::mem_fun(
192                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
193      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));      actionGroup->add(
194            Gtk::Action::create("MenuSample", _("_Sample")),
195            sigc::mem_fun(*this, &MainWindow::show_samples_tab)
196        );
197        actionGroup->add(
198            Gtk::Action::create("MenuInstrument", _("_Instrument")),
199            sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
200        );
201        actionGroup->add(
202            Gtk::Action::create("MenuScript", _("Scr_ipt")),
203            sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
204        );
205        actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));
206    
207        actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
208    
209        const Gdk::ModifierType primaryModifierKey =
210    #if defined(__APPLE__)
211        Gdk::META_MASK; // Cmd key on Mac
212    #else
213        Gdk::CONTROL_MASK; // Ctrl key on all other OSs
214    #endif
215    
216        actionGroup->add(Gtk::Action::create("CopyDimRgn",
217                                             _("Copy selected dimension region")),
218                         Gtk::AccelKey(GDK_KEY_c, Gdk::MOD1_MASK),
219                         sigc::mem_fun(*this, &MainWindow::copy_selected_dimrgn));
220    
221        actionGroup->add(Gtk::Action::create("PasteDimRgn",
222                                             _("Paste dimension region")),
223                         Gtk::AccelKey(GDK_KEY_v, Gdk::MOD1_MASK),
224                         sigc::mem_fun(*this, &MainWindow::paste_copied_dimrgn));
225    
226        actionGroup->add(Gtk::Action::create("AdjustClipboard",
227                                             _("Adjust Clipboard Content")),
228                         Gtk::AccelKey(GDK_KEY_x, Gdk::MOD1_MASK),
229                         sigc::mem_fun(*this, &MainWindow::adjust_clipboard_content));
230    
231        actionGroup->add(Gtk::Action::create("SelectPrevRegion",
232                                             _("Select Previous Region")),
233                         Gtk::AccelKey(GDK_KEY_Left, primaryModifierKey),
234                         sigc::mem_fun(*this, &MainWindow::select_prev_region));
235    
236        actionGroup->add(Gtk::Action::create("SelectNextRegion",
237                                             _("Select Next Region")),
238                         Gtk::AccelKey(GDK_KEY_Right, primaryModifierKey),
239                         sigc::mem_fun(*this, &MainWindow::select_next_region));
240    
241        actionGroup->add(Gtk::Action::create("SelectPrevDimRgnZone",
242                                             _("Select Previous Dimension Region Zone")),
243                         Gtk::AccelKey(GDK_KEY_Left, Gdk::MOD1_MASK),
244                         sigc::mem_fun(*this, &MainWindow::select_prev_dim_rgn_zone));
245    
246        actionGroup->add(Gtk::Action::create("SelectNextDimRgnZone",
247                                             _("Select Next Dimension Region Zone")),
248                         Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK),
249                         sigc::mem_fun(*this, &MainWindow::select_next_dim_rgn_zone));
250    
251        actionGroup->add(Gtk::Action::create("SelectPrevDimension",
252                                             _("Select Previous Dimension")),
253                         Gtk::AccelKey(GDK_KEY_Up, Gdk::MOD1_MASK),
254                         sigc::mem_fun(*this, &MainWindow::select_prev_dimension));
255    
256        actionGroup->add(Gtk::Action::create("SelectNextDimension",
257                                             _("Select Next Dimension")),
258                         Gtk::AccelKey(GDK_KEY_Down, Gdk::MOD1_MASK),
259                         sigc::mem_fun(*this, &MainWindow::select_next_dimension));
260    
261        actionGroup->add(Gtk::Action::create("SelectAddPrevDimRgnZone",
262                                             _("Add Previous Dimension Region Zone to Selection")),
263                         Gtk::AccelKey(GDK_KEY_Left, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
264                         sigc::mem_fun(*this, &MainWindow::select_add_prev_dim_rgn_zone));
265    
266        actionGroup->add(Gtk::Action::create("SelectAddNextDimRgnZone",
267                                             _("Add Next Dimension Region Zone to Selection")),
268                         Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
269                         sigc::mem_fun(*this, &MainWindow::select_add_next_dim_rgn_zone));
270    
     actionGroup->add(Gtk::Action::create("MenuView", _("_View")));  
271      Glib::RefPtr<Gtk::ToggleAction> toggle_action =      Glib::RefPtr<Gtk::ToggleAction> toggle_action =
272            Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"));
273        toggle_action->set_active(true);
274        actionGroup->add(toggle_action);
275    
276        toggle_action =
277            Gtk::ToggleAction::create("CopySampleTune", _("Copy Sample's _Fine Tune"));
278        toggle_action->set_active(true);
279        actionGroup->add(toggle_action);
280    
281        toggle_action =
282            Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));
283        toggle_action->set_active(true);
284        actionGroup->add(toggle_action);
285    
286    
287        actionGroup->add(Gtk::Action::create("MenuView", _("Vie_w")));
288        toggle_action =
289          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));
290      toggle_action->set_active(true);      toggle_action->set_active(true);
291      actionGroup->add(toggle_action,      actionGroup->add(toggle_action,
292                       sigc::mem_fun(                       sigc::mem_fun(
293                           *this, &MainWindow::on_action_view_status_bar));                           *this, &MainWindow::on_action_view_status_bar));
294    
295      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);      toggle_action =
296      actionGroup->add(Gtk::Action::create("MenuHelp",          Gtk::ToggleAction::create("AutoRestoreWinDim", _("_Auto Restore Window Dimension"));
297                                           action->property_label()));      toggle_action->set_active(Settings::singleton()->autoRestoreWindowDimension);
298      actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),      actionGroup->add(toggle_action,
299                         sigc::mem_fun(
300                             *this, &MainWindow::on_auto_restore_win_dim));
301    
302        toggle_action =
303            Gtk::ToggleAction::create("SaveWithTemporaryFile", _("Save with _temporary file"));
304        toggle_action->set_active(Settings::singleton()->saveWithTemporaryFile);
305        actionGroup->add(toggle_action,
306                         sigc::mem_fun(
307                             *this, &MainWindow::on_save_with_temporary_file));
308    
309        actionGroup->add(
310            Gtk::Action::create("RefreshAll", _("_Refresh All")),
311            sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)
312        );                
313    
314        actionGroup->add(Gtk::Action::create("MenuHelp", _("_Help")));
315        actionGroup->add(Gtk::Action::create("About", _("_About")),
316                       sigc::mem_fun(                       sigc::mem_fun(
317                           *this, &MainWindow::on_action_help_about));                           *this, &MainWindow::on_action_help_about));
318      actionGroup->add(      actionGroup->add(
# Line 151  MainWindow::MainWindow() : Line 324  MainWindow::MainWindow() :
324          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
325      );      );
326      actionGroup->add(      actionGroup->add(
327          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveInstrument", _("_Remove")),
328          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
329      );      );
330    
331    
332        actionGroup->add(Gtk::Action::create("MenuSettings", _("_Settings")));
333        
334        toggle_action =
335            Gtk::ToggleAction::create("WarnUserOnExtensions", _("Show warning on format _extensions"));
336        toggle_action->set_active(Settings::singleton()->warnUserOnExtensions);
337        actionGroup->add(
338            toggle_action,
339            sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions)
340        );
341    
342        toggle_action =
343            Gtk::ToggleAction::create("SyncSamplerInstrumentSelection", _("Synchronize sampler's instrument selection"));
344        toggle_action->set_active(Settings::singleton()->syncSamplerInstrumentSelection);
345        actionGroup->add(
346            toggle_action,
347            sigc::mem_fun(*this, &MainWindow::on_action_sync_sampler_instrument_selection)
348        );
349    
350        toggle_action =
351            Gtk::ToggleAction::create("MoveRootNoteWithRegionMoved", _("Move root note with region moved"));
352        toggle_action->set_active(Settings::singleton()->moveRootNoteWithRegionMoved);
353        actionGroup->add(
354            toggle_action,
355            sigc::mem_fun(*this, &MainWindow::on_action_move_root_note_with_region_moved)
356        );
357    
358    
359        actionGroup->add(Gtk::Action::create("MenuTools", _("_Tools")));
360    
361        actionGroup->add(
362            Gtk::Action::create("CombineInstruments", _("_Combine Instruments...")),
363            sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
364        );
365    
366        actionGroup->add(
367            Gtk::Action::create("MergeFiles", _("_Merge Files...")),
368            sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
369        );
370    
371    
372      // sample right-click popup actions      // sample right-click popup actions
373      actionGroup->add(      actionGroup->add(
374          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),          Gtk::Action::create("SampleProperties", _("_Properties")),
375          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
376      );      );
377      actionGroup->add(      actionGroup->add(
# Line 169  MainWindow::MainWindow() : Line 383  MainWindow::MainWindow() :
383          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
384      );      );
385      actionGroup->add(      actionGroup->add(
386          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveSample", _("_Remove")),
387          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
388      );      );
389      actionGroup->add(      actionGroup->add(
390            Gtk::Action::create("RemoveUnusedSamples", _("Remove _Unused Samples")),
391            sigc::mem_fun(*this, &MainWindow::on_action_remove_unused_samples)
392        );
393        actionGroup->add(
394            Gtk::Action::create("ShowSampleRefs", _("Show References...")),
395            sigc::mem_fun(*this, &MainWindow::on_action_view_references)
396        );
397        actionGroup->add(
398            Gtk::Action::create("ReplaceSample",
399                                _("Replace Sample...")),
400            sigc::mem_fun(*this, &MainWindow::on_action_replace_sample)
401        );
402        actionGroup->add(
403          Gtk::Action::create("ReplaceAllSamplesInAllGroups",          Gtk::Action::create("ReplaceAllSamplesInAllGroups",
404                              _("Replace All Samples in All Groups...")),                              _("Replace All Samples in All Groups...")),
405          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)
406      );      );
407        
408        // script right-click popup actions
409        actionGroup->add(
410            Gtk::Action::create("AddScriptGroup", _("Add _Group")),
411            sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
412        );
413        actionGroup->add(
414            Gtk::Action::create("AddScript", _("Add _Script")),
415            sigc::mem_fun(*this, &MainWindow::on_action_add_script)
416        );
417        actionGroup->add(
418            Gtk::Action::create("EditScript", _("_Edit Script...")),
419            sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
420        );
421        actionGroup->add(
422            Gtk::Action::create("RemoveScript", _("_Remove")),
423            sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
424        );
425    
426      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
427      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
# Line 196  MainWindow::MainWindow() : Line 441  MainWindow::MainWindow() :
441          "      <separator/>"          "      <separator/>"
442          "      <menuitem action='Quit'/>"          "      <menuitem action='Quit'/>"
443          "    </menu>"          "    </menu>"
444            "    <menu action='MenuEdit'>"
445            "      <menuitem action='CopyDimRgn'/>"
446            "      <menuitem action='AdjustClipboard'/>"
447            "      <menuitem action='PasteDimRgn'/>"
448            "      <separator/>"
449            "      <menuitem action='SelectPrevRegion'/>"
450            "      <menuitem action='SelectNextRegion'/>"
451            "      <separator/>"
452            "      <menuitem action='SelectPrevDimension'/>"
453            "      <menuitem action='SelectNextDimension'/>"
454            "      <menuitem action='SelectPrevDimRgnZone'/>"
455            "      <menuitem action='SelectNextDimRgnZone'/>"
456            "      <menuitem action='SelectAddPrevDimRgnZone'/>"
457            "      <menuitem action='SelectAddNextDimRgnZone'/>"
458            "      <separator/>"
459            "      <menuitem action='CopySampleUnity'/>"
460            "      <menuitem action='CopySampleTune'/>"
461            "      <menuitem action='CopySampleLoop'/>"
462            "    </menu>"
463            "    <menu action='MenuSample'>"
464            "      <menuitem action='SampleProperties'/>"
465            "      <menuitem action='AddGroup'/>"
466            "      <menuitem action='AddSample'/>"
467            "      <menuitem action='ShowSampleRefs'/>"
468            "      <menuitem action='ReplaceSample' />"
469            "      <menuitem action='ReplaceAllSamplesInAllGroups' />"
470            "      <separator/>"
471            "      <menuitem action='RemoveSample'/>"
472            "      <menuitem action='RemoveUnusedSamples'/>"
473            "    </menu>"
474          "    <menu action='MenuInstrument'>"          "    <menu action='MenuInstrument'>"
475            "      <menu action='AllInstruments'>"
476            "      </menu>"
477            "      <separator/>"
478            "      <menuitem action='InstrProperties'/>"
479            "      <menuitem action='MidiRules'/>"
480            "      <menuitem action='ScriptSlots'/>"
481            "      <menuitem action='AddInstrument'/>"
482            "      <menuitem action='DupInstrument'/>"
483            "      <separator/>"
484            "      <menuitem action='RemoveInstrument'/>"
485            "    </menu>"
486            "    <menu action='MenuScript'>"
487            "      <menuitem action='AddScriptGroup'/>"
488            "      <menuitem action='AddScript'/>"
489            "      <menuitem action='EditScript'/>"
490            "      <separator/>"
491            "      <menuitem action='RemoveScript'/>"
492          "    </menu>"          "    </menu>"
493          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
494          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
495            "      <menuitem action='AutoRestoreWinDim'/>"
496            "      <separator/>"
497            "      <menuitem action='RefreshAll'/>"
498            "    </menu>"
499            "    <menu action='MenuTools'>"
500            "      <menuitem action='CombineInstruments'/>"
501            "      <menuitem action='MergeFiles'/>"
502            "    </menu>"
503            "    <menu action='MenuSettings'>"
504            "      <menuitem action='WarnUserOnExtensions'/>"
505            "      <menuitem action='SyncSamplerInstrumentSelection'/>"
506            "      <menuitem action='MoveRootNoteWithRegionMoved'/>"
507            "      <menuitem action='SaveWithTemporaryFile'/>"
508          "    </menu>"          "    </menu>"
509          "    <menu action='MenuHelp'>"          "    <menu action='MenuHelp'>"
510          "      <menuitem action='About'/>"          "      <menuitem action='About'/>"
# Line 207  MainWindow::MainWindow() : Line 512  MainWindow::MainWindow() :
512          "  </menubar>"          "  </menubar>"
513          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
514          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
515            "    <menuitem action='MidiRules'/>"
516            "    <menuitem action='ScriptSlots'/>"
517          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
518          "    <menuitem action='DupInstrument'/>"          "    <menuitem action='DupInstrument'/>"
519          "    <separator/>"          "    <separator/>"
# Line 216  MainWindow::MainWindow() : Line 523  MainWindow::MainWindow() :
523          "    <menuitem action='SampleProperties'/>"          "    <menuitem action='SampleProperties'/>"
524          "    <menuitem action='AddGroup'/>"          "    <menuitem action='AddGroup'/>"
525          "    <menuitem action='AddSample'/>"          "    <menuitem action='AddSample'/>"
526            "    <menuitem action='ShowSampleRefs'/>"
527            "    <menuitem action='ReplaceSample' />"
528          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"
529          "    <separator/>"          "    <separator/>"
530          "    <menuitem action='RemoveSample'/>"          "    <menuitem action='RemoveSample'/>"
531            "    <menuitem action='RemoveUnusedSamples'/>"
532            "  </popup>"
533            "  <popup name='ScriptPopupMenu'>"
534            "    <menuitem action='AddScriptGroup'/>"
535            "    <menuitem action='AddScript'/>"
536            "    <menuitem action='EditScript'/>"
537            "    <separator/>"
538            "    <menuitem action='RemoveScript'/>"
539          "  </popup>"          "  </popup>"
540          "</ui>";          "</ui>";
541      uiManager->add_ui_from_string(ui_info);      uiManager->add_ui_from_string(ui_info);
542    
543      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));
544        
545        // Set tooltips for menu items (for some reason, setting a tooltip on the
546        // respective Gtk::Action objects above will simply be ignored, no matter
547        // if using Gtk::Action::set_tooltip() or passing the tooltip string on
548        // Gtk::Action::create()).
549        {
550            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
551                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
552            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."));
553        }
554        {
555            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
556                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
557            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."));
558        }
559        {
560            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
561                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
562            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."));
563        }
564        {
565            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
566                uiManager->get_widget("/MenuBar/MenuSettings/WarnUserOnExtensions"));
567            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."));
568        }
569        {
570            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
571                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
572            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)."));
573        }
574        {
575            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
576                uiManager->get_widget("/MenuBar/MenuSettings/MoveRootNoteWithRegionMoved"));
577            item->set_tooltip_text(_("If checked, and when a region is moved by dragging it around on the virtual keyboard, the keybord position dependent pitch will move exactly with the amount of semi tones the region was moved around."));
578        }
579        {
580            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
581                uiManager->get_widget("/MenuBar/MenuSample/RemoveUnusedSamples"));
582            item->set_tooltip_text(_("Removes all samples that are not referenced by any instrument (i.e. red ones)."));
583            // copy tooltip to popup menu
584            Gtk::MenuItem* item2 = dynamic_cast<Gtk::MenuItem*>(
585                uiManager->get_widget("/SamplePopupMenu/RemoveUnusedSamples"));
586            item2->set_tooltip_text(item->get_tooltip_text());
587        }
588        {
589            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
590                uiManager->get_widget("/MenuBar/MenuView/RefreshAll"));
591            item->set_tooltip_text(_("Reloads the currently open gig file and updates the entire graphical user interface."));
592        }
593        {
594            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
595                uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
596            item->set_tooltip_text(_("If checked, size and position of all windows will be saved and automatically restored next time."));
597        }
598        {
599            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
600                uiManager->get_widget("/MenuBar/MenuTools/CombineInstruments"));
601            item->set_tooltip_text(_("Create combi sounds out of individual sounds of this .gig file."));
602        }
603        {
604            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
605                uiManager->get_widget("/MenuBar/MenuTools/MergeFiles"));
606            item->set_tooltip_text(_("Add instruments and samples of other .gig files to this .gig file."));
607        }
608    
609    
610      instrument_menu = static_cast<Gtk::MenuItem*>(      instrument_menu = static_cast<Gtk::MenuItem*>(
611          uiManager->get_widget("/MenuBar/MenuInstrument"))->get_submenu();          uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();
612    
613      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");
614      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
# Line 252  MainWindow::MainWindow() : Line 634  MainWindow::MainWindow() :
634      // Create the Tree model:      // Create the Tree model:
635      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refTreeModel = Gtk::ListStore::create(m_Columns);
636      m_TreeView.set_model(m_refTreeModel);      m_TreeView.set_model(m_refTreeModel);
637        m_TreeView.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
638        m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules. Drag & drop to change the order of instruments."));
639      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(
640          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
641      );      );
642    
643      // Add the TreeView's view columns:      // Add the TreeView's view columns:
644      m_TreeView.append_column_editable("Instrument", m_Columns.m_col_name);      m_TreeView.append_column(_("Nr"), m_Columns.m_col_nr);
645      m_TreeView.set_headers_visible(false);      m_TreeView.append_column_editable(_("Instrument"), m_Columns.m_col_name);
646        m_TreeView.set_headers_visible(true);
647        
648        // establish drag&drop within the instrument tree view, allowing to reorder
649        // the sequence of instruments within the gig file
650        {
651            std::vector<Gtk::TargetEntry> drag_target_instrument;
652            drag_target_instrument.push_back(Gtk::TargetEntry("gig::Instrument"));
653            m_TreeView.drag_source_set(drag_target_instrument);
654            m_TreeView.drag_dest_set(drag_target_instrument);
655            m_TreeView.signal_drag_begin().connect(
656                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_begin)
657            );
658            m_TreeView.signal_drag_data_get().connect(
659                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_data_get)
660            );
661            m_TreeView.signal_drag_data_received().connect(
662                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drop_drag_data_received)
663            );
664        }
665    
666      // create samples treeview (including its data model)      // create samples treeview (including its data model)
667      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);
668      m_TreeViewSamples.set_model(m_refSamplesTreeModel);      m_TreeViewSamples.set_model(m_refSamplesTreeModel);
669        m_TreeViewSamples.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
670        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."));
671      // m_TreeViewSamples.set_reorderable();      // m_TreeViewSamples.set_reorderable();
672      m_TreeViewSamples.append_column_editable("Samples", m_SamplesModel.m_col_name);      m_TreeViewSamples.append_column_editable(_("Name"), m_SamplesModel.m_col_name);
673      m_TreeViewSamples.set_headers_visible(false);      m_TreeViewSamples.append_column(_("Referenced"), m_SamplesModel.m_col_refcount);
674        {
675            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(0);
676            Gtk::CellRendererText* cellrenderer =
677                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
678            column->add_attribute(
679                cellrenderer->property_foreground(), m_SamplesModel.m_color
680            );
681        }
682        {
683            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(1);
684            Gtk::CellRendererText* cellrenderer =
685                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
686            column->add_attribute(
687                cellrenderer->property_foreground(), m_SamplesModel.m_color
688            );
689        }
690        m_TreeViewSamples.set_headers_visible(true);
691      m_TreeViewSamples.signal_button_press_event().connect_notify(      m_TreeViewSamples.signal_button_press_event().connect_notify(
692          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
693      );      );
# Line 273  MainWindow::MainWindow() : Line 695  MainWindow::MainWindow() :
695          sigc::mem_fun(*this, &MainWindow::sample_name_changed)          sigc::mem_fun(*this, &MainWindow::sample_name_changed)
696      );      );
697    
698        // create scripts treeview (including its data model)
699        m_refScriptsTreeModel = ScriptsTreeStore::create(m_ScriptsModel);
700        m_TreeViewScripts.set_model(m_refScriptsTreeModel);
701        m_TreeViewScripts.set_tooltip_text(_(
702            "Use CTRL + double click for editing a script."
703            "\n\n"
704            "Note: instrument scripts are a LinuxSampler extension of the gig "
705            "format. This feature will not work with the GigaStudio software!"
706        ));
707        // m_TreeViewScripts.set_reorderable();
708        m_TreeViewScripts.append_column_editable("Samples", m_ScriptsModel.m_col_name);
709        m_TreeViewScripts.set_headers_visible(false);
710        m_TreeViewScripts.signal_button_press_event().connect_notify(
711            sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
712        );
713        //FIXME: why the heck does this double click signal_row_activated() only fire while CTRL key is pressed ?
714        m_TreeViewScripts.signal_row_activated().connect(
715            sigc::mem_fun(*this, &MainWindow::script_double_clicked)
716        );
717        m_refScriptsTreeModel->signal_row_changed().connect(
718            sigc::mem_fun(*this, &MainWindow::script_name_changed)
719        );
720    
721        // establish drag&drop between scripts tree view and ScriptSlots window
722        std::vector<Gtk::TargetEntry> drag_target_gig_script;
723        drag_target_gig_script.push_back(Gtk::TargetEntry("gig::Script"));
724        m_TreeViewScripts.drag_source_set(drag_target_gig_script);
725        m_TreeViewScripts.signal_drag_begin().connect(
726            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_begin)
727        );
728        m_TreeViewScripts.signal_drag_data_get().connect(
729            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_data_get)
730        );
731    
732      // 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
733      std::vector<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
734      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
# Line 291  MainWindow::MainWindow() : Line 747  MainWindow::MainWindow() :
747          sigc::hide(sigc::mem_fun(*this, &MainWindow::file_changed)));          sigc::hide(sigc::mem_fun(*this, &MainWindow::file_changed)));
748      m_RegionChooser.signal_instrument_changed().connect(      m_RegionChooser.signal_instrument_changed().connect(
749          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
750        m_RegionChooser.signal_instrument_changed().connect(
751            sigc::mem_fun(*this, &MainWindow::region_changed));
752      m_DimRegionChooser.signal_region_changed().connect(      m_DimRegionChooser.signal_region_changed().connect(
753          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
754      instrumentProps.signal_changed().connect(      instrumentProps.signal_changed().connect(
755          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
756      propDialog.signal_changed().connect(      propDialog.signal_changed().connect(
757          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
758        midiRules.signal_changed().connect(
759            sigc::mem_fun(*this, &MainWindow::file_changed));
760    
761      dimreg_edit.signal_dimreg_to_be_changed().connect(      dimreg_edit.signal_dimreg_to_be_changed().connect(
762          dimreg_to_be_changed_signal.make_slot());          dimreg_to_be_changed_signal.make_slot());
# Line 304  MainWindow::MainWindow() : Line 764  MainWindow::MainWindow() :
764          dimreg_changed_signal.make_slot());          dimreg_changed_signal.make_slot());
765      dimreg_edit.signal_sample_ref_changed().connect(      dimreg_edit.signal_sample_ref_changed().connect(
766          sample_ref_changed_signal.make_slot());          sample_ref_changed_signal.make_slot());
767        sample_ref_changed_signal.connect(
768            sigc::mem_fun(*this, &MainWindow::on_sample_ref_changed)
769        );
770        samples_to_be_removed_signal.connect(
771            sigc::mem_fun(*this, &MainWindow::on_samples_to_be_removed)
772        );
773    
774        dimreg_edit.signal_select_sample().connect(
775            sigc::mem_fun(*this, &MainWindow::select_sample)
776        );
777    
778      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(
779          sigc::hide(          sigc::hide(
# Line 345  MainWindow::MainWindow() : Line 815  MainWindow::MainWindow() :
815    
816      // start with a new gig file by default      // start with a new gig file by default
817      on_action_file_new();      on_action_file_new();
818    
819        // select 'Instruments' tab by default
820        // (gtk allows this only if the tab childs are visible, thats why it's here)
821        m_TreeViewNotebook.set_current_page(1);
822    
823        Gtk::Clipboard::get()->signal_owner_change().connect(
824            sigc::mem_fun(*this, &MainWindow::on_clipboard_owner_change)
825        );
826        updateClipboardPasteAvailable();
827        updateClipboardCopyAvailable();
828  }  }
829    
830  MainWindow::~MainWindow()  MainWindow::~MainWindow()
# Line 370  void MainWindow::region_changed() Line 850  void MainWindow::region_changed()
850  gig::Instrument* MainWindow::get_instrument()  gig::Instrument* MainWindow::get_instrument()
851  {  {
852      gig::Instrument* instrument = 0;      gig::Instrument* instrument = 0;
853      Gtk::TreeModel::const_iterator it =      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
854          m_TreeView.get_selection()->get_selected();      if (rows.empty()) return NULL;
855        Gtk::TreeModel::const_iterator it = m_refTreeModel->get_iter(rows[0]);
856      if (it) {      if (it) {
857          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
858          instrument = row[m_Columns.m_col_instr];          instrument = row[m_Columns.m_col_instr];
# Line 414  void MainWindow::update_dimregs() Line 895  void MainWindow::update_dimregs()
895              add_region_to_dimregs(region, stereo, all_dimregs);              add_region_to_dimregs(region, stereo, all_dimregs);
896          }          }
897      }      }
898    
899        m_RegionChooser.setModifyAllRegions(all_regions);
900        m_DimRegionChooser.setModifyAllRegions(all_regions);
901        m_DimRegionChooser.setModifyAllDimensionRegions(all_dimregs);
902        m_DimRegionChooser.setModifyBothChannels(stereo);
903    
904        updateClipboardCopyAvailable();
905  }  }
906    
907  void MainWindow::dimreg_all_dimregs_toggled()  void MainWindow::dimreg_all_dimregs_toggled()
# Line 425  void MainWindow::dimreg_all_dimregs_togg Line 913  void MainWindow::dimreg_all_dimregs_togg
913  void MainWindow::dimreg_changed()  void MainWindow::dimreg_changed()
914  {  {
915      update_dimregs();      update_dimregs();
916      dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion());      dimreg_edit.set_dim_region(m_DimRegionChooser.get_main_dimregion());
917  }  }
918    
919  void MainWindow::on_sel_change()  void MainWindow::on_sel_change()
920  {  {
921      // select item in instrument menu      // select item in instrument menu
922      Gtk::TreeModel::iterator it = m_TreeView.get_selection()->get_selected();      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
923      if (it) {      if (!rows.empty()) {
924          Gtk::TreePath path(it);          Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
925          int index = path[0];          if (it) {
926          const std::vector<Gtk::Widget*> children =              Gtk::TreePath path(it);
927              instrument_menu->get_children();              int index = path[0];
928          static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();              const std::vector<Gtk::Widget*> children =
929                    instrument_menu->get_children();
930                static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();
931            }
932      }      }
933    
934      m_RegionChooser.set_instrument(get_instrument());      m_RegionChooser.set_instrument(get_instrument());
935    
936        if (Settings::singleton()->syncSamplerInstrumentSelection) {
937            switch_sampler_instrument_signal.emit(get_instrument());
938        }
939  }  }
940    
941  void loader_progress_callback(gig::progress_t* progress)  void loader_progress_callback(gig::progress_t* progress)
# Line 458  void Loader::progress_callback(float fra Line 953  void Loader::progress_callback(float fra
953      progress_dispatcher();      progress_dispatcher();
954  }  }
955    
956    #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
957    // make sure stack is 16-byte aligned for SSE instructions
958    __attribute__((force_align_arg_pointer))
959    #endif
960  void Loader::thread_function()  void Loader::thread_function()
961  {  {
962      printf("thread_function self=%x\n", Glib::Threads::Thread::self());      printf("thread_function self=%p\n",
963      printf("Start %s\n", filename);             static_cast<void*>(Glib::Threads::Thread::self()));
964      RIFF::File* riff = new RIFF::File(filename);      printf("Start %s\n", filename.c_str());
965      gig = new gig::File(riff);      try {
966      gig::progress_t progress;          RIFF::File* riff = new RIFF::File(filename);
967      progress.callback = loader_progress_callback;          gig = new gig::File(riff);
968      progress.custom = this;          gig::progress_t progress;
969            progress.callback = loader_progress_callback;
970      gig->GetInstrument(0, &progress);          progress.custom = this;
971      printf("End\n");  
972      finished_dispatcher();          gig->GetInstrument(0, &progress);
973            printf("End\n");
974            finished_dispatcher();
975        } catch (RIFF::Exception e) {
976            error_message = e.Message;
977            error_dispatcher.emit();
978        } catch (...) {
979            error_message = _("Unknown exception occurred");
980            error_dispatcher.emit();
981        }
982  }  }
983    
984  Loader::Loader(const char* filename)  Loader::Loader(const char* filename)
985      : filename(filename), thread(0)      : filename(filename), gig(0), thread(0), progress(0.f)
986  {  {
987  }  }
988    
# Line 485  void Loader::launch() Line 993  void Loader::launch()
993  #else  #else
994      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));
995  #endif  #endif
996      printf("launch thread=%x\n", thread);      printf("launch thread=%p\n", static_cast<void*>(thread));
997  }  }
998    
999  float Loader::get_progress()  float Loader::get_progress()
# Line 508  Glib::Dispatcher& Loader::signal_finishe Line 1016  Glib::Dispatcher& Loader::signal_finishe
1016      return finished_dispatcher;      return finished_dispatcher;
1017  }  }
1018    
1019  LoadDialog::LoadDialog(const Glib::ustring& title, Gtk::Window& parent)  Glib::Dispatcher& Loader::signal_error()
1020    {
1021        return error_dispatcher;
1022    }
1023    
1024    void saver_progress_callback(gig::progress_t* progress)
1025    {
1026        Saver* saver = static_cast<Saver*>(progress->custom);
1027        saver->progress_callback(progress->factor);
1028    }
1029    
1030    void Saver::progress_callback(float fraction)
1031    {
1032        {
1033            Glib::Threads::Mutex::Lock lock(progressMutex);
1034            progress = fraction;
1035        }
1036        progress_dispatcher.emit();
1037    }
1038    
1039    #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
1040    // make sure stack is 16-byte aligned for SSE instructions
1041    __attribute__((force_align_arg_pointer))
1042    #endif
1043    void Saver::thread_function()
1044    {
1045        printf("thread_function self=%p\n",
1046               static_cast<void*>(Glib::Threads::Thread::self()));
1047        printf("Start %s\n", filename.c_str());
1048        try {
1049            gig::progress_t progress;
1050            progress.callback = saver_progress_callback;
1051            progress.custom = this;
1052    
1053            // if no filename was provided, that means "save", if filename was provided means "save as"
1054            if (filename.empty()) {
1055                if (!Settings::singleton()->saveWithTemporaryFile) {
1056                    // save directly over the existing .gig file
1057                    // (requires less disk space than solution below
1058                    // but may be slower)
1059                    gig->Save(&progress);
1060                } else {
1061                    // save the file as separate temporary file first,
1062                    // then move the saved file over the old file
1063                    // (may result in performance speedup during save)
1064                    String tmpname = filename + ".TMP";
1065                    gig->Save(tmpname, &progress);
1066                    #if defined(WIN32)
1067                    if (!DeleteFile(filename.c_str())) {
1068                        throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file).");
1069                    }
1070                    #else // POSIX ...
1071                    if (unlink(filename.c_str())) {
1072                        throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + String(strerror(errno)));
1073                    }
1074                    #endif
1075                    if (rename(tmpname.c_str(), filename.c_str())) {
1076                        #if defined(WIN32)
1077                        throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");
1078                        #else
1079                        throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file): " + String(strerror(errno)));
1080                        #endif
1081                    }
1082                }
1083            } else {
1084                gig->Save(filename, &progress);
1085            }
1086    
1087            printf("End\n");
1088            finished_dispatcher.emit();
1089        } catch (RIFF::Exception e) {
1090            error_message = e.Message;
1091            error_dispatcher.emit();
1092        } catch (...) {
1093            error_message = _("Unknown exception occurred");
1094            error_dispatcher.emit();
1095        }
1096    }
1097    
1098    Saver::Saver(gig::File* file, Glib::ustring filename)
1099        : gig(file), filename(filename), thread(0), progress(0.f)
1100    {
1101    }
1102    
1103    void Saver::launch()
1104    {
1105    #ifdef OLD_THREADS
1106        thread = Glib::Thread::create(sigc::mem_fun(*this, &Saver::thread_function), true);
1107    #else
1108        thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Saver::thread_function));
1109    #endif
1110        printf("launch thread=%p\n", static_cast<void*>(thread));
1111    }
1112    
1113    float Saver::get_progress()
1114    {
1115        float res;
1116        {
1117            Glib::Threads::Mutex::Lock lock(progressMutex);
1118            res = progress;
1119        }
1120        return res;
1121    }
1122    
1123    Glib::Dispatcher& Saver::signal_progress()
1124    {
1125        return progress_dispatcher;
1126    }
1127    
1128    Glib::Dispatcher& Saver::signal_finished()
1129    {
1130        return finished_dispatcher;
1131    }
1132    
1133    Glib::Dispatcher& Saver::signal_error()
1134    {
1135        return error_dispatcher;
1136    }
1137    
1138    ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)
1139      : Gtk::Dialog(title, parent, true)      : Gtk::Dialog(title, parent, true)
1140  {  {
1141      get_vbox()->pack_start(progressBar);      get_vbox()->pack_start(progressBar);
1142      show_all_children();      show_all_children();
1143        resize(600,50);
1144  }  }
1145    
1146  // Clear all GUI elements / controls. This method is typically called  // Clear all GUI elements / controls. This method is typically called
# Line 523  void MainWindow::__clear() { Line 1151  void MainWindow::__clear() {
1151      // clear the samples and instruments tree views      // clear the samples and instruments tree views
1152      m_refTreeModel->clear();      m_refTreeModel->clear();
1153      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
1154        m_refScriptsTreeModel->clear();
1155      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
1156      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
1157          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
# Line 533  void MainWindow::__clear() { Line 1162  void MainWindow::__clear() {
1162      set_file_is_shared(false);      set_file_is_shared(false);
1163  }  }
1164    
1165    void MainWindow::__refreshEntireGUI() {
1166        // clear the samples and instruments tree views
1167        m_refTreeModel->clear();
1168        m_refSamplesTreeModel->clear();
1169        m_refScriptsTreeModel->clear();
1170        // remove all entries from "Instrument" menu
1171        while (!instrument_menu->get_children().empty()) {
1172            remove_instrument_from_menu(0);
1173        }
1174    
1175        if (!this->file) return;
1176    
1177        load_gig(
1178            this->file, this->file->pInfo->Name.c_str(), this->file_is_shared
1179        );
1180    }
1181    
1182  void MainWindow::on_action_file_new()  void MainWindow::on_action_file_new()
1183  {  {
1184      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;
# Line 545  void MainWindow::on_action_file_new() Line 1191  void MainWindow::on_action_file_new()
1191      gig::File* pFile = new gig::File;      gig::File* pFile = new gig::File;
1192      // already add one new instrument by default      // already add one new instrument by default
1193      gig::Instrument* pInstrument = pFile->AddInstrument();      gig::Instrument* pInstrument = pFile->AddInstrument();
1194      pInstrument->pInfo->Name = _("Unnamed Instrument");      pInstrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument"));
1195      // update GUI with that new gig::File      // update GUI with that new gig::File
1196      load_gig(pFile, 0 /*no file name yet*/);      load_gig(pFile, 0 /*no file name yet*/);
1197  }  }
# Line 558  bool MainWindow::close_confirmation_dial Line 1204  bool MainWindow::close_confirmation_dial
1204      g_free(msg);      g_free(msg);
1205      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."));
1206      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
1207      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
1208      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);      dialog.add_button(file_has_name ? _("_Save") : _("Save _As"), Gtk::RESPONSE_YES);
1209      dialog.set_default_response(Gtk::RESPONSE_YES);      dialog.set_default_response(Gtk::RESPONSE_YES);
1210      int response = dialog.run();      int response = dialog.run();
1211      dialog.hide();      dialog.hide();
1212      if (response == Gtk::RESPONSE_YES) return file_save();  
1213      return response != Gtk::RESPONSE_CANCEL;      // user decided to exit app without saving
1214        if (response == Gtk::RESPONSE_NO) return true;
1215    
1216        // user cancelled dialog, thus don't close app
1217        if (response == Gtk::RESPONSE_CANCEL) return false;
1218    
1219        // TODO: the following return valid is disabled and hard coded instead for
1220        // now, due to the fact that saving with progress bar is now implemented
1221        // asynchronously, as a result the app does not close automatically anymore
1222        // after saving the file has completed
1223        //
1224        //   if (response == Gtk::RESPONSE_YES) return file_save();
1225        //   return response != Gtk::RESPONSE_CANCEL;
1226        //
1227        if (response == Gtk::RESPONSE_YES) file_save();
1228        return false; // always prevent closing the app for now (see comment above)
1229  }  }
1230    
1231  bool MainWindow::leaving_shared_mode_dialog() {  bool MainWindow::leaving_shared_mode_dialog() {
# Line 575  bool MainWindow::leaving_shared_mode_dia Line 1236  bool MainWindow::leaving_shared_mode_dia
1236            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
1237            "load it."));            "load it."));
1238      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
1239      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
1240      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
1241      int response = dialog.run();      int response = dialog.run();
1242      dialog.hide();      dialog.hide();
# Line 589  void MainWindow::on_action_file_open() Line 1250  void MainWindow::on_action_file_open()
1250      if (file_is_shared && !leaving_shared_mode_dialog()) return;      if (file_is_shared && !leaving_shared_mode_dialog()) return;
1251    
1252      Gtk::FileChooserDialog dialog(*this, _("Open file"));      Gtk::FileChooserDialog dialog(*this, _("Open file"));
1253      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
1254      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
1255      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
1256  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1257      Gtk::FileFilter filter;      Gtk::FileFilter filter;
# Line 606  void MainWindow::on_action_file_open() Line 1267  void MainWindow::on_action_file_open()
1267      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1268          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
1269          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
1270          printf("on_action_file_open self=%x\n", Glib::Threads::Thread::self());          printf("on_action_file_open self=%p\n",
1271                   static_cast<void*>(Glib::Threads::Thread::self()));
1272          load_file(filename.c_str());          load_file(filename.c_str());
1273          current_gig_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
1274      }      }
# Line 615  void MainWindow::on_action_file_open() Line 1277  void MainWindow::on_action_file_open()
1277  void MainWindow::load_file(const char* name)  void MainWindow::load_file(const char* name)
1278  {  {
1279      __clear();      __clear();
1280      load_dialog = new LoadDialog(_("Loading..."), *this);  
1281      load_dialog->show_all();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
1282      loader = new Loader(strdup(name));          _("Loading") +  Glib::ustring(" '") +
1283            Glib::filename_display_basename(name) + "' ...",
1284            *this
1285        );
1286        progress_dialog->show_all();
1287        loader = new Loader(name); //FIXME: memory leak!
1288      loader->signal_progress().connect(      loader->signal_progress().connect(
1289          sigc::mem_fun(*this, &MainWindow::on_loader_progress));          sigc::mem_fun(*this, &MainWindow::on_loader_progress));
1290      loader->signal_finished().connect(      loader->signal_finished().connect(
1291          sigc::mem_fun(*this, &MainWindow::on_loader_finished));          sigc::mem_fun(*this, &MainWindow::on_loader_finished));
1292        loader->signal_error().connect(
1293            sigc::mem_fun(*this, &MainWindow::on_loader_error));
1294      loader->launch();      loader->launch();
1295  }  }
1296    
# Line 637  void MainWindow::load_instrument(gig::In Line 1306  void MainWindow::load_instrument(gig::In
1306      // load the instrument      // load the instrument
1307      gig::File* pFile = (gig::File*) instr->GetParent();      gig::File* pFile = (gig::File*) instr->GetParent();
1308      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);
1309      //TODO: automatically select the given instrument      // automatically select the given instrument
1310        int i = 0;
1311        for (gig::Instrument* instrument = pFile->GetFirstInstrument(); instrument;
1312             instrument = pFile->GetNextInstrument(), ++i)
1313        {
1314            if (instrument == instr) {
1315                // select item in "instruments" tree view
1316                m_TreeView.get_selection()->select(Gtk::TreePath(ToString(i)));
1317                // make sure the selected item in the "instruments" tree view is
1318                // visible (scroll to it)
1319                m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));
1320                // select item in instrument menu
1321                {
1322                    const std::vector<Gtk::Widget*> children =
1323                        instrument_menu->get_children();
1324                    static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();
1325                }
1326                // update region chooser and dimension region chooser
1327                m_RegionChooser.set_instrument(instr);
1328                break;
1329            }
1330        }
1331  }  }
1332    
1333  void MainWindow::on_loader_progress()  void MainWindow::on_loader_progress()
1334  {  {
1335      load_dialog->set_fraction(loader->get_progress());      progress_dialog->set_fraction(loader->get_progress());
1336  }  }
1337    
1338  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
1339  {  {
1340      printf("Loader finished!\n");      printf("Loader finished!\n");
1341      printf("on_loader_finished self=%x\n", Glib::Threads::Thread::self());      printf("on_loader_finished self=%p\n",
1342      load_gig(loader->gig, loader->filename);             static_cast<void*>(Glib::Threads::Thread::self()));
1343      load_dialog->hide();      load_gig(loader->gig, loader->filename.c_str());
1344        progress_dialog->hide();
1345    }
1346    
1347    void MainWindow::on_loader_error()
1348    {
1349        Glib::ustring txt = _("Could not load file: ") + loader->error_message;
1350        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1351        msg.run();
1352        progress_dialog->hide();
1353  }  }
1354    
1355  void MainWindow::on_action_file_save()  void MainWindow::on_action_file_save()
# Line 689  bool MainWindow::file_save() Line 1388  bool MainWindow::file_save()
1388    
1389      std::cout << "Saving file\n" << std::flush;      std::cout << "Saving file\n" << std::flush;
1390      file_structure_to_be_changed_signal.emit(this->file);      file_structure_to_be_changed_signal.emit(this->file);
1391      try {  
1392          file->Save();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
1393          if (file_is_changed) {          _("Saving") +  Glib::ustring(" '") +
1394              set_title(get_title().substr(1));          Glib::filename_display_basename(this->filename) + "' ...",
1395              file_is_changed = false;          *this
1396          }      );
1397      } catch (RIFF::Exception e) {      progress_dialog->show_all();
1398          file_structure_changed_signal.emit(this->file);      saver = new Saver(this->file); //FIXME: memory leak!
1399          Glib::ustring txt = _("Could not save file: ") + e.Message;      saver->signal_progress().connect(
1400          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);          sigc::mem_fun(*this, &MainWindow::on_saver_progress));
1401          msg.run();      saver->signal_finished().connect(
1402          return false;          sigc::mem_fun(*this, &MainWindow::on_saver_finished));
1403      }      saver->signal_error().connect(
1404      std::cout << "Saving file done\n" << std::flush;          sigc::mem_fun(*this, &MainWindow::on_saver_error));
1405        saver->launch();
1406    
1407        return true;
1408    }
1409    
1410    void MainWindow::on_saver_progress()
1411    {
1412        progress_dialog->set_fraction(saver->get_progress());
1413    }
1414    
1415    void MainWindow::on_saver_error()
1416    {
1417        file_structure_changed_signal.emit(this->file);
1418        Glib::ustring txt = _("Could not save file: ") + saver->error_message;
1419        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1420        msg.run();
1421    }
1422    
1423    void MainWindow::on_saver_finished()
1424    {
1425        this->file = saver->gig;
1426        this->filename = saver->filename;
1427        current_gig_dir = Glib::path_get_dirname(filename);
1428        set_title(Glib::filename_display_basename(filename));
1429        file_has_name = true;
1430        file_is_changed = false;
1431        std::cout << "Saving file done. Importing queued samples now ...\n" << std::flush;
1432      __import_queued_samples();      __import_queued_samples();
1433        std::cout << "Importing queued samples done.\n" << std::flush;
1434    
1435      file_structure_changed_signal.emit(this->file);      file_structure_changed_signal.emit(this->file);
1436      return true;  
1437        __refreshEntireGUI();
1438        progress_dialog->hide();
1439  }  }
1440    
1441  void MainWindow::on_action_file_save_as()  void MainWindow::on_action_file_save_as()
# Line 716  void MainWindow::on_action_file_save_as( Line 1446  void MainWindow::on_action_file_save_as(
1446    
1447  bool MainWindow::file_save_as()  bool MainWindow::file_save_as()
1448  {  {
1449      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);      Gtk::FileChooserDialog dialog(*this, _("Save As"), Gtk::FILE_CHOOSER_ACTION_SAVE);
1450      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
1451      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);      dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);
1452      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
1453      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
1454    
# Line 749  bool MainWindow::file_save_as() Line 1479  bool MainWindow::file_save_as()
1479      // show warning in the dialog      // show warning in the dialog
1480      Gtk::HBox descriptionArea;      Gtk::HBox descriptionArea;
1481      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
1482      Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));      Gtk::Image warningIcon;
1483        warningIcon.set_from_icon_name("dialog-warning",
1484                                       Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
1485      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
1486  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
1487      view::WrapLabel description;      view::WrapLabel description;
# Line 770  bool MainWindow::file_save_as() Line 1502  bool MainWindow::file_save_as()
1502      descriptionArea.show_all();      descriptionArea.show_all();
1503    
1504      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1505          file_structure_to_be_changed_signal.emit(this->file);          std::string filename = dialog.get_filename();
1506          try {          if (!Glib::str_has_suffix(filename, ".gig")) {
1507              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;  
1508          }          }
1509          __import_queued_samples();          printf("filename=%s\n", filename.c_str());
1510          file_structure_changed_signal.emit(this->file);  
1511            progress_dialog = new ProgressDialog( //FIXME: memory leak!
1512                _("Saving") +  Glib::ustring(" '") +
1513                Glib::filename_display_basename(filename) + "' ...",
1514                *this
1515            );
1516            progress_dialog->show_all();
1517    
1518            saver = new Saver(file, filename); //FIXME: memory leak!
1519            saver->signal_progress().connect(
1520                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
1521            saver->signal_finished().connect(
1522                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
1523            saver->signal_error().connect(
1524                sigc::mem_fun(*this, &MainWindow::on_saver_error));
1525            saver->launch();
1526    
1527          return true;          return true;
1528      }      }
1529      return false;      return false;
# Line 801  bool MainWindow::file_save_as() Line 1533  bool MainWindow::file_save_as()
1533  void MainWindow::__import_queued_samples() {  void MainWindow::__import_queued_samples() {
1534      std::cout << "Starting sample import\n" << std::flush;      std::cout << "Starting sample import\n" << std::flush;
1535      Glib::ustring error_files;      Glib::ustring error_files;
1536      printf("Samples to import: %d\n", m_SampleImportQueue.size());      printf("Samples to import: %d\n", int(m_SampleImportQueue.size()));
1537      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();      for (std::map<gig::Sample*, SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
1538           iter != m_SampleImportQueue.end(); ) {           iter != m_SampleImportQueue.end(); ) {
1539          printf("Importing sample %s\n",(*iter).sample_path.c_str());          printf("Importing sample %s\n",iter->second.sample_path.c_str());
1540          SF_INFO info;          SF_INFO info;
1541          info.format = 0;          info.format = 0;
1542          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);          SNDFILE* hFile = sf_open(iter->second.sample_path.c_str(), SFM_READ, &info);
1543          sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);          sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);
1544          try {          try {
1545              if (!hFile) throw std::string(_("could not open file"));              if (!hFile) throw std::string(_("could not open file"));
# Line 830  void MainWindow::__import_queued_samples Line 1562  void MainWindow::__import_queued_samples
1562                      throw std::string(_("format not supported")); // unsupported subformat (yet?)                      throw std::string(_("format not supported")); // unsupported subformat (yet?)
1563              }              }
1564    
1565                // reset write position for sample
1566                iter->first->SetPos(0);
1567    
1568              const int bufsize = 10000;              const int bufsize = 10000;
1569              switch (bitdepth) {              switch (bitdepth) {
1570                  case 16: {                  case 16: {
# Line 839  void MainWindow::__import_queued_samples Line 1574  void MainWindow::__import_queued_samples
1574                          // libsndfile does the conversion for us (if needed)                          // libsndfile does the conversion for us (if needed)
1575                          int n = sf_readf_short(hFile, buffer, bufsize);                          int n = sf_readf_short(hFile, buffer, bufsize);
1576                          // write from buffer directly (physically) into .gig file                          // write from buffer directly (physically) into .gig file
1577                          iter->gig_sample->Write(buffer, n);                          iter->first->Write(buffer, n);
1578                          cnt -= n;                          cnt -= n;
1579                      }                      }
1580                      delete[] buffer;                      delete[] buffer;
# Line 859  void MainWindow::__import_queued_samples Line 1594  void MainWindow::__import_queued_samples
1594                              dstbuf[j++] = srcbuf[i] >> 24;                              dstbuf[j++] = srcbuf[i] >> 24;
1595                          }                          }
1596                          // write from buffer directly (physically) into .gig file                          // write from buffer directly (physically) into .gig file
1597                          iter->gig_sample->Write(dstbuf, n);                          iter->first->Write(dstbuf, n);
1598                          cnt -= n;                          cnt -= n;
1599                      }                      }
1600                      delete[] srcbuf;                      delete[] srcbuf;
# Line 870  void MainWindow::__import_queued_samples Line 1605  void MainWindow::__import_queued_samples
1605              // cleanup              // cleanup
1606              sf_close(hFile);              sf_close(hFile);
1607              // let the sampler re-cache the sample if needed              // let the sampler re-cache the sample if needed
1608              sample_changed_signal.emit(iter->gig_sample);              sample_changed_signal.emit(iter->first);
1609              // on success we remove the sample from the import queue,              // on success we remove the sample from the import queue,
1610              // otherwise keep it, maybe it works the next time ?              // otherwise keep it, maybe it works the next time ?
1611              std::list<SampleImportItem>::iterator cur = iter;              std::map<gig::Sample*, SampleImportItem>::iterator cur = iter;
1612              ++iter;              ++iter;
1613              m_SampleImportQueue.erase(cur);              m_SampleImportQueue.erase(cur);
1614          } catch (std::string what) {          } catch (std::string what) {
1615              // remember the files that made trouble (and their cause)              // remember the files that made trouble (and their cause)
1616              if (!error_files.empty()) error_files += "\n";              if (!error_files.empty()) error_files += "\n";
1617              error_files += (*iter).sample_path += " (" + what + ")";              error_files += iter->second.sample_path += " (" + what + ")";
1618              ++iter;              ++iter;
1619          }          }
1620      }      }
# Line 897  void MainWindow::on_action_file_properti Line 1632  void MainWindow::on_action_file_properti
1632      propDialog.deiconify();      propDialog.deiconify();
1633  }  }
1634    
1635    void MainWindow::on_action_warn_user_on_extensions() {
1636        Settings::singleton()->warnUserOnExtensions =
1637            !Settings::singleton()->warnUserOnExtensions;
1638    }
1639    
1640    void MainWindow::on_action_sync_sampler_instrument_selection() {
1641        Settings::singleton()->syncSamplerInstrumentSelection =
1642            !Settings::singleton()->syncSamplerInstrumentSelection;
1643    }
1644    
1645    void MainWindow::on_action_move_root_note_with_region_moved() {
1646        Settings::singleton()->moveRootNoteWithRegionMoved =
1647            !Settings::singleton()->moveRootNoteWithRegionMoved;
1648    }
1649    
1650  void MainWindow::on_action_help_about()  void MainWindow::on_action_help_about()
1651  {  {
1652      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
# Line 906  void MainWindow::on_action_help_about() Line 1656  void MainWindow::on_action_help_about()
1656      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
1657  #endif  #endif
1658      dialog.set_version(VERSION);      dialog.set_version(VERSION);
1659      dialog.set_copyright("Copyright (C) 2006-2013 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2017 Andreas Persson");
1660      dialog.set_comments(_(      const std::string sComment =
1661          "Released under the GNU General Public License.\n"          _("Built " __DATE__ "\nUsing ") +
1662          "\n"          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
1663          "Please notice that this is still a very young instrument editor. "          _(
1664          "So better backup your Gigasampler files before editing them with "              "Gigedit is released under the GNU General Public License.\n"
1665          "this application.\n"              "\n"
1666          "\n"              "This program is distributed WITHOUT ANY WARRANTY; So better "
1667          "Please report bugs to: http://bugs.linuxsampler.org")              "backup your Gigasampler/GigaStudio files before editing them with "
1668      );              "this application.\n"
1669                "\n"
1670                "Please report bugs to: http://bugs.linuxsampler.org"
1671            );
1672        dialog.set_comments(sComment.c_str());
1673      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("http://www.linuxsampler.org");
1674      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("http://www.linuxsampler.org");
1675      dialog.run();      dialog.run();
1676  }  }
1677    
1678  PropDialog::PropDialog()  PropDialog::PropDialog()
1679      : eName(_("Name")),      : eFileFormat(_("File Format")),
1680          eName(_("Name")),
1681        eCreationDate(_("Creation date")),        eCreationDate(_("Creation date")),
1682        eComments(_("Comments")),        eComments(_("Comments")),
1683        eProduct(_("Product")),        eProduct(_("Product")),
# Line 938  PropDialog::PropDialog() Line 1693  PropDialog::PropDialog()
1693        eSourceForm(_("Source form")),        eSourceForm(_("Source form")),
1694        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
1695        eSubject(_("Subject")),        eSubject(_("Subject")),
1696        quitButton(Gtk::Stock::CLOSE),        quitButton(_("_Close"), true),
1697        table(2, 1)        table(2, 1),
1698          m_file(NULL)
1699  {  {
1700      set_title(_("File Properties"));      set_title(_("File Properties"));
1701      eName.set_width_chars(50);      eName.set_width_chars(50);
# Line 961  PropDialog::PropDialog() Line 1717  PropDialog::PropDialog()
1717      connect(eCommissioned, &DLS::Info::Commissioned);      connect(eCommissioned, &DLS::Info::Commissioned);
1718      connect(eSubject, &DLS::Info::Subject);      connect(eSubject, &DLS::Info::Subject);
1719    
1720        table.add(eFileFormat);
1721      table.add(eName);      table.add(eName);
1722      table.add(eCreationDate);      table.add(eCreationDate);
1723      table.add(eComments);      table.add(eComments);
# Line 991  PropDialog::PropDialog() Line 1748  PropDialog::PropDialog()
1748      quitButton.grab_focus();      quitButton.grab_focus();
1749      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
1750          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &PropDialog::hide));
1751        eFileFormat.signal_value_changed().connect(
1752            sigc::mem_fun(*this, &PropDialog::onFileFormatChanged));
1753    
1754      quitButton.show();      quitButton.show();
1755      vbox.show();      vbox.show();
1756      show_all_children();      show_all_children();
1757  }  }
1758    
1759    void PropDialog::set_file(gig::File* file)
1760    {
1761        m_file = file;
1762    
1763        // update file format version combo box
1764        const std::string sGiga = "Gigasampler/GigaStudio v";
1765        const int major = file->pVersion->major;
1766        std::vector<std::string> txts;
1767        std::vector<int> values;
1768        txts.push_back(sGiga + "2"); values.push_back(2);
1769        txts.push_back(sGiga + "3/v4"); values.push_back(3);
1770        if (major != 2 && major != 3) {
1771            txts.push_back(sGiga + ToString(major)); values.push_back(major);
1772        }
1773        std::vector<const char*> texts;
1774        for (int i = 0; i < txts.size(); ++i) texts.push_back(txts[i].c_str());
1775        texts.push_back(NULL); values.push_back(0);
1776        eFileFormat.set_choices(&texts[0], &values[0]);
1777        eFileFormat.set_value(major);
1778    }
1779    
1780    void PropDialog::onFileFormatChanged() {
1781        const int major = eFileFormat.get_value();
1782        if (m_file) m_file->pVersion->major = major;
1783    }
1784    
1785  void PropDialog::set_info(DLS::Info* info)  void PropDialog::set_info(DLS::Info* info)
1786  {  {
1787      update(info);      update(info);
# Line 1031  void InstrumentProps::set_MIDIProgram(ui Line 1816  void InstrumentProps::set_MIDIProgram(ui
1816  }  }
1817    
1818  InstrumentProps::InstrumentProps() :  InstrumentProps::InstrumentProps() :
1819      quitButton(Gtk::Stock::CLOSE),      quitButton(_("_Close"), true),
1820      table(2,1),      table(2,1),
1821      eName(_("Name")),      eName(_("Name")),
1822      eIsDrum(_("Is drum")),      eIsDrum(_("Is drum")),
# Line 1128  void MainWindow::file_changed() Line 1913  void MainWindow::file_changed()
1913      }      }
1914  }  }
1915    
1916    void MainWindow::updateSampleRefCountMap(gig::File* gig) {
1917        sample_ref_count.clear();
1918        
1919        if (!gig) return;
1920    
1921        for (gig::Instrument* instrument = gig->GetFirstInstrument(); instrument;
1922             instrument = gig->GetNextInstrument())
1923        {
1924            for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
1925                 rgn = instrument->GetNextRegion())
1926            {
1927                for (int i = 0; i < 256; ++i) {
1928                    if (!rgn->pDimensionRegions[i]) continue;
1929                    if (rgn->pDimensionRegions[i]->pSample) {
1930                        sample_ref_count[rgn->pDimensionRegions[i]->pSample]++;
1931                    }
1932                }
1933            }
1934        }
1935    }
1936    
1937  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
1938  {  {
1939      file = 0;      file = 0;
1940      set_file_is_shared(isSharedInstrument);      set_file_is_shared(isSharedInstrument);
1941    
1942      this->filename = filename ? filename : _("Unsaved Gig File");      this->filename =
1943            (filename && strlen(filename) > 0) ?
1944                filename : (!gig->GetFileName().empty()) ?
1945                    gig->GetFileName() : _("Unsaved Gig File");
1946      set_title(Glib::filename_display_basename(this->filename));      set_title(Glib::filename_display_basename(this->filename));
1947      file_has_name = filename;      file_has_name = filename;
1948      file_is_changed = false;      file_is_changed = false;
1949    
1950        propDialog.set_file(gig);
1951      propDialog.set_info(gig->pInfo);      propDialog.set_info(gig->pInfo);
1952    
1953      instrument_name_connection.block();      instrument_name_connection.block();
1954        int index = 0;
1955      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
1956           instrument = gig->GetNextInstrument()) {           instrument = gig->GetNextInstrument(), ++index) {
1957          Glib::ustring name(instrument->pInfo->Name);          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
1958    
1959          Gtk::TreeModel::iterator iter = m_refTreeModel->append();          Gtk::TreeModel::iterator iter = m_refTreeModel->append();
1960          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
1961            row[m_Columns.m_col_nr] = index;
1962          row[m_Columns.m_col_name] = name;          row[m_Columns.m_col_name] = name;
1963          row[m_Columns.m_col_instr] = instrument;          row[m_Columns.m_col_instr] = instrument;
1964    
1965          add_instrument_to_menu(name);          add_instrument_to_menu(name);
1966      }      }
1967      instrument_name_connection.unblock();      instrument_name_connection.unblock();
1968      uiManager->get_widget("/MenuBar/MenuInstrument")->show();      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();
1969    
1970        updateSampleRefCountMap(gig);
1971    
1972      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {
1973          if (group->Name != "") {          if (group->Name != "") {
1974              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
1975              Gtk::TreeModel::Row rowGroup = *iterGroup;              Gtk::TreeModel::Row rowGroup = *iterGroup;
1976              rowGroup[m_SamplesModel.m_col_name]   = group->Name.c_str();              rowGroup[m_SamplesModel.m_col_name]   = gig_to_utf8(group->Name);
1977              rowGroup[m_SamplesModel.m_col_group]  = group;              rowGroup[m_SamplesModel.m_col_group]  = group;
1978              rowGroup[m_SamplesModel.m_col_sample] = NULL;              rowGroup[m_SamplesModel.m_col_sample] = NULL;
1979              for (gig::Sample* sample = group->GetFirstSample();              for (gig::Sample* sample = group->GetFirstSample();
# Line 1167  void MainWindow::load_gig(gig::File* gig Line 1981  void MainWindow::load_gig(gig::File* gig
1981                  Gtk::TreeModel::iterator iterSample =                  Gtk::TreeModel::iterator iterSample =
1982                      m_refSamplesTreeModel->append(rowGroup.children());                      m_refSamplesTreeModel->append(rowGroup.children());
1983                  Gtk::TreeModel::Row rowSample = *iterSample;                  Gtk::TreeModel::Row rowSample = *iterSample;
1984                  rowSample[m_SamplesModel.m_col_name]   = sample->pInfo->Name.c_str();                  rowSample[m_SamplesModel.m_col_name] =
1985                        gig_to_utf8(sample->pInfo->Name);
1986                  rowSample[m_SamplesModel.m_col_sample] = sample;                  rowSample[m_SamplesModel.m_col_sample] = sample;
1987                  rowSample[m_SamplesModel.m_col_group]  = NULL;                  rowSample[m_SamplesModel.m_col_group]  = NULL;
1988                    int refcount = sample_ref_count.count(sample) ? sample_ref_count[sample] : 0;
1989                    rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
1990                    rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
1991              }              }
1992          }          }
1993      }      }
1994        
1995        for (int i = 0; gig->GetScriptGroup(i); ++i) {
1996            gig::ScriptGroup* group = gig->GetScriptGroup(i);
1997    
1998            Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
1999            Gtk::TreeModel::Row rowGroup = *iterGroup;
2000            rowGroup[m_ScriptsModel.m_col_name]   = gig_to_utf8(group->Name);
2001            rowGroup[m_ScriptsModel.m_col_group]  = group;
2002            rowGroup[m_ScriptsModel.m_col_script] = NULL;
2003            for (int s = 0; group->GetScript(s); ++s) {
2004                gig::Script* script = group->GetScript(s);
2005    
2006                Gtk::TreeModel::iterator iterScript =
2007                    m_refScriptsTreeModel->append(rowGroup.children());
2008                Gtk::TreeModel::Row rowScript = *iterScript;
2009                rowScript[m_ScriptsModel.m_col_name] = gig_to_utf8(script->Name);
2010                rowScript[m_ScriptsModel.m_col_script] = script;
2011                rowScript[m_ScriptsModel.m_col_group]  = NULL;
2012            }
2013        }
2014        // unfold all sample groups & script groups by default
2015        m_TreeViewSamples.expand_all();
2016        m_TreeViewScripts.expand_all();
2017    
2018      file = gig;      file = gig;
2019    
# Line 1180  void MainWindow::load_gig(gig::File* gig Line 2021  void MainWindow::load_gig(gig::File* gig
2021      m_TreeView.get_selection()->select(Gtk::TreePath("0"));      m_TreeView.get_selection()->select(Gtk::TreePath("0"));
2022    
2023      instr_props_set_instrument();      instr_props_set_instrument();
2024        gig::Instrument* instrument = get_instrument();
2025        if (instrument) {
2026            midiRules.set_instrument(instrument);
2027        }
2028  }  }
2029    
2030  bool MainWindow::instr_props_set_instrument()  bool MainWindow::instr_props_set_instrument()
2031  {  {
2032      instrumentProps.signal_name_changed().clear();      instrumentProps.signal_name_changed().clear();
2033    
2034      Gtk::TreeModel::const_iterator it =      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
2035          m_TreeView.get_selection()->get_selected();      if (rows.empty()) {
2036            instrumentProps.hide();
2037            return false;
2038        }
2039        Gtk::TreeModel::const_iterator it = m_refTreeModel->get_iter(rows[0]);
2040      if (it) {      if (it) {
2041          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
2042          gig::Instrument* instrument = row[m_Columns.m_col_instr];          gig::Instrument* instrument = row[m_Columns.m_col_instr];
# Line 1221  void MainWindow::instr_name_changed_by_i Line 2070  void MainWindow::instr_name_changed_by_i
2070      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_Columns.m_col_name];
2071    
2072      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_Columns.m_col_instr];
2073      if (instrument->pInfo->Name != name) {      Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
2074          row[m_Columns.m_col_name] = instrument->pInfo->Name;      if (gigname != name) {
2075            row[m_Columns.m_col_name] = gigname;
2076      }      }
2077  }  }
2078    
2079    void MainWindow::show_midi_rules()
2080    {
2081        if (gig::Instrument* instrument = get_instrument())
2082        {
2083            midiRules.set_instrument(instrument);
2084            midiRules.show();
2085            midiRules.deiconify();
2086        }
2087    }
2088    
2089    void MainWindow::show_script_slots() {
2090        if (!file) return;
2091        // get selected instrument
2092        std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
2093        if (rows.empty()) return;
2094        Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
2095        if (!it) return;
2096        Gtk::TreeModel::Row row = *it;
2097        gig::Instrument* instrument = row[m_Columns.m_col_instr];
2098        if (!instrument) return;
2099    
2100        ScriptSlots* window = new ScriptSlots;
2101        window->setInstrument(instrument);
2102        //window->reparent(*this);
2103        window->show();
2104    }
2105    
2106    void MainWindow::on_action_refresh_all() {
2107        __refreshEntireGUI();
2108    }
2109    
2110  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
2111      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
2112          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
# Line 1237  void MainWindow::on_action_view_status_b Line 2118  void MainWindow::on_action_view_status_b
2118      else                    m_StatusBar.hide();      else                    m_StatusBar.hide();
2119  }  }
2120    
2121    void MainWindow::on_auto_restore_win_dim() {
2122        Gtk::CheckMenuItem* item =
2123            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
2124        if (!item) {
2125            std::cerr << "/MenuBar/MenuView/AutoRestoreWinDim == NULL\n";
2126            return;
2127        }
2128        Settings::singleton()->autoRestoreWindowDimension = item->get_active();
2129    }
2130    
2131    void MainWindow::on_save_with_temporary_file() {
2132        Gtk::CheckMenuItem* item =
2133            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));
2134        if (!item) {
2135            std::cerr << "/MenuBar/MenuSettings/SaveWithTemporaryFile == NULL\n";
2136            return;
2137        }
2138        Settings::singleton()->saveWithTemporaryFile = item->get_active();
2139    }
2140    
2141    bool MainWindow::is_copy_samples_unity_note_enabled() const {
2142        Gtk::CheckMenuItem* item =
2143            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
2144        if (!item) {
2145            std::cerr << "/MenuBar/MenuEdit/CopySampleUnity == NULL\n";
2146            return true;
2147        }
2148        return item->get_active();
2149    }
2150    
2151    bool MainWindow::is_copy_samples_fine_tune_enabled() const {
2152        Gtk::CheckMenuItem* item =
2153            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
2154        if (!item) {
2155            std::cerr << "/MenuBar/MenuEdit/CopySampleTune == NULL\n";
2156            return true;
2157        }
2158        return item->get_active();
2159    }
2160    
2161    bool MainWindow::is_copy_samples_loop_enabled() const {
2162        Gtk::CheckMenuItem* item =
2163            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
2164        if (!item) {
2165            std::cerr << "/MenuBar/MenuEdit/CopySampleLoop == NULL\n";
2166            return true;
2167        }
2168        return item->get_active();
2169    }
2170    
2171  void MainWindow::on_button_release(GdkEventButton* button)  void MainWindow::on_button_release(GdkEventButton* button)
2172  {  {
2173      if (button->type == GDK_2BUTTON_PRESS) {      if (button->type == GDK_2BUTTON_PRESS) {
2174          show_instr_props();          show_instr_props();
2175      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
2176            // gig v2 files have no midi rules
2177            const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
2178            static_cast<Gtk::MenuItem*>(
2179                uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(
2180                    bEnabled
2181                );
2182            static_cast<Gtk::MenuItem*>(
2183                uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
2184                    bEnabled
2185                );
2186          popup_menu->popup(button->button, button->time);          popup_menu->popup(button->button, button->time);
2187      }      }
2188  }  }
# Line 1261  void MainWindow::on_instrument_selection Line 2202  void MainWindow::on_instrument_selection
2202      }      }
2203  }  }
2204    
2205    void MainWindow::select_instrument(gig::Instrument* instrument) {
2206        if (!instrument) return;
2207    
2208        Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
2209        for (int i = 0; i < model->children().size(); ++i) {
2210            Gtk::TreeModel::Row row = model->children()[i];
2211            if (row[m_Columns.m_col_instr] == instrument) {
2212                // select and show the respective instrument in the list view
2213                show_intruments_tab();
2214                m_TreeView.get_selection()->unselect_all();
2215                m_TreeView.get_selection()->select(model->children()[i]);
2216                std::vector<Gtk::TreeModel::Path> rows =
2217                    m_TreeView.get_selection()->get_selected_rows();
2218                if (!rows.empty())
2219                    m_TreeView.scroll_to_row(rows[0]);
2220                on_sel_change(); // the regular instrument selection change callback
2221            }
2222        }
2223    }
2224    
2225    /// Returns true if requested dimension region was successfully selected and scrolled to in the list view, false on error.
2226    bool MainWindow::select_dimension_region(gig::DimensionRegion* dimRgn) {
2227        gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();
2228        gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();
2229    
2230        Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
2231        for (int i = 0; i < model->children().size(); ++i) {
2232            Gtk::TreeModel::Row row = model->children()[i];
2233            if (row[m_Columns.m_col_instr] == pInstrument) {
2234                // select and show the respective instrument in the list view
2235                show_intruments_tab();
2236                m_TreeView.get_selection()->unselect_all();
2237                m_TreeView.get_selection()->select(model->children()[i]);
2238                std::vector<Gtk::TreeModel::Path> rows =
2239                    m_TreeView.get_selection()->get_selected_rows();
2240                if (!rows.empty())
2241                    m_TreeView.scroll_to_row(rows[0]);
2242                on_sel_change(); // the regular instrument selection change callback
2243    
2244                // select respective region in the region selector
2245                m_RegionChooser.set_region(pRegion);
2246    
2247                // select and show the respective dimension region in the editor
2248                //update_dimregs();
2249                if (!m_DimRegionChooser.select_dimregion(dimRgn)) return false;
2250                //dimreg_edit.set_dim_region(dimRgn);
2251    
2252                return true;
2253            }
2254        }
2255    
2256        return false;
2257    }
2258    
2259    void MainWindow::select_sample(gig::Sample* sample) {
2260        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
2261        for (int g = 0; g < model->children().size(); ++g) {
2262            Gtk::TreeModel::Row rowGroup = model->children()[g];
2263            for (int s = 0; s < rowGroup.children().size(); ++s) {
2264                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
2265                if (rowSample[m_SamplesModel.m_col_sample] == sample) {
2266                    show_samples_tab();
2267                    m_TreeViewSamples.get_selection()->unselect_all();
2268                    m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);
2269                    std::vector<Gtk::TreeModel::Path> rows =
2270                        m_TreeViewSamples.get_selection()->get_selected_rows();
2271                    if (rows.empty()) return;
2272                    m_TreeViewSamples.scroll_to_row(rows[0]);
2273                    return;
2274                }
2275            }
2276        }
2277    }
2278    
2279  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
2280      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
2281            // by default if Ctrl keys is pressed down, then a mouse right-click
2282            // does not select the respective row, so we must assure this
2283            // programmatically ...
2284            /*{
2285                Gtk::TreeModel::Path path;
2286                Gtk::TreeViewColumn* pColumn = NULL;
2287                int cellX, cellY;
2288                bool bSuccess = m_TreeViewSamples.get_path_at_pos(
2289                    (int)button->x, (int)button->y,
2290                    path, pColumn, cellX, cellY
2291                );
2292                if (bSuccess) {
2293                    if (m_TreeViewSamples.get_selection()->count_selected_rows() <= 0) {
2294                        printf("not selected !!!\n");
2295                        m_TreeViewSamples.get_selection()->select(path);
2296                    }
2297                }
2298            }*/
2299    
2300          Gtk::Menu* sample_popup =          Gtk::Menu* sample_popup =
2301              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));
2302          // update enabled/disabled state of sample popup items          // update enabled/disabled state of sample popup items
2303          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
2304          Gtk::TreeModel::iterator it = sel->get_selected();          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2305          bool group_selected  = false;          const int n = rows.size();
2306          bool sample_selected = false;          int nGroups  = 0;
2307          if (it) {          int nSamples = 0;
2308            for (int r = 0; r < n; ++r) {
2309                Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
2310                if (!it) continue;
2311              Gtk::TreeModel::Row row = *it;              Gtk::TreeModel::Row row = *it;
2312              group_selected  = row[m_SamplesModel.m_col_group];              if (row[m_SamplesModel.m_col_group]) nGroups++;
2313              sample_selected = row[m_SamplesModel.m_col_sample];              if (row[m_SamplesModel.m_col_sample]) nSamples++;
2314          }          }
2315    
2316          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
2317              set_sensitive(group_selected || sample_selected);              set_sensitive(n == 1);
2318          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
2319              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
2320          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->
2321              set_sensitive(file);              set_sensitive(file);
2322            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/ShowSampleRefs"))->
2323                set_sensitive(nSamples == 1);
2324          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
2325              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
2326          // show sample popup          // show sample popup
2327          sample_popup->popup(button->button, button->time);          sample_popup->popup(button->button, button->time);
2328    
2329            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->
2330                set_sensitive(n == 1);
2331            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->
2332                set_sensitive(n);
2333            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddGroup"))->
2334                set_sensitive(file);
2335            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/ShowSampleRefs"))->
2336                set_sensitive(nSamples == 1);
2337            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->
2338                set_sensitive(n);
2339      }      }
2340  }  }
2341    
2342    void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {
2343        if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
2344            Gtk::Menu* script_popup =
2345                dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));
2346            // update enabled/disabled state of sample popup items
2347            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2348            Gtk::TreeModel::iterator it = sel->get_selected();
2349            bool group_selected  = false;
2350            bool script_selected = false;
2351            if (it) {
2352                Gtk::TreeModel::Row row = *it;
2353                group_selected  = row[m_ScriptsModel.m_col_group];
2354                script_selected = row[m_ScriptsModel.m_col_script];
2355            }
2356            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->
2357                set_sensitive(group_selected || script_selected);
2358            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->
2359                set_sensitive(file);
2360            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/EditScript"))->
2361                set_sensitive(script_selected);    
2362            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->
2363                set_sensitive(group_selected || script_selected);
2364            // show sample popup
2365            script_popup->popup(button->button, button->time);
2366    
2367            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->
2368                set_sensitive(group_selected || script_selected);
2369            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->
2370                set_sensitive(file);
2371            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/EditScript"))->
2372                set_sensitive(script_selected);    
2373            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->
2374                set_sensitive(group_selected || script_selected);
2375        }
2376    }
2377    
2378  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
2379      const Glib::ustring& name, int position) {      const Glib::ustring& name, int position) {
# Line 1322  void MainWindow::remove_instrument_from_ Line 2408  void MainWindow::remove_instrument_from_
2408  }  }
2409    
2410  void MainWindow::add_instrument(gig::Instrument* instrument) {  void MainWindow::add_instrument(gig::Instrument* instrument) {
2411      const char* name = instrument->pInfo->Name.c_str();      const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
2412    
2413      // update instrument tree view      // update instrument tree view
2414      instrument_name_connection.block();      instrument_name_connection.block();
2415      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
2416      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
2417        rowInstr[m_Columns.m_col_nr] = m_refTreeModel->children().size() - 1;
2418      rowInstr[m_Columns.m_col_name] = name;      rowInstr[m_Columns.m_col_name] = name;
2419      rowInstr[m_Columns.m_col_instr] = instrument;      rowInstr[m_Columns.m_col_instr] = instrument;
2420      instrument_name_connection.unblock();      instrument_name_connection.unblock();
# Line 1344  void MainWindow::on_action_add_instrumen Line 2431  void MainWindow::on_action_add_instrumen
2431      if (!file) return;      if (!file) return;
2432      gig::Instrument* instrument = file->AddInstrument();      gig::Instrument* instrument = file->AddInstrument();
2433      __instrument_indexer++;      __instrument_indexer++;
2434      instrument->pInfo->Name =      instrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument ") +
2435          _("Unnamed Instrument ") + ToString(__instrument_indexer);                                              ToString(__instrument_indexer));
2436    
2437      add_instrument(instrument);      add_instrument(instrument);
2438  }  }
# Line 1356  void MainWindow::on_action_duplicate_ins Line 2443  void MainWindow::on_action_duplicate_ins
2443      // retrieve the currently selected instrument      // retrieve the currently selected instrument
2444      // (being the original instrument to be duplicated)      // (being the original instrument to be duplicated)
2445      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
2446      Gtk::TreeModel::iterator itSelection = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2447      if (!itSelection) return;      for (int r = 0; r < rows.size(); ++r) {
2448      Gtk::TreeModel::Row row = *itSelection;          Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
2449      gig::Instrument* instrOrig = row[m_Columns.m_col_instr];          if (it) {
2450      if (!instrOrig) return;              Gtk::TreeModel::Row row = *it;
2451                gig::Instrument* instrOrig = row[m_Columns.m_col_instr];
2452      // duplicate the orginal instrument              if (instrOrig) {
2453      gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);                  // duplicate the orginal instrument
2454      instrNew->pInfo->Name =                  gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
2455          instrOrig->pInfo->Name + " (" + _("Copy") + ")";                  instrNew->pInfo->Name =
2456                        instrOrig->pInfo->Name +
2457                        gig_from_utf8(Glib::ustring(" (") + _("Copy") + ")");
2458    
2459      add_instrument(instrNew);                  add_instrument(instrNew);
2460                }
2461            }
2462        }
2463  }  }
2464    
2465  void MainWindow::on_action_remove_instrument() {  void MainWindow::on_action_remove_instrument() {
# Line 1384  void MainWindow::on_action_remove_instru Line 2476  void MainWindow::on_action_remove_instru
2476      }      }
2477    
2478      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
2479      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2480      if (it) {      for (int r = rows.size() - 1; r >= 0; --r) {
2481            Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
2482            if (!it) continue;
2483          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
2484          gig::Instrument* instr = row[m_Columns.m_col_instr];          gig::Instrument* instr = row[m_Columns.m_col_instr];
2485          try {          try {
# Line 1400  void MainWindow::on_action_remove_instru Line 2494  void MainWindow::on_action_remove_instru
2494    
2495              // remove row from instruments tree view              // remove row from instruments tree view
2496              m_refTreeModel->erase(it);              m_refTreeModel->erase(it);
2497                // update "Nr" column of all instrument rows
2498                {
2499                    int index = 0;
2500                    for (Gtk::TreeModel::iterator it = m_refTreeModel->children().begin();
2501                         it != m_refTreeModel->children().end(); ++it, ++index)
2502                    {
2503                        Gtk::TreeModel::Row row = *it;
2504                        row[m_Columns.m_col_nr] = index;
2505                    }
2506                }
2507    
2508  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
2509              // select another instrument (in gtk3 this is done              // select another instrument (in gtk3 this is done
# Line 1413  void MainWindow::on_action_remove_instru Line 2517  void MainWindow::on_action_remove_instru
2517              }              }
2518  #endif  #endif
2519              instr_props_set_instrument();              instr_props_set_instrument();
2520                instr = get_instrument();
2521                if (instr) {
2522                    midiRules.set_instrument(instr);
2523                } else {
2524                    midiRules.hide();
2525                }
2526          } catch (RIFF::Exception e) {          } catch (RIFF::Exception e) {
2527              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
2528              msg.run();              msg.run();
# Line 1428  void MainWindow::on_action_sample_proper Line 2538  void MainWindow::on_action_sample_proper
2538      msg.run();      msg.run();
2539  }  }
2540    
2541    void MainWindow::on_action_add_script_group() {
2542        static int __script_indexer = 0;
2543        if (!file) return;
2544        gig::ScriptGroup* group = file->AddScriptGroup();
2545        group->Name = gig_from_utf8(_("Unnamed Group"));
2546        if (__script_indexer) group->Name += " " + ToString(__script_indexer);
2547        __script_indexer++;
2548        // update sample tree view
2549        Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
2550        Gtk::TreeModel::Row rowGroup = *iterGroup;
2551        rowGroup[m_ScriptsModel.m_col_name] = gig_to_utf8(group->Name);
2552        rowGroup[m_ScriptsModel.m_col_script] = NULL;
2553        rowGroup[m_ScriptsModel.m_col_group] = group;
2554        file_changed();
2555    }
2556    
2557    void MainWindow::on_action_add_script() {
2558        if (!file) return;
2559        // get selected group
2560        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2561        Gtk::TreeModel::iterator it = sel->get_selected();
2562        if (!it) return;
2563        Gtk::TreeModel::Row row = *it;
2564        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
2565        if (!group) { // not a group, but a script is selected (probably)
2566            gig::Script* script = row[m_ScriptsModel.m_col_script];
2567            if (!script) return;
2568            it = row.parent(); // resolve parent (that is the script's group)
2569            if (!it) return;
2570            row = *it;
2571            group = row[m_ScriptsModel.m_col_group];
2572            if (!group) return;
2573        }
2574    
2575        // add a new script to the .gig file
2576        gig::Script* script = group->AddScript();    
2577        Glib::ustring name = _("Unnamed Script");
2578        script->Name = gig_from_utf8(name);
2579    
2580        // add script to the tree view
2581        Gtk::TreeModel::iterator iterScript =
2582            m_refScriptsTreeModel->append(row.children());
2583        Gtk::TreeModel::Row rowScript = *iterScript;
2584        rowScript[m_ScriptsModel.m_col_name] = name;
2585        rowScript[m_ScriptsModel.m_col_script] = script;
2586        rowScript[m_ScriptsModel.m_col_group]  = NULL;
2587    
2588        // unfold group of new script item in treeview
2589        Gtk::TreeModel::Path path(iterScript);
2590        m_TreeViewScripts.expand_to_path(path);
2591    }
2592    
2593    void MainWindow::on_action_edit_script() {
2594        if (!file) return;
2595        // get selected script
2596        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2597        Gtk::TreeModel::iterator it = sel->get_selected();
2598        if (!it) return;
2599        Gtk::TreeModel::Row row = *it;
2600        gig::Script* script = row[m_ScriptsModel.m_col_script];
2601        if (!script) return;
2602    
2603        ScriptEditor* editor = new ScriptEditor;
2604        editor->signal_script_to_be_changed.connect(
2605            signal_script_to_be_changed.make_slot()
2606        );
2607        editor->signal_script_changed.connect(
2608            signal_script_changed.make_slot()
2609        );
2610        editor->setScript(script);
2611        //editor->reparent(*this);
2612        editor->show();
2613    }
2614    
2615    void MainWindow::on_action_remove_script() {
2616        if (!file) return;
2617        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2618        Gtk::TreeModel::iterator it = sel->get_selected();
2619        if (it) {
2620            Gtk::TreeModel::Row row = *it;
2621            gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
2622            gig::Script* script     = row[m_ScriptsModel.m_col_script];
2623            Glib::ustring name      = row[m_ScriptsModel.m_col_name];
2624            try {
2625                // remove script group or script from the gig file
2626                if (group) {
2627                    // notify everybody that we're going to remove these samples
2628    //TODO:         scripts_to_be_removed_signal.emit(members);
2629                    // delete the group in the .gig file including the
2630                    // samples that belong to the group
2631                    file->DeleteScriptGroup(group);
2632                    // notify that we're done with removal
2633    //TODO:         scripts_removed_signal.emit();
2634                    file_changed();
2635                } else if (script) {
2636                    // notify everybody that we're going to remove this sample
2637    //TODO:         std::list<gig::Script*> lscripts;
2638    //TODO:         lscripts.push_back(script);
2639    //TODO:         scripts_to_be_removed_signal.emit(lscripts);
2640                    // remove sample from the .gig file
2641                    script->GetGroup()->DeleteScript(script);
2642                    // notify that we're done with removal
2643    //TODO:         scripts_removed_signal.emit();
2644                    dimreg_changed();
2645                    file_changed();
2646                }
2647                // remove respective row(s) from samples tree view
2648                m_refScriptsTreeModel->erase(it);
2649            } catch (RIFF::Exception e) {
2650                // pretend we're done with removal (i.e. to avoid dead locks)
2651    //TODO:     scripts_removed_signal.emit();
2652                // show error message
2653                Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
2654                msg.run();
2655            }
2656        }
2657    }
2658    
2659  void MainWindow::on_action_add_group() {  void MainWindow::on_action_add_group() {
2660      static int __sample_indexer = 0;      static int __sample_indexer = 0;
2661      if (!file) return;      if (!file) return;
2662      gig::Group* group = file->AddGroup();      gig::Group* group = file->AddGroup();
2663      group->Name = _("Unnamed Group");      group->Name = gig_from_utf8(_("Unnamed Group"));
2664      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
2665      __sample_indexer++;      __sample_indexer++;
2666      // update sample tree view      // update sample tree view
2667      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
2668      Gtk::TreeModel::Row rowGroup = *iterGroup;      Gtk::TreeModel::Row rowGroup = *iterGroup;
2669      rowGroup[m_SamplesModel.m_col_name] = group->Name.c_str();      rowGroup[m_SamplesModel.m_col_name] = gig_to_utf8(group->Name);
2670      rowGroup[m_SamplesModel.m_col_sample] = NULL;      rowGroup[m_SamplesModel.m_col_sample] = NULL;
2671      rowGroup[m_SamplesModel.m_col_group] = group;      rowGroup[m_SamplesModel.m_col_group] = group;
2672      file_changed();      file_changed();
2673  }  }
2674    
2675    void MainWindow::on_action_replace_sample() {
2676        add_or_replace_sample(true);
2677    }
2678    
2679  void MainWindow::on_action_add_sample() {  void MainWindow::on_action_add_sample() {
2680        add_or_replace_sample(false);
2681    }
2682    
2683    void MainWindow::add_or_replace_sample(bool replace) {
2684      if (!file) return;      if (!file) return;
2685      // get selected group  
2686        // get selected group (and probably selected sample)
2687      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
2688      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2689        if (rows.empty()) return;
2690        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
2691      if (!it) return;      if (!it) return;
2692      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
2693        gig::Sample* sample = NULL;
2694      gig::Group* group = row[m_SamplesModel.m_col_group];      gig::Group* group = row[m_SamplesModel.m_col_group];
2695      if (!group) { // not a group, but a sample is selected (probably)      if (!group) { // not a group, but a sample is selected (probably)
2696          gig::Sample* sample = row[m_SamplesModel.m_col_sample];          if (replace) sample = row[m_SamplesModel.m_col_sample];
2697          if (!sample) return;          if (!row[m_SamplesModel.m_col_sample]) return;
2698          it = row.parent(); // resolve parent (that is the sample's group)          it = row.parent(); // resolve parent (that is the sample's group)
2699          if (!it) return;          if (!it) return;
2700          row = *it;          if (!replace) row = *it;
2701          group = row[m_SamplesModel.m_col_group];          group = (*it)[m_SamplesModel.m_col_group];
2702          if (!group) return;          if (!group) return;
2703      }      }
2704        if (replace && !sample) return;
2705    
2706      // show 'browse for file' dialog      // show 'browse for file' dialog
2707      Gtk::FileChooserDialog dialog(*this, _("Add Sample(s)"));      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));
2708      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2709      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
2710      dialog.set_select_multiple(true);      dialog.set_select_multiple(!replace); // allow multi audio file selection only when adding new samples, does not make sense when replacing a specific sample
2711    
2712      // matches all file types supported by libsndfile      // matches all file types supported by libsndfile
2713  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
# Line 1536  void MainWindow::on_action_add_sample() Line 2778  void MainWindow::on_action_add_sample()
2778                          sf_close(hFile); // close sound file                          sf_close(hFile); // close sound file
2779                          throw std::string(_("format not supported")); // unsupported subformat (yet?)                          throw std::string(_("format not supported")); // unsupported subformat (yet?)
2780                  }                  }
2781                  // add a new sample to the .gig file                  // add a new sample to the .gig file (if adding is requested actually)
2782                  gig::Sample* sample = file->AddSample();                  if (!replace) sample = file->AddSample();
2783                  // file name without path                  // file name without path
2784                  Glib::ustring filename = Glib::filename_display_basename(*iter);                  Glib::ustring filename = Glib::filename_display_basename(*iter);
2785                  // remove file extension if there is one                  // remove file extension if there is one
# Line 1547  void MainWindow::on_action_add_sample() Line 2789  void MainWindow::on_action_add_sample()
2789                          break;                          break;
2790                      }                      }
2791                  }                  }
2792                  sample->pInfo->Name = filename;                  sample->pInfo->Name = gig_from_utf8(filename);
2793                  sample->Channels = info.channels;                  sample->Channels = info.channels;
2794                  sample->BitDepth = bitdepth;                  sample->BitDepth = bitdepth;
2795                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;
# Line 1561  void MainWindow::on_action_add_sample() Line 2803  void MainWindow::on_action_add_sample()
2803                                 &instrument, sizeof(instrument)) != SF_FALSE)                                 &instrument, sizeof(instrument)) != SF_FALSE)
2804                  {                  {
2805                      sample->MIDIUnityNote = instrument.basenote;                      sample->MIDIUnityNote = instrument.basenote;
2806                        sample->FineTune      = instrument.detune;
2807    
2808                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {
2809                          sample->Loops = 1;                          sample->Loops = 1;
# Line 1587  void MainWindow::on_action_add_sample() Line 2830  void MainWindow::on_action_add_sample()
2830                  // physically when File::Save() is called)                  // physically when File::Save() is called)
2831                  sample->Resize(info.frames);                  sample->Resize(info.frames);
2832                  // make sure sample is part of the selected group                  // make sure sample is part of the selected group
2833                  group->AddSample(sample);                  if (!replace) group->AddSample(sample);
2834                  // schedule that physical resize and sample import                  // schedule that physical resize and sample import
2835                  // (data copying), performed when "Save" is requested                  // (data copying), performed when "Save" is requested
2836                  SampleImportItem sched_item;                  SampleImportItem sched_item;
2837                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
2838                  sched_item.sample_path = *iter;                  sched_item.sample_path = *iter;
2839                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue[sample] = sched_item;
2840                  // add sample to the tree view                  // add sample to the tree view
2841                  Gtk::TreeModel::iterator iterSample =                  if (replace) {
2842                      m_refSamplesTreeModel->append(row.children());                      row[m_SamplesModel.m_col_name] = gig_to_utf8(sample->pInfo->Name);
2843                  Gtk::TreeModel::Row rowSample = *iterSample;                  } else {
2844                  rowSample[m_SamplesModel.m_col_name]   = filename;                      Gtk::TreeModel::iterator iterSample =
2845                  rowSample[m_SamplesModel.m_col_sample] = sample;                          m_refSamplesTreeModel->append(row.children());
2846                  rowSample[m_SamplesModel.m_col_group]  = NULL;                      Gtk::TreeModel::Row rowSample = *iterSample;
2847                        rowSample[m_SamplesModel.m_col_name] =
2848                            gig_to_utf8(sample->pInfo->Name);
2849                        rowSample[m_SamplesModel.m_col_sample] = sample;
2850                        rowSample[m_SamplesModel.m_col_group]  = NULL;
2851                    }
2852                  // close sound file                  // close sound file
2853                  sf_close(hFile);                  sf_close(hFile);
2854                  file_changed();                  file_changed();
# Line 1611  void MainWindow::on_action_add_sample() Line 2859  void MainWindow::on_action_add_sample()
2859          }          }
2860          // 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
2861          if (!error_files.empty()) {          if (!error_files.empty()) {
2862              Glib::ustring txt = _("Could not add the following sample(s):\n") + error_files;              Glib::ustring txt =
2863                    (replace
2864                        ? _("Failed to replace sample with:\n")
2865                        : _("Could not add the following sample(s):\n"))
2866                    + error_files;
2867              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2868              msg.run();              msg.run();
2869          }          }
# Line 1654  void MainWindow::on_action_replace_all_s Line 2906  void MainWindow::on_action_replace_all_s
2906      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
2907      description.show();      description.show();
2908      entryArea.show_all();      entryArea.show_all();
2909      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2910      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
2911      dialog.set_select_multiple(false);      dialog.set_select_multiple(false);
2912      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 1669  void MainWindow::on_action_replace_all_s Line 2921  void MainWindow::on_action_replace_all_s
2921               sample; sample = file->GetNextSample())               sample; sample = file->GetNextSample())
2922          {          {
2923              std::string filename =              std::string filename =
2924                  folder + G_DIR_SEPARATOR_S + sample->pInfo->Name +                  folder + G_DIR_SEPARATOR_S +
2925                  postfixEntryBox.get_text().raw();                  Glib::filename_from_utf8(gig_to_utf8(sample->pInfo->Name) +
2926                                             postfixEntryBox.get_text());
2927              SF_INFO info;              SF_INFO info;
2928              info.format = 0;              info.format = 0;
2929              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
2930              try              try
2931              {              {
2932                  if (!hFile) throw std::string(_("could not open file"));                  if (!hFile) throw std::string(_("could not open file"));
                 int bitdepth;  
2933                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
2934                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
2935                      case SF_FORMAT_PCM_16:                      case SF_FORMAT_PCM_16:
2936                      case SF_FORMAT_PCM_U8:                      case SF_FORMAT_PCM_U8:
                         bitdepth = 16;  
                         break;  
2937                      case SF_FORMAT_PCM_24:                      case SF_FORMAT_PCM_24:
2938                      case SF_FORMAT_PCM_32:                      case SF_FORMAT_PCM_32:
2939                      case SF_FORMAT_FLOAT:                      case SF_FORMAT_FLOAT:
2940                      case SF_FORMAT_DOUBLE:                      case SF_FORMAT_DOUBLE:
                         bitdepth = 24;  
2941                          break;                          break;
2942                      default:                      default:
2943                          sf_close(hFile);                          sf_close(hFile);
# Line 1697  void MainWindow::on_action_replace_all_s Line 2946  void MainWindow::on_action_replace_all_s
2946                  SampleImportItem sched_item;                  SampleImportItem sched_item;
2947                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
2948                  sched_item.sample_path = filename;                  sched_item.sample_path = filename;
2949                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue[sample] = sched_item;
2950                  sf_close(hFile);                  sf_close(hFile);
2951                  file_changed();                  file_changed();
2952              }              }
2953              catch (std::string what)              catch (std::string what)
2954              {              {
2955                  if (!error_files.empty()) error_files += "\n";                  if (!error_files.empty()) error_files += "\n";
2956                      error_files += filename += " (" + what + ")";                  error_files += Glib::filename_to_utf8(filename) +
2957                        " (" + what + ")";
2958              }              }
2959          }          }
2960          // 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
# Line 1720  void MainWindow::on_action_replace_all_s Line 2970  void MainWindow::on_action_replace_all_s
2970  void MainWindow::on_action_remove_sample() {  void MainWindow::on_action_remove_sample() {
2971      if (!file) return;      if (!file) return;
2972      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
2973      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2974      if (it) {      for (int r = rows.size() - 1; r >= 0; --r) {
2975            Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
2976            if (!it) continue;
2977          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
2978          gig::Group* group   = row[m_SamplesModel.m_col_group];          gig::Group* group   = row[m_SamplesModel.m_col_group];
2979          gig::Sample* sample = row[m_SamplesModel.m_col_sample];          gig::Sample* sample = row[m_SamplesModel.m_col_sample];
# Line 1729  void MainWindow::on_action_remove_sample Line 2981  void MainWindow::on_action_remove_sample
2981          try {          try {
2982              // remove group or sample from the gig file              // remove group or sample from the gig file
2983              if (group) {              if (group) {
2984                  // temporarily remember the samples that bolong to                  // temporarily remember the samples that belong to
2985                  // that group (we need that to clean the queue)                  // that group (we need that to clean the queue)
2986                  std::list<gig::Sample*> members;                  std::list<gig::Sample*> members;
2987                  for (gig::Sample* pSample = group->GetFirstSample();                  for (gig::Sample* pSample = group->GetFirstSample();
# Line 1746  void MainWindow::on_action_remove_sample Line 2998  void MainWindow::on_action_remove_sample
2998                  // if sample(s) were just previously added, remove                  // if sample(s) were just previously added, remove
2999                  // them from the import queue                  // them from the import queue
3000                  for (std::list<gig::Sample*>::iterator member = members.begin();                  for (std::list<gig::Sample*>::iterator member = members.begin();
3001                       member != members.end(); ++member) {                       member != members.end(); ++member)
3002                      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();                  {
3003                           iter != m_SampleImportQueue.end(); ++iter) {                      if (m_SampleImportQueue.count(*member)) {
3004                          if ((*iter).gig_sample == *member) {                          printf("Removing previously added sample '%s' from group '%s'\n",
3005                              printf("Removing previously added sample '%s' from group '%s'\n",                                 m_SampleImportQueue[sample].sample_path.c_str(), name.c_str());
3006                                     (*iter).sample_path.c_str(), name.c_str());                          m_SampleImportQueue.erase(*member);
                             m_SampleImportQueue.erase(iter);  
                             break;  
                         }  
3007                      }                      }
3008                  }                  }
3009                  file_changed();                  file_changed();
# Line 1769  void MainWindow::on_action_remove_sample Line 3018  void MainWindow::on_action_remove_sample
3018                  samples_removed_signal.emit();                  samples_removed_signal.emit();
3019                  // if sample was just previously added, remove it from                  // if sample was just previously added, remove it from
3020                  // the import queue                  // the import queue
3021                  for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();                  if (m_SampleImportQueue.count(sample)) {
3022                       iter != m_SampleImportQueue.end(); ++iter) {                      printf("Removing previously added sample '%s'\n",
3023                      if ((*iter).gig_sample == sample) {                             m_SampleImportQueue[sample].sample_path.c_str());
3024                          printf("Removing previously added sample '%s'\n",                      m_SampleImportQueue.erase(sample);
                                (*iter).sample_path.c_str());  
                         m_SampleImportQueue.erase(iter);  
                         break;  
                     }  
3025                  }                  }
3026                  dimreg_changed();                  dimreg_changed();
3027                  file_changed();                  file_changed();
# Line 1793  void MainWindow::on_action_remove_sample Line 3038  void MainWindow::on_action_remove_sample
3038      }      }
3039  }  }
3040    
3041    void MainWindow::on_action_remove_unused_samples() {
3042        if (!file) return;
3043    
3044        // collect all samples that are not referenced by any instrument
3045        std::list<gig::Sample*> lsamples;
3046        for (int iSample = 0; file->GetSample(iSample); ++iSample) {
3047            gig::Sample* sample = file->GetSample(iSample);
3048            bool isUsed = false;
3049            for (gig::Instrument* instrument = file->GetFirstInstrument(); instrument;
3050                                  instrument = file->GetNextInstrument())
3051            {
3052                for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
3053                                  rgn = instrument->GetNextRegion())
3054                {
3055                    for (int i = 0; i < 256; ++i) {
3056                        if (!rgn->pDimensionRegions[i]) continue;
3057                        if (rgn->pDimensionRegions[i]->pSample != sample) continue;
3058                        isUsed = true;
3059                        goto endOfRefSearch;
3060                    }
3061                }
3062            }
3063            endOfRefSearch:
3064            if (!isUsed) lsamples.push_back(sample);
3065        }
3066    
3067        if (lsamples.empty()) return;
3068    
3069        // notify everybody that we're going to remove these samples
3070        samples_to_be_removed_signal.emit(lsamples);
3071    
3072        // remove collected samples
3073        try {
3074            for (std::list<gig::Sample*>::iterator itSample = lsamples.begin();
3075                 itSample != lsamples.end(); ++itSample)
3076            {
3077                gig::Sample* sample = *itSample;
3078                // remove sample from the .gig file
3079                file->DeleteSample(sample);
3080                // if sample was just previously added, remove it from the import queue
3081                if (m_SampleImportQueue.count(sample)) {
3082                    printf("Removing previously added sample '%s'\n",
3083                           m_SampleImportQueue[sample].sample_path.c_str());
3084                    m_SampleImportQueue.erase(sample);
3085                }
3086            }
3087        } catch (RIFF::Exception e) {
3088            // show error message
3089            Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
3090            msg.run();
3091        }
3092    
3093        // notify everybody that we're done with removal
3094        samples_removed_signal.emit();
3095    
3096        dimreg_changed();
3097        file_changed();
3098        __refreshEntireGUI();
3099    }
3100    
3101    // see comment on on_sample_treeview_drag_begin()
3102    void MainWindow::on_scripts_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
3103    {
3104        first_call_to_drag_data_get = true;
3105    }
3106    
3107    void MainWindow::on_scripts_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
3108                                                       Gtk::SelectionData& selection_data, guint, guint)
3109    {
3110        if (!first_call_to_drag_data_get) return;
3111        first_call_to_drag_data_get = false;
3112    
3113        // get selected script
3114        gig::Script* script = NULL;
3115        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
3116        Gtk::TreeModel::iterator it = sel->get_selected();
3117        if (it) {
3118            Gtk::TreeModel::Row row = *it;
3119            script = row[m_ScriptsModel.m_col_script];
3120        }
3121        // pass the gig::Script as pointer
3122        selection_data.set(selection_data.get_target(), 0/*unused*/,
3123                           (const guchar*)&script,
3124                           sizeof(script)/*length of data in bytes*/);
3125    }
3126    
3127    // see comment on on_sample_treeview_drag_begin()
3128    void MainWindow::on_instruments_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
3129    {
3130        first_call_to_drag_data_get = true;
3131    }
3132    
3133    void MainWindow::on_instruments_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
3134                                                           Gtk::SelectionData& selection_data, guint, guint)
3135    {
3136        if (!first_call_to_drag_data_get) return;
3137        first_call_to_drag_data_get = false;
3138    
3139        // get selected source instrument
3140        gig::Instrument* src = NULL;
3141        {
3142            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
3143            std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3144            if (!rows.empty()) {
3145                Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
3146                if (it) {
3147                    Gtk::TreeModel::Row row = *it;
3148                    src = row[m_Columns.m_col_instr];
3149                }
3150            }
3151        }
3152        if (!src) return;
3153    
3154        // pass the source gig::Instrument as pointer
3155        selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&src,
3156                           sizeof(src)/*length of data in bytes*/);
3157    }
3158    
3159    void MainWindow::on_instruments_treeview_drop_drag_data_received(
3160        const Glib::RefPtr<Gdk::DragContext>& context, int x, int y,
3161        const Gtk::SelectionData& selection_data, guint, guint time)
3162    {
3163        gig::Instrument* src = *((gig::Instrument**) selection_data.get_data());
3164        if (!src || selection_data.get_length() != sizeof(gig::Instrument*))
3165            return;
3166    
3167        gig::Instrument* dst = NULL;
3168        {
3169            Gtk::TreeModel::Path path;
3170            const bool found = m_TreeView.get_path_at_pos(x, y, path);
3171            if (!found) return;
3172    
3173            Gtk::TreeModel::iterator iter = m_refTreeModel->get_iter(path);
3174            if (!iter) return;
3175            Gtk::TreeModel::Row row = *iter;
3176            dst = row[m_Columns.m_col_instr];
3177        }
3178        if (!dst) return;
3179    
3180        //printf("dragdrop received src=%s dst=%s\n", src->pInfo->Name.c_str(), dst->pInfo->Name.c_str());
3181        src->MoveTo(dst);
3182        __refreshEntireGUI();
3183        select_instrument(src);
3184    }
3185    
3186  // For some reason drag_data_get gets called two times for each  // For some reason drag_data_get gets called two times for each
3187  // 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
3188  // 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 1811  void MainWindow::on_sample_treeview_drag Line 3201  void MainWindow::on_sample_treeview_drag
3201      // get selected sample      // get selected sample
3202      gig::Sample* sample = NULL;      gig::Sample* sample = NULL;
3203      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
3204      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3205      if (it) {      if (!rows.empty()) {
3206          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
3207          sample = row[m_SamplesModel.m_col_sample];          if (it) {
3208                Gtk::TreeModel::Row row = *it;
3209                sample = row[m_SamplesModel.m_col_sample];
3210            }
3211      }      }
3212      // pass the gig::Sample as pointer      // pass the gig::Sample as pointer
3213      selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&sample,      selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&sample,
# Line 1851  void MainWindow::on_sample_label_drop_dr Line 3244  void MainWindow::on_sample_label_drop_dr
3244          bool channels_changed = false;          bool channels_changed = false;
3245          if (sample->Channels == 1 && stereo_dimension) {          if (sample->Channels == 1 && stereo_dimension) {
3246              // remove the samplechannel dimension              // remove the samplechannel dimension
3247    /* commented out, because it makes it impossible building up an instrument from scratch using two separate L/R samples
3248              region->DeleteDimension(stereo_dimension);              region->DeleteDimension(stereo_dimension);
3249              channels_changed = true;              channels_changed = true;
3250              region_changed();              region_changed();
3251    */
3252          }          }
3253          dimreg_edit.set_sample(sample);          dimreg_edit.set_sample(
3254                sample,
3255                is_copy_samples_unity_note_enabled(),
3256                is_copy_samples_fine_tune_enabled(),
3257                is_copy_samples_loop_enabled()
3258            );
3259    
3260          if (sample->Channels == 2 && !stereo_dimension) {          if (sample->Channels == 2 && !stereo_dimension) {
3261              // add samplechannel dimension              // add samplechannel dimension
# Line 1898  void MainWindow::sample_name_changed(con Line 3298  void MainWindow::sample_name_changed(con
3298      Glib::ustring name  = row[m_SamplesModel.m_col_name];      Glib::ustring name  = row[m_SamplesModel.m_col_name];
3299      gig::Group* group   = row[m_SamplesModel.m_col_group];      gig::Group* group   = row[m_SamplesModel.m_col_group];
3300      gig::Sample* sample = row[m_SamplesModel.m_col_sample];      gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3301        gig::String gigname(gig_from_utf8(name));
3302      if (group) {      if (group) {
3303          if (group->Name != name) {          if (group->Name != gigname) {
3304              group->Name = name;              group->Name = gigname;
3305              printf("group name changed\n");              printf("group name changed\n");
3306              file_changed();              file_changed();
3307          }          }
3308      } else if (sample) {      } else if (sample) {
3309          if (sample->pInfo->Name != name.raw()) {          if (sample->pInfo->Name != gigname) {
3310              sample->pInfo->Name = name.raw();              sample->pInfo->Name = gigname;
3311              printf("sample name changed\n");              printf("sample name changed\n");
3312              file_changed();              file_changed();
3313          }          }
3314      }      }
3315  }  }
3316    
3317    void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,
3318                                         const Gtk::TreeModel::iterator& iter) {
3319        if (!iter) return;
3320        Gtk::TreeModel::Row row = *iter;
3321        Glib::ustring name      = row[m_ScriptsModel.m_col_name];
3322        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
3323        gig::Script* script     = row[m_ScriptsModel.m_col_script];
3324        gig::String gigname(gig_from_utf8(name));
3325        if (group) {
3326            if (group->Name != gigname) {
3327                group->Name = gigname;
3328                printf("script group name changed\n");
3329                file_changed();
3330            }
3331        } else if (script) {
3332            if (script->Name != gigname) {
3333                script->Name = gigname;
3334                printf("script name changed\n");
3335                file_changed();
3336            }
3337        }
3338    }
3339    
3340    void MainWindow::script_double_clicked(const Gtk::TreeModel::Path& path,
3341                                           Gtk::TreeViewColumn* column)
3342    {
3343        Gtk::TreeModel::iterator iter = m_refScriptsTreeModel->get_iter(path);
3344        if (!iter) return;
3345        Gtk::TreeModel::Row row = *iter;
3346        gig::Script* script = row[m_ScriptsModel.m_col_script];
3347        if (!script) return;
3348    
3349        ScriptEditor* editor = new ScriptEditor;
3350        editor->signal_script_to_be_changed.connect(
3351            signal_script_to_be_changed.make_slot()
3352        );
3353        editor->signal_script_changed.connect(
3354            signal_script_changed.make_slot()
3355        );
3356        editor->setScript(script);
3357        //editor->reparent(*this);
3358        editor->show();
3359    }
3360    
3361  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,
3362                                           const Gtk::TreeModel::iterator& iter) {                                           const Gtk::TreeModel::iterator& iter) {
3363      if (!iter) return;      if (!iter) return;
# Line 1934  void MainWindow::instrument_name_changed Line 3379  void MainWindow::instrument_name_changed
3379    
3380      // change name in gig      // change name in gig
3381      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_Columns.m_col_instr];
3382      if (instrument && instrument->pInfo->Name != name.raw()) {      gig::String gigname(gig_from_utf8(name));
3383          instrument->pInfo->Name = name.raw();      if (instrument && instrument->pInfo->Name != gigname) {
3384            instrument->pInfo->Name = gigname;
3385    
3386          // change name in the instrument properties window          // change name in the instrument properties window
3387          if (instrumentProps.get_instrument() == instrument) {          if (instrumentProps.get_instrument() == instrument) {
# Line 1946  void MainWindow::instrument_name_changed Line 3392  void MainWindow::instrument_name_changed
3392      }      }
3393  }  }
3394    
3395    void MainWindow::on_action_combine_instruments() {
3396        CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);
3397        d->show_all();
3398        d->resize(500, 400);
3399        d->run();
3400        if (d->fileWasChanged()) {
3401            // update GUI with new instrument just created
3402            add_instrument(d->newCombinedInstrument());
3403        }
3404        delete d;
3405    }
3406    
3407    void MainWindow::on_action_view_references() {
3408        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
3409        std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3410        if (rows.empty()) return;
3411        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
3412        if (!it) return;
3413        Gtk::TreeModel::Row row = *it;
3414        gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3415        if (!sample) return;
3416    
3417        ReferencesView* d = new ReferencesView(*this);
3418        d->setSample(sample);
3419        d->dimension_region_selected.connect(
3420            sigc::mem_fun(*this, &MainWindow::select_dimension_region)
3421        );
3422        d->show_all();
3423        d->resize(500, 400);
3424        d->run();
3425        delete d;
3426    }
3427    
3428    void MainWindow::mergeFiles(const std::vector<std::string>& filenames) {
3429        struct _Source {
3430            std::vector<RIFF::File*> riffs;
3431            std::vector<gig::File*> gigs;
3432            
3433            ~_Source() {
3434                for (int k = 0; k < gigs.size(); ++k) delete gigs[k];
3435                for (int k = 0; k < riffs.size(); ++k) delete riffs[k];
3436                riffs.clear();
3437                gigs.clear();
3438            }
3439        } sources;
3440    
3441        if (filenames.empty())
3442            throw RIFF::Exception(_("No files selected, so nothing done."));
3443    
3444        // first open all input files (to avoid output file corruption)
3445        int i;
3446        try {
3447            for (i = 0; i < filenames.size(); ++i) {
3448                const std::string& filename = filenames[i];
3449                printf("opening file=%s\n", filename.c_str());
3450    
3451                RIFF::File* riff = new RIFF::File(filename);
3452                sources.riffs.push_back(riff);
3453    
3454                gig::File* gig = new gig::File(riff);
3455                sources.gigs.push_back(gig);
3456            }
3457        } catch (RIFF::Exception e) {
3458            throw RIFF::Exception(
3459                _("Error occurred while opening '") +
3460                filenames[i] +
3461                "': " +
3462                e.Message
3463            );
3464        } catch (...) {
3465            throw RIFF::Exception(
3466                _("Unknown exception occurred while opening '") +
3467                filenames[i] + "'"
3468            );
3469        }
3470    
3471        // now merge the opened .gig files to the main .gig file currently being
3472        // open in gigedit
3473        try {
3474            for (i = 0; i < filenames.size(); ++i) {
3475                const std::string& filename = filenames[i];
3476                printf("merging file=%s\n", filename.c_str());
3477                assert(i < sources.gigs.size());
3478    
3479                this->file->AddContentOf(sources.gigs[i]);
3480            }
3481        } catch (RIFF::Exception e) {
3482            throw RIFF::Exception(
3483                _("Error occurred while merging '") +
3484                filenames[i] +
3485                "': " +
3486                e.Message
3487            );
3488        } catch (...) {
3489            throw RIFF::Exception(
3490                _("Unknown exception occurred while merging '") +
3491                filenames[i] + "'"
3492            );
3493        }
3494    
3495        // Finally save gig file persistently to disk ...
3496        //NOTE: requires that this gig file already has a filename !
3497        {
3498            std::cout << "Saving file\n" << std::flush;
3499            file_structure_to_be_changed_signal.emit(this->file);
3500    
3501            progress_dialog = new ProgressDialog( //FIXME: memory leak!
3502                _("Saving") +  Glib::ustring(" '") +
3503                Glib::filename_display_basename(this->filename) + "' ...",
3504                *this
3505            );
3506            progress_dialog->show_all();
3507            saver = new Saver(this->file); //FIXME: memory leak!
3508            saver->signal_progress().connect(
3509                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
3510            saver->signal_finished().connect(
3511                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
3512            saver->signal_error().connect(
3513                sigc::mem_fun(*this, &MainWindow::on_saver_error));
3514            saver->launch();
3515        }
3516    }
3517    
3518    void MainWindow::on_action_merge_files() {
3519        if (this->file->GetFileName().empty()) {
3520            Glib::ustring txt = _(
3521                "You seem to have a new .gig file open that has not been saved "
3522                "yet. You must save it somewhere before starting to merge it with "
3523                "other .gig files though, because during the merge operation the "
3524                "other files' sample data must be written on file level to the "
3525                "target .gig file."
3526            );
3527            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
3528            msg.run();
3529            return;
3530        }
3531    
3532        Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
3533        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
3534        dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
3535        dialog.set_default_response(Gtk::RESPONSE_CANCEL);
3536    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
3537        Gtk::FileFilter filter;
3538        filter.add_pattern("*.gig");
3539    #else
3540        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
3541        filter->add_pattern("*.gig");
3542    #endif
3543        dialog.set_filter(filter);
3544        if (current_gig_dir != "") {
3545            dialog.set_current_folder(current_gig_dir);
3546        }
3547        dialog.set_select_multiple(true);
3548    
3549        // show warning in the file picker dialog
3550        Gtk::HBox descriptionArea;
3551        descriptionArea.set_spacing(15);
3552        Gtk::Image warningIcon;
3553        warningIcon.set_from_icon_name("dialog-warning",
3554                                       Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
3555        descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
3556    #if GTKMM_MAJOR_VERSION < 3
3557        view::WrapLabel description;
3558    #else
3559        Gtk::Label description;
3560        description.set_line_wrap();
3561    #endif
3562        description.set_markup(_(
3563            "\nSelect at least one .gig file that shall be merged to the .gig file "
3564            "currently being open in gigedit.\n\n"
3565            "<b>Please Note:</b> Merging with other files will modify your "
3566            "currently open .gig file on file level! And be aware that the current "
3567            "merge algorithm does not detect duplicate samples yet. So if you are "
3568            "merging files which are using equivalent sample data, those "
3569            "equivalent samples will currently be treated as separate samples and "
3570            "will accordingly be stored separately in the target .gig file!"
3571        ));
3572        descriptionArea.pack_start(description);
3573        dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
3574        descriptionArea.show_all();
3575    
3576        if (dialog.run() == Gtk::RESPONSE_OK) {
3577            printf("on_action_merge_files self=%p\n",
3578                   static_cast<void*>(Glib::Threads::Thread::self()));
3579            std::vector<std::string> filenames = dialog.get_filenames();
3580    
3581            // merge the selected files to the currently open .gig file
3582            try {
3583                mergeFiles(filenames);
3584            } catch (RIFF::Exception e) {
3585                Gtk::MessageDialog msg(*this, e.Message, false, Gtk::MESSAGE_ERROR);
3586                msg.run();
3587            }
3588    
3589            // update GUI
3590            __refreshEntireGUI();
3591        }
3592    }
3593    
3594  void MainWindow::set_file_is_shared(bool b) {  void MainWindow::set_file_is_shared(bool b) {
3595      this->file_is_shared = b;      this->file_is_shared = b;
3596    
# Line 1960  void MainWindow::set_file_is_shared(bool Line 3605  void MainWindow::set_file_is_shared(bool
3605              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)
3606          );          );
3607      }      }
3608    
3609        {
3610            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
3611                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
3612            if (item) item->set_sensitive(b);
3613        }
3614    }
3615    
3616    void MainWindow::on_sample_ref_count_incremented(gig::Sample* sample, int offset) {
3617        if (!sample) return;
3618        sample_ref_count[sample] += offset;
3619        const int refcount = sample_ref_count[sample];
3620    
3621        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
3622        for (int g = 0; g < model->children().size(); ++g) {
3623            Gtk::TreeModel::Row rowGroup = model->children()[g];
3624            for (int s = 0; s < rowGroup.children().size(); ++s) {
3625                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
3626                if (rowSample[m_SamplesModel.m_col_sample] != sample) continue;
3627                rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
3628                rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
3629            }
3630        }
3631    }
3632    
3633    void MainWindow::on_sample_ref_changed(gig::Sample* oldSample, gig::Sample* newSample) {
3634        on_sample_ref_count_incremented(oldSample, -1);
3635        on_sample_ref_count_incremented(newSample, +1);
3636    }
3637    
3638    void MainWindow::on_samples_to_be_removed(std::list<gig::Sample*> samples) {
3639        // just in case a new sample is added later with exactly the same memory
3640        // address, which would lead to incorrect refcount if not deleted here
3641        for (std::list<gig::Sample*>::const_iterator it = samples.begin();
3642             it != samples.end(); ++it)
3643        {
3644            sample_ref_count.erase(*it);
3645        }
3646    }
3647    
3648    void MainWindow::show_samples_tab() {
3649        m_TreeViewNotebook.set_current_page(0);
3650    }
3651    
3652    void MainWindow::show_intruments_tab() {
3653        m_TreeViewNotebook.set_current_page(1);
3654    }
3655    
3656    void MainWindow::show_scripts_tab() {
3657        m_TreeViewNotebook.set_current_page(2);
3658    }
3659    
3660    void MainWindow::select_prev_region() {
3661        m_RegionChooser.select_prev_region();
3662    }
3663    
3664    void MainWindow::select_next_region() {
3665        m_RegionChooser.select_next_region();
3666    }
3667    
3668    void MainWindow::select_next_dim_rgn_zone() {
3669        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
3670        m_DimRegionChooser.select_next_dimzone();
3671    }
3672    
3673    void MainWindow::select_prev_dim_rgn_zone() {
3674        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
3675        m_DimRegionChooser.select_prev_dimzone();
3676    }
3677    
3678    void MainWindow::select_add_next_dim_rgn_zone() {
3679        m_DimRegionChooser.select_next_dimzone(true);
3680    }
3681    
3682    void MainWindow::select_add_prev_dim_rgn_zone() {
3683        m_DimRegionChooser.select_prev_dimzone(true);
3684    }
3685    
3686    void MainWindow::select_prev_dimension() {
3687        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
3688        m_DimRegionChooser.select_prev_dimension();
3689    }
3690    
3691    void MainWindow::select_next_dimension() {
3692        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
3693        m_DimRegionChooser.select_next_dimension();
3694    }
3695    
3696    #define CLIPBOARD_DIMENSIONREGION_TARGET \
3697        ("libgig.DimensionRegion." + m_serializationArchive.rawDataFormat())
3698    
3699    void MainWindow::copy_selected_dimrgn() {
3700        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
3701        if (!pDimRgn) {
3702            updateClipboardPasteAvailable();
3703            updateClipboardCopyAvailable();
3704            return;
3705        }
3706    
3707        std::vector<Gtk::TargetEntry> targets;
3708        targets.push_back( Gtk::TargetEntry(CLIPBOARD_DIMENSIONREGION_TARGET) );
3709    
3710        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
3711        clipboard->set(
3712            targets,
3713            sigc::mem_fun(*this, &MainWindow::on_clipboard_get),
3714            sigc::mem_fun(*this, &MainWindow::on_clipboard_clear)
3715        );
3716    
3717        m_serializationArchive.serialize(pDimRgn);
3718    
3719        updateClipboardPasteAvailable();
3720    }
3721    
3722    void MainWindow::paste_copied_dimrgn() {
3723        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
3724        clipboard->request_contents(
3725            CLIPBOARD_DIMENSIONREGION_TARGET,
3726            sigc::mem_fun(*this, &MainWindow::on_clipboard_received)
3727        );
3728        updateClipboardPasteAvailable();
3729    }
3730    
3731    void MainWindow::adjust_clipboard_content() {
3732        MacroEditor* editor = new MacroEditor;
3733        editor->setMacro(&m_serializationArchive);
3734        editor->show();
3735    }
3736    
3737    void MainWindow::updateClipboardPasteAvailable() {
3738        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
3739        clipboard->request_targets(
3740            sigc::mem_fun(*this, &MainWindow::on_clipboard_received_targets)
3741        );
3742    }
3743    
3744    void MainWindow::updateClipboardCopyAvailable() {
3745        bool bDimensionRegionCopyIsPossible = m_DimRegionChooser.get_main_dimregion();
3746        static_cast<Gtk::MenuItem*>(
3747            uiManager->get_widget("/MenuBar/MenuEdit/CopyDimRgn")
3748        )->set_sensitive(bDimensionRegionCopyIsPossible);
3749    }
3750    
3751    void MainWindow::on_clipboard_owner_change(GdkEventOwnerChange* event) {
3752        updateClipboardPasteAvailable();
3753    }
3754    
3755    void MainWindow::on_clipboard_get(Gtk::SelectionData& selection_data, guint /*info*/) {
3756        const std::string target = selection_data.get_target();
3757        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
3758            selection_data.set(
3759                CLIPBOARD_DIMENSIONREGION_TARGET, 8 /* "format": probably unused*/,
3760                &m_serializationArchive.rawData()[0],
3761                m_serializationArchive.rawData().size()
3762            );
3763        } else {
3764            std::cerr << "Clipboard: content for unknown target '" << target << "' requested\n";
3765        }
3766    }
3767    
3768    void MainWindow::on_clipboard_clear() {
3769        m_serializationArchive.clear();
3770        updateClipboardPasteAvailable();
3771        updateClipboardCopyAvailable();
3772    }
3773    
3774    void MainWindow::on_clipboard_received(const Gtk::SelectionData& selection_data) {
3775        const std::string target = selection_data.get_target();
3776        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
3777            gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
3778            if (!pDimRgn) return;
3779    
3780            Glib::ustring errorText;
3781            try {
3782                m_serializationArchive.decode(
3783                    selection_data.get_data(), selection_data.get_length()
3784                );
3785    
3786                for (std::set<gig::DimensionRegion*>::iterator itDimReg = dimreg_edit.dimregs.begin();
3787                     itDimReg != dimreg_edit.dimregs.end(); ++itDimReg)
3788                {
3789                    gig::DimensionRegion* pDimRgn = *itDimReg;
3790    
3791                    dimreg_to_be_changed_signal.emit(pDimRgn);
3792    
3793                    m_serializationArchive.deserialize(pDimRgn);
3794    
3795                    dimreg_changed_signal.emit(pDimRgn);
3796                }
3797    
3798                //region_changed()
3799                file_changed();
3800                dimreg_changed();
3801    
3802            } catch (Serialization::Exception e) {
3803                errorText = e.Message;
3804            } catch (...) {
3805                errorText = _("Unknown exception during deserialization decoding");
3806            }
3807            if (!errorText.empty()) {
3808                Glib::ustring txt = _("Pasting DimensionRegion failed:\n") + errorText;
3809                Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
3810                msg.run();
3811            }
3812        }
3813    }
3814    
3815    void MainWindow::on_clipboard_received_targets(const std::vector<Glib::ustring>& targets) {
3816        const bool bDimensionRegionPasteIsPossible =
3817            std::find(targets.begin(), targets.end(),
3818                      CLIPBOARD_DIMENSIONREGION_TARGET) != targets.end();
3819    
3820        static_cast<Gtk::MenuItem*>(
3821            uiManager->get_widget("/MenuBar/MenuEdit/PasteDimRgn")
3822        )->set_sensitive(bDimensionRegionPasteIsPossible);
3823    
3824        static_cast<Gtk::MenuItem*>(
3825            uiManager->get_widget("/MenuBar/MenuEdit/AdjustClipboard")
3826        )->set_sensitive(bDimensionRegionPasteIsPossible);
3827  }  }
3828    
3829  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 2017  sigc::signal<void, int/*key*/, int/*velo Line 3881  sigc::signal<void, int/*key*/, int/*velo
3881  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {
3882      return m_RegionChooser.signal_keyboard_key_released();      return m_RegionChooser.signal_keyboard_key_released();
3883  }  }
3884    
3885    sigc::signal<void, gig::Instrument*>& MainWindow::signal_switch_sampler_instrument() {
3886        return switch_sampler_instrument_signal;
3887    }

Legend:
Removed from v.2445  
changed lines
  Added in v.3151

  ViewVC Help
Powered by ViewVC