/[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 2507 by persson, Sun Jan 12 19:37:55 2014 UTC revision 3106 by schoenebeck, Sat Feb 11 17:04:48 2017 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2014 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    
62  MainWindow::MainWindow() :  MainWindow::MainWindow() :
63        m_DimRegionChooser(*this),
64      dimreg_label(_("Changes apply to:")),      dimreg_label(_("Changes apply to:")),
65      dimreg_all_regions(_("all regions")),      dimreg_all_regions(_("all regions")),
66      dimreg_all_dimregs(_("all dimension splits")),      dimreg_all_dimregs(_("all dimension splits")),
67      dimreg_stereo(_("both channels"))      dimreg_stereo(_("both channels")),
68        labelNoSample(_(" No Sample")),
69        labelMissingSample(_(" Missing some Sample(s)")),
70        labelLooped(_(" Looped")),
71        labelSomeLoops(_(" Some Loop(s)"))
72  {  {
73        loadBuiltInPix();
74    
75  //    set_border_width(5);  //    set_border_width(5);
76  //    set_default_size(400, 200);  //    set_default_size(400, 200);
77    
   
78      add(m_VBox);      add(m_VBox);
79    
80      // Handle selection      // Handle selection
# Line 76  MainWindow::MainWindow() : Line 94  MainWindow::MainWindow() :
94      m_ScrolledWindowSamples.add(m_TreeViewSamples);      m_ScrolledWindowSamples.add(m_TreeViewSamples);
95      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
96    
97        m_ScrolledWindowScripts.add(m_TreeViewScripts);
98        m_ScrolledWindowScripts.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
99    
100    
101      m_TreeViewNotebook.set_size_request(300);      m_TreeViewNotebook.set_size_request(300);
102    
# Line 87  MainWindow::MainWindow() : Line 108  MainWindow::MainWindow() :
108      dimreg_hbox.add(dimreg_stereo);      dimreg_hbox.add(dimreg_stereo);
109      dimreg_vbox.add(dimreg_edit);      dimreg_vbox.add(dimreg_edit);
110      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);
111        {
112            imageNoSample.set(redDot);
113            imageNoSample.set_alignment(Gtk::ALIGN_RIGHT);
114            labelNoSample.set_alignment(Gtk::ALIGN_LEFT);
115            legend_hbox.add(imageNoSample);
116            legend_hbox.add(labelNoSample);
117    
118            imageMissingSample.set(yellowDot);
119            imageMissingSample.set_alignment(Gtk::ALIGN_RIGHT);
120            labelMissingSample.set_alignment(Gtk::ALIGN_LEFT);
121            legend_hbox.add(imageMissingSample);
122            legend_hbox.add(labelMissingSample);
123    
124            imageLooped.set(blackLoop);
125            imageLooped.set_alignment(Gtk::ALIGN_RIGHT);
126            labelLooped.set_alignment(Gtk::ALIGN_LEFT);
127            legend_hbox.add(imageLooped);
128            legend_hbox.add(labelLooped);
129    
130            imageSomeLoops.set(grayLoop);
131            imageSomeLoops.set_alignment(Gtk::ALIGN_RIGHT);
132            labelSomeLoops.set_alignment(Gtk::ALIGN_LEFT);
133            legend_hbox.add(imageSomeLoops);
134            legend_hbox.add(labelSomeLoops);
135    
136            legend_hbox.show_all_children();
137        }
138        dimreg_vbox.pack_start(legend_hbox, Gtk::PACK_SHRINK);
139      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
140    
141        dimreg_label.set_tooltip_text(_("To automatically apply your changes above globally to the entire instrument, check all 3 check boxes on the right."));
142        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."));
143        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."));
144        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)."));
145    
146      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
147      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
148        m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));
149    
150      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
151    
152      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));
153      actionGroup->add(Gtk::Action::create("New", Gtk::Stock::NEW),      actionGroup->add(Gtk::Action::create("New", _("_New")),
154                         Gtk::AccelKey("<control>n"),
155                       sigc::mem_fun(                       sigc::mem_fun(
156                           *this, &MainWindow::on_action_file_new));                           *this, &MainWindow::on_action_file_new));
157      Glib::RefPtr<Gtk::Action> action =      actionGroup->add(Gtk::Action::create("Open", _("_Open...")),
158          Gtk::Action::create("Open", Gtk::Stock::OPEN);                       Gtk::AccelKey("<control>o"),
     action->property_label() = action->property_label() + "...";  
     actionGroup->add(action,  
159                       sigc::mem_fun(                       sigc::mem_fun(
160                           *this, &MainWindow::on_action_file_open));                           *this, &MainWindow::on_action_file_open));
161      actionGroup->add(Gtk::Action::create("Save", Gtk::Stock::SAVE),      actionGroup->add(Gtk::Action::create("Save", _("_Save")),
162                         Gtk::AccelKey("<control>s"),
163                       sigc::mem_fun(                       sigc::mem_fun(
164                           *this, &MainWindow::on_action_file_save));                           *this, &MainWindow::on_action_file_save));
165      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,  
166                       Gtk::AccelKey("<shift><control>s"),                       Gtk::AccelKey("<shift><control>s"),
167                       sigc::mem_fun(                       sigc::mem_fun(
168                           *this, &MainWindow::on_action_file_save_as));                           *this, &MainWindow::on_action_file_save_as));
169      actionGroup->add(Gtk::Action::create("Properties",      actionGroup->add(Gtk::Action::create("Properties",
170                                           Gtk::Stock::PROPERTIES),                                           _("_Properties")),
171                       sigc::mem_fun(                       sigc::mem_fun(
172                           *this, &MainWindow::on_action_file_properties));                           *this, &MainWindow::on_action_file_properties));
173      actionGroup->add(Gtk::Action::create("InstrProperties",      actionGroup->add(Gtk::Action::create("InstrProperties",
174                                           Gtk::Stock::PROPERTIES),                                           _("_Properties")),
175                       sigc::mem_fun(                       sigc::mem_fun(
176                           *this, &MainWindow::show_instr_props));                           *this, &MainWindow::show_instr_props));
177      actionGroup->add(Gtk::Action::create("MidiRules",      actionGroup->add(Gtk::Action::create("MidiRules",
178                                           _("_Midi Rules")),                                           _("_Midi Rules...")),
179                       sigc::mem_fun(                       sigc::mem_fun(
180                           *this, &MainWindow::show_midi_rules));                           *this, &MainWindow::show_midi_rules));
181      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),      actionGroup->add(Gtk::Action::create("ScriptSlots",
182                                             _("_Script Slots...")),
183                         sigc::mem_fun(
184                             *this, &MainWindow::show_script_slots));
185        actionGroup->add(Gtk::Action::create("Quit", _("_Quit")),
186                         Gtk::AccelKey("<control>q"),
187                       sigc::mem_fun(                       sigc::mem_fun(
188                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
189      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));      actionGroup->add(
190            Gtk::Action::create("MenuSample", _("_Sample")),
191            sigc::mem_fun(*this, &MainWindow::show_samples_tab)
192        );
193        actionGroup->add(
194            Gtk::Action::create("MenuInstrument", _("_Instrument")),
195            sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
196        );
197        actionGroup->add(
198            Gtk::Action::create("MenuScript", _("S_cript")),
199            sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
200        );
201        actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));
202    
203      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
204    
205      Glib::RefPtr<Gtk::ToggleAction> toggle_action =      Glib::RefPtr<Gtk::ToggleAction> toggle_action =
206          Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"), "ffaga");          Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"));
207      toggle_action->set_active(true);      toggle_action->set_active(true);
     //FIXME: doesn't work, why?  
     toggle_action->set_tooltip(_("Used when dragging a sample to a region's sample reference field."));  
208      actionGroup->add(toggle_action);      actionGroup->add(toggle_action);
209    
210      toggle_action =      toggle_action =
211          Gtk::ToggleAction::create("CopySampleTune", _("Copy Sample's _Fine Tune"));          Gtk::ToggleAction::create("CopySampleTune", _("Copy Sample's _Fine Tune"));
212      toggle_action->set_active(true);      toggle_action->set_active(true);
     //FIXME: doesn't work, why?  
     toggle_action->set_tooltip(_("Used when dragging a sample to a region's sample reference field."));  
213      actionGroup->add(toggle_action);      actionGroup->add(toggle_action);
214    
215      toggle_action =      toggle_action =
216          Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));          Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));
217      toggle_action->set_active(true);      toggle_action->set_active(true);
     //FIXME: doesn't work, why?  
     toggle_action->set_tooltip(_("Used when dragging a sample to a region's sample reference field."));  
218      actionGroup->add(toggle_action);      actionGroup->add(toggle_action);
219    
220    
# Line 165  MainWindow::MainWindow() : Line 226  MainWindow::MainWindow() :
226                       sigc::mem_fun(                       sigc::mem_fun(
227                           *this, &MainWindow::on_action_view_status_bar));                           *this, &MainWindow::on_action_view_status_bar));
228    
229      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);      toggle_action =
230      actionGroup->add(Gtk::Action::create("MenuHelp",          Gtk::ToggleAction::create("AutoRestoreWinDim", _("_Auto Restore Window Dimension"));
231                                           action->property_label()));      toggle_action->set_active(Settings::singleton()->autoRestoreWindowDimension);
232      actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),      actionGroup->add(toggle_action,
233                         sigc::mem_fun(
234                             *this, &MainWindow::on_auto_restore_win_dim));
235    
236        toggle_action =
237            Gtk::ToggleAction::create("SaveWithTemporaryFile", _("Save with _temporary file"));
238        toggle_action->set_active(Settings::singleton()->saveWithTemporaryFile);
239        actionGroup->add(toggle_action,
240                         sigc::mem_fun(
241                             *this, &MainWindow::on_save_with_temporary_file));
242    
243        actionGroup->add(
244            Gtk::Action::create("RefreshAll", _("_Refresh All")),
245            sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)
246        );                
247    
248        actionGroup->add(Gtk::Action::create("MenuHelp", _("_Help")));
249        actionGroup->add(Gtk::Action::create("About", _("_About")),
250                       sigc::mem_fun(                       sigc::mem_fun(
251                           *this, &MainWindow::on_action_help_about));                           *this, &MainWindow::on_action_help_about));
252      actionGroup->add(      actionGroup->add(
# Line 180  MainWindow::MainWindow() : Line 258  MainWindow::MainWindow() :
258          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
259      );      );
260      actionGroup->add(      actionGroup->add(
261          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveInstrument", _("_Remove")),
262          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
263      );      );
264    
265    
266        actionGroup->add(Gtk::Action::create("MenuSettings", _("_Settings")));
267        
268        toggle_action =
269            Gtk::ToggleAction::create("WarnUserOnExtensions", _("Show warning on format _extensions"));
270        toggle_action->set_active(Settings::singleton()->warnUserOnExtensions);
271        actionGroup->add(
272            toggle_action,
273            sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions)
274        );
275    
276        toggle_action =
277            Gtk::ToggleAction::create("SyncSamplerInstrumentSelection", _("Synchronize sampler's instrument selection"));
278        toggle_action->set_active(Settings::singleton()->syncSamplerInstrumentSelection);
279        actionGroup->add(
280            toggle_action,
281            sigc::mem_fun(*this, &MainWindow::on_action_sync_sampler_instrument_selection)
282        );
283    
284        toggle_action =
285            Gtk::ToggleAction::create("MoveRootNoteWithRegionMoved", _("Move root note with region moved"));
286        toggle_action->set_active(Settings::singleton()->moveRootNoteWithRegionMoved);
287        actionGroup->add(
288            toggle_action,
289            sigc::mem_fun(*this, &MainWindow::on_action_move_root_note_with_region_moved)
290        );
291    
292    
293        actionGroup->add(Gtk::Action::create("MenuTools", _("_Tools")));
294    
295        actionGroup->add(
296            Gtk::Action::create("CombineInstruments", _("_Combine Instruments...")),
297            sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
298        );
299    
300        actionGroup->add(
301            Gtk::Action::create("MergeFiles", _("_Merge Files...")),
302            sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
303        );
304    
305    
306      // sample right-click popup actions      // sample right-click popup actions
307      actionGroup->add(      actionGroup->add(
308          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),          Gtk::Action::create("SampleProperties", _("_Properties")),
309          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
310      );      );
311      actionGroup->add(      actionGroup->add(
# Line 198  MainWindow::MainWindow() : Line 317  MainWindow::MainWindow() :
317          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
318      );      );
319      actionGroup->add(      actionGroup->add(
320          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveSample", _("_Remove")),
321          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
322      );      );
323      actionGroup->add(      actionGroup->add(
324            Gtk::Action::create("RemoveUnusedSamples", _("Remove _Unused Samples")),
325            sigc::mem_fun(*this, &MainWindow::on_action_remove_unused_samples)
326        );
327        actionGroup->add(
328            Gtk::Action::create("ShowSampleRefs", _("Show References...")),
329            sigc::mem_fun(*this, &MainWindow::on_action_view_references)
330        );
331        actionGroup->add(
332            Gtk::Action::create("ReplaceSample",
333                                _("Replace Sample...")),
334            sigc::mem_fun(*this, &MainWindow::on_action_replace_sample)
335        );
336        actionGroup->add(
337          Gtk::Action::create("ReplaceAllSamplesInAllGroups",          Gtk::Action::create("ReplaceAllSamplesInAllGroups",
338                              _("Replace All Samples in All Groups...")),                              _("Replace All Samples in All Groups...")),
339          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)
340      );      );
341        
342        // script right-click popup actions
343        actionGroup->add(
344            Gtk::Action::create("AddScriptGroup", _("Add _Group")),
345            sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
346        );
347        actionGroup->add(
348            Gtk::Action::create("AddScript", _("Add _Script")),
349            sigc::mem_fun(*this, &MainWindow::on_action_add_script)
350        );
351        actionGroup->add(
352            Gtk::Action::create("EditScript", _("_Edit Script...")),
353            sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
354        );
355        actionGroup->add(
356            Gtk::Action::create("RemoveScript", _("_Remove")),
357            sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
358        );
359    
360      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
361      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
# Line 230  MainWindow::MainWindow() : Line 380  MainWindow::MainWindow() :
380          "      <menuitem action='CopySampleTune'/>"          "      <menuitem action='CopySampleTune'/>"
381          "      <menuitem action='CopySampleLoop'/>"          "      <menuitem action='CopySampleLoop'/>"
382          "    </menu>"          "    </menu>"
383            "    <menu action='MenuSample'>"
384            "      <menuitem action='SampleProperties'/>"
385            "      <menuitem action='AddGroup'/>"
386            "      <menuitem action='AddSample'/>"
387            "      <menuitem action='ShowSampleRefs'/>"
388            "      <menuitem action='ReplaceSample' />"
389            "      <menuitem action='ReplaceAllSamplesInAllGroups' />"
390            "      <separator/>"
391            "      <menuitem action='RemoveSample'/>"
392            "      <menuitem action='RemoveUnusedSamples'/>"
393            "    </menu>"
394          "    <menu action='MenuInstrument'>"          "    <menu action='MenuInstrument'>"
395            "      <menu action='AllInstruments'>"
396            "      </menu>"
397            "      <separator/>"
398            "      <menuitem action='InstrProperties'/>"
399            "      <menuitem action='MidiRules'/>"
400            "      <menuitem action='ScriptSlots'/>"
401            "      <menuitem action='AddInstrument'/>"
402            "      <menuitem action='DupInstrument'/>"
403            "      <separator/>"
404            "      <menuitem action='RemoveInstrument'/>"
405            "    </menu>"
406            "    <menu action='MenuScript'>"
407            "      <menuitem action='AddScriptGroup'/>"
408            "      <menuitem action='AddScript'/>"
409            "      <menuitem action='EditScript'/>"
410            "      <separator/>"
411            "      <menuitem action='RemoveScript'/>"
412          "    </menu>"          "    </menu>"
413          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
414          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
415            "      <menuitem action='AutoRestoreWinDim'/>"
416            "      <separator/>"
417            "      <menuitem action='RefreshAll'/>"
418            "    </menu>"
419            "    <menu action='MenuTools'>"
420            "      <menuitem action='CombineInstruments'/>"
421            "      <menuitem action='MergeFiles'/>"
422            "    </menu>"
423            "    <menu action='MenuSettings'>"
424            "      <menuitem action='WarnUserOnExtensions'/>"
425            "      <menuitem action='SyncSamplerInstrumentSelection'/>"
426            "      <menuitem action='MoveRootNoteWithRegionMoved'/>"
427            "      <menuitem action='SaveWithTemporaryFile'/>"
428          "    </menu>"          "    </menu>"
429          "    <menu action='MenuHelp'>"          "    <menu action='MenuHelp'>"
430          "      <menuitem action='About'/>"          "      <menuitem action='About'/>"
# Line 242  MainWindow::MainWindow() : Line 433  MainWindow::MainWindow() :
433          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
434          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
435          "    <menuitem action='MidiRules'/>"          "    <menuitem action='MidiRules'/>"
436            "    <menuitem action='ScriptSlots'/>"
437          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
438          "    <menuitem action='DupInstrument'/>"          "    <menuitem action='DupInstrument'/>"
439          "    <separator/>"          "    <separator/>"
# Line 251  MainWindow::MainWindow() : Line 443  MainWindow::MainWindow() :
443          "    <menuitem action='SampleProperties'/>"          "    <menuitem action='SampleProperties'/>"
444          "    <menuitem action='AddGroup'/>"          "    <menuitem action='AddGroup'/>"
445          "    <menuitem action='AddSample'/>"          "    <menuitem action='AddSample'/>"
446            "    <menuitem action='ShowSampleRefs'/>"
447            "    <menuitem action='ReplaceSample' />"
448          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"
449          "    <separator/>"          "    <separator/>"
450          "    <menuitem action='RemoveSample'/>"          "    <menuitem action='RemoveSample'/>"
451            "    <menuitem action='RemoveUnusedSamples'/>"
452            "  </popup>"
453            "  <popup name='ScriptPopupMenu'>"
454            "    <menuitem action='AddScriptGroup'/>"
455            "    <menuitem action='AddScript'/>"
456            "    <menuitem action='EditScript'/>"
457            "    <separator/>"
458            "    <menuitem action='RemoveScript'/>"
459          "  </popup>"          "  </popup>"
460          "</ui>";          "</ui>";
461      uiManager->add_ui_from_string(ui_info);      uiManager->add_ui_from_string(ui_info);
462    
463      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));
464        
465        // Set tooltips for menu items (for some reason, setting a tooltip on the
466        // respective Gtk::Action objects above will simply be ignored, no matter
467        // if using Gtk::Action::set_tooltip() or passing the tooltip string on
468        // Gtk::Action::create()).
469        {
470            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
471                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
472            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."));
473        }
474        {
475            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
476                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
477            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."));
478        }
479        {
480            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
481                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
482            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."));
483        }
484        {
485            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
486                uiManager->get_widget("/MenuBar/MenuSettings/WarnUserOnExtensions"));
487            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."));
488        }
489        {
490            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
491                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
492            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)."));
493        }
494        {
495            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
496                uiManager->get_widget("/MenuBar/MenuSettings/MoveRootNoteWithRegionMoved"));
497            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."));
498        }
499        {
500            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
501                uiManager->get_widget("/MenuBar/MenuSample/RemoveUnusedSamples"));
502            item->set_tooltip_text(_("Removes all samples that are not referenced by any instrument (i.e. red ones)."));
503            // copy tooltip to popup menu
504            Gtk::MenuItem* item2 = dynamic_cast<Gtk::MenuItem*>(
505                uiManager->get_widget("/SamplePopupMenu/RemoveUnusedSamples"));
506            item2->set_tooltip_text(item->get_tooltip_text());
507        }
508        {
509            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
510                uiManager->get_widget("/MenuBar/MenuView/RefreshAll"));
511            item->set_tooltip_text(_("Reloads the currently open gig file and updates the entire graphical user interface."));
512        }
513        {
514            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
515                uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
516            item->set_tooltip_text(_("If checked, size and position of all windows will be saved and automatically restored next time."));
517        }
518        {
519            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
520                uiManager->get_widget("/MenuBar/MenuTools/CombineInstruments"));
521            item->set_tooltip_text(_("Create combi sounds out of individual sounds of this .gig file."));
522        }
523        {
524            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
525                uiManager->get_widget("/MenuBar/MenuTools/MergeFiles"));
526            item->set_tooltip_text(_("Add instruments and samples of other .gig files to this .gig file."));
527        }
528    
529    
530      instrument_menu = static_cast<Gtk::MenuItem*>(      instrument_menu = static_cast<Gtk::MenuItem*>(
531          uiManager->get_widget("/MenuBar/MenuInstrument"))->get_submenu();          uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();
532    
533      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");
534      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
# Line 287  MainWindow::MainWindow() : Line 554  MainWindow::MainWindow() :
554      // Create the Tree model:      // Create the Tree model:
555      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refTreeModel = Gtk::ListStore::create(m_Columns);
556      m_TreeView.set_model(m_refTreeModel);      m_TreeView.set_model(m_refTreeModel);
557        m_TreeView.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
558        m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules. Drag & drop to change the order of instruments."));
559      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(
560          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
561      );      );
562    
563      // Add the TreeView's view columns:      // Add the TreeView's view columns:
564      m_TreeView.append_column_editable("Instrument", m_Columns.m_col_name);      m_TreeView.append_column(_("Nr"), m_Columns.m_col_nr);
565      m_TreeView.set_headers_visible(false);      m_TreeView.append_column_editable(_("Instrument"), m_Columns.m_col_name);
566        m_TreeView.set_headers_visible(true);
567        
568        // establish drag&drop within the instrument tree view, allowing to reorder
569        // the sequence of instruments within the gig file
570        {
571            std::vector<Gtk::TargetEntry> drag_target_instrument;
572            drag_target_instrument.push_back(Gtk::TargetEntry("gig::Instrument"));
573            m_TreeView.drag_source_set(drag_target_instrument);
574            m_TreeView.drag_dest_set(drag_target_instrument);
575            m_TreeView.signal_drag_begin().connect(
576                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_begin)
577            );
578            m_TreeView.signal_drag_data_get().connect(
579                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_data_get)
580            );
581            m_TreeView.signal_drag_data_received().connect(
582                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drop_drag_data_received)
583            );
584        }
585    
586      // create samples treeview (including its data model)      // create samples treeview (including its data model)
587      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);
588      m_TreeViewSamples.set_model(m_refSamplesTreeModel);      m_TreeViewSamples.set_model(m_refSamplesTreeModel);
589        m_TreeViewSamples.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
590        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."));
591      // m_TreeViewSamples.set_reorderable();      // m_TreeViewSamples.set_reorderable();
592      m_TreeViewSamples.append_column_editable("Samples", m_SamplesModel.m_col_name);      m_TreeViewSamples.append_column_editable(_("Name"), m_SamplesModel.m_col_name);
593      m_TreeViewSamples.set_headers_visible(false);      m_TreeViewSamples.append_column(_("Referenced"), m_SamplesModel.m_col_refcount);
594        {
595            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(0);
596            Gtk::CellRendererText* cellrenderer =
597                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
598            column->add_attribute(
599                cellrenderer->property_foreground(), m_SamplesModel.m_color
600            );
601        }
602        {
603            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(1);
604            Gtk::CellRendererText* cellrenderer =
605                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
606            column->add_attribute(
607                cellrenderer->property_foreground(), m_SamplesModel.m_color
608            );
609        }
610        m_TreeViewSamples.set_headers_visible(true);
611      m_TreeViewSamples.signal_button_press_event().connect_notify(      m_TreeViewSamples.signal_button_press_event().connect_notify(
612          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
613      );      );
# Line 308  MainWindow::MainWindow() : Line 615  MainWindow::MainWindow() :
615          sigc::mem_fun(*this, &MainWindow::sample_name_changed)          sigc::mem_fun(*this, &MainWindow::sample_name_changed)
616      );      );
617    
618        // create scripts treeview (including its data model)
619        m_refScriptsTreeModel = ScriptsTreeStore::create(m_ScriptsModel);
620        m_TreeViewScripts.set_model(m_refScriptsTreeModel);
621        m_TreeViewScripts.set_tooltip_text(_(
622            "Use CTRL + double click for editing a script."
623            "\n\n"
624            "Note: instrument scripts are a LinuxSampler extension of the gig "
625            "format. This feature will not work with the GigaStudio software!"
626        ));
627        // m_TreeViewScripts.set_reorderable();
628        m_TreeViewScripts.append_column_editable("Samples", m_ScriptsModel.m_col_name);
629        m_TreeViewScripts.set_headers_visible(false);
630        m_TreeViewScripts.signal_button_press_event().connect_notify(
631            sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
632        );
633        //FIXME: why the heck does this double click signal_row_activated() only fire while CTRL key is pressed ?
634        m_TreeViewScripts.signal_row_activated().connect(
635            sigc::mem_fun(*this, &MainWindow::script_double_clicked)
636        );
637        m_refScriptsTreeModel->signal_row_changed().connect(
638            sigc::mem_fun(*this, &MainWindow::script_name_changed)
639        );
640    
641        // establish drag&drop between scripts tree view and ScriptSlots window
642        std::vector<Gtk::TargetEntry> drag_target_gig_script;
643        drag_target_gig_script.push_back(Gtk::TargetEntry("gig::Script"));
644        m_TreeViewScripts.drag_source_set(drag_target_gig_script);
645        m_TreeViewScripts.signal_drag_begin().connect(
646            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_begin)
647        );
648        m_TreeViewScripts.signal_drag_data_get().connect(
649            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_data_get)
650        );
651    
652      // 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
653      std::vector<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
654      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
# Line 326  MainWindow::MainWindow() : Line 667  MainWindow::MainWindow() :
667          sigc::hide(sigc::mem_fun(*this, &MainWindow::file_changed)));          sigc::hide(sigc::mem_fun(*this, &MainWindow::file_changed)));
668      m_RegionChooser.signal_instrument_changed().connect(      m_RegionChooser.signal_instrument_changed().connect(
669          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
670        m_RegionChooser.signal_instrument_changed().connect(
671            sigc::mem_fun(*this, &MainWindow::region_changed));
672      m_DimRegionChooser.signal_region_changed().connect(      m_DimRegionChooser.signal_region_changed().connect(
673          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
674      instrumentProps.signal_changed().connect(      instrumentProps.signal_changed().connect(
# Line 341  MainWindow::MainWindow() : Line 684  MainWindow::MainWindow() :
684          dimreg_changed_signal.make_slot());          dimreg_changed_signal.make_slot());
685      dimreg_edit.signal_sample_ref_changed().connect(      dimreg_edit.signal_sample_ref_changed().connect(
686          sample_ref_changed_signal.make_slot());          sample_ref_changed_signal.make_slot());
687        sample_ref_changed_signal.connect(
688            sigc::mem_fun(*this, &MainWindow::on_sample_ref_changed)
689        );
690        samples_to_be_removed_signal.connect(
691            sigc::mem_fun(*this, &MainWindow::on_samples_to_be_removed)
692        );
693    
694        dimreg_edit.signal_select_sample().connect(
695            sigc::mem_fun(*this, &MainWindow::select_sample)
696        );
697    
698      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(
699          sigc::hide(          sigc::hide(
# Line 382  MainWindow::MainWindow() : Line 735  MainWindow::MainWindow() :
735    
736      // start with a new gig file by default      // start with a new gig file by default
737      on_action_file_new();      on_action_file_new();
738    
739        // select 'Instruments' tab by default
740        // (gtk allows this only if the tab childs are visible, thats why it's here)
741        m_TreeViewNotebook.set_current_page(1);
742  }  }
743    
744  MainWindow::~MainWindow()  MainWindow::~MainWindow()
# Line 407  void MainWindow::region_changed() Line 764  void MainWindow::region_changed()
764  gig::Instrument* MainWindow::get_instrument()  gig::Instrument* MainWindow::get_instrument()
765  {  {
766      gig::Instrument* instrument = 0;      gig::Instrument* instrument = 0;
767      Gtk::TreeModel::const_iterator it =      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
768          m_TreeView.get_selection()->get_selected();      if (rows.empty()) return NULL;
769        Gtk::TreeModel::const_iterator it = m_refTreeModel->get_iter(rows[0]);
770      if (it) {      if (it) {
771          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
772          instrument = row[m_Columns.m_col_instr];          instrument = row[m_Columns.m_col_instr];
# Line 451  void MainWindow::update_dimregs() Line 809  void MainWindow::update_dimregs()
809              add_region_to_dimregs(region, stereo, all_dimregs);              add_region_to_dimregs(region, stereo, all_dimregs);
810          }          }
811      }      }
812    
813        m_DimRegionChooser.setModifyAllRegions(all_regions);
814        m_DimRegionChooser.setModifyAllDimensionRegions(all_dimregs);
815        m_DimRegionChooser.setModifyBothChannels(stereo);
816  }  }
817    
818  void MainWindow::dimreg_all_dimregs_toggled()  void MainWindow::dimreg_all_dimregs_toggled()
# Line 462  void MainWindow::dimreg_all_dimregs_togg Line 824  void MainWindow::dimreg_all_dimregs_togg
824  void MainWindow::dimreg_changed()  void MainWindow::dimreg_changed()
825  {  {
826      update_dimregs();      update_dimregs();
827      dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion());      dimreg_edit.set_dim_region(m_DimRegionChooser.get_main_dimregion());
828  }  }
829    
830  void MainWindow::on_sel_change()  void MainWindow::on_sel_change()
831  {  {
832      // select item in instrument menu      // select item in instrument menu
833      Gtk::TreeModel::iterator it = m_TreeView.get_selection()->get_selected();      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
834      if (it) {      if (!rows.empty()) {
835          Gtk::TreePath path(it);          Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
836          int index = path[0];          if (it) {
837          const std::vector<Gtk::Widget*> children =              Gtk::TreePath path(it);
838              instrument_menu->get_children();              int index = path[0];
839          static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();              const std::vector<Gtk::Widget*> children =
840                    instrument_menu->get_children();
841                static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();
842            }
843      }      }
844    
845      m_RegionChooser.set_instrument(get_instrument());      m_RegionChooser.set_instrument(get_instrument());
846    
847        if (Settings::singleton()->syncSamplerInstrumentSelection) {
848            switch_sampler_instrument_signal.emit(get_instrument());
849        }
850  }  }
851    
852  void loader_progress_callback(gig::progress_t* progress)  void loader_progress_callback(gig::progress_t* progress)
# Line 495  void Loader::progress_callback(float fra Line 864  void Loader::progress_callback(float fra
864      progress_dispatcher();      progress_dispatcher();
865  }  }
866    
867    #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
868    // make sure stack is 16-byte aligned for SSE instructions
869    __attribute__((force_align_arg_pointer))
870    #endif
871  void Loader::thread_function()  void Loader::thread_function()
872  {  {
873      printf("thread_function self=%x\n", Glib::Threads::Thread::self());      printf("thread_function self=%p\n",
874      printf("Start %s\n", filename);             static_cast<void*>(Glib::Threads::Thread::self()));
875      RIFF::File* riff = new RIFF::File(filename);      printf("Start %s\n", filename.c_str());
876      gig = new gig::File(riff);      try {
877      gig::progress_t progress;          RIFF::File* riff = new RIFF::File(filename);
878      progress.callback = loader_progress_callback;          gig = new gig::File(riff);
879      progress.custom = this;          gig::progress_t progress;
880            progress.callback = loader_progress_callback;
881      gig->GetInstrument(0, &progress);          progress.custom = this;
882      printf("End\n");  
883      finished_dispatcher();          gig->GetInstrument(0, &progress);
884            printf("End\n");
885            finished_dispatcher();
886        } catch (RIFF::Exception e) {
887            error_message = e.Message;
888            error_dispatcher.emit();
889        } catch (...) {
890            error_message = _("Unknown exception occurred");
891            error_dispatcher.emit();
892        }
893  }  }
894    
895  Loader::Loader(const char* filename)  Loader::Loader(const char* filename)
896      : filename(filename), thread(0)      : filename(filename), gig(0), thread(0), progress(0.f)
897  {  {
898  }  }
899    
# Line 522  void Loader::launch() Line 904  void Loader::launch()
904  #else  #else
905      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));
906  #endif  #endif
907      printf("launch thread=%x\n", thread);      printf("launch thread=%p\n", static_cast<void*>(thread));
908  }  }
909    
910  float Loader::get_progress()  float Loader::get_progress()
# Line 545  Glib::Dispatcher& Loader::signal_finishe Line 927  Glib::Dispatcher& Loader::signal_finishe
927      return finished_dispatcher;      return finished_dispatcher;
928  }  }
929    
930  LoadDialog::LoadDialog(const Glib::ustring& title, Gtk::Window& parent)  Glib::Dispatcher& Loader::signal_error()
931    {
932        return error_dispatcher;
933    }
934    
935    void saver_progress_callback(gig::progress_t* progress)
936    {
937        Saver* saver = static_cast<Saver*>(progress->custom);
938        saver->progress_callback(progress->factor);
939    }
940    
941    void Saver::progress_callback(float fraction)
942    {
943        {
944            Glib::Threads::Mutex::Lock lock(progressMutex);
945            progress = fraction;
946        }
947        progress_dispatcher.emit();
948    }
949    
950    #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
951    // make sure stack is 16-byte aligned for SSE instructions
952    __attribute__((force_align_arg_pointer))
953    #endif
954    void Saver::thread_function()
955    {
956        printf("thread_function self=%p\n",
957               static_cast<void*>(Glib::Threads::Thread::self()));
958        printf("Start %s\n", filename.c_str());
959        try {
960            gig::progress_t progress;
961            progress.callback = saver_progress_callback;
962            progress.custom = this;
963    
964            // if no filename was provided, that means "save", if filename was provided means "save as"
965            if (filename.empty()) {
966                if (!Settings::singleton()->saveWithTemporaryFile) {
967                    // save directly over the existing .gig file
968                    // (requires less disk space than solution below
969                    // but may be slower)
970                    gig->Save(&progress);
971                } else {
972                    // save the file as separate temporary file first,
973                    // then move the saved file over the old file
974                    // (may result in performance speedup during save)
975                    String tmpname = filename + ".TMP";
976                    gig->Save(tmpname, &progress);
977                    #if defined(WIN32)
978                    if (!DeleteFile(filename.c_str())) {
979                        throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file).");
980                    }
981                    #else // POSIX ...
982                    if (unlink(filename.c_str())) {
983                        throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + String(strerror(errno)));
984                    }
985                    #endif
986                    if (rename(tmpname.c_str(), filename.c_str())) {
987                        #if defined(WIN32)
988                        throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");
989                        #else
990                        throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file): " + String(strerror(errno)));
991                        #endif
992                    }
993                }
994            } else {
995                gig->Save(filename, &progress);
996            }
997    
998            printf("End\n");
999            finished_dispatcher.emit();
1000        } catch (RIFF::Exception e) {
1001            error_message = e.Message;
1002            error_dispatcher.emit();
1003        } catch (...) {
1004            error_message = _("Unknown exception occurred");
1005            error_dispatcher.emit();
1006        }
1007    }
1008    
1009    Saver::Saver(gig::File* file, Glib::ustring filename)
1010        : gig(file), filename(filename), thread(0), progress(0.f)
1011    {
1012    }
1013    
1014    void Saver::launch()
1015    {
1016    #ifdef OLD_THREADS
1017        thread = Glib::Thread::create(sigc::mem_fun(*this, &Saver::thread_function), true);
1018    #else
1019        thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Saver::thread_function));
1020    #endif
1021        printf("launch thread=%p\n", static_cast<void*>(thread));
1022    }
1023    
1024    float Saver::get_progress()
1025    {
1026        float res;
1027        {
1028            Glib::Threads::Mutex::Lock lock(progressMutex);
1029            res = progress;
1030        }
1031        return res;
1032    }
1033    
1034    Glib::Dispatcher& Saver::signal_progress()
1035    {
1036        return progress_dispatcher;
1037    }
1038    
1039    Glib::Dispatcher& Saver::signal_finished()
1040    {
1041        return finished_dispatcher;
1042    }
1043    
1044    Glib::Dispatcher& Saver::signal_error()
1045    {
1046        return error_dispatcher;
1047    }
1048    
1049    ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)
1050      : Gtk::Dialog(title, parent, true)      : Gtk::Dialog(title, parent, true)
1051  {  {
1052      get_vbox()->pack_start(progressBar);      get_vbox()->pack_start(progressBar);
1053      show_all_children();      show_all_children();
1054        resize(600,50);
1055  }  }
1056    
1057  // Clear all GUI elements / controls. This method is typically called  // Clear all GUI elements / controls. This method is typically called
# Line 560  void MainWindow::__clear() { Line 1062  void MainWindow::__clear() {
1062      // clear the samples and instruments tree views      // clear the samples and instruments tree views
1063      m_refTreeModel->clear();      m_refTreeModel->clear();
1064      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
1065        m_refScriptsTreeModel->clear();
1066      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
1067      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
1068          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
# Line 570  void MainWindow::__clear() { Line 1073  void MainWindow::__clear() {
1073      set_file_is_shared(false);      set_file_is_shared(false);
1074  }  }
1075    
1076    void MainWindow::__refreshEntireGUI() {
1077        // clear the samples and instruments tree views
1078        m_refTreeModel->clear();
1079        m_refSamplesTreeModel->clear();
1080        m_refScriptsTreeModel->clear();
1081        // remove all entries from "Instrument" menu
1082        while (!instrument_menu->get_children().empty()) {
1083            remove_instrument_from_menu(0);
1084        }
1085    
1086        if (!this->file) return;
1087    
1088        load_gig(
1089            this->file, this->file->pInfo->Name.c_str(), this->file_is_shared
1090        );
1091    }
1092    
1093  void MainWindow::on_action_file_new()  void MainWindow::on_action_file_new()
1094  {  {
1095      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;
# Line 595  bool MainWindow::close_confirmation_dial Line 1115  bool MainWindow::close_confirmation_dial
1115      g_free(msg);      g_free(msg);
1116      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."));
1117      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
1118      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
1119      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);
1120      dialog.set_default_response(Gtk::RESPONSE_YES);      dialog.set_default_response(Gtk::RESPONSE_YES);
1121      int response = dialog.run();      int response = dialog.run();
1122      dialog.hide();      dialog.hide();
1123      if (response == Gtk::RESPONSE_YES) return file_save();  
1124      return response != Gtk::RESPONSE_CANCEL;      // user decided to exit app without saving
1125        if (response == Gtk::RESPONSE_NO) return true;
1126    
1127        // user cancelled dialog, thus don't close app
1128        if (response == Gtk::RESPONSE_CANCEL) return false;
1129    
1130        // TODO: the following return valid is disabled and hard coded instead for
1131        // now, due to the fact that saving with progress bar is now implemented
1132        // asynchronously, as a result the app does not close automatically anymore
1133        // after saving the file has completed
1134        //
1135        //   if (response == Gtk::RESPONSE_YES) return file_save();
1136        //   return response != Gtk::RESPONSE_CANCEL;
1137        //
1138        if (response == Gtk::RESPONSE_YES) file_save();
1139        return false; // always prevent closing the app for now (see comment above)
1140  }  }
1141    
1142  bool MainWindow::leaving_shared_mode_dialog() {  bool MainWindow::leaving_shared_mode_dialog() {
# Line 612  bool MainWindow::leaving_shared_mode_dia Line 1147  bool MainWindow::leaving_shared_mode_dia
1147            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
1148            "load it."));            "load it."));
1149      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
1150      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
1151      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
1152      int response = dialog.run();      int response = dialog.run();
1153      dialog.hide();      dialog.hide();
# Line 626  void MainWindow::on_action_file_open() Line 1161  void MainWindow::on_action_file_open()
1161      if (file_is_shared && !leaving_shared_mode_dialog()) return;      if (file_is_shared && !leaving_shared_mode_dialog()) return;
1162    
1163      Gtk::FileChooserDialog dialog(*this, _("Open file"));      Gtk::FileChooserDialog dialog(*this, _("Open file"));
1164      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
1165      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
1166      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
1167  #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
1168      Gtk::FileFilter filter;      Gtk::FileFilter filter;
# Line 643  void MainWindow::on_action_file_open() Line 1178  void MainWindow::on_action_file_open()
1178      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1179          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
1180          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
1181          printf("on_action_file_open self=%x\n", Glib::Threads::Thread::self());          printf("on_action_file_open self=%p\n",
1182                   static_cast<void*>(Glib::Threads::Thread::self()));
1183          load_file(filename.c_str());          load_file(filename.c_str());
1184          current_gig_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
1185      }      }
# Line 652  void MainWindow::on_action_file_open() Line 1188  void MainWindow::on_action_file_open()
1188  void MainWindow::load_file(const char* name)  void MainWindow::load_file(const char* name)
1189  {  {
1190      __clear();      __clear();
1191      load_dialog = new LoadDialog(_("Loading..."), *this);  
1192      load_dialog->show_all();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
1193      loader = new Loader(strdup(name));          _("Loading") +  Glib::ustring(" '") +
1194            Glib::filename_display_basename(name) + "' ...",
1195            *this
1196        );
1197        progress_dialog->show_all();
1198        loader = new Loader(name); //FIXME: memory leak!
1199      loader->signal_progress().connect(      loader->signal_progress().connect(
1200          sigc::mem_fun(*this, &MainWindow::on_loader_progress));          sigc::mem_fun(*this, &MainWindow::on_loader_progress));
1201      loader->signal_finished().connect(      loader->signal_finished().connect(
1202          sigc::mem_fun(*this, &MainWindow::on_loader_finished));          sigc::mem_fun(*this, &MainWindow::on_loader_finished));
1203        loader->signal_error().connect(
1204            sigc::mem_fun(*this, &MainWindow::on_loader_error));
1205      loader->launch();      loader->launch();
1206  }  }
1207    
# Line 674  void MainWindow::load_instrument(gig::In Line 1217  void MainWindow::load_instrument(gig::In
1217      // load the instrument      // load the instrument
1218      gig::File* pFile = (gig::File*) instr->GetParent();      gig::File* pFile = (gig::File*) instr->GetParent();
1219      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);
1220      //TODO: automatically select the given instrument      // automatically select the given instrument
1221        int i = 0;
1222        for (gig::Instrument* instrument = pFile->GetFirstInstrument(); instrument;
1223             instrument = pFile->GetNextInstrument(), ++i)
1224        {
1225            if (instrument == instr) {
1226                // select item in "instruments" tree view
1227                m_TreeView.get_selection()->select(Gtk::TreePath(ToString(i)));
1228                // make sure the selected item in the "instruments" tree view is
1229                // visible (scroll to it)
1230                m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));
1231                // select item in instrument menu
1232                {
1233                    const std::vector<Gtk::Widget*> children =
1234                        instrument_menu->get_children();
1235                    static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();
1236                }
1237                // update region chooser and dimension region chooser
1238                m_RegionChooser.set_instrument(instr);
1239                break;
1240            }
1241        }
1242  }  }
1243    
1244  void MainWindow::on_loader_progress()  void MainWindow::on_loader_progress()
1245  {  {
1246      load_dialog->set_fraction(loader->get_progress());      progress_dialog->set_fraction(loader->get_progress());
1247  }  }
1248    
1249  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
1250  {  {
1251      printf("Loader finished!\n");      printf("Loader finished!\n");
1252      printf("on_loader_finished self=%x\n", Glib::Threads::Thread::self());      printf("on_loader_finished self=%p\n",
1253      load_gig(loader->gig, loader->filename);             static_cast<void*>(Glib::Threads::Thread::self()));
1254      load_dialog->hide();      load_gig(loader->gig, loader->filename.c_str());
1255        progress_dialog->hide();
1256    }
1257    
1258    void MainWindow::on_loader_error()
1259    {
1260        Glib::ustring txt = _("Could not load file: ") + loader->error_message;
1261        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1262        msg.run();
1263        progress_dialog->hide();
1264  }  }
1265    
1266  void MainWindow::on_action_file_save()  void MainWindow::on_action_file_save()
# Line 726  bool MainWindow::file_save() Line 1299  bool MainWindow::file_save()
1299    
1300      std::cout << "Saving file\n" << std::flush;      std::cout << "Saving file\n" << std::flush;
1301      file_structure_to_be_changed_signal.emit(this->file);      file_structure_to_be_changed_signal.emit(this->file);
1302      try {  
1303          file->Save();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
1304          if (file_is_changed) {          _("Saving") +  Glib::ustring(" '") +
1305              set_title(get_title().substr(1));          Glib::filename_display_basename(this->filename) + "' ...",
1306              file_is_changed = false;          *this
1307          }      );
1308      } catch (RIFF::Exception e) {      progress_dialog->show_all();
1309          file_structure_changed_signal.emit(this->file);      saver = new Saver(this->file); //FIXME: memory leak!
1310          Glib::ustring txt = _("Could not save file: ") + e.Message;      saver->signal_progress().connect(
1311          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);          sigc::mem_fun(*this, &MainWindow::on_saver_progress));
1312          msg.run();      saver->signal_finished().connect(
1313          return false;          sigc::mem_fun(*this, &MainWindow::on_saver_finished));
1314      }      saver->signal_error().connect(
1315      std::cout << "Saving file done\n" << std::flush;          sigc::mem_fun(*this, &MainWindow::on_saver_error));
1316        saver->launch();
1317    
1318        return true;
1319    }
1320    
1321    void MainWindow::on_saver_progress()
1322    {
1323        progress_dialog->set_fraction(saver->get_progress());
1324    }
1325    
1326    void MainWindow::on_saver_error()
1327    {
1328        file_structure_changed_signal.emit(this->file);
1329        Glib::ustring txt = _("Could not save file: ") + saver->error_message;
1330        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1331        msg.run();
1332    }
1333    
1334    void MainWindow::on_saver_finished()
1335    {
1336        this->file = saver->gig;
1337        this->filename = saver->filename;
1338        current_gig_dir = Glib::path_get_dirname(filename);
1339        set_title(Glib::filename_display_basename(filename));
1340        file_has_name = true;
1341        file_is_changed = false;
1342        std::cout << "Saving file done. Importing queued samples now ...\n" << std::flush;
1343      __import_queued_samples();      __import_queued_samples();
1344        std::cout << "Importing queued samples done.\n" << std::flush;
1345    
1346      file_structure_changed_signal.emit(this->file);      file_structure_changed_signal.emit(this->file);
1347      return true;  
1348        __refreshEntireGUI();
1349        progress_dialog->hide();
1350  }  }
1351    
1352  void MainWindow::on_action_file_save_as()  void MainWindow::on_action_file_save_as()
# Line 753  void MainWindow::on_action_file_save_as( Line 1357  void MainWindow::on_action_file_save_as(
1357    
1358  bool MainWindow::file_save_as()  bool MainWindow::file_save_as()
1359  {  {
1360      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);      Gtk::FileChooserDialog dialog(*this, _("Save As"), Gtk::FILE_CHOOSER_ACTION_SAVE);
1361      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
1362      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);      dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);
1363      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
1364      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
1365    
# Line 786  bool MainWindow::file_save_as() Line 1390  bool MainWindow::file_save_as()
1390      // show warning in the dialog      // show warning in the dialog
1391      Gtk::HBox descriptionArea;      Gtk::HBox descriptionArea;
1392      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
1393      Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));      Gtk::Image warningIcon;
1394        warningIcon.set_from_icon_name("dialog-warning",
1395                                       Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
1396      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
1397  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
1398      view::WrapLabel description;      view::WrapLabel description;
# Line 807  bool MainWindow::file_save_as() Line 1413  bool MainWindow::file_save_as()
1413      descriptionArea.show_all();      descriptionArea.show_all();
1414    
1415      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1416          file_structure_to_be_changed_signal.emit(this->file);          std::string filename = dialog.get_filename();
1417          try {          if (!Glib::str_has_suffix(filename, ".gig")) {
1418              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;  
1419          }          }
1420          __import_queued_samples();          printf("filename=%s\n", filename.c_str());
1421          file_structure_changed_signal.emit(this->file);  
1422            progress_dialog = new ProgressDialog( //FIXME: memory leak!
1423                _("Saving") +  Glib::ustring(" '") +
1424                Glib::filename_display_basename(filename) + "' ...",
1425                *this
1426            );
1427            progress_dialog->show_all();
1428    
1429            saver = new Saver(file, filename); //FIXME: memory leak!
1430            saver->signal_progress().connect(
1431                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
1432            saver->signal_finished().connect(
1433                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
1434            saver->signal_error().connect(
1435                sigc::mem_fun(*this, &MainWindow::on_saver_error));
1436            saver->launch();
1437    
1438          return true;          return true;
1439      }      }
1440      return false;      return false;
# Line 838  bool MainWindow::file_save_as() Line 1444  bool MainWindow::file_save_as()
1444  void MainWindow::__import_queued_samples() {  void MainWindow::__import_queued_samples() {
1445      std::cout << "Starting sample import\n" << std::flush;      std::cout << "Starting sample import\n" << std::flush;
1446      Glib::ustring error_files;      Glib::ustring error_files;
1447      printf("Samples to import: %d\n", m_SampleImportQueue.size());      printf("Samples to import: %d\n", int(m_SampleImportQueue.size()));
1448      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
1449           iter != m_SampleImportQueue.end(); ) {           iter != m_SampleImportQueue.end(); ) {
1450          printf("Importing sample %s\n",(*iter).sample_path.c_str());          printf("Importing sample %s\n",(*iter).sample_path.c_str());
# Line 934  void MainWindow::on_action_file_properti Line 1540  void MainWindow::on_action_file_properti
1540      propDialog.deiconify();      propDialog.deiconify();
1541  }  }
1542    
1543    void MainWindow::on_action_warn_user_on_extensions() {
1544        Settings::singleton()->warnUserOnExtensions =
1545            !Settings::singleton()->warnUserOnExtensions;
1546    }
1547    
1548    void MainWindow::on_action_sync_sampler_instrument_selection() {
1549        Settings::singleton()->syncSamplerInstrumentSelection =
1550            !Settings::singleton()->syncSamplerInstrumentSelection;
1551    }
1552    
1553    void MainWindow::on_action_move_root_note_with_region_moved() {
1554        Settings::singleton()->moveRootNoteWithRegionMoved =
1555            !Settings::singleton()->moveRootNoteWithRegionMoved;
1556    }
1557    
1558  void MainWindow::on_action_help_about()  void MainWindow::on_action_help_about()
1559  {  {
1560      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
# Line 943  void MainWindow::on_action_help_about() Line 1564  void MainWindow::on_action_help_about()
1564      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
1565  #endif  #endif
1566      dialog.set_version(VERSION);      dialog.set_version(VERSION);
1567      dialog.set_copyright("Copyright (C) 2006-2014 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2017 Andreas Persson");
1568      const std::string sComment =      const std::string sComment =
1569          _("Built " __DATE__ "\nUsing ") +          _("Built " __DATE__ "\nUsing ") +
1570          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
1571          _(          _(
1572              "Gigedit is released under the GNU General Public License.\n"              "Gigedit is released under the GNU General Public License.\n"
1573              "\n"              "\n"
1574              "Please notice that this is still a very young instrument editor. "              "This program is distributed WITHOUT ANY WARRANTY; So better "
1575              "So better backup your Gigasampler files before editing them with "              "backup your Gigasampler/GigaStudio files before editing them with "
1576              "this application.\n"              "this application.\n"
1577              "\n"              "\n"
1578              "Please report bugs to: http://bugs.linuxsampler.org"              "Please report bugs to: http://bugs.linuxsampler.org"
# Line 963  void MainWindow::on_action_help_about() Line 1584  void MainWindow::on_action_help_about()
1584  }  }
1585    
1586  PropDialog::PropDialog()  PropDialog::PropDialog()
1587      : eName(_("Name")),      : eFileFormat(_("File Format")),
1588          eName(_("Name")),
1589        eCreationDate(_("Creation date")),        eCreationDate(_("Creation date")),
1590        eComments(_("Comments")),        eComments(_("Comments")),
1591        eProduct(_("Product")),        eProduct(_("Product")),
# Line 979  PropDialog::PropDialog() Line 1601  PropDialog::PropDialog()
1601        eSourceForm(_("Source form")),        eSourceForm(_("Source form")),
1602        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
1603        eSubject(_("Subject")),        eSubject(_("Subject")),
1604        quitButton(Gtk::Stock::CLOSE),        quitButton(_("_Close"), true),
1605        table(2, 1)        table(2, 1),
1606          m_file(NULL)
1607  {  {
1608      set_title(_("File Properties"));      set_title(_("File Properties"));
1609      eName.set_width_chars(50);      eName.set_width_chars(50);
# Line 1002  PropDialog::PropDialog() Line 1625  PropDialog::PropDialog()
1625      connect(eCommissioned, &DLS::Info::Commissioned);      connect(eCommissioned, &DLS::Info::Commissioned);
1626      connect(eSubject, &DLS::Info::Subject);      connect(eSubject, &DLS::Info::Subject);
1627    
1628        table.add(eFileFormat);
1629      table.add(eName);      table.add(eName);
1630      table.add(eCreationDate);      table.add(eCreationDate);
1631      table.add(eComments);      table.add(eComments);
# Line 1032  PropDialog::PropDialog() Line 1656  PropDialog::PropDialog()
1656      quitButton.grab_focus();      quitButton.grab_focus();
1657      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
1658          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &PropDialog::hide));
1659        eFileFormat.signal_value_changed().connect(
1660            sigc::mem_fun(*this, &PropDialog::onFileFormatChanged));
1661    
1662      quitButton.show();      quitButton.show();
1663      vbox.show();      vbox.show();
1664      show_all_children();      show_all_children();
1665  }  }
1666    
1667    void PropDialog::set_file(gig::File* file)
1668    {
1669        m_file = file;
1670    
1671        // update file format version combo box
1672        const std::string sGiga = "Gigasampler/GigaStudio v";
1673        const int major = file->pVersion->major;
1674        std::vector<std::string> txts;
1675        std::vector<int> values;
1676        txts.push_back(sGiga + "2"); values.push_back(2);
1677        txts.push_back(sGiga + "3/v4"); values.push_back(3);
1678        if (major != 2 && major != 3) {
1679            txts.push_back(sGiga + ToString(major)); values.push_back(major);
1680        }
1681        std::vector<const char*> texts;
1682        for (int i = 0; i < txts.size(); ++i) texts.push_back(txts[i].c_str());
1683        texts.push_back(NULL); values.push_back(0);
1684        eFileFormat.set_choices(&texts[0], &values[0]);
1685        eFileFormat.set_value(major);
1686    }
1687    
1688    void PropDialog::onFileFormatChanged() {
1689        const int major = eFileFormat.get_value();
1690        if (m_file) m_file->pVersion->major = major;
1691    }
1692    
1693  void PropDialog::set_info(DLS::Info* info)  void PropDialog::set_info(DLS::Info* info)
1694  {  {
1695      update(info);      update(info);
# Line 1072  void InstrumentProps::set_MIDIProgram(ui Line 1724  void InstrumentProps::set_MIDIProgram(ui
1724  }  }
1725    
1726  InstrumentProps::InstrumentProps() :  InstrumentProps::InstrumentProps() :
1727      quitButton(Gtk::Stock::CLOSE),      quitButton(_("_Close"), true),
1728      table(2,1),      table(2,1),
1729      eName(_("Name")),      eName(_("Name")),
1730      eIsDrum(_("Is drum")),      eIsDrum(_("Is drum")),
# Line 1169  void MainWindow::file_changed() Line 1821  void MainWindow::file_changed()
1821      }      }
1822  }  }
1823    
1824    void MainWindow::updateSampleRefCountMap(gig::File* gig) {
1825        sample_ref_count.clear();
1826        
1827        if (!gig) return;
1828    
1829        for (gig::Instrument* instrument = gig->GetFirstInstrument(); instrument;
1830             instrument = gig->GetNextInstrument())
1831        {
1832            for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
1833                 rgn = instrument->GetNextRegion())
1834            {
1835                for (int i = 0; i < 256; ++i) {
1836                    if (!rgn->pDimensionRegions[i]) continue;
1837                    if (rgn->pDimensionRegions[i]->pSample) {
1838                        sample_ref_count[rgn->pDimensionRegions[i]->pSample]++;
1839                    }
1840                }
1841            }
1842        }
1843    }
1844    
1845  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
1846  {  {
1847      file = 0;      file = 0;
1848      set_file_is_shared(isSharedInstrument);      set_file_is_shared(isSharedInstrument);
1849    
1850      this->filename = filename ? filename : _("Unsaved Gig File");      this->filename =
1851            (filename && strlen(filename) > 0) ?
1852                filename : (!gig->GetFileName().empty()) ?
1853                    gig->GetFileName() : _("Unsaved Gig File");
1854      set_title(Glib::filename_display_basename(this->filename));      set_title(Glib::filename_display_basename(this->filename));
1855      file_has_name = filename;      file_has_name = filename;
1856      file_is_changed = false;      file_is_changed = false;
1857    
1858        propDialog.set_file(gig);
1859      propDialog.set_info(gig->pInfo);      propDialog.set_info(gig->pInfo);
1860    
1861      instrument_name_connection.block();      instrument_name_connection.block();
1862        int index = 0;
1863      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
1864           instrument = gig->GetNextInstrument()) {           instrument = gig->GetNextInstrument(), ++index) {
1865          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
1866    
1867          Gtk::TreeModel::iterator iter = m_refTreeModel->append();          Gtk::TreeModel::iterator iter = m_refTreeModel->append();
1868          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
1869            row[m_Columns.m_col_nr] = index;
1870          row[m_Columns.m_col_name] = name;          row[m_Columns.m_col_name] = name;
1871          row[m_Columns.m_col_instr] = instrument;          row[m_Columns.m_col_instr] = instrument;
1872    
1873          add_instrument_to_menu(name);          add_instrument_to_menu(name);
1874      }      }
1875      instrument_name_connection.unblock();      instrument_name_connection.unblock();
1876      uiManager->get_widget("/MenuBar/MenuInstrument")->show();      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();
1877    
1878        updateSampleRefCountMap(gig);
1879    
1880      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {
1881          if (group->Name != "") {          if (group->Name != "") {
# Line 1212  void MainWindow::load_gig(gig::File* gig Line 1893  void MainWindow::load_gig(gig::File* gig
1893                      gig_to_utf8(sample->pInfo->Name);                      gig_to_utf8(sample->pInfo->Name);
1894                  rowSample[m_SamplesModel.m_col_sample] = sample;                  rowSample[m_SamplesModel.m_col_sample] = sample;
1895                  rowSample[m_SamplesModel.m_col_group]  = NULL;                  rowSample[m_SamplesModel.m_col_group]  = NULL;
1896                    int refcount = sample_ref_count.count(sample) ? sample_ref_count[sample] : 0;
1897                    rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
1898                    rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
1899              }              }
1900          }          }
1901      }      }
1902        
1903        for (int i = 0; gig->GetScriptGroup(i); ++i) {
1904            gig::ScriptGroup* group = gig->GetScriptGroup(i);
1905    
1906            Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
1907            Gtk::TreeModel::Row rowGroup = *iterGroup;
1908            rowGroup[m_ScriptsModel.m_col_name]   = gig_to_utf8(group->Name);
1909            rowGroup[m_ScriptsModel.m_col_group]  = group;
1910            rowGroup[m_ScriptsModel.m_col_script] = NULL;
1911            for (int s = 0; group->GetScript(s); ++s) {
1912                gig::Script* script = group->GetScript(s);
1913    
1914                Gtk::TreeModel::iterator iterScript =
1915                    m_refScriptsTreeModel->append(rowGroup.children());
1916                Gtk::TreeModel::Row rowScript = *iterScript;
1917                rowScript[m_ScriptsModel.m_col_name] = gig_to_utf8(script->Name);
1918                rowScript[m_ScriptsModel.m_col_script] = script;
1919                rowScript[m_ScriptsModel.m_col_group]  = NULL;
1920            }
1921        }
1922        // unfold all sample groups & script groups by default
1923        m_TreeViewSamples.expand_all();
1924        m_TreeViewScripts.expand_all();
1925    
1926      file = gig;      file = gig;
1927    
# Line 1232  bool MainWindow::instr_props_set_instrum Line 1939  bool MainWindow::instr_props_set_instrum
1939  {  {
1940      instrumentProps.signal_name_changed().clear();      instrumentProps.signal_name_changed().clear();
1941    
1942      Gtk::TreeModel::const_iterator it =      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
1943          m_TreeView.get_selection()->get_selected();      if (rows.empty()) {
1944            instrumentProps.hide();
1945            return false;
1946        }
1947        Gtk::TreeModel::const_iterator it = m_refTreeModel->get_iter(rows[0]);
1948      if (it) {      if (it) {
1949          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
1950          gig::Instrument* instrument = row[m_Columns.m_col_instr];          gig::Instrument* instrument = row[m_Columns.m_col_instr];
# Line 1283  void MainWindow::show_midi_rules() Line 1994  void MainWindow::show_midi_rules()
1994      }      }
1995  }  }
1996    
1997    void MainWindow::show_script_slots() {
1998        if (!file) return;
1999        // get selected instrument
2000        std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
2001        if (rows.empty()) return;
2002        Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
2003        if (!it) return;
2004        Gtk::TreeModel::Row row = *it;
2005        gig::Instrument* instrument = row[m_Columns.m_col_instr];
2006        if (!instrument) return;
2007    
2008        ScriptSlots* window = new ScriptSlots;
2009        window->setInstrument(instrument);
2010        //window->reparent(*this);
2011        window->show();
2012    }
2013    
2014    void MainWindow::on_action_refresh_all() {
2015        __refreshEntireGUI();
2016    }
2017    
2018  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
2019      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
2020          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
# Line 1294  void MainWindow::on_action_view_status_b Line 2026  void MainWindow::on_action_view_status_b
2026      else                    m_StatusBar.hide();      else                    m_StatusBar.hide();
2027  }  }
2028    
2029    void MainWindow::on_auto_restore_win_dim() {
2030        Gtk::CheckMenuItem* item =
2031            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
2032        if (!item) {
2033            std::cerr << "/MenuBar/MenuView/AutoRestoreWinDim == NULL\n";
2034            return;
2035        }
2036        Settings::singleton()->autoRestoreWindowDimension = item->get_active();
2037    }
2038    
2039    void MainWindow::on_save_with_temporary_file() {
2040        Gtk::CheckMenuItem* item =
2041            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));
2042        if (!item) {
2043            std::cerr << "/MenuBar/MenuSettings/SaveWithTemporaryFile == NULL\n";
2044            return;
2045        }
2046        Settings::singleton()->saveWithTemporaryFile = item->get_active();
2047    }
2048    
2049  bool MainWindow::is_copy_samples_unity_note_enabled() const {  bool MainWindow::is_copy_samples_unity_note_enabled() const {
2050      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
2051          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
# Line 1330  void MainWindow::on_button_release(GdkEv Line 2082  void MainWindow::on_button_release(GdkEv
2082          show_instr_props();          show_instr_props();
2083      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
2084          // gig v2 files have no midi rules          // gig v2 files have no midi rules
2085            const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
2086            static_cast<Gtk::MenuItem*>(
2087                uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(
2088                    bEnabled
2089                );
2090          static_cast<Gtk::MenuItem*>(          static_cast<Gtk::MenuItem*>(
2091              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
2092                  !(file->pVersion && file->pVersion->major == 2));                  bEnabled
2093                );
2094          popup_menu->popup(button->button, button->time);          popup_menu->popup(button->button, button->time);
2095      }      }
2096  }  }
# Line 1352  void MainWindow::on_instrument_selection Line 2110  void MainWindow::on_instrument_selection
2110      }      }
2111  }  }
2112    
2113    void MainWindow::select_instrument(gig::Instrument* instrument) {
2114        if (!instrument) return;
2115    
2116        Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
2117        for (int i = 0; i < model->children().size(); ++i) {
2118            Gtk::TreeModel::Row row = model->children()[i];
2119            if (row[m_Columns.m_col_instr] == instrument) {
2120                // select and show the respective instrument in the list view
2121                show_intruments_tab();
2122                m_TreeView.get_selection()->unselect_all();
2123                m_TreeView.get_selection()->select(model->children()[i]);
2124                std::vector<Gtk::TreeModel::Path> rows =
2125                    m_TreeView.get_selection()->get_selected_rows();
2126                if (!rows.empty())
2127                    m_TreeView.scroll_to_row(rows[0]);
2128                on_sel_change(); // the regular instrument selection change callback
2129            }
2130        }
2131    }
2132    
2133    /// Returns true if requested dimension region was successfully selected and scrolled to in the list view, false on error.
2134    bool MainWindow::select_dimension_region(gig::DimensionRegion* dimRgn) {
2135        gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();
2136        gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();
2137    
2138        Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
2139        for (int i = 0; i < model->children().size(); ++i) {
2140            Gtk::TreeModel::Row row = model->children()[i];
2141            if (row[m_Columns.m_col_instr] == pInstrument) {
2142                // select and show the respective instrument in the list view
2143                show_intruments_tab();
2144                m_TreeView.get_selection()->unselect_all();
2145                m_TreeView.get_selection()->select(model->children()[i]);
2146                std::vector<Gtk::TreeModel::Path> rows =
2147                    m_TreeView.get_selection()->get_selected_rows();
2148                if (!rows.empty())
2149                    m_TreeView.scroll_to_row(rows[0]);
2150                on_sel_change(); // the regular instrument selection change callback
2151    
2152                // select respective region in the region selector
2153                m_RegionChooser.set_region(pRegion);
2154    
2155                // select and show the respective dimension region in the editor
2156                //update_dimregs();
2157                if (!m_DimRegionChooser.select_dimregion(dimRgn)) return false;
2158                //dimreg_edit.set_dim_region(dimRgn);
2159    
2160                return true;
2161            }
2162        }
2163    
2164        return false;
2165    }
2166    
2167    void MainWindow::select_sample(gig::Sample* sample) {
2168        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
2169        for (int g = 0; g < model->children().size(); ++g) {
2170            Gtk::TreeModel::Row rowGroup = model->children()[g];
2171            for (int s = 0; s < rowGroup.children().size(); ++s) {
2172                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
2173                if (rowSample[m_SamplesModel.m_col_sample] == sample) {
2174                    show_samples_tab();
2175                    m_TreeViewSamples.get_selection()->unselect_all();
2176                    m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);
2177                    std::vector<Gtk::TreeModel::Path> rows =
2178                        m_TreeViewSamples.get_selection()->get_selected_rows();
2179                    if (rows.empty()) return;
2180                    m_TreeViewSamples.scroll_to_row(rows[0]);
2181                    return;
2182                }
2183            }
2184        }
2185    }
2186    
2187  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
2188      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
2189            // by default if Ctrl keys is pressed down, then a mouse right-click
2190            // does not select the respective row, so we must assure this
2191            // programmatically ...
2192            /*{
2193                Gtk::TreeModel::Path path;
2194                Gtk::TreeViewColumn* pColumn = NULL;
2195                int cellX, cellY;
2196                bool bSuccess = m_TreeViewSamples.get_path_at_pos(
2197                    (int)button->x, (int)button->y,
2198                    path, pColumn, cellX, cellY
2199                );
2200                if (bSuccess) {
2201                    if (m_TreeViewSamples.get_selection()->count_selected_rows() <= 0) {
2202                        printf("not selected !!!\n");
2203                        m_TreeViewSamples.get_selection()->select(path);
2204                    }
2205                }
2206            }*/
2207    
2208          Gtk::Menu* sample_popup =          Gtk::Menu* sample_popup =
2209              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));
2210          // update enabled/disabled state of sample popup items          // update enabled/disabled state of sample popup items
2211          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
2212          Gtk::TreeModel::iterator it = sel->get_selected();          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2213          bool group_selected  = false;          const int n = rows.size();
2214          bool sample_selected = false;          int nGroups  = 0;
2215          if (it) {          int nSamples = 0;
2216            for (int r = 0; r < n; ++r) {
2217                Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
2218                if (!it) continue;
2219              Gtk::TreeModel::Row row = *it;              Gtk::TreeModel::Row row = *it;
2220              group_selected  = row[m_SamplesModel.m_col_group];              if (row[m_SamplesModel.m_col_group]) nGroups++;
2221              sample_selected = row[m_SamplesModel.m_col_sample];              if (row[m_SamplesModel.m_col_sample]) nSamples++;
2222          }          }
2223    
2224          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
2225              set_sensitive(group_selected || sample_selected);              set_sensitive(n == 1);
2226          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
2227              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
2228          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->
2229              set_sensitive(file);              set_sensitive(file);
2230            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/ShowSampleRefs"))->
2231                set_sensitive(nSamples == 1);
2232          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
2233              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
2234          // show sample popup          // show sample popup
2235          sample_popup->popup(button->button, button->time);          sample_popup->popup(button->button, button->time);
2236    
2237            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->
2238                set_sensitive(n == 1);
2239            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->
2240                set_sensitive(n);
2241            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddGroup"))->
2242                set_sensitive(file);
2243            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/ShowSampleRefs"))->
2244                set_sensitive(nSamples == 1);
2245            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->
2246                set_sensitive(n);
2247      }      }
2248  }  }
2249    
2250    void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {
2251        if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
2252            Gtk::Menu* script_popup =
2253                dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));
2254            // update enabled/disabled state of sample popup items
2255            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2256            Gtk::TreeModel::iterator it = sel->get_selected();
2257            bool group_selected  = false;
2258            bool script_selected = false;
2259            if (it) {
2260                Gtk::TreeModel::Row row = *it;
2261                group_selected  = row[m_ScriptsModel.m_col_group];
2262                script_selected = row[m_ScriptsModel.m_col_script];
2263            }
2264            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->
2265                set_sensitive(group_selected || script_selected);
2266            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->
2267                set_sensitive(file);
2268            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/EditScript"))->
2269                set_sensitive(script_selected);    
2270            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->
2271                set_sensitive(group_selected || script_selected);
2272            // show sample popup
2273            script_popup->popup(button->button, button->time);
2274    
2275            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->
2276                set_sensitive(group_selected || script_selected);
2277            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->
2278                set_sensitive(file);
2279            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/EditScript"))->
2280                set_sensitive(script_selected);    
2281            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->
2282                set_sensitive(group_selected || script_selected);
2283        }
2284    }
2285    
2286  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
2287      const Glib::ustring& name, int position) {      const Glib::ustring& name, int position) {
# Line 1419  void MainWindow::add_instrument(gig::Ins Line 2322  void MainWindow::add_instrument(gig::Ins
2322      instrument_name_connection.block();      instrument_name_connection.block();
2323      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
2324      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
2325        rowInstr[m_Columns.m_col_nr] = m_refTreeModel->children().size() - 1;
2326      rowInstr[m_Columns.m_col_name] = name;      rowInstr[m_Columns.m_col_name] = name;
2327      rowInstr[m_Columns.m_col_instr] = instrument;      rowInstr[m_Columns.m_col_instr] = instrument;
2328      instrument_name_connection.unblock();      instrument_name_connection.unblock();
# Line 1447  void MainWindow::on_action_duplicate_ins Line 2351  void MainWindow::on_action_duplicate_ins
2351      // retrieve the currently selected instrument      // retrieve the currently selected instrument
2352      // (being the original instrument to be duplicated)      // (being the original instrument to be duplicated)
2353      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
2354      Gtk::TreeModel::iterator itSelection = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2355      if (!itSelection) return;      for (int r = 0; r < rows.size(); ++r) {
2356      Gtk::TreeModel::Row row = *itSelection;          Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
2357      gig::Instrument* instrOrig = row[m_Columns.m_col_instr];          if (it) {
2358      if (!instrOrig) return;              Gtk::TreeModel::Row row = *it;
2359                gig::Instrument* instrOrig = row[m_Columns.m_col_instr];
2360      // duplicate the orginal instrument              if (instrOrig) {
2361      gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);                  // duplicate the orginal instrument
2362      instrNew->pInfo->Name =                  gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
2363          instrOrig->pInfo->Name +                  instrNew->pInfo->Name =
2364          gig_from_utf8(Glib::ustring(" (") + _("Copy") + ")");                      instrOrig->pInfo->Name +
2365                        gig_from_utf8(Glib::ustring(" (") + _("Copy") + ")");
2366    
2367      add_instrument(instrNew);                  add_instrument(instrNew);
2368                }
2369            }
2370        }
2371  }  }
2372    
2373  void MainWindow::on_action_remove_instrument() {  void MainWindow::on_action_remove_instrument() {
# Line 1476  void MainWindow::on_action_remove_instru Line 2384  void MainWindow::on_action_remove_instru
2384      }      }
2385    
2386      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
2387      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2388      if (it) {      for (int r = rows.size() - 1; r >= 0; --r) {
2389            Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
2390            if (!it) continue;
2391          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
2392          gig::Instrument* instr = row[m_Columns.m_col_instr];          gig::Instrument* instr = row[m_Columns.m_col_instr];
2393          try {          try {
# Line 1492  void MainWindow::on_action_remove_instru Line 2402  void MainWindow::on_action_remove_instru
2402    
2403              // remove row from instruments tree view              // remove row from instruments tree view
2404              m_refTreeModel->erase(it);              m_refTreeModel->erase(it);
2405                // update "Nr" column of all instrument rows
2406                {
2407                    int index = 0;
2408                    for (Gtk::TreeModel::iterator it = m_refTreeModel->children().begin();
2409                         it != m_refTreeModel->children().end(); ++it, ++index)
2410                    {
2411                        Gtk::TreeModel::Row row = *it;
2412                        row[m_Columns.m_col_nr] = index;
2413                    }
2414                }
2415    
2416  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
2417              // select another instrument (in gtk3 this is done              // select another instrument (in gtk3 this is done
# Line 1526  void MainWindow::on_action_sample_proper Line 2446  void MainWindow::on_action_sample_proper
2446      msg.run();      msg.run();
2447  }  }
2448    
2449    void MainWindow::on_action_add_script_group() {
2450        static int __script_indexer = 0;
2451        if (!file) return;
2452        gig::ScriptGroup* group = file->AddScriptGroup();
2453        group->Name = gig_from_utf8(_("Unnamed Group"));
2454        if (__script_indexer) group->Name += " " + ToString(__script_indexer);
2455        __script_indexer++;
2456        // update sample tree view
2457        Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
2458        Gtk::TreeModel::Row rowGroup = *iterGroup;
2459        rowGroup[m_ScriptsModel.m_col_name] = gig_to_utf8(group->Name);
2460        rowGroup[m_ScriptsModel.m_col_script] = NULL;
2461        rowGroup[m_ScriptsModel.m_col_group] = group;
2462        file_changed();
2463    }
2464    
2465    void MainWindow::on_action_add_script() {
2466        if (!file) return;
2467        // get selected group
2468        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2469        Gtk::TreeModel::iterator it = sel->get_selected();
2470        if (!it) return;
2471        Gtk::TreeModel::Row row = *it;
2472        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
2473        if (!group) { // not a group, but a script is selected (probably)
2474            gig::Script* script = row[m_ScriptsModel.m_col_script];
2475            if (!script) return;
2476            it = row.parent(); // resolve parent (that is the script's group)
2477            if (!it) return;
2478            row = *it;
2479            group = row[m_ScriptsModel.m_col_group];
2480            if (!group) return;
2481        }
2482    
2483        // add a new script to the .gig file
2484        gig::Script* script = group->AddScript();    
2485        Glib::ustring name = _("Unnamed Script");
2486        script->Name = gig_from_utf8(name);
2487    
2488        // add script to the tree view
2489        Gtk::TreeModel::iterator iterScript =
2490            m_refScriptsTreeModel->append(row.children());
2491        Gtk::TreeModel::Row rowScript = *iterScript;
2492        rowScript[m_ScriptsModel.m_col_name] = name;
2493        rowScript[m_ScriptsModel.m_col_script] = script;
2494        rowScript[m_ScriptsModel.m_col_group]  = NULL;
2495    
2496        // unfold group of new script item in treeview
2497        Gtk::TreeModel::Path path(iterScript);
2498        m_TreeViewScripts.expand_to_path(path);
2499    }
2500    
2501    void MainWindow::on_action_edit_script() {
2502        if (!file) return;
2503        // get selected script
2504        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2505        Gtk::TreeModel::iterator it = sel->get_selected();
2506        if (!it) return;
2507        Gtk::TreeModel::Row row = *it;
2508        gig::Script* script = row[m_ScriptsModel.m_col_script];
2509        if (!script) return;
2510    
2511        ScriptEditor* editor = new ScriptEditor;
2512        editor->signal_script_to_be_changed.connect(
2513            signal_script_to_be_changed.make_slot()
2514        );
2515        editor->signal_script_changed.connect(
2516            signal_script_changed.make_slot()
2517        );
2518        editor->setScript(script);
2519        //editor->reparent(*this);
2520        editor->show();
2521    }
2522    
2523    void MainWindow::on_action_remove_script() {
2524        if (!file) return;
2525        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2526        Gtk::TreeModel::iterator it = sel->get_selected();
2527        if (it) {
2528            Gtk::TreeModel::Row row = *it;
2529            gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
2530            gig::Script* script     = row[m_ScriptsModel.m_col_script];
2531            Glib::ustring name      = row[m_ScriptsModel.m_col_name];
2532            try {
2533                // remove script group or script from the gig file
2534                if (group) {
2535                    // notify everybody that we're going to remove these samples
2536    //TODO:         scripts_to_be_removed_signal.emit(members);
2537                    // delete the group in the .gig file including the
2538                    // samples that belong to the group
2539                    file->DeleteScriptGroup(group);
2540                    // notify that we're done with removal
2541    //TODO:         scripts_removed_signal.emit();
2542                    file_changed();
2543                } else if (script) {
2544                    // notify everybody that we're going to remove this sample
2545    //TODO:         std::list<gig::Script*> lscripts;
2546    //TODO:         lscripts.push_back(script);
2547    //TODO:         scripts_to_be_removed_signal.emit(lscripts);
2548                    // remove sample from the .gig file
2549                    script->GetGroup()->DeleteScript(script);
2550                    // notify that we're done with removal
2551    //TODO:         scripts_removed_signal.emit();
2552                    dimreg_changed();
2553                    file_changed();
2554                }
2555                // remove respective row(s) from samples tree view
2556                m_refScriptsTreeModel->erase(it);
2557            } catch (RIFF::Exception e) {
2558                // pretend we're done with removal (i.e. to avoid dead locks)
2559    //TODO:     scripts_removed_signal.emit();
2560                // show error message
2561                Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
2562                msg.run();
2563            }
2564        }
2565    }
2566    
2567  void MainWindow::on_action_add_group() {  void MainWindow::on_action_add_group() {
2568      static int __sample_indexer = 0;      static int __sample_indexer = 0;
2569      if (!file) return;      if (!file) return;
# Line 1542  void MainWindow::on_action_add_group() { Line 2580  void MainWindow::on_action_add_group() {
2580      file_changed();      file_changed();
2581  }  }
2582    
2583    void MainWindow::on_action_replace_sample() {
2584        add_or_replace_sample(true);
2585    }
2586    
2587  void MainWindow::on_action_add_sample() {  void MainWindow::on_action_add_sample() {
2588        add_or_replace_sample(false);
2589    }
2590    
2591    void MainWindow::add_or_replace_sample(bool replace) {
2592      if (!file) return;      if (!file) return;
2593      // get selected group  
2594        // get selected group (and probably selected sample)
2595      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
2596      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2597        if (rows.empty()) return;
2598        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
2599      if (!it) return;      if (!it) return;
2600      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
2601        gig::Sample* sample = NULL;
2602      gig::Group* group = row[m_SamplesModel.m_col_group];      gig::Group* group = row[m_SamplesModel.m_col_group];
2603      if (!group) { // not a group, but a sample is selected (probably)      if (!group) { // not a group, but a sample is selected (probably)
2604          gig::Sample* sample = row[m_SamplesModel.m_col_sample];          if (replace) sample = row[m_SamplesModel.m_col_sample];
2605          if (!sample) return;          if (!row[m_SamplesModel.m_col_sample]) return;
2606          it = row.parent(); // resolve parent (that is the sample's group)          it = row.parent(); // resolve parent (that is the sample's group)
2607          if (!it) return;          if (!it) return;
2608          row = *it;          if (!replace) row = *it;
2609          group = row[m_SamplesModel.m_col_group];          group = (*it)[m_SamplesModel.m_col_group];
2610          if (!group) return;          if (!group) return;
2611      }      }
2612        if (replace && !sample) return;
2613    
2614      // show 'browse for file' dialog      // show 'browse for file' dialog
2615      Gtk::FileChooserDialog dialog(*this, _("Add Sample(s)"));      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));
2616      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2617      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
2618      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
2619    
2620      // matches all file types supported by libsndfile      // matches all file types supported by libsndfile
2621  #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 1634  void MainWindow::on_action_add_sample() Line 2686  void MainWindow::on_action_add_sample()
2686                          sf_close(hFile); // close sound file                          sf_close(hFile); // close sound file
2687                          throw std::string(_("format not supported")); // unsupported subformat (yet?)                          throw std::string(_("format not supported")); // unsupported subformat (yet?)
2688                  }                  }
2689                  // add a new sample to the .gig file                  // add a new sample to the .gig file (if adding is requested actually)
2690                  gig::Sample* sample = file->AddSample();                  if (!replace) sample = file->AddSample();
2691                  // file name without path                  // file name without path
2692                  Glib::ustring filename = Glib::filename_display_basename(*iter);                  Glib::ustring filename = Glib::filename_display_basename(*iter);
2693                  // remove file extension if there is one                  // remove file extension if there is one
# Line 1686  void MainWindow::on_action_add_sample() Line 2738  void MainWindow::on_action_add_sample()
2738                  // physically when File::Save() is called)                  // physically when File::Save() is called)
2739                  sample->Resize(info.frames);                  sample->Resize(info.frames);
2740                  // make sure sample is part of the selected group                  // make sure sample is part of the selected group
2741                  group->AddSample(sample);                  if (!replace) group->AddSample(sample);
2742                  // schedule that physical resize and sample import                  // schedule that physical resize and sample import
2743                  // (data copying), performed when "Save" is requested                  // (data copying), performed when "Save" is requested
2744                  SampleImportItem sched_item;                  SampleImportItem sched_item;
# Line 1694  void MainWindow::on_action_add_sample() Line 2746  void MainWindow::on_action_add_sample()
2746                  sched_item.sample_path = *iter;                  sched_item.sample_path = *iter;
2747                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue.push_back(sched_item);
2748                  // add sample to the tree view                  // add sample to the tree view
2749                  Gtk::TreeModel::iterator iterSample =                  if (replace) {
2750                      m_refSamplesTreeModel->append(row.children());                      row[m_SamplesModel.m_col_name] = gig_to_utf8(sample->pInfo->Name);
2751                  Gtk::TreeModel::Row rowSample = *iterSample;                  } else {
2752                  rowSample[m_SamplesModel.m_col_name] =                      Gtk::TreeModel::iterator iterSample =
2753                      gig_to_utf8(sample->pInfo->Name);                          m_refSamplesTreeModel->append(row.children());
2754                  rowSample[m_SamplesModel.m_col_sample] = sample;                      Gtk::TreeModel::Row rowSample = *iterSample;
2755                  rowSample[m_SamplesModel.m_col_group]  = NULL;                      rowSample[m_SamplesModel.m_col_name] =
2756                            gig_to_utf8(sample->pInfo->Name);
2757                        rowSample[m_SamplesModel.m_col_sample] = sample;
2758                        rowSample[m_SamplesModel.m_col_group]  = NULL;
2759                    }
2760                  // close sound file                  // close sound file
2761                  sf_close(hFile);                  sf_close(hFile);
2762                  file_changed();                  file_changed();
# Line 1711  void MainWindow::on_action_add_sample() Line 2767  void MainWindow::on_action_add_sample()
2767          }          }
2768          // 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
2769          if (!error_files.empty()) {          if (!error_files.empty()) {
2770              Glib::ustring txt = _("Could not add the following sample(s):\n") + error_files;              Glib::ustring txt =
2771                    (replace
2772                        ? _("Failed to replace sample with:\n")
2773                        : _("Could not add the following sample(s):\n"))
2774                    + error_files;
2775              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2776              msg.run();              msg.run();
2777          }          }
# Line 1754  void MainWindow::on_action_replace_all_s Line 2814  void MainWindow::on_action_replace_all_s
2814      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
2815      description.show();      description.show();
2816      entryArea.show_all();      entryArea.show_all();
2817      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2818      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
2819      dialog.set_select_multiple(false);      dialog.set_select_multiple(false);
2820      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 1778  void MainWindow::on_action_replace_all_s Line 2838  void MainWindow::on_action_replace_all_s
2838              try              try
2839              {              {
2840                  if (!hFile) throw std::string(_("could not open file"));                  if (!hFile) throw std::string(_("could not open file"));
                 int bitdepth;  
2841                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
2842                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
2843                      case SF_FORMAT_PCM_16:                      case SF_FORMAT_PCM_16:
2844                      case SF_FORMAT_PCM_U8:                      case SF_FORMAT_PCM_U8:
                         bitdepth = 16;  
                         break;  
2845                      case SF_FORMAT_PCM_24:                      case SF_FORMAT_PCM_24:
2846                      case SF_FORMAT_PCM_32:                      case SF_FORMAT_PCM_32:
2847                      case SF_FORMAT_FLOAT:                      case SF_FORMAT_FLOAT:
2848                      case SF_FORMAT_DOUBLE:                      case SF_FORMAT_DOUBLE:
                         bitdepth = 24;  
2849                          break;                          break;
2850                      default:                      default:
2851                          sf_close(hFile);                          sf_close(hFile);
# Line 1822  void MainWindow::on_action_replace_all_s Line 2878  void MainWindow::on_action_replace_all_s
2878  void MainWindow::on_action_remove_sample() {  void MainWindow::on_action_remove_sample() {
2879      if (!file) return;      if (!file) return;
2880      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
2881      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2882      if (it) {      for (int r = rows.size() - 1; r >= 0; --r) {
2883            Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
2884            if (!it) continue;
2885          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
2886          gig::Group* group   = row[m_SamplesModel.m_col_group];          gig::Group* group   = row[m_SamplesModel.m_col_group];
2887          gig::Sample* sample = row[m_SamplesModel.m_col_sample];          gig::Sample* sample = row[m_SamplesModel.m_col_sample];
# Line 1895  void MainWindow::on_action_remove_sample Line 2953  void MainWindow::on_action_remove_sample
2953      }      }
2954  }  }
2955    
2956    void MainWindow::on_action_remove_unused_samples() {
2957        if (!file) return;
2958    
2959        // collect all samples that are not referenced by any instrument
2960        std::list<gig::Sample*> lsamples;
2961        for (int iSample = 0; file->GetSample(iSample); ++iSample) {
2962            gig::Sample* sample = file->GetSample(iSample);
2963            bool isUsed = false;
2964            for (gig::Instrument* instrument = file->GetFirstInstrument(); instrument;
2965                                  instrument = file->GetNextInstrument())
2966            {
2967                for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
2968                                  rgn = instrument->GetNextRegion())
2969                {
2970                    for (int i = 0; i < 256; ++i) {
2971                        if (!rgn->pDimensionRegions[i]) continue;
2972                        if (rgn->pDimensionRegions[i]->pSample != sample) continue;
2973                        isUsed = true;
2974                        goto endOfRefSearch;
2975                    }
2976                }
2977            }
2978            endOfRefSearch:
2979            if (!isUsed) lsamples.push_back(sample);
2980        }
2981    
2982        if (lsamples.empty()) return;
2983    
2984        // notify everybody that we're going to remove these samples
2985        samples_to_be_removed_signal.emit(lsamples);
2986    
2987        // remove collected samples
2988        try {
2989            for (std::list<gig::Sample*>::iterator itSample = lsamples.begin();
2990                 itSample != lsamples.end(); ++itSample)
2991            {
2992                gig::Sample* sample = *itSample;
2993                // remove sample from the .gig file
2994                file->DeleteSample(sample);
2995                // if sample was just previously added, remove it fro the import queue
2996                for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
2997                     iter != m_SampleImportQueue.end(); ++iter)
2998                {
2999                    if ((*iter).gig_sample == sample) {
3000                        printf("Removing previously added sample '%s'\n",
3001                               (*iter).sample_path.c_str());
3002                        m_SampleImportQueue.erase(iter);
3003                        break;
3004                    }
3005                }
3006            }
3007        } catch (RIFF::Exception e) {
3008            // show error message
3009            Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
3010            msg.run();
3011        }
3012    
3013        // notify everybody that we're done with removal
3014        samples_removed_signal.emit();
3015    
3016        dimreg_changed();
3017        file_changed();
3018        __refreshEntireGUI();
3019    }
3020    
3021    // see comment on on_sample_treeview_drag_begin()
3022    void MainWindow::on_scripts_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
3023    {
3024        first_call_to_drag_data_get = true;
3025    }
3026    
3027    void MainWindow::on_scripts_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
3028                                                       Gtk::SelectionData& selection_data, guint, guint)
3029    {
3030        if (!first_call_to_drag_data_get) return;
3031        first_call_to_drag_data_get = false;
3032    
3033        // get selected script
3034        gig::Script* script = NULL;
3035        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
3036        Gtk::TreeModel::iterator it = sel->get_selected();
3037        if (it) {
3038            Gtk::TreeModel::Row row = *it;
3039            script = row[m_ScriptsModel.m_col_script];
3040        }
3041        // pass the gig::Script as pointer
3042        selection_data.set(selection_data.get_target(), 0/*unused*/,
3043                           (const guchar*)&script,
3044                           sizeof(script)/*length of data in bytes*/);
3045    }
3046    
3047    // see comment on on_sample_treeview_drag_begin()
3048    void MainWindow::on_instruments_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
3049    {
3050        first_call_to_drag_data_get = true;
3051    }
3052    
3053    void MainWindow::on_instruments_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
3054                                                           Gtk::SelectionData& selection_data, guint, guint)
3055    {
3056        if (!first_call_to_drag_data_get) return;
3057        first_call_to_drag_data_get = false;
3058    
3059        // get selected source instrument
3060        gig::Instrument* src = NULL;
3061        {
3062            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
3063            std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3064            if (!rows.empty()) {
3065                Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
3066                if (it) {
3067                    Gtk::TreeModel::Row row = *it;
3068                    src = row[m_Columns.m_col_instr];
3069                }
3070            }
3071        }
3072        if (!src) return;
3073    
3074        // pass the source gig::Instrument as pointer
3075        selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&src,
3076                           sizeof(src)/*length of data in bytes*/);
3077    }
3078    
3079    void MainWindow::on_instruments_treeview_drop_drag_data_received(
3080        const Glib::RefPtr<Gdk::DragContext>& context, int x, int y,
3081        const Gtk::SelectionData& selection_data, guint, guint time)
3082    {
3083        gig::Instrument* src = *((gig::Instrument**) selection_data.get_data());
3084        if (!src || selection_data.get_length() != sizeof(gig::Instrument*))
3085            return;
3086    
3087        gig::Instrument* dst = NULL;
3088        {
3089            Gtk::TreeModel::Path path;
3090            const bool found = m_TreeView.get_path_at_pos(x, y, path);
3091            if (!found) return;
3092    
3093            Gtk::TreeModel::iterator iter = m_refTreeModel->get_iter(path);
3094            if (!iter) return;
3095            Gtk::TreeModel::Row row = *iter;
3096            dst = row[m_Columns.m_col_instr];
3097        }
3098        if (!dst) return;
3099    
3100        //printf("dragdrop received src=%s dst=%s\n", src->pInfo->Name.c_str(), dst->pInfo->Name.c_str());
3101        src->MoveTo(dst);
3102        __refreshEntireGUI();
3103        select_instrument(src);
3104    }
3105    
3106  // For some reason drag_data_get gets called two times for each  // For some reason drag_data_get gets called two times for each
3107  // 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
3108  // 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 1913  void MainWindow::on_sample_treeview_drag Line 3121  void MainWindow::on_sample_treeview_drag
3121      // get selected sample      // get selected sample
3122      gig::Sample* sample = NULL;      gig::Sample* sample = NULL;
3123      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
3124      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3125      if (it) {      if (!rows.empty()) {
3126          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
3127          sample = row[m_SamplesModel.m_col_sample];          if (it) {
3128                Gtk::TreeModel::Row row = *it;
3129                sample = row[m_SamplesModel.m_col_sample];
3130            }
3131      }      }
3132      // pass the gig::Sample as pointer      // pass the gig::Sample as pointer
3133      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 1953  void MainWindow::on_sample_label_drop_dr Line 3164  void MainWindow::on_sample_label_drop_dr
3164          bool channels_changed = false;          bool channels_changed = false;
3165          if (sample->Channels == 1 && stereo_dimension) {          if (sample->Channels == 1 && stereo_dimension) {
3166              // remove the samplechannel dimension              // remove the samplechannel dimension
3167    /* commented out, because it makes it impossible building up an instrument from scratch using two separate L/R samples
3168              region->DeleteDimension(stereo_dimension);              region->DeleteDimension(stereo_dimension);
3169              channels_changed = true;              channels_changed = true;
3170              region_changed();              region_changed();
3171    */
3172          }          }
3173          dimreg_edit.set_sample(          dimreg_edit.set_sample(
3174              sample,              sample,
# Line 2021  void MainWindow::sample_name_changed(con Line 3234  void MainWindow::sample_name_changed(con
3234      }      }
3235  }  }
3236    
3237    void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,
3238                                         const Gtk::TreeModel::iterator& iter) {
3239        if (!iter) return;
3240        Gtk::TreeModel::Row row = *iter;
3241        Glib::ustring name      = row[m_ScriptsModel.m_col_name];
3242        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
3243        gig::Script* script     = row[m_ScriptsModel.m_col_script];
3244        gig::String gigname(gig_from_utf8(name));
3245        if (group) {
3246            if (group->Name != gigname) {
3247                group->Name = gigname;
3248                printf("script group name changed\n");
3249                file_changed();
3250            }
3251        } else if (script) {
3252            if (script->Name != gigname) {
3253                script->Name = gigname;
3254                printf("script name changed\n");
3255                file_changed();
3256            }
3257        }
3258    }
3259    
3260    void MainWindow::script_double_clicked(const Gtk::TreeModel::Path& path,
3261                                           Gtk::TreeViewColumn* column)
3262    {
3263        Gtk::TreeModel::iterator iter = m_refScriptsTreeModel->get_iter(path);
3264        if (!iter) return;
3265        Gtk::TreeModel::Row row = *iter;
3266        gig::Script* script = row[m_ScriptsModel.m_col_script];
3267        if (!script) return;
3268    
3269        ScriptEditor* editor = new ScriptEditor;
3270        editor->signal_script_to_be_changed.connect(
3271            signal_script_to_be_changed.make_slot()
3272        );
3273        editor->signal_script_changed.connect(
3274            signal_script_changed.make_slot()
3275        );
3276        editor->setScript(script);
3277        //editor->reparent(*this);
3278        editor->show();
3279    }
3280    
3281  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,
3282                                           const Gtk::TreeModel::iterator& iter) {                                           const Gtk::TreeModel::iterator& iter) {
3283      if (!iter) return;      if (!iter) return;
# Line 2055  void MainWindow::instrument_name_changed Line 3312  void MainWindow::instrument_name_changed
3312      }      }
3313  }  }
3314    
3315    void MainWindow::on_action_combine_instruments() {
3316        CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);
3317        d->show_all();
3318        d->resize(500, 400);
3319        d->run();
3320        if (d->fileWasChanged()) {
3321            // update GUI with new instrument just created
3322            add_instrument(d->newCombinedInstrument());
3323        }
3324        delete d;
3325    }
3326    
3327    void MainWindow::on_action_view_references() {
3328        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
3329        std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3330        if (rows.empty()) return;
3331        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
3332        if (!it) return;
3333        Gtk::TreeModel::Row row = *it;
3334        gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3335        if (!sample) return;
3336    
3337        ReferencesView* d = new ReferencesView(*this);
3338        d->setSample(sample);
3339        d->dimension_region_selected.connect(
3340            sigc::mem_fun(*this, &MainWindow::select_dimension_region)
3341        );
3342        d->show_all();
3343        d->resize(500, 400);
3344        d->run();
3345        delete d;
3346    }
3347    
3348    void MainWindow::mergeFiles(const std::vector<std::string>& filenames) {
3349        struct _Source {
3350            std::vector<RIFF::File*> riffs;
3351            std::vector<gig::File*> gigs;
3352            
3353            ~_Source() {
3354                for (int k = 0; k < gigs.size(); ++k) delete gigs[k];
3355                for (int k = 0; k < riffs.size(); ++k) delete riffs[k];
3356                riffs.clear();
3357                gigs.clear();
3358            }
3359        } sources;
3360    
3361        if (filenames.empty())
3362            throw RIFF::Exception(_("No files selected, so nothing done."));
3363    
3364        // first open all input files (to avoid output file corruption)
3365        int i;
3366        try {
3367            for (i = 0; i < filenames.size(); ++i) {
3368                const std::string& filename = filenames[i];
3369                printf("opening file=%s\n", filename.c_str());
3370    
3371                RIFF::File* riff = new RIFF::File(filename);
3372                sources.riffs.push_back(riff);
3373    
3374                gig::File* gig = new gig::File(riff);
3375                sources.gigs.push_back(gig);
3376            }
3377        } catch (RIFF::Exception e) {
3378            throw RIFF::Exception(
3379                _("Error occurred while opening '") +
3380                filenames[i] +
3381                "': " +
3382                e.Message
3383            );
3384        } catch (...) {
3385            throw RIFF::Exception(
3386                _("Unknown exception occurred while opening '") +
3387                filenames[i] + "'"
3388            );
3389        }
3390    
3391        // now merge the opened .gig files to the main .gig file currently being
3392        // open in gigedit
3393        try {
3394            for (i = 0; i < filenames.size(); ++i) {
3395                const std::string& filename = filenames[i];
3396                printf("merging file=%s\n", filename.c_str());
3397                assert(i < sources.gigs.size());
3398    
3399                this->file->AddContentOf(sources.gigs[i]);
3400            }
3401        } catch (RIFF::Exception e) {
3402            throw RIFF::Exception(
3403                _("Error occurred while merging '") +
3404                filenames[i] +
3405                "': " +
3406                e.Message
3407            );
3408        } catch (...) {
3409            throw RIFF::Exception(
3410                _("Unknown exception occurred while merging '") +
3411                filenames[i] + "'"
3412            );
3413        }
3414    
3415        // Finally save gig file persistently to disk ...
3416        //NOTE: requires that this gig file already has a filename !
3417        {
3418            std::cout << "Saving file\n" << std::flush;
3419            file_structure_to_be_changed_signal.emit(this->file);
3420    
3421            progress_dialog = new ProgressDialog( //FIXME: memory leak!
3422                _("Saving") +  Glib::ustring(" '") +
3423                Glib::filename_display_basename(this->filename) + "' ...",
3424                *this
3425            );
3426            progress_dialog->show_all();
3427            saver = new Saver(this->file); //FIXME: memory leak!
3428            saver->signal_progress().connect(
3429                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
3430            saver->signal_finished().connect(
3431                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
3432            saver->signal_error().connect(
3433                sigc::mem_fun(*this, &MainWindow::on_saver_error));
3434            saver->launch();
3435        }
3436    }
3437    
3438    void MainWindow::on_action_merge_files() {
3439        if (this->file->GetFileName().empty()) {
3440            Glib::ustring txt = _(
3441                "You seem to have a new .gig file open that has not been saved "
3442                "yet. You must save it somewhere before starting to merge it with "
3443                "other .gig files though, because during the merge operation the "
3444                "other files' sample data must be written on file level to the "
3445                "target .gig file."
3446            );
3447            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
3448            msg.run();
3449            return;
3450        }
3451    
3452        Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
3453        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
3454        dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
3455        dialog.set_default_response(Gtk::RESPONSE_CANCEL);
3456    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
3457        Gtk::FileFilter filter;
3458        filter.add_pattern("*.gig");
3459    #else
3460        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
3461        filter->add_pattern("*.gig");
3462    #endif
3463        dialog.set_filter(filter);
3464        if (current_gig_dir != "") {
3465            dialog.set_current_folder(current_gig_dir);
3466        }
3467        dialog.set_select_multiple(true);
3468    
3469        // show warning in the file picker dialog
3470        Gtk::HBox descriptionArea;
3471        descriptionArea.set_spacing(15);
3472        Gtk::Image warningIcon;
3473        warningIcon.set_from_icon_name("dialog-warning",
3474                                       Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
3475        descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
3476    #if GTKMM_MAJOR_VERSION < 3
3477        view::WrapLabel description;
3478    #else
3479        Gtk::Label description;
3480        description.set_line_wrap();
3481    #endif
3482        description.set_markup(_(
3483            "\nSelect at least one .gig file that shall be merged to the .gig file "
3484            "currently being open in gigedit.\n\n"
3485            "<b>Please Note:</b> Merging with other files will modify your "
3486            "currently open .gig file on file level! And be aware that the current "
3487            "merge algorithm does not detect duplicate samples yet. So if you are "
3488            "merging files which are using equivalent sample data, those "
3489            "equivalent samples will currently be treated as separate samples and "
3490            "will accordingly be stored separately in the target .gig file!"
3491        ));
3492        descriptionArea.pack_start(description);
3493        dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
3494        descriptionArea.show_all();
3495    
3496        if (dialog.run() == Gtk::RESPONSE_OK) {
3497            printf("on_action_merge_files self=%p\n",
3498                   static_cast<void*>(Glib::Threads::Thread::self()));
3499            std::vector<std::string> filenames = dialog.get_filenames();
3500    
3501            // merge the selected files to the currently open .gig file
3502            try {
3503                mergeFiles(filenames);
3504            } catch (RIFF::Exception e) {
3505                Gtk::MessageDialog msg(*this, e.Message, false, Gtk::MESSAGE_ERROR);
3506                msg.run();
3507            }
3508    
3509            // update GUI
3510            __refreshEntireGUI();
3511        }
3512    }
3513    
3514  void MainWindow::set_file_is_shared(bool b) {  void MainWindow::set_file_is_shared(bool b) {
3515      this->file_is_shared = b;      this->file_is_shared = b;
3516    
# Line 2069  void MainWindow::set_file_is_shared(bool Line 3525  void MainWindow::set_file_is_shared(bool
3525              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)
3526          );          );
3527      }      }
3528    
3529        {
3530            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
3531                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
3532            if (item) item->set_sensitive(b);
3533        }
3534    }
3535    
3536    void MainWindow::on_sample_ref_count_incremented(gig::Sample* sample, int offset) {
3537        if (!sample) return;
3538        sample_ref_count[sample] += offset;
3539        const int refcount = sample_ref_count[sample];
3540    
3541        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
3542        for (int g = 0; g < model->children().size(); ++g) {
3543            Gtk::TreeModel::Row rowGroup = model->children()[g];
3544            for (int s = 0; s < rowGroup.children().size(); ++s) {
3545                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
3546                if (rowSample[m_SamplesModel.m_col_sample] != sample) continue;
3547                rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
3548                rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
3549            }
3550        }
3551    }
3552    
3553    void MainWindow::on_sample_ref_changed(gig::Sample* oldSample, gig::Sample* newSample) {
3554        on_sample_ref_count_incremented(oldSample, -1);
3555        on_sample_ref_count_incremented(newSample, +1);
3556    }
3557    
3558    void MainWindow::on_samples_to_be_removed(std::list<gig::Sample*> samples) {
3559        // just in case a new sample is added later with exactly the same memory
3560        // address, which would lead to incorrect refcount if not deleted here
3561        for (std::list<gig::Sample*>::const_iterator it = samples.begin();
3562             it != samples.end(); ++it)
3563        {
3564            sample_ref_count.erase(*it);
3565        }
3566    }
3567    
3568    void MainWindow::show_samples_tab() {
3569        m_TreeViewNotebook.set_current_page(0);
3570    }
3571    
3572    void MainWindow::show_intruments_tab() {
3573        m_TreeViewNotebook.set_current_page(1);
3574    }
3575    
3576    void MainWindow::show_scripts_tab() {
3577        m_TreeViewNotebook.set_current_page(2);
3578  }  }
3579    
3580  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 2126  sigc::signal<void, int/*key*/, int/*velo Line 3632  sigc::signal<void, int/*key*/, int/*velo
3632  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {
3633      return m_RegionChooser.signal_keyboard_key_released();      return m_RegionChooser.signal_keyboard_key_released();
3634  }  }
3635    
3636    sigc::signal<void, gig::Instrument*>& MainWindow::signal_switch_sampler_instrument() {
3637        return switch_sampler_instrument_signal;
3638    }

Legend:
Removed from v.2507  
changed lines
  Added in v.3106

  ViewVC Help
Powered by ViewVC