/[svn]/gigedit/trunk/src/gigedit/mainwindow.cpp
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/mainwindow.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2445 by persson, Sun Apr 28 06:07:22 2013 UTC revision 3162 by schoenebeck, Tue May 9 14:35:23 2017 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2013 Andreas Persson   * Copyright (C) 2006-2017 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 20  Line 20 
20  #include <iostream>  #include <iostream>
21  #include <cstring>  #include <cstring>
22    
23    #include <glibmmconfig.h>
24    // threads.h must be included first to be able to build with
25    // G_DISABLE_DEPRECATED
26    #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION == 31 && GLIBMM_MICRO_VERSION >= 2) || \
27        (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION > 31) || GLIBMM_MAJOR_VERSION > 2
28    #include <glibmm/threads.h>
29    #endif
30    
31  #include <glibmm/convert.h>  #include <glibmm/convert.h>
32  #include <glibmm/dispatcher.h>  #include <glibmm/dispatcher.h>
33  #include <glibmm/miscutils.h>  #include <glibmm/miscutils.h>
# Line 31  Line 39 
39  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
40  #include <gtkmm/main.h>  #include <gtkmm/main.h>
41  #include <gtkmm/toggleaction.h>  #include <gtkmm/toggleaction.h>
42    #include <gtkmm/accelmap.h>
43  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
44  #include "wrapLabel.hh"  #include "wrapLabel.hh"
45  #endif  #endif
# Line 40  Line 49 
49    
50  #include <stdio.h>  #include <stdio.h>
51  #include <sndfile.h>  #include <sndfile.h>
52    #include <assert.h>
53    
54  #include "mainwindow.h"  #include "mainwindow.h"
55    #include "Settings.h"
56    #include "CombineInstrumentsDialog.h"
57    #include "scripteditor.h"
58    #include "scriptslots.h"
59    #include "ReferencesView.h"
60  #include "../../gfx/status_attached.xpm"  #include "../../gfx/status_attached.xpm"
61  #include "../../gfx/status_detached.xpm"  #include "../../gfx/status_detached.xpm"
62    #include "gfx/builtinpix.h"
63    #include "MacroEditor.h"
64    #include "MacrosSetup.h"
65    
66  MainWindow::MainWindow() :  MainWindow::MainWindow() :
67        m_DimRegionChooser(*this),
68      dimreg_label(_("Changes apply to:")),      dimreg_label(_("Changes apply to:")),
69      dimreg_all_regions(_("all regions")),      dimreg_all_regions(_("all regions")),
70      dimreg_all_dimregs(_("all dimension splits")),      dimreg_all_dimregs(_("all dimension splits")),
71      dimreg_stereo(_("both channels"))      dimreg_stereo(_("both channels")),
72        labelLegend(_("Legend:")),
73        labelNoSample(_(" No Sample")),
74        labelMissingSample(_(" Missing some Sample(s)")),
75        labelLooped(_(" Looped")),
76        labelSomeLoops(_(" Some Loop(s)"))
77  {  {
78        loadBuiltInPix();
79    
80  //    set_border_width(5);  //    set_border_width(5);
81  //    set_default_size(400, 200);  //    set_default_size(400, 200);
82    
   
83      add(m_VBox);      add(m_VBox);
84    
85      // Handle selection      // Handle selection
# Line 76  MainWindow::MainWindow() : Line 99  MainWindow::MainWindow() :
99      m_ScrolledWindowSamples.add(m_TreeViewSamples);      m_ScrolledWindowSamples.add(m_TreeViewSamples);
100      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
101    
102        m_ScrolledWindowScripts.add(m_TreeViewScripts);
103        m_ScrolledWindowScripts.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
104    
105    
106      m_TreeViewNotebook.set_size_request(300);      m_TreeViewNotebook.set_size_request(300);
107    
# Line 87  MainWindow::MainWindow() : Line 113  MainWindow::MainWindow() :
113      dimreg_hbox.add(dimreg_stereo);      dimreg_hbox.add(dimreg_stereo);
114      dimreg_vbox.add(dimreg_edit);      dimreg_vbox.add(dimreg_edit);
115      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);
116        {
117            legend_hbox.add(labelLegend);
118    
119            imageNoSample.set(redDot);
120            imageNoSample.set_alignment(Gtk::ALIGN_END);
121            labelNoSample.set_alignment(Gtk::ALIGN_START);
122            legend_hbox.add(imageNoSample);
123            legend_hbox.add(labelNoSample);
124    
125            imageMissingSample.set(yellowDot);
126            imageMissingSample.set_alignment(Gtk::ALIGN_END);
127            labelMissingSample.set_alignment(Gtk::ALIGN_START);
128            legend_hbox.add(imageMissingSample);
129            legend_hbox.add(labelMissingSample);
130    
131            imageLooped.set(blackLoop);
132            imageLooped.set_alignment(Gtk::ALIGN_END);
133            labelLooped.set_alignment(Gtk::ALIGN_START);
134            legend_hbox.add(imageLooped);
135            legend_hbox.add(labelLooped);
136    
137            imageSomeLoops.set(grayLoop);
138            imageSomeLoops.set_alignment(Gtk::ALIGN_END);
139            labelSomeLoops.set_alignment(Gtk::ALIGN_START);
140            legend_hbox.add(imageSomeLoops);
141            legend_hbox.add(labelSomeLoops);
142    
143            legend_hbox.show_all_children();
144        }
145        dimreg_vbox.pack_start(legend_hbox, Gtk::PACK_SHRINK);
146      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
147    
148        dimreg_label.set_tooltip_text(_("To automatically apply your changes above globally to the entire instrument, check all 3 check boxes on the right."));
149        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."));
150        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."));
151        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)."));
152    
153      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
154      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
155        m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));
156    
157      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
158    
# Line 123  MainWindow::MainWindow() : Line 183  MainWindow::MainWindow() :
183                                           Gtk::Stock::PROPERTIES),                                           Gtk::Stock::PROPERTIES),
184                       sigc::mem_fun(                       sigc::mem_fun(
185                           *this, &MainWindow::show_instr_props));                           *this, &MainWindow::show_instr_props));
186        actionGroup->add(Gtk::Action::create("MidiRules",
187                                             _("_Midi Rules...")),
188                         sigc::mem_fun(
189                             *this, &MainWindow::show_midi_rules));
190        actionGroup->add(Gtk::Action::create("ScriptSlots",
191                                             _("_Script Slots...")),
192                         sigc::mem_fun(
193                             *this, &MainWindow::show_script_slots));
194      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),
195                       sigc::mem_fun(                       sigc::mem_fun(
196                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
197      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));      actionGroup->add(
198            Gtk::Action::create("MenuSample", _("_Sample")),
199            sigc::mem_fun(*this, &MainWindow::show_samples_tab)
200        );
201        actionGroup->add(
202            Gtk::Action::create("MenuInstrument", _("_Instrument")),
203            sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
204        );
205        actionGroup->add(
206            Gtk::Action::create("MenuScript", _("Scr_ipt")),
207            sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
208        );
209        actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));
210    
211        actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
212    
213        const Gdk::ModifierType primaryModifierKey =
214    #if defined(__APPLE__)
215        Gdk::META_MASK; // Cmd key on Mac
216    #else
217        Gdk::CONTROL_MASK; // Ctrl key on all other OSs
218    #endif
219    
220        actionGroup->add(Gtk::Action::create("CopyDimRgn",
221                                             _("Copy selected dimension region")),
222                         Gtk::AccelKey(GDK_KEY_c, Gdk::MOD1_MASK),
223                         sigc::mem_fun(*this, &MainWindow::copy_selected_dimrgn));
224    
225        actionGroup->add(Gtk::Action::create("PasteDimRgn",
226                                             _("Paste dimension region")),
227                         Gtk::AccelKey(GDK_KEY_v, Gdk::MOD1_MASK),
228                         sigc::mem_fun(*this, &MainWindow::paste_copied_dimrgn));
229    
230        actionGroup->add(Gtk::Action::create("AdjustClipboard",
231                                             _("Adjust Clipboard Content")),
232                         Gtk::AccelKey(GDK_KEY_x, Gdk::MOD1_MASK),
233                         sigc::mem_fun(*this, &MainWindow::adjust_clipboard_content));
234    
235        actionGroup->add(Gtk::Action::create("SelectPrevRegion",
236                                             _("Select Previous Region")),
237                         Gtk::AccelKey(GDK_KEY_Left, primaryModifierKey),
238                         sigc::mem_fun(*this, &MainWindow::select_prev_region));
239    
240        actionGroup->add(Gtk::Action::create("SelectNextRegion",
241                                             _("Select Next Region")),
242                         Gtk::AccelKey(GDK_KEY_Right, primaryModifierKey),
243                         sigc::mem_fun(*this, &MainWindow::select_next_region));
244    
245        actionGroup->add(Gtk::Action::create("SelectPrevDimRgnZone",
246                                             _("Select Previous Dimension Region Zone")),
247                         Gtk::AccelKey(GDK_KEY_Left, Gdk::MOD1_MASK),
248                         sigc::mem_fun(*this, &MainWindow::select_prev_dim_rgn_zone));
249    
250        actionGroup->add(Gtk::Action::create("SelectNextDimRgnZone",
251                                             _("Select Next Dimension Region Zone")),
252                         Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK),
253                         sigc::mem_fun(*this, &MainWindow::select_next_dim_rgn_zone));
254    
255        actionGroup->add(Gtk::Action::create("SelectPrevDimension",
256                                             _("Select Previous Dimension")),
257                         Gtk::AccelKey(GDK_KEY_Up, Gdk::MOD1_MASK),
258                         sigc::mem_fun(*this, &MainWindow::select_prev_dimension));
259    
260        actionGroup->add(Gtk::Action::create("SelectNextDimension",
261                                             _("Select Next Dimension")),
262                         Gtk::AccelKey(GDK_KEY_Down, Gdk::MOD1_MASK),
263                         sigc::mem_fun(*this, &MainWindow::select_next_dimension));
264    
265        actionGroup->add(Gtk::Action::create("SelectAddPrevDimRgnZone",
266                                             _("Add Previous Dimension Region Zone to Selection")),
267                         Gtk::AccelKey(GDK_KEY_Left, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
268                         sigc::mem_fun(*this, &MainWindow::select_add_prev_dim_rgn_zone));
269    
270        actionGroup->add(Gtk::Action::create("SelectAddNextDimRgnZone",
271                                             _("Add Next Dimension Region Zone to Selection")),
272                         Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
273                         sigc::mem_fun(*this, &MainWindow::select_add_next_dim_rgn_zone));
274    
     actionGroup->add(Gtk::Action::create("MenuView", _("_View")));  
275      Glib::RefPtr<Gtk::ToggleAction> toggle_action =      Glib::RefPtr<Gtk::ToggleAction> toggle_action =
276            Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"));
277        toggle_action->set_active(true);
278        actionGroup->add(toggle_action);
279    
280        toggle_action =
281            Gtk::ToggleAction::create("CopySampleTune", _("Copy Sample's _Fine Tune"));
282        toggle_action->set_active(true);
283        actionGroup->add(toggle_action);
284    
285        toggle_action =
286            Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));
287        toggle_action->set_active(true);
288        actionGroup->add(toggle_action);
289    
290    
291        actionGroup->add(Gtk::Action::create("MenuMacro", _("_Macro")));
292    
293    
294        actionGroup->add(Gtk::Action::create("MenuView", _("Vie_w")));
295        toggle_action =
296          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));
297      toggle_action->set_active(true);      toggle_action->set_active(true);
298      actionGroup->add(toggle_action,      actionGroup->add(toggle_action,
299                       sigc::mem_fun(                       sigc::mem_fun(
300                           *this, &MainWindow::on_action_view_status_bar));                           *this, &MainWindow::on_action_view_status_bar));
301    
302        toggle_action =
303            Gtk::ToggleAction::create("AutoRestoreWinDim", _("_Auto Restore Window Dimension"));
304        toggle_action->set_active(Settings::singleton()->autoRestoreWindowDimension);
305        actionGroup->add(toggle_action,
306                         sigc::mem_fun(
307                             *this, &MainWindow::on_auto_restore_win_dim));
308    
309        toggle_action =
310            Gtk::ToggleAction::create("SaveWithTemporaryFile", _("Save with _temporary file"));
311        toggle_action->set_active(Settings::singleton()->saveWithTemporaryFile);
312        actionGroup->add(toggle_action,
313                         sigc::mem_fun(
314                             *this, &MainWindow::on_save_with_temporary_file));
315    
316        actionGroup->add(
317            Gtk::Action::create("RefreshAll", _("_Refresh All")),
318            sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)
319        );                
320    
321      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
322      actionGroup->add(Gtk::Action::create("MenuHelp",      actionGroup->add(Gtk::Action::create("MenuHelp",
323                                           action->property_label()));                                           action->property_label()));
# Line 155  MainWindow::MainWindow() : Line 337  MainWindow::MainWindow() :
337          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
338      );      );
339    
340    
341        actionGroup->add(Gtk::Action::create("MenuSettings", _("_Settings")));
342        
343        toggle_action =
344            Gtk::ToggleAction::create("WarnUserOnExtensions", _("Show warning on format _extensions"));
345        toggle_action->set_active(Settings::singleton()->warnUserOnExtensions);
346        actionGroup->add(
347            toggle_action,
348            sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions)
349        );
350    
351        toggle_action =
352            Gtk::ToggleAction::create("SyncSamplerInstrumentSelection", _("Synchronize sampler's instrument selection"));
353        toggle_action->set_active(Settings::singleton()->syncSamplerInstrumentSelection);
354        actionGroup->add(
355            toggle_action,
356            sigc::mem_fun(*this, &MainWindow::on_action_sync_sampler_instrument_selection)
357        );
358    
359        toggle_action =
360            Gtk::ToggleAction::create("MoveRootNoteWithRegionMoved", _("Move root note with region moved"));
361        toggle_action->set_active(Settings::singleton()->moveRootNoteWithRegionMoved);
362        actionGroup->add(
363            toggle_action,
364            sigc::mem_fun(*this, &MainWindow::on_action_move_root_note_with_region_moved)
365        );
366    
367    
368        actionGroup->add(Gtk::Action::create("MenuTools", _("_Tools")));
369    
370        actionGroup->add(
371            Gtk::Action::create("CombineInstruments", _("_Combine Instruments...")),
372            sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
373        );
374    
375        actionGroup->add(
376            Gtk::Action::create("MergeFiles", _("_Merge Files...")),
377            sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
378        );
379    
380    
381      // sample right-click popup actions      // sample right-click popup actions
382      actionGroup->add(      actionGroup->add(
383          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),
# Line 173  MainWindow::MainWindow() : Line 396  MainWindow::MainWindow() :
396          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
397      );      );
398      actionGroup->add(      actionGroup->add(
399            Gtk::Action::create("RemoveUnusedSamples", _("Remove _Unused Samples")),
400            sigc::mem_fun(*this, &MainWindow::on_action_remove_unused_samples)
401        );
402        actionGroup->add(
403            Gtk::Action::create("ShowSampleRefs", _("Show References...")),
404            sigc::mem_fun(*this, &MainWindow::on_action_view_references)
405        );
406        actionGroup->add(
407            Gtk::Action::create("ReplaceSample",
408                                _("Replace Sample...")),
409            sigc::mem_fun(*this, &MainWindow::on_action_replace_sample)
410        );
411        actionGroup->add(
412          Gtk::Action::create("ReplaceAllSamplesInAllGroups",          Gtk::Action::create("ReplaceAllSamplesInAllGroups",
413                              _("Replace All Samples in All Groups...")),                              _("Replace All Samples in All Groups...")),
414          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)
415      );      );
416        
417        // script right-click popup actions
418        actionGroup->add(
419            Gtk::Action::create("AddScriptGroup", _("Add _Group")),
420            sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
421        );
422        actionGroup->add(
423            Gtk::Action::create("AddScript", _("Add _Script")),
424            sigc::mem_fun(*this, &MainWindow::on_action_add_script)
425        );
426        actionGroup->add(
427            Gtk::Action::create("EditScript", _("_Edit Script...")),
428            sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
429        );
430        actionGroup->add(
431            Gtk::Action::create("RemoveScript", Gtk::Stock::REMOVE),
432            sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
433        );
434    
435      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
436      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
# Line 196  MainWindow::MainWindow() : Line 450  MainWindow::MainWindow() :
450          "      <separator/>"          "      <separator/>"
451          "      <menuitem action='Quit'/>"          "      <menuitem action='Quit'/>"
452          "    </menu>"          "    </menu>"
453            "    <menu action='MenuEdit'>"
454            "      <menuitem action='CopyDimRgn'/>"
455            "      <menuitem action='AdjustClipboard'/>"
456            "      <menuitem action='PasteDimRgn'/>"
457            "      <separator/>"
458            "      <menuitem action='SelectPrevRegion'/>"
459            "      <menuitem action='SelectNextRegion'/>"
460            "      <separator/>"
461            "      <menuitem action='SelectPrevDimension'/>"
462            "      <menuitem action='SelectNextDimension'/>"
463            "      <menuitem action='SelectPrevDimRgnZone'/>"
464            "      <menuitem action='SelectNextDimRgnZone'/>"
465            "      <menuitem action='SelectAddPrevDimRgnZone'/>"
466            "      <menuitem action='SelectAddNextDimRgnZone'/>"
467            "      <separator/>"
468            "      <menuitem action='CopySampleUnity'/>"
469            "      <menuitem action='CopySampleTune'/>"
470            "      <menuitem action='CopySampleLoop'/>"
471            "    </menu>"
472            "    <menu action='MenuMacro'>"
473            "    </menu>"
474            "    <menu action='MenuSample'>"
475            "      <menuitem action='SampleProperties'/>"
476            "      <menuitem action='AddGroup'/>"
477            "      <menuitem action='AddSample'/>"
478            "      <menuitem action='ShowSampleRefs'/>"
479            "      <menuitem action='ReplaceSample' />"
480            "      <menuitem action='ReplaceAllSamplesInAllGroups' />"
481            "      <separator/>"
482            "      <menuitem action='RemoveSample'/>"
483            "      <menuitem action='RemoveUnusedSamples'/>"
484            "    </menu>"
485          "    <menu action='MenuInstrument'>"          "    <menu action='MenuInstrument'>"
486            "      <menu action='AllInstruments'>"
487            "      </menu>"
488            "      <separator/>"
489            "      <menuitem action='InstrProperties'/>"
490            "      <menuitem action='MidiRules'/>"
491            "      <menuitem action='ScriptSlots'/>"
492            "      <menuitem action='AddInstrument'/>"
493            "      <menuitem action='DupInstrument'/>"
494            "      <separator/>"
495            "      <menuitem action='RemoveInstrument'/>"
496            "    </menu>"
497            "    <menu action='MenuScript'>"
498            "      <menuitem action='AddScriptGroup'/>"
499            "      <menuitem action='AddScript'/>"
500            "      <menuitem action='EditScript'/>"
501            "      <separator/>"
502            "      <menuitem action='RemoveScript'/>"
503          "    </menu>"          "    </menu>"
504          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
505          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
506            "      <menuitem action='AutoRestoreWinDim'/>"
507            "      <separator/>"
508            "      <menuitem action='RefreshAll'/>"
509            "    </menu>"
510            "    <menu action='MenuTools'>"
511            "      <menuitem action='CombineInstruments'/>"
512            "      <menuitem action='MergeFiles'/>"
513            "    </menu>"
514            "    <menu action='MenuSettings'>"
515            "      <menuitem action='WarnUserOnExtensions'/>"
516            "      <menuitem action='SyncSamplerInstrumentSelection'/>"
517            "      <menuitem action='MoveRootNoteWithRegionMoved'/>"
518            "      <menuitem action='SaveWithTemporaryFile'/>"
519          "    </menu>"          "    </menu>"
520          "    <menu action='MenuHelp'>"          "    <menu action='MenuHelp'>"
521          "      <menuitem action='About'/>"          "      <menuitem action='About'/>"
# Line 207  MainWindow::MainWindow() : Line 523  MainWindow::MainWindow() :
523          "  </menubar>"          "  </menubar>"
524          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
525          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
526            "    <menuitem action='MidiRules'/>"
527            "    <menuitem action='ScriptSlots'/>"
528          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
529          "    <menuitem action='DupInstrument'/>"          "    <menuitem action='DupInstrument'/>"
530          "    <separator/>"          "    <separator/>"
# Line 216  MainWindow::MainWindow() : Line 534  MainWindow::MainWindow() :
534          "    <menuitem action='SampleProperties'/>"          "    <menuitem action='SampleProperties'/>"
535          "    <menuitem action='AddGroup'/>"          "    <menuitem action='AddGroup'/>"
536          "    <menuitem action='AddSample'/>"          "    <menuitem action='AddSample'/>"
537            "    <menuitem action='ShowSampleRefs'/>"
538            "    <menuitem action='ReplaceSample' />"
539          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"
540          "    <separator/>"          "    <separator/>"
541          "    <menuitem action='RemoveSample'/>"          "    <menuitem action='RemoveSample'/>"
542            "    <menuitem action='RemoveUnusedSamples'/>"
543            "  </popup>"
544            "  <popup name='ScriptPopupMenu'>"
545            "    <menuitem action='AddScriptGroup'/>"
546            "    <menuitem action='AddScript'/>"
547            "    <menuitem action='EditScript'/>"
548            "    <separator/>"
549            "    <menuitem action='RemoveScript'/>"
550          "  </popup>"          "  </popup>"
551          "</ui>";          "</ui>";
552      uiManager->add_ui_from_string(ui_info);      uiManager->add_ui_from_string(ui_info);
553    
554      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));
555        
556        // Set tooltips for menu items (for some reason, setting a tooltip on the
557        // respective Gtk::Action objects above will simply be ignored, no matter
558        // if using Gtk::Action::set_tooltip() or passing the tooltip string on
559        // Gtk::Action::create()).
560        {
561            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
562                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
563            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."));
564        }
565        {
566            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
567                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
568            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."));
569        }
570        {
571            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
572                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
573            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."));
574        }
575        {
576            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
577                uiManager->get_widget("/MenuBar/MenuSettings/WarnUserOnExtensions"));
578            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."));
579        }
580        {
581            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
582                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
583            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)."));
584        }
585        {
586            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
587                uiManager->get_widget("/MenuBar/MenuSettings/MoveRootNoteWithRegionMoved"));
588            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."));
589        }
590        {
591            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
592                uiManager->get_widget("/MenuBar/MenuSample/RemoveUnusedSamples"));
593            item->set_tooltip_text(_("Removes all samples that are not referenced by any instrument (i.e. red ones)."));
594            // copy tooltip to popup menu
595            Gtk::MenuItem* item2 = dynamic_cast<Gtk::MenuItem*>(
596                uiManager->get_widget("/SamplePopupMenu/RemoveUnusedSamples"));
597            item2->set_tooltip_text(item->get_tooltip_text());
598        }
599        {
600            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
601                uiManager->get_widget("/MenuBar/MenuView/RefreshAll"));
602            item->set_tooltip_text(_("Reloads the currently open gig file and updates the entire graphical user interface."));
603        }
604        {
605            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
606                uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
607            item->set_tooltip_text(_("If checked, size and position of all windows will be saved and automatically restored next time."));
608        }
609        {
610            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
611                uiManager->get_widget("/MenuBar/MenuTools/CombineInstruments"));
612            item->set_tooltip_text(_("Create combi sounds out of individual sounds of this .gig file."));
613        }
614        {
615            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
616                uiManager->get_widget("/MenuBar/MenuTools/MergeFiles"));
617            item->set_tooltip_text(_("Add instruments and samples of other .gig files to this .gig file."));
618        }
619    
620    
621      instrument_menu = static_cast<Gtk::MenuItem*>(      instrument_menu = static_cast<Gtk::MenuItem*>(
622          uiManager->get_widget("/MenuBar/MenuInstrument"))->get_submenu();          uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();
623    
624      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");
625      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
# Line 252  MainWindow::MainWindow() : Line 645  MainWindow::MainWindow() :
645      // Create the Tree model:      // Create the Tree model:
646      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refTreeModel = Gtk::ListStore::create(m_Columns);
647      m_TreeView.set_model(m_refTreeModel);      m_TreeView.set_model(m_refTreeModel);
648        m_TreeView.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
649        m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules. Drag & drop to change the order of instruments."));
650      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(
651          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
652      );      );
653    
654      // Add the TreeView's view columns:      // Add the TreeView's view columns:
655      m_TreeView.append_column_editable("Instrument", m_Columns.m_col_name);      m_TreeView.append_column(_("Nr"), m_Columns.m_col_nr);
656      m_TreeView.set_headers_visible(false);      m_TreeView.append_column_editable(_("Instrument"), m_Columns.m_col_name);
657        m_TreeView.set_headers_visible(true);
658        
659        // establish drag&drop within the instrument tree view, allowing to reorder
660        // the sequence of instruments within the gig file
661        {
662            std::vector<Gtk::TargetEntry> drag_target_instrument;
663            drag_target_instrument.push_back(Gtk::TargetEntry("gig::Instrument"));
664            m_TreeView.drag_source_set(drag_target_instrument);
665            m_TreeView.drag_dest_set(drag_target_instrument);
666            m_TreeView.signal_drag_begin().connect(
667                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_begin)
668            );
669            m_TreeView.signal_drag_data_get().connect(
670                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_data_get)
671            );
672            m_TreeView.signal_drag_data_received().connect(
673                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drop_drag_data_received)
674            );
675        }
676    
677      // create samples treeview (including its data model)      // create samples treeview (including its data model)
678      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);
679      m_TreeViewSamples.set_model(m_refSamplesTreeModel);      m_TreeViewSamples.set_model(m_refSamplesTreeModel);
680        m_TreeViewSamples.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
681        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."));
682      // m_TreeViewSamples.set_reorderable();      // m_TreeViewSamples.set_reorderable();
683      m_TreeViewSamples.append_column_editable("Samples", m_SamplesModel.m_col_name);      m_TreeViewSamples.append_column_editable(_("Name"), m_SamplesModel.m_col_name);
684      m_TreeViewSamples.set_headers_visible(false);      m_TreeViewSamples.append_column(_("Referenced"), m_SamplesModel.m_col_refcount);
685        {
686            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(0);
687            Gtk::CellRendererText* cellrenderer =
688                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
689            column->add_attribute(
690                cellrenderer->property_foreground(), m_SamplesModel.m_color
691            );
692        }
693        {
694            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(1);
695            Gtk::CellRendererText* cellrenderer =
696                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
697            column->add_attribute(
698                cellrenderer->property_foreground(), m_SamplesModel.m_color
699            );
700        }
701        m_TreeViewSamples.set_headers_visible(true);
702      m_TreeViewSamples.signal_button_press_event().connect_notify(      m_TreeViewSamples.signal_button_press_event().connect_notify(
703          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
704      );      );
# Line 273  MainWindow::MainWindow() : Line 706  MainWindow::MainWindow() :
706          sigc::mem_fun(*this, &MainWindow::sample_name_changed)          sigc::mem_fun(*this, &MainWindow::sample_name_changed)
707      );      );
708    
709        // create scripts treeview (including its data model)
710        m_refScriptsTreeModel = ScriptsTreeStore::create(m_ScriptsModel);
711        m_TreeViewScripts.set_model(m_refScriptsTreeModel);
712        m_TreeViewScripts.set_tooltip_text(_(
713            "Use CTRL + double click for editing a script."
714            "\n\n"
715            "Note: instrument scripts are a LinuxSampler extension of the gig "
716            "format. This feature will not work with the GigaStudio software!"
717        ));
718        // m_TreeViewScripts.set_reorderable();
719        m_TreeViewScripts.append_column_editable("Samples", m_ScriptsModel.m_col_name);
720        m_TreeViewScripts.set_headers_visible(false);
721        m_TreeViewScripts.signal_button_press_event().connect_notify(
722            sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
723        );
724        //FIXME: why the heck does this double click signal_row_activated() only fire while CTRL key is pressed ?
725        m_TreeViewScripts.signal_row_activated().connect(
726            sigc::mem_fun(*this, &MainWindow::script_double_clicked)
727        );
728        m_refScriptsTreeModel->signal_row_changed().connect(
729            sigc::mem_fun(*this, &MainWindow::script_name_changed)
730        );
731    
732        // establish drag&drop between scripts tree view and ScriptSlots window
733        std::vector<Gtk::TargetEntry> drag_target_gig_script;
734        drag_target_gig_script.push_back(Gtk::TargetEntry("gig::Script"));
735        m_TreeViewScripts.drag_source_set(drag_target_gig_script);
736        m_TreeViewScripts.signal_drag_begin().connect(
737            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_begin)
738        );
739        m_TreeViewScripts.signal_drag_data_get().connect(
740            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_data_get)
741        );
742    
743      // 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
744      std::vector<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
745      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
# Line 291  MainWindow::MainWindow() : Line 758  MainWindow::MainWindow() :
758          sigc::hide(sigc::mem_fun(*this, &MainWindow::file_changed)));          sigc::hide(sigc::mem_fun(*this, &MainWindow::file_changed)));
759      m_RegionChooser.signal_instrument_changed().connect(      m_RegionChooser.signal_instrument_changed().connect(
760          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
761        m_RegionChooser.signal_instrument_changed().connect(
762            sigc::mem_fun(*this, &MainWindow::region_changed));
763      m_DimRegionChooser.signal_region_changed().connect(      m_DimRegionChooser.signal_region_changed().connect(
764          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
765      instrumentProps.signal_changed().connect(      instrumentProps.signal_changed().connect(
766          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
767      propDialog.signal_changed().connect(      propDialog.signal_changed().connect(
768          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
769        midiRules.signal_changed().connect(
770            sigc::mem_fun(*this, &MainWindow::file_changed));
771    
772      dimreg_edit.signal_dimreg_to_be_changed().connect(      dimreg_edit.signal_dimreg_to_be_changed().connect(
773          dimreg_to_be_changed_signal.make_slot());          dimreg_to_be_changed_signal.make_slot());
# Line 304  MainWindow::MainWindow() : Line 775  MainWindow::MainWindow() :
775          dimreg_changed_signal.make_slot());          dimreg_changed_signal.make_slot());
776      dimreg_edit.signal_sample_ref_changed().connect(      dimreg_edit.signal_sample_ref_changed().connect(
777          sample_ref_changed_signal.make_slot());          sample_ref_changed_signal.make_slot());
778        sample_ref_changed_signal.connect(
779            sigc::mem_fun(*this, &MainWindow::on_sample_ref_changed)
780        );
781        samples_to_be_removed_signal.connect(
782            sigc::mem_fun(*this, &MainWindow::on_samples_to_be_removed)
783        );
784    
785        dimreg_edit.signal_select_sample().connect(
786            sigc::mem_fun(*this, &MainWindow::select_sample)
787        );
788    
789      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(
790          sigc::hide(          sigc::hide(
# Line 345  MainWindow::MainWindow() : Line 826  MainWindow::MainWindow() :
826    
827      // start with a new gig file by default      // start with a new gig file by default
828      on_action_file_new();      on_action_file_new();
829    
830        // select 'Instruments' tab by default
831        // (gtk allows this only if the tab childs are visible, thats why it's here)
832        m_TreeViewNotebook.set_current_page(1);
833    
834        Gtk::Clipboard::get()->signal_owner_change().connect(
835            sigc::mem_fun(*this, &MainWindow::on_clipboard_owner_change)
836        );
837        updateClipboardPasteAvailable();
838        updateClipboardCopyAvailable();
839    
840        // setup macros and their keyboard accelerators
841        {
842            Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
843                uiManager->get_widget("/MenuBar/MenuMacro")
844            )->get_submenu();
845    
846            const Gdk::ModifierType primaryModifierKey =
847    #if defined(__APPLE__)
848                Gdk::META_MASK; // Cmd key on Mac
849    #else
850                Gdk::CONTROL_MASK; // Ctrl key on all other OSs
851    #endif
852    
853            const Gdk::ModifierType noModifier = (Gdk::ModifierType)0;
854            Gtk::AccelMap::add_entry("<Macros>/macro_0", GDK_KEY_F1, noModifier);
855            Gtk::AccelMap::add_entry("<Macros>/macro_1", GDK_KEY_F2, noModifier);
856            Gtk::AccelMap::add_entry("<Macros>/macro_2", GDK_KEY_F3, noModifier);
857            Gtk::AccelMap::add_entry("<Macros>/macro_3", GDK_KEY_F4, noModifier);
858            Gtk::AccelMap::add_entry("<Macros>/macro_4", GDK_KEY_F5, noModifier);
859            Gtk::AccelMap::add_entry("<Macros>/macro_5", GDK_KEY_F6, noModifier);
860            Gtk::AccelMap::add_entry("<Macros>/macro_6", GDK_KEY_F7, noModifier);
861            Gtk::AccelMap::add_entry("<Macros>/macro_7", GDK_KEY_F8, noModifier);
862            Gtk::AccelMap::add_entry("<Macros>/macro_8", GDK_KEY_F9, noModifier);
863            Gtk::AccelMap::add_entry("<Macros>/macro_9", GDK_KEY_F10, noModifier);
864            Gtk::AccelMap::add_entry("<Macros>/macro_10", GDK_KEY_F11, noModifier);
865            Gtk::AccelMap::add_entry("<Macros>/macro_11", GDK_KEY_F12, noModifier);
866            Gtk::AccelMap::add_entry("<Macros>/SetupMacros", 'm', primaryModifierKey);
867    
868            Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
869            menuMacro->set_accel_group(accelGroup);
870    
871            updateMacroMenu();
872        }
873  }  }
874    
875  MainWindow::~MainWindow()  MainWindow::~MainWindow()
876  {  {
877  }  }
878    
879    void MainWindow::updateMacroMenu() {
880        Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
881            uiManager->get_widget("/MenuBar/MenuMacro")
882        )->get_submenu();
883    
884        // remove all entries from "Macro" menu
885        {
886            const std::vector<Gtk::Widget*> children = menuMacro->get_children();
887            for (int i = 0; i < children.size(); ++i) {
888                Gtk::Widget* child = children[i];
889                menuMacro->remove(*child);
890                delete child;
891            }
892        }
893    
894        // (re)load all macros from config file
895        try {
896            Settings::singleton()->loadMacros(m_macros);
897        } catch (Serialization::Exception e) {
898            std::cerr << "Exception while loading macros: " << e.Message << std::endl;
899        } catch (...) {
900            std::cerr << "Unknown exception while loading macros!" << std::endl;
901        }
902    
903        // add all configured macros as menu items to the "Macro" menu
904        for (int iMacro = 0; iMacro < m_macros.size(); ++iMacro) {
905            const Serialization::Archive& macro = m_macros[iMacro];
906            std::string name =
907                macro.name().empty() ?
908                    (std::string(_("Unnamed Macro")) + " " + ToString(iMacro+1)) : macro.name();
909            Gtk::MenuItem* item = new Gtk::MenuItem(name);
910            item->signal_activate().connect(
911                sigc::bind(
912                    sigc::mem_fun(*this, &MainWindow::onMacroSelected), iMacro
913                )
914            );
915            menuMacro->append(*item);
916            item->set_accel_path("<Macros>/macro_" + ToString(iMacro));
917        }
918        // if there are no macros configured at all, then show a dummy entry instead
919        if (m_macros.empty()) {
920            Gtk::MenuItem* item = new Gtk::MenuItem(_("No Macros"));
921            item->set_sensitive(false);
922            menuMacro->append(*item);
923        }
924    
925        // add separator line to menu
926        menuMacro->append(*new Gtk::SeparatorMenuItem);
927    
928        {
929            Gtk::MenuItem* item = new Gtk::MenuItem(_("Setup Macros ..."));
930            item->signal_activate().connect(
931                sigc::mem_fun(*this, &MainWindow::setupMacros)
932            );
933            menuMacro->append(*item);
934            item->set_accel_path("<Macros>/SetupMacros");
935        }
936    
937        menuMacro->show_all_children();
938    }
939    
940    void MainWindow::onMacroSelected(int iMacro) {
941        printf("onMacroSelected(%d)\n", iMacro);
942        if (iMacro < 0 || iMacro >= m_macros.size()) return;
943        Glib::ustring errorText;
944        try {
945            applyMacro(m_macros[iMacro]);
946        } catch (Serialization::Exception e) {
947            errorText = e.Message;
948        } catch (...) {
949            errorText = _("Unknown exception while applying macro");
950        }
951        if (!errorText.empty()) {
952            Glib::ustring txt = _("Applying macro failed:\n") + errorText;
953            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
954            msg.run();
955        }
956    }
957    
958    void MainWindow::setupMacros() {
959        MacrosSetup* setup = new MacrosSetup();
960        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
961        setup->setMacros(m_macros, &m_serializationArchive, pDimRgn);
962        setup->signal_macros_changed().connect(
963            sigc::mem_fun(*this, &MainWindow::onMacrosSetupChanged)
964        );
965        setup->show();
966    }
967    
968    void MainWindow::onMacrosSetupChanged(const std::vector<Serialization::Archive>& macros) {
969        m_macros = macros;
970        Settings::singleton()->saveMacros(m_macros);
971        updateMacroMenu();
972    }
973    
974  bool MainWindow::on_delete_event(GdkEventAny* event)  bool MainWindow::on_delete_event(GdkEventAny* event)
975  {  {
976      return !file_is_shared && file_is_changed && !close_confirmation_dialog();      return !file_is_shared && file_is_changed && !close_confirmation_dialog();
# Line 370  void MainWindow::region_changed() Line 990  void MainWindow::region_changed()
990  gig::Instrument* MainWindow::get_instrument()  gig::Instrument* MainWindow::get_instrument()
991  {  {
992      gig::Instrument* instrument = 0;      gig::Instrument* instrument = 0;
993      Gtk::TreeModel::const_iterator it =      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
994          m_TreeView.get_selection()->get_selected();      if (rows.empty()) return NULL;
995        Gtk::TreeModel::const_iterator it = m_refTreeModel->get_iter(rows[0]);
996      if (it) {      if (it) {
997          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
998          instrument = row[m_Columns.m_col_instr];          instrument = row[m_Columns.m_col_instr];
# Line 414  void MainWindow::update_dimregs() Line 1035  void MainWindow::update_dimregs()
1035              add_region_to_dimregs(region, stereo, all_dimregs);              add_region_to_dimregs(region, stereo, all_dimregs);
1036          }          }
1037      }      }
1038    
1039        m_RegionChooser.setModifyAllRegions(all_regions);
1040        m_DimRegionChooser.setModifyAllRegions(all_regions);
1041        m_DimRegionChooser.setModifyAllDimensionRegions(all_dimregs);
1042        m_DimRegionChooser.setModifyBothChannels(stereo);
1043    
1044        updateClipboardCopyAvailable();
1045  }  }
1046    
1047  void MainWindow::dimreg_all_dimregs_toggled()  void MainWindow::dimreg_all_dimregs_toggled()
# Line 425  void MainWindow::dimreg_all_dimregs_togg Line 1053  void MainWindow::dimreg_all_dimregs_togg
1053  void MainWindow::dimreg_changed()  void MainWindow::dimreg_changed()
1054  {  {
1055      update_dimregs();      update_dimregs();
1056      dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion());      dimreg_edit.set_dim_region(m_DimRegionChooser.get_main_dimregion());
1057  }  }
1058    
1059  void MainWindow::on_sel_change()  void MainWindow::on_sel_change()
1060  {  {
1061      // select item in instrument menu      // select item in instrument menu
1062      Gtk::TreeModel::iterator it = m_TreeView.get_selection()->get_selected();      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
1063      if (it) {      if (!rows.empty()) {
1064          Gtk::TreePath path(it);          Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
1065          int index = path[0];          if (it) {
1066          const std::vector<Gtk::Widget*> children =              Gtk::TreePath path(it);
1067              instrument_menu->get_children();              int index = path[0];
1068          static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();              const std::vector<Gtk::Widget*> children =
1069                    instrument_menu->get_children();
1070                static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();
1071            }
1072      }      }
1073    
1074      m_RegionChooser.set_instrument(get_instrument());      m_RegionChooser.set_instrument(get_instrument());
1075    
1076        if (Settings::singleton()->syncSamplerInstrumentSelection) {
1077            switch_sampler_instrument_signal.emit(get_instrument());
1078        }
1079  }  }
1080    
1081  void loader_progress_callback(gig::progress_t* progress)  void loader_progress_callback(gig::progress_t* progress)
# Line 458  void Loader::progress_callback(float fra Line 1093  void Loader::progress_callback(float fra
1093      progress_dispatcher();      progress_dispatcher();
1094  }  }
1095    
1096    #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
1097    // make sure stack is 16-byte aligned for SSE instructions
1098    __attribute__((force_align_arg_pointer))
1099    #endif
1100  void Loader::thread_function()  void Loader::thread_function()
1101  {  {
1102      printf("thread_function self=%x\n", Glib::Threads::Thread::self());      printf("thread_function self=%p\n",
1103      printf("Start %s\n", filename);             static_cast<void*>(Glib::Threads::Thread::self()));
1104      RIFF::File* riff = new RIFF::File(filename);      printf("Start %s\n", filename.c_str());
1105      gig = new gig::File(riff);      try {
1106      gig::progress_t progress;          RIFF::File* riff = new RIFF::File(filename);
1107      progress.callback = loader_progress_callback;          gig = new gig::File(riff);
1108      progress.custom = this;          gig::progress_t progress;
1109            progress.callback = loader_progress_callback;
1110      gig->GetInstrument(0, &progress);          progress.custom = this;
1111      printf("End\n");  
1112      finished_dispatcher();          gig->GetInstrument(0, &progress);
1113            printf("End\n");
1114            finished_dispatcher();
1115        } catch (RIFF::Exception e) {
1116            error_message = e.Message;
1117            error_dispatcher.emit();
1118        } catch (...) {
1119            error_message = _("Unknown exception occurred");
1120            error_dispatcher.emit();
1121        }
1122  }  }
1123    
1124  Loader::Loader(const char* filename)  Loader::Loader(const char* filename)
1125      : filename(filename), thread(0)      : filename(filename), gig(0), thread(0), progress(0.f)
1126  {  {
1127  }  }
1128    
# Line 485  void Loader::launch() Line 1133  void Loader::launch()
1133  #else  #else
1134      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));
1135  #endif  #endif
1136      printf("launch thread=%x\n", thread);      printf("launch thread=%p\n", static_cast<void*>(thread));
1137  }  }
1138    
1139  float Loader::get_progress()  float Loader::get_progress()
# Line 508  Glib::Dispatcher& Loader::signal_finishe Line 1156  Glib::Dispatcher& Loader::signal_finishe
1156      return finished_dispatcher;      return finished_dispatcher;
1157  }  }
1158    
1159  LoadDialog::LoadDialog(const Glib::ustring& title, Gtk::Window& parent)  Glib::Dispatcher& Loader::signal_error()
1160    {
1161        return error_dispatcher;
1162    }
1163    
1164    void saver_progress_callback(gig::progress_t* progress)
1165    {
1166        Saver* saver = static_cast<Saver*>(progress->custom);
1167        saver->progress_callback(progress->factor);
1168    }
1169    
1170    void Saver::progress_callback(float fraction)
1171    {
1172        {
1173            Glib::Threads::Mutex::Lock lock(progressMutex);
1174            progress = fraction;
1175        }
1176        progress_dispatcher.emit();
1177    }
1178    
1179    #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
1180    // make sure stack is 16-byte aligned for SSE instructions
1181    __attribute__((force_align_arg_pointer))
1182    #endif
1183    void Saver::thread_function()
1184    {
1185        printf("thread_function self=%p\n",
1186               static_cast<void*>(Glib::Threads::Thread::self()));
1187        printf("Start %s\n", filename.c_str());
1188        try {
1189            gig::progress_t progress;
1190            progress.callback = saver_progress_callback;
1191            progress.custom = this;
1192    
1193            // if no filename was provided, that means "save", if filename was provided means "save as"
1194            if (filename.empty()) {
1195                if (!Settings::singleton()->saveWithTemporaryFile) {
1196                    // save directly over the existing .gig file
1197                    // (requires less disk space than solution below
1198                    // but may be slower)
1199                    gig->Save(&progress);
1200                } else {
1201                    // save the file as separate temporary file first,
1202                    // then move the saved file over the old file
1203                    // (may result in performance speedup during save)
1204                    String tmpname = filename + ".TMP";
1205                    gig->Save(tmpname, &progress);
1206                    #if defined(WIN32)
1207                    if (!DeleteFile(filename.c_str())) {
1208                        throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file).");
1209                    }
1210                    #else // POSIX ...
1211                    if (unlink(filename.c_str())) {
1212                        throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + String(strerror(errno)));
1213                    }
1214                    #endif
1215                    if (rename(tmpname.c_str(), filename.c_str())) {
1216                        #if defined(WIN32)
1217                        throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");
1218                        #else
1219                        throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file): " + String(strerror(errno)));
1220                        #endif
1221                    }
1222                }
1223            } else {
1224                gig->Save(filename, &progress);
1225            }
1226    
1227            printf("End\n");
1228            finished_dispatcher.emit();
1229        } catch (RIFF::Exception e) {
1230            error_message = e.Message;
1231            error_dispatcher.emit();
1232        } catch (...) {
1233            error_message = _("Unknown exception occurred");
1234            error_dispatcher.emit();
1235        }
1236    }
1237    
1238    Saver::Saver(gig::File* file, Glib::ustring filename)
1239        : gig(file), filename(filename), thread(0), progress(0.f)
1240    {
1241    }
1242    
1243    void Saver::launch()
1244    {
1245    #ifdef OLD_THREADS
1246        thread = Glib::Thread::create(sigc::mem_fun(*this, &Saver::thread_function), true);
1247    #else
1248        thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Saver::thread_function));
1249    #endif
1250        printf("launch thread=%p\n", static_cast<void*>(thread));
1251    }
1252    
1253    float Saver::get_progress()
1254    {
1255        float res;
1256        {
1257            Glib::Threads::Mutex::Lock lock(progressMutex);
1258            res = progress;
1259        }
1260        return res;
1261    }
1262    
1263    Glib::Dispatcher& Saver::signal_progress()
1264    {
1265        return progress_dispatcher;
1266    }
1267    
1268    Glib::Dispatcher& Saver::signal_finished()
1269    {
1270        return finished_dispatcher;
1271    }
1272    
1273    Glib::Dispatcher& Saver::signal_error()
1274    {
1275        return error_dispatcher;
1276    }
1277    
1278    ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)
1279      : Gtk::Dialog(title, parent, true)      : Gtk::Dialog(title, parent, true)
1280  {  {
1281      get_vbox()->pack_start(progressBar);      get_vbox()->pack_start(progressBar);
1282      show_all_children();      show_all_children();
1283        resize(600,50);
1284  }  }
1285    
1286  // Clear all GUI elements / controls. This method is typically called  // Clear all GUI elements / controls. This method is typically called
# Line 523  void MainWindow::__clear() { Line 1291  void MainWindow::__clear() {
1291      // clear the samples and instruments tree views      // clear the samples and instruments tree views
1292      m_refTreeModel->clear();      m_refTreeModel->clear();
1293      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
1294        m_refScriptsTreeModel->clear();
1295      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
1296      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
1297          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
# Line 533  void MainWindow::__clear() { Line 1302  void MainWindow::__clear() {
1302      set_file_is_shared(false);      set_file_is_shared(false);
1303  }  }
1304    
1305    void MainWindow::__refreshEntireGUI() {
1306        // clear the samples and instruments tree views
1307        m_refTreeModel->clear();
1308        m_refSamplesTreeModel->clear();
1309        m_refScriptsTreeModel->clear();
1310        // remove all entries from "Instrument" menu
1311        while (!instrument_menu->get_children().empty()) {
1312            remove_instrument_from_menu(0);
1313        }
1314    
1315        if (!this->file) return;
1316    
1317        load_gig(
1318            this->file, this->file->pInfo->Name.c_str(), this->file_is_shared
1319        );
1320    }
1321    
1322  void MainWindow::on_action_file_new()  void MainWindow::on_action_file_new()
1323  {  {
1324      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;
# Line 545  void MainWindow::on_action_file_new() Line 1331  void MainWindow::on_action_file_new()
1331      gig::File* pFile = new gig::File;      gig::File* pFile = new gig::File;
1332      // already add one new instrument by default      // already add one new instrument by default
1333      gig::Instrument* pInstrument = pFile->AddInstrument();      gig::Instrument* pInstrument = pFile->AddInstrument();
1334      pInstrument->pInfo->Name = _("Unnamed Instrument");      pInstrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument"));
1335      // update GUI with that new gig::File      // update GUI with that new gig::File
1336      load_gig(pFile, 0 /*no file name yet*/);      load_gig(pFile, 0 /*no file name yet*/);
1337  }  }
# Line 563  bool MainWindow::close_confirmation_dial Line 1349  bool MainWindow::close_confirmation_dial
1349      dialog.set_default_response(Gtk::RESPONSE_YES);      dialog.set_default_response(Gtk::RESPONSE_YES);
1350      int response = dialog.run();      int response = dialog.run();
1351      dialog.hide();      dialog.hide();
1352      if (response == Gtk::RESPONSE_YES) return file_save();  
1353      return response != Gtk::RESPONSE_CANCEL;      // user decided to exit app without saving
1354        if (response == Gtk::RESPONSE_NO) return true;
1355    
1356        // user cancelled dialog, thus don't close app
1357        if (response == Gtk::RESPONSE_CANCEL) return false;
1358    
1359        // TODO: the following return valid is disabled and hard coded instead for
1360        // now, due to the fact that saving with progress bar is now implemented
1361        // asynchronously, as a result the app does not close automatically anymore
1362        // after saving the file has completed
1363        //
1364        //   if (response == Gtk::RESPONSE_YES) return file_save();
1365        //   return response != Gtk::RESPONSE_CANCEL;
1366        //
1367        if (response == Gtk::RESPONSE_YES) file_save();
1368        return false; // always prevent closing the app for now (see comment above)
1369  }  }
1370    
1371  bool MainWindow::leaving_shared_mode_dialog() {  bool MainWindow::leaving_shared_mode_dialog() {
# Line 606  void MainWindow::on_action_file_open() Line 1407  void MainWindow::on_action_file_open()
1407      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1408          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
1409          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
1410          printf("on_action_file_open self=%x\n", Glib::Threads::Thread::self());          printf("on_action_file_open self=%p\n",
1411                   static_cast<void*>(Glib::Threads::Thread::self()));
1412          load_file(filename.c_str());          load_file(filename.c_str());
1413          current_gig_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
1414      }      }
# Line 615  void MainWindow::on_action_file_open() Line 1417  void MainWindow::on_action_file_open()
1417  void MainWindow::load_file(const char* name)  void MainWindow::load_file(const char* name)
1418  {  {
1419      __clear();      __clear();
1420      load_dialog = new LoadDialog(_("Loading..."), *this);  
1421      load_dialog->show_all();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
1422      loader = new Loader(strdup(name));          _("Loading") +  Glib::ustring(" '") +
1423            Glib::filename_display_basename(name) + "' ...",
1424            *this
1425        );
1426        progress_dialog->show_all();
1427        loader = new Loader(name); //FIXME: memory leak!
1428      loader->signal_progress().connect(      loader->signal_progress().connect(
1429          sigc::mem_fun(*this, &MainWindow::on_loader_progress));          sigc::mem_fun(*this, &MainWindow::on_loader_progress));
1430      loader->signal_finished().connect(      loader->signal_finished().connect(
1431          sigc::mem_fun(*this, &MainWindow::on_loader_finished));          sigc::mem_fun(*this, &MainWindow::on_loader_finished));
1432        loader->signal_error().connect(
1433            sigc::mem_fun(*this, &MainWindow::on_loader_error));
1434      loader->launch();      loader->launch();
1435  }  }
1436    
# Line 637  void MainWindow::load_instrument(gig::In Line 1446  void MainWindow::load_instrument(gig::In
1446      // load the instrument      // load the instrument
1447      gig::File* pFile = (gig::File*) instr->GetParent();      gig::File* pFile = (gig::File*) instr->GetParent();
1448      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);
1449      //TODO: automatically select the given instrument      // automatically select the given instrument
1450        int i = 0;
1451        for (gig::Instrument* instrument = pFile->GetFirstInstrument(); instrument;
1452             instrument = pFile->GetNextInstrument(), ++i)
1453        {
1454            if (instrument == instr) {
1455                // select item in "instruments" tree view
1456                m_TreeView.get_selection()->select(Gtk::TreePath(ToString(i)));
1457                // make sure the selected item in the "instruments" tree view is
1458                // visible (scroll to it)
1459                m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));
1460                // select item in instrument menu
1461                {
1462                    const std::vector<Gtk::Widget*> children =
1463                        instrument_menu->get_children();
1464                    static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();
1465                }
1466                // update region chooser and dimension region chooser
1467                m_RegionChooser.set_instrument(instr);
1468                break;
1469            }
1470        }
1471  }  }
1472    
1473  void MainWindow::on_loader_progress()  void MainWindow::on_loader_progress()
1474  {  {
1475      load_dialog->set_fraction(loader->get_progress());      progress_dialog->set_fraction(loader->get_progress());
1476  }  }
1477    
1478  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
1479  {  {
1480      printf("Loader finished!\n");      printf("Loader finished!\n");
1481      printf("on_loader_finished self=%x\n", Glib::Threads::Thread::self());      printf("on_loader_finished self=%p\n",
1482      load_gig(loader->gig, loader->filename);             static_cast<void*>(Glib::Threads::Thread::self()));
1483      load_dialog->hide();      load_gig(loader->gig, loader->filename.c_str());
1484        progress_dialog->hide();
1485    }
1486    
1487    void MainWindow::on_loader_error()
1488    {
1489        Glib::ustring txt = _("Could not load file: ") + loader->error_message;
1490        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1491        msg.run();
1492        progress_dialog->hide();
1493  }  }
1494    
1495  void MainWindow::on_action_file_save()  void MainWindow::on_action_file_save()
# Line 689  bool MainWindow::file_save() Line 1528  bool MainWindow::file_save()
1528    
1529      std::cout << "Saving file\n" << std::flush;      std::cout << "Saving file\n" << std::flush;
1530      file_structure_to_be_changed_signal.emit(this->file);      file_structure_to_be_changed_signal.emit(this->file);
1531      try {  
1532          file->Save();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
1533          if (file_is_changed) {          _("Saving") +  Glib::ustring(" '") +
1534              set_title(get_title().substr(1));          Glib::filename_display_basename(this->filename) + "' ...",
1535              file_is_changed = false;          *this
1536          }      );
1537      } catch (RIFF::Exception e) {      progress_dialog->show_all();
1538          file_structure_changed_signal.emit(this->file);      saver = new Saver(this->file); //FIXME: memory leak!
1539          Glib::ustring txt = _("Could not save file: ") + e.Message;      saver->signal_progress().connect(
1540          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);          sigc::mem_fun(*this, &MainWindow::on_saver_progress));
1541          msg.run();      saver->signal_finished().connect(
1542          return false;          sigc::mem_fun(*this, &MainWindow::on_saver_finished));
1543      }      saver->signal_error().connect(
1544      std::cout << "Saving file done\n" << std::flush;          sigc::mem_fun(*this, &MainWindow::on_saver_error));
1545        saver->launch();
1546    
1547        return true;
1548    }
1549    
1550    void MainWindow::on_saver_progress()
1551    {
1552        progress_dialog->set_fraction(saver->get_progress());
1553    }
1554    
1555    void MainWindow::on_saver_error()
1556    {
1557        file_structure_changed_signal.emit(this->file);
1558        Glib::ustring txt = _("Could not save file: ") + saver->error_message;
1559        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1560        msg.run();
1561    }
1562    
1563    void MainWindow::on_saver_finished()
1564    {
1565        this->file = saver->gig;
1566        this->filename = saver->filename;
1567        current_gig_dir = Glib::path_get_dirname(filename);
1568        set_title(Glib::filename_display_basename(filename));
1569        file_has_name = true;
1570        file_is_changed = false;
1571        std::cout << "Saving file done. Importing queued samples now ...\n" << std::flush;
1572      __import_queued_samples();      __import_queued_samples();
1573        std::cout << "Importing queued samples done.\n" << std::flush;
1574    
1575      file_structure_changed_signal.emit(this->file);      file_structure_changed_signal.emit(this->file);
1576      return true;  
1577        __refreshEntireGUI();
1578        progress_dialog->hide();
1579  }  }
1580    
1581  void MainWindow::on_action_file_save_as()  void MainWindow::on_action_file_save_as()
# Line 749  bool MainWindow::file_save_as() Line 1619  bool MainWindow::file_save_as()
1619      // show warning in the dialog      // show warning in the dialog
1620      Gtk::HBox descriptionArea;      Gtk::HBox descriptionArea;
1621      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
1622      Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));      Gtk::Image warningIcon;
1623        warningIcon.set_from_icon_name("dialog-warning",
1624                                       Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
1625      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
1626  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
1627      view::WrapLabel description;      view::WrapLabel description;
# Line 770  bool MainWindow::file_save_as() Line 1642  bool MainWindow::file_save_as()
1642      descriptionArea.show_all();      descriptionArea.show_all();
1643    
1644      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1645          file_structure_to_be_changed_signal.emit(this->file);          std::string filename = dialog.get_filename();
1646          try {          if (!Glib::str_has_suffix(filename, ".gig")) {
1647              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;  
1648          }          }
1649          __import_queued_samples();          printf("filename=%s\n", filename.c_str());
1650          file_structure_changed_signal.emit(this->file);  
1651            progress_dialog = new ProgressDialog( //FIXME: memory leak!
1652                _("Saving") +  Glib::ustring(" '") +
1653                Glib::filename_display_basename(filename) + "' ...",
1654                *this
1655            );
1656            progress_dialog->show_all();
1657    
1658            saver = new Saver(file, filename); //FIXME: memory leak!
1659            saver->signal_progress().connect(
1660                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
1661            saver->signal_finished().connect(
1662                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
1663            saver->signal_error().connect(
1664                sigc::mem_fun(*this, &MainWindow::on_saver_error));
1665            saver->launch();
1666    
1667          return true;          return true;
1668      }      }
1669      return false;      return false;
# Line 801  bool MainWindow::file_save_as() Line 1673  bool MainWindow::file_save_as()
1673  void MainWindow::__import_queued_samples() {  void MainWindow::__import_queued_samples() {
1674      std::cout << "Starting sample import\n" << std::flush;      std::cout << "Starting sample import\n" << std::flush;
1675      Glib::ustring error_files;      Glib::ustring error_files;
1676      printf("Samples to import: %d\n", m_SampleImportQueue.size());      printf("Samples to import: %d\n", int(m_SampleImportQueue.size()));
1677      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();      for (std::map<gig::Sample*, SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
1678           iter != m_SampleImportQueue.end(); ) {           iter != m_SampleImportQueue.end(); ) {
1679          printf("Importing sample %s\n",(*iter).sample_path.c_str());          printf("Importing sample %s\n",iter->second.sample_path.c_str());
1680          SF_INFO info;          SF_INFO info;
1681          info.format = 0;          info.format = 0;
1682          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);          SNDFILE* hFile = sf_open(iter->second.sample_path.c_str(), SFM_READ, &info);
1683          sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);          sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);
1684          try {          try {
1685              if (!hFile) throw std::string(_("could not open file"));              if (!hFile) throw std::string(_("could not open file"));
# Line 830  void MainWindow::__import_queued_samples Line 1702  void MainWindow::__import_queued_samples
1702                      throw std::string(_("format not supported")); // unsupported subformat (yet?)                      throw std::string(_("format not supported")); // unsupported subformat (yet?)
1703              }              }
1704    
1705                // reset write position for sample
1706                iter->first->SetPos(0);
1707    
1708              const int bufsize = 10000;              const int bufsize = 10000;
1709              switch (bitdepth) {              switch (bitdepth) {
1710                  case 16: {                  case 16: {
# Line 839  void MainWindow::__import_queued_samples Line 1714  void MainWindow::__import_queued_samples
1714                          // libsndfile does the conversion for us (if needed)                          // libsndfile does the conversion for us (if needed)
1715                          int n = sf_readf_short(hFile, buffer, bufsize);                          int n = sf_readf_short(hFile, buffer, bufsize);
1716                          // write from buffer directly (physically) into .gig file                          // write from buffer directly (physically) into .gig file
1717                          iter->gig_sample->Write(buffer, n);                          iter->first->Write(buffer, n);
1718                          cnt -= n;                          cnt -= n;
1719                      }                      }
1720                      delete[] buffer;                      delete[] buffer;
# Line 859  void MainWindow::__import_queued_samples Line 1734  void MainWindow::__import_queued_samples
1734                              dstbuf[j++] = srcbuf[i] >> 24;                              dstbuf[j++] = srcbuf[i] >> 24;
1735                          }                          }
1736                          // write from buffer directly (physically) into .gig file                          // write from buffer directly (physically) into .gig file
1737                          iter->gig_sample->Write(dstbuf, n);                          iter->first->Write(dstbuf, n);
1738                          cnt -= n;                          cnt -= n;
1739                      }                      }
1740                      delete[] srcbuf;                      delete[] srcbuf;
# Line 870  void MainWindow::__import_queued_samples Line 1745  void MainWindow::__import_queued_samples
1745              // cleanup              // cleanup
1746              sf_close(hFile);              sf_close(hFile);
1747              // let the sampler re-cache the sample if needed              // let the sampler re-cache the sample if needed
1748              sample_changed_signal.emit(iter->gig_sample);              sample_changed_signal.emit(iter->first);
1749              // on success we remove the sample from the import queue,              // on success we remove the sample from the import queue,
1750              // otherwise keep it, maybe it works the next time ?              // otherwise keep it, maybe it works the next time ?
1751              std::list<SampleImportItem>::iterator cur = iter;              std::map<gig::Sample*, SampleImportItem>::iterator cur = iter;
1752              ++iter;              ++iter;
1753              m_SampleImportQueue.erase(cur);              m_SampleImportQueue.erase(cur);
1754          } catch (std::string what) {          } catch (std::string what) {
1755              // remember the files that made trouble (and their cause)              // remember the files that made trouble (and their cause)
1756              if (!error_files.empty()) error_files += "\n";              if (!error_files.empty()) error_files += "\n";
1757              error_files += (*iter).sample_path += " (" + what + ")";              error_files += iter->second.sample_path += " (" + what + ")";
1758              ++iter;              ++iter;
1759          }          }
1760      }      }
# Line 897  void MainWindow::on_action_file_properti Line 1772  void MainWindow::on_action_file_properti
1772      propDialog.deiconify();      propDialog.deiconify();
1773  }  }
1774    
1775    void MainWindow::on_action_warn_user_on_extensions() {
1776        Settings::singleton()->warnUserOnExtensions =
1777            !Settings::singleton()->warnUserOnExtensions;
1778    }
1779    
1780    void MainWindow::on_action_sync_sampler_instrument_selection() {
1781        Settings::singleton()->syncSamplerInstrumentSelection =
1782            !Settings::singleton()->syncSamplerInstrumentSelection;
1783    }
1784    
1785    void MainWindow::on_action_move_root_note_with_region_moved() {
1786        Settings::singleton()->moveRootNoteWithRegionMoved =
1787            !Settings::singleton()->moveRootNoteWithRegionMoved;
1788    }
1789    
1790  void MainWindow::on_action_help_about()  void MainWindow::on_action_help_about()
1791  {  {
1792      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
# Line 906  void MainWindow::on_action_help_about() Line 1796  void MainWindow::on_action_help_about()
1796      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
1797  #endif  #endif
1798      dialog.set_version(VERSION);      dialog.set_version(VERSION);
1799      dialog.set_copyright("Copyright (C) 2006-2013 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2017 Andreas Persson");
1800      dialog.set_comments(_(      const std::string sComment =
1801          "Released under the GNU General Public License.\n"          _("Built " __DATE__ "\nUsing ") +
1802          "\n"          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
1803          "Please notice that this is still a very young instrument editor. "          _(
1804          "So better backup your Gigasampler files before editing them with "              "Gigedit is released under the GNU General Public License.\n"
1805          "this application.\n"              "\n"
1806          "\n"              "This program is distributed WITHOUT ANY WARRANTY; So better "
1807          "Please report bugs to: http://bugs.linuxsampler.org")              "backup your Gigasampler/GigaStudio files before editing them with "
1808      );              "this application.\n"
1809                "\n"
1810                "Please report bugs to: http://bugs.linuxsampler.org"
1811            );
1812        dialog.set_comments(sComment.c_str());
1813      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("http://www.linuxsampler.org");
1814      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("http://www.linuxsampler.org");
1815      dialog.run();      dialog.run();
1816  }  }
1817    
1818  PropDialog::PropDialog()  PropDialog::PropDialog()
1819      : eName(_("Name")),      : eFileFormat(_("File Format")),
1820          eName(_("Name")),
1821        eCreationDate(_("Creation date")),        eCreationDate(_("Creation date")),
1822        eComments(_("Comments")),        eComments(_("Comments")),
1823        eProduct(_("Product")),        eProduct(_("Product")),
# Line 939  PropDialog::PropDialog() Line 1834  PropDialog::PropDialog()
1834        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
1835        eSubject(_("Subject")),        eSubject(_("Subject")),
1836        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
1837        table(2, 1)        table(2, 1),
1838          m_file(NULL)
1839  {  {
1840      set_title(_("File Properties"));      set_title(_("File Properties"));
1841      eName.set_width_chars(50);      eName.set_width_chars(50);
# Line 961  PropDialog::PropDialog() Line 1857  PropDialog::PropDialog()
1857      connect(eCommissioned, &DLS::Info::Commissioned);      connect(eCommissioned, &DLS::Info::Commissioned);
1858      connect(eSubject, &DLS::Info::Subject);      connect(eSubject, &DLS::Info::Subject);
1859    
1860        table.add(eFileFormat);
1861      table.add(eName);      table.add(eName);
1862      table.add(eCreationDate);      table.add(eCreationDate);
1863      table.add(eComments);      table.add(eComments);
# Line 991  PropDialog::PropDialog() Line 1888  PropDialog::PropDialog()
1888      quitButton.grab_focus();      quitButton.grab_focus();
1889      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
1890          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &PropDialog::hide));
1891        eFileFormat.signal_value_changed().connect(
1892            sigc::mem_fun(*this, &PropDialog::onFileFormatChanged));
1893    
1894      quitButton.show();      quitButton.show();
1895      vbox.show();      vbox.show();
1896      show_all_children();      show_all_children();
1897  }  }
1898    
1899    void PropDialog::set_file(gig::File* file)
1900    {
1901        m_file = file;
1902    
1903        // update file format version combo box
1904        const std::string sGiga = "Gigasampler/GigaStudio v";
1905        const int major = file->pVersion->major;
1906        std::vector<std::string> txts;
1907        std::vector<int> values;
1908        txts.push_back(sGiga + "2"); values.push_back(2);
1909        txts.push_back(sGiga + "3/v4"); values.push_back(3);
1910        if (major != 2 && major != 3) {
1911            txts.push_back(sGiga + ToString(major)); values.push_back(major);
1912        }
1913        std::vector<const char*> texts;
1914        for (int i = 0; i < txts.size(); ++i) texts.push_back(txts[i].c_str());
1915        texts.push_back(NULL); values.push_back(0);
1916        eFileFormat.set_choices(&texts[0], &values[0]);
1917        eFileFormat.set_value(major);
1918    }
1919    
1920    void PropDialog::onFileFormatChanged() {
1921        const int major = eFileFormat.get_value();
1922        if (m_file) m_file->pVersion->major = major;
1923    }
1924    
1925  void PropDialog::set_info(DLS::Info* info)  void PropDialog::set_info(DLS::Info* info)
1926  {  {
1927      update(info);      update(info);
# Line 1128  void MainWindow::file_changed() Line 2053  void MainWindow::file_changed()
2053      }      }
2054  }  }
2055    
2056    void MainWindow::updateSampleRefCountMap(gig::File* gig) {
2057        sample_ref_count.clear();
2058        
2059        if (!gig) return;
2060    
2061        for (gig::Instrument* instrument = gig->GetFirstInstrument(); instrument;
2062             instrument = gig->GetNextInstrument())
2063        {
2064            for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
2065                 rgn = instrument->GetNextRegion())
2066            {
2067                for (int i = 0; i < 256; ++i) {
2068                    if (!rgn->pDimensionRegions[i]) continue;
2069                    if (rgn->pDimensionRegions[i]->pSample) {
2070                        sample_ref_count[rgn->pDimensionRegions[i]->pSample]++;
2071                    }
2072                }
2073            }
2074        }
2075    }
2076    
2077  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
2078  {  {
2079      file = 0;      file = 0;
2080      set_file_is_shared(isSharedInstrument);      set_file_is_shared(isSharedInstrument);
2081    
2082      this->filename = filename ? filename : _("Unsaved Gig File");      this->filename =
2083            (filename && strlen(filename) > 0) ?
2084                filename : (!gig->GetFileName().empty()) ?
2085                    gig->GetFileName() : _("Unsaved Gig File");
2086      set_title(Glib::filename_display_basename(this->filename));      set_title(Glib::filename_display_basename(this->filename));
2087      file_has_name = filename;      file_has_name = filename;
2088      file_is_changed = false;      file_is_changed = false;
2089    
2090        propDialog.set_file(gig);
2091      propDialog.set_info(gig->pInfo);      propDialog.set_info(gig->pInfo);
2092    
2093      instrument_name_connection.block();      instrument_name_connection.block();
2094        int index = 0;
2095      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
2096           instrument = gig->GetNextInstrument()) {           instrument = gig->GetNextInstrument(), ++index) {
2097          Glib::ustring name(instrument->pInfo->Name);          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
2098    
2099          Gtk::TreeModel::iterator iter = m_refTreeModel->append();          Gtk::TreeModel::iterator iter = m_refTreeModel->append();
2100          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
2101            row[m_Columns.m_col_nr] = index;
2102          row[m_Columns.m_col_name] = name;          row[m_Columns.m_col_name] = name;
2103          row[m_Columns.m_col_instr] = instrument;          row[m_Columns.m_col_instr] = instrument;
2104    
2105          add_instrument_to_menu(name);          add_instrument_to_menu(name);
2106      }      }
2107      instrument_name_connection.unblock();      instrument_name_connection.unblock();
2108      uiManager->get_widget("/MenuBar/MenuInstrument")->show();      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();
2109    
2110        updateSampleRefCountMap(gig);
2111    
2112      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {
2113          if (group->Name != "") {          if (group->Name != "") {
2114              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
2115              Gtk::TreeModel::Row rowGroup = *iterGroup;              Gtk::TreeModel::Row rowGroup = *iterGroup;
2116              rowGroup[m_SamplesModel.m_col_name]   = group->Name.c_str();              rowGroup[m_SamplesModel.m_col_name]   = gig_to_utf8(group->Name);
2117              rowGroup[m_SamplesModel.m_col_group]  = group;              rowGroup[m_SamplesModel.m_col_group]  = group;
2118              rowGroup[m_SamplesModel.m_col_sample] = NULL;              rowGroup[m_SamplesModel.m_col_sample] = NULL;
2119              for (gig::Sample* sample = group->GetFirstSample();              for (gig::Sample* sample = group->GetFirstSample();
# Line 1167  void MainWindow::load_gig(gig::File* gig Line 2121  void MainWindow::load_gig(gig::File* gig
2121                  Gtk::TreeModel::iterator iterSample =                  Gtk::TreeModel::iterator iterSample =
2122                      m_refSamplesTreeModel->append(rowGroup.children());                      m_refSamplesTreeModel->append(rowGroup.children());
2123                  Gtk::TreeModel::Row rowSample = *iterSample;                  Gtk::TreeModel::Row rowSample = *iterSample;
2124                  rowSample[m_SamplesModel.m_col_name]   = sample->pInfo->Name.c_str();                  rowSample[m_SamplesModel.m_col_name] =
2125                        gig_to_utf8(sample->pInfo->Name);
2126                  rowSample[m_SamplesModel.m_col_sample] = sample;                  rowSample[m_SamplesModel.m_col_sample] = sample;
2127                  rowSample[m_SamplesModel.m_col_group]  = NULL;                  rowSample[m_SamplesModel.m_col_group]  = NULL;
2128                    int refcount = sample_ref_count.count(sample) ? sample_ref_count[sample] : 0;
2129                    rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
2130                    rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
2131              }              }
2132          }          }
2133      }      }
2134        
2135        for (int i = 0; gig->GetScriptGroup(i); ++i) {
2136            gig::ScriptGroup* group = gig->GetScriptGroup(i);
2137    
2138            Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
2139            Gtk::TreeModel::Row rowGroup = *iterGroup;
2140            rowGroup[m_ScriptsModel.m_col_name]   = gig_to_utf8(group->Name);
2141            rowGroup[m_ScriptsModel.m_col_group]  = group;
2142            rowGroup[m_ScriptsModel.m_col_script] = NULL;
2143            for (int s = 0; group->GetScript(s); ++s) {
2144                gig::Script* script = group->GetScript(s);
2145    
2146                Gtk::TreeModel::iterator iterScript =
2147                    m_refScriptsTreeModel->append(rowGroup.children());
2148                Gtk::TreeModel::Row rowScript = *iterScript;
2149                rowScript[m_ScriptsModel.m_col_name] = gig_to_utf8(script->Name);
2150                rowScript[m_ScriptsModel.m_col_script] = script;
2151                rowScript[m_ScriptsModel.m_col_group]  = NULL;
2152            }
2153        }
2154        // unfold all sample groups & script groups by default
2155        m_TreeViewSamples.expand_all();
2156        m_TreeViewScripts.expand_all();
2157    
2158      file = gig;      file = gig;
2159    
# Line 1180  void MainWindow::load_gig(gig::File* gig Line 2161  void MainWindow::load_gig(gig::File* gig
2161      m_TreeView.get_selection()->select(Gtk::TreePath("0"));      m_TreeView.get_selection()->select(Gtk::TreePath("0"));
2162    
2163      instr_props_set_instrument();      instr_props_set_instrument();
2164        gig::Instrument* instrument = get_instrument();
2165        if (instrument) {
2166            midiRules.set_instrument(instrument);
2167        }
2168  }  }
2169    
2170  bool MainWindow::instr_props_set_instrument()  bool MainWindow::instr_props_set_instrument()
2171  {  {
2172      instrumentProps.signal_name_changed().clear();      instrumentProps.signal_name_changed().clear();
2173    
2174      Gtk::TreeModel::const_iterator it =      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
2175          m_TreeView.get_selection()->get_selected();      if (rows.empty()) {
2176            instrumentProps.hide();
2177            return false;
2178        }
2179        Gtk::TreeModel::const_iterator it = m_refTreeModel->get_iter(rows[0]);
2180      if (it) {      if (it) {
2181          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
2182          gig::Instrument* instrument = row[m_Columns.m_col_instr];          gig::Instrument* instrument = row[m_Columns.m_col_instr];
# Line 1221  void MainWindow::instr_name_changed_by_i Line 2210  void MainWindow::instr_name_changed_by_i
2210      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_Columns.m_col_name];
2211    
2212      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_Columns.m_col_instr];
2213      if (instrument->pInfo->Name != name) {      Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
2214          row[m_Columns.m_col_name] = instrument->pInfo->Name;      if (gigname != name) {
2215            row[m_Columns.m_col_name] = gigname;
2216        }
2217    }
2218    
2219    void MainWindow::show_midi_rules()
2220    {
2221        if (gig::Instrument* instrument = get_instrument())
2222        {
2223            midiRules.set_instrument(instrument);
2224            midiRules.show();
2225            midiRules.deiconify();
2226      }      }
2227  }  }
2228    
2229    void MainWindow::show_script_slots() {
2230        if (!file) return;
2231        // get selected instrument
2232        std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
2233        if (rows.empty()) return;
2234        Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
2235        if (!it) return;
2236        Gtk::TreeModel::Row row = *it;
2237        gig::Instrument* instrument = row[m_Columns.m_col_instr];
2238        if (!instrument) return;
2239    
2240        ScriptSlots* window = new ScriptSlots;
2241        window->setInstrument(instrument);
2242        //window->reparent(*this);
2243        window->show();
2244    }
2245    
2246    void MainWindow::on_action_refresh_all() {
2247        __refreshEntireGUI();
2248    }
2249    
2250  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
2251      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
2252          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
# Line 1237  void MainWindow::on_action_view_status_b Line 2258  void MainWindow::on_action_view_status_b
2258      else                    m_StatusBar.hide();      else                    m_StatusBar.hide();
2259  }  }
2260    
2261    void MainWindow::on_auto_restore_win_dim() {
2262        Gtk::CheckMenuItem* item =
2263            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
2264        if (!item) {
2265            std::cerr << "/MenuBar/MenuView/AutoRestoreWinDim == NULL\n";
2266            return;
2267        }
2268        Settings::singleton()->autoRestoreWindowDimension = item->get_active();
2269    }
2270    
2271    void MainWindow::on_save_with_temporary_file() {
2272        Gtk::CheckMenuItem* item =
2273            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));
2274        if (!item) {
2275            std::cerr << "/MenuBar/MenuSettings/SaveWithTemporaryFile == NULL\n";
2276            return;
2277        }
2278        Settings::singleton()->saveWithTemporaryFile = item->get_active();
2279    }
2280    
2281    bool MainWindow::is_copy_samples_unity_note_enabled() const {
2282        Gtk::CheckMenuItem* item =
2283            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
2284        if (!item) {
2285            std::cerr << "/MenuBar/MenuEdit/CopySampleUnity == NULL\n";
2286            return true;
2287        }
2288        return item->get_active();
2289    }
2290    
2291    bool MainWindow::is_copy_samples_fine_tune_enabled() const {
2292        Gtk::CheckMenuItem* item =
2293            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
2294        if (!item) {
2295            std::cerr << "/MenuBar/MenuEdit/CopySampleTune == NULL\n";
2296            return true;
2297        }
2298        return item->get_active();
2299    }
2300    
2301    bool MainWindow::is_copy_samples_loop_enabled() const {
2302        Gtk::CheckMenuItem* item =
2303            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
2304        if (!item) {
2305            std::cerr << "/MenuBar/MenuEdit/CopySampleLoop == NULL\n";
2306            return true;
2307        }
2308        return item->get_active();
2309    }
2310    
2311  void MainWindow::on_button_release(GdkEventButton* button)  void MainWindow::on_button_release(GdkEventButton* button)
2312  {  {
2313      if (button->type == GDK_2BUTTON_PRESS) {      if (button->type == GDK_2BUTTON_PRESS) {
2314          show_instr_props();          show_instr_props();
2315      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
2316            // gig v2 files have no midi rules
2317            const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
2318            static_cast<Gtk::MenuItem*>(
2319                uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(
2320                    bEnabled
2321                );
2322            static_cast<Gtk::MenuItem*>(
2323                uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
2324                    bEnabled
2325                );
2326          popup_menu->popup(button->button, button->time);          popup_menu->popup(button->button, button->time);
2327      }      }
2328  }  }
# Line 1261  void MainWindow::on_instrument_selection Line 2342  void MainWindow::on_instrument_selection
2342      }      }
2343  }  }
2344    
2345    void MainWindow::select_instrument(gig::Instrument* instrument) {
2346        if (!instrument) return;
2347    
2348        Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
2349        for (int i = 0; i < model->children().size(); ++i) {
2350            Gtk::TreeModel::Row row = model->children()[i];
2351            if (row[m_Columns.m_col_instr] == instrument) {
2352                // select and show the respective instrument in the list view
2353                show_intruments_tab();
2354                m_TreeView.get_selection()->unselect_all();
2355                m_TreeView.get_selection()->select(model->children()[i]);
2356                std::vector<Gtk::TreeModel::Path> rows =
2357                    m_TreeView.get_selection()->get_selected_rows();
2358                if (!rows.empty())
2359                    m_TreeView.scroll_to_row(rows[0]);
2360                on_sel_change(); // the regular instrument selection change callback
2361            }
2362        }
2363    }
2364    
2365    /// Returns true if requested dimension region was successfully selected and scrolled to in the list view, false on error.
2366    bool MainWindow::select_dimension_region(gig::DimensionRegion* dimRgn) {
2367        gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();
2368        gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();
2369    
2370        Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
2371        for (int i = 0; i < model->children().size(); ++i) {
2372            Gtk::TreeModel::Row row = model->children()[i];
2373            if (row[m_Columns.m_col_instr] == pInstrument) {
2374                // select and show the respective instrument in the list view
2375                show_intruments_tab();
2376                m_TreeView.get_selection()->unselect_all();
2377                m_TreeView.get_selection()->select(model->children()[i]);
2378                std::vector<Gtk::TreeModel::Path> rows =
2379                    m_TreeView.get_selection()->get_selected_rows();
2380                if (!rows.empty())
2381                    m_TreeView.scroll_to_row(rows[0]);
2382                on_sel_change(); // the regular instrument selection change callback
2383    
2384                // select respective region in the region selector
2385                m_RegionChooser.set_region(pRegion);
2386    
2387                // select and show the respective dimension region in the editor
2388                //update_dimregs();
2389                if (!m_DimRegionChooser.select_dimregion(dimRgn)) return false;
2390                //dimreg_edit.set_dim_region(dimRgn);
2391    
2392                return true;
2393            }
2394        }
2395    
2396        return false;
2397    }
2398    
2399    void MainWindow::select_sample(gig::Sample* sample) {
2400        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
2401        for (int g = 0; g < model->children().size(); ++g) {
2402            Gtk::TreeModel::Row rowGroup = model->children()[g];
2403            for (int s = 0; s < rowGroup.children().size(); ++s) {
2404                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
2405                if (rowSample[m_SamplesModel.m_col_sample] == sample) {
2406                    show_samples_tab();
2407                    m_TreeViewSamples.get_selection()->unselect_all();
2408                    m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);
2409                    std::vector<Gtk::TreeModel::Path> rows =
2410                        m_TreeViewSamples.get_selection()->get_selected_rows();
2411                    if (rows.empty()) return;
2412                    m_TreeViewSamples.scroll_to_row(rows[0]);
2413                    return;
2414                }
2415            }
2416        }
2417    }
2418    
2419  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
2420      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
2421            // by default if Ctrl keys is pressed down, then a mouse right-click
2422            // does not select the respective row, so we must assure this
2423            // programmatically ...
2424            /*{
2425                Gtk::TreeModel::Path path;
2426                Gtk::TreeViewColumn* pColumn = NULL;
2427                int cellX, cellY;
2428                bool bSuccess = m_TreeViewSamples.get_path_at_pos(
2429                    (int)button->x, (int)button->y,
2430                    path, pColumn, cellX, cellY
2431                );
2432                if (bSuccess) {
2433                    if (m_TreeViewSamples.get_selection()->count_selected_rows() <= 0) {
2434                        printf("not selected !!!\n");
2435                        m_TreeViewSamples.get_selection()->select(path);
2436                    }
2437                }
2438            }*/
2439    
2440          Gtk::Menu* sample_popup =          Gtk::Menu* sample_popup =
2441              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));
2442          // update enabled/disabled state of sample popup items          // update enabled/disabled state of sample popup items
2443          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
2444          Gtk::TreeModel::iterator it = sel->get_selected();          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2445          bool group_selected  = false;          const int n = rows.size();
2446          bool sample_selected = false;          int nGroups  = 0;
2447          if (it) {          int nSamples = 0;
2448            for (int r = 0; r < n; ++r) {
2449                Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
2450                if (!it) continue;
2451              Gtk::TreeModel::Row row = *it;              Gtk::TreeModel::Row row = *it;
2452              group_selected  = row[m_SamplesModel.m_col_group];              if (row[m_SamplesModel.m_col_group]) nGroups++;
2453              sample_selected = row[m_SamplesModel.m_col_sample];              if (row[m_SamplesModel.m_col_sample]) nSamples++;
2454          }          }
2455    
2456          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
2457              set_sensitive(group_selected || sample_selected);              set_sensitive(n == 1);
2458          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
2459              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
2460          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->
2461              set_sensitive(file);              set_sensitive(file);
2462            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/ShowSampleRefs"))->
2463                set_sensitive(nSamples == 1);
2464          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
2465              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
2466          // show sample popup          // show sample popup
2467          sample_popup->popup(button->button, button->time);          sample_popup->popup(button->button, button->time);
2468    
2469            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->
2470                set_sensitive(n == 1);
2471            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->
2472                set_sensitive(n);
2473            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddGroup"))->
2474                set_sensitive(file);
2475            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/ShowSampleRefs"))->
2476                set_sensitive(nSamples == 1);
2477            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->
2478                set_sensitive(n);
2479      }      }
2480  }  }
2481    
2482    void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {
2483        if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
2484            Gtk::Menu* script_popup =
2485                dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));
2486            // update enabled/disabled state of sample popup items
2487            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2488            Gtk::TreeModel::iterator it = sel->get_selected();
2489            bool group_selected  = false;
2490            bool script_selected = false;
2491            if (it) {
2492                Gtk::TreeModel::Row row = *it;
2493                group_selected  = row[m_ScriptsModel.m_col_group];
2494                script_selected = row[m_ScriptsModel.m_col_script];
2495            }
2496            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->
2497                set_sensitive(group_selected || script_selected);
2498            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->
2499                set_sensitive(file);
2500            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/EditScript"))->
2501                set_sensitive(script_selected);    
2502            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->
2503                set_sensitive(group_selected || script_selected);
2504            // show sample popup
2505            script_popup->popup(button->button, button->time);
2506    
2507            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->
2508                set_sensitive(group_selected || script_selected);
2509            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->
2510                set_sensitive(file);
2511            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/EditScript"))->
2512                set_sensitive(script_selected);    
2513            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->
2514                set_sensitive(group_selected || script_selected);
2515        }
2516    }
2517    
2518  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
2519      const Glib::ustring& name, int position) {      const Glib::ustring& name, int position) {
# Line 1322  void MainWindow::remove_instrument_from_ Line 2548  void MainWindow::remove_instrument_from_
2548  }  }
2549    
2550  void MainWindow::add_instrument(gig::Instrument* instrument) {  void MainWindow::add_instrument(gig::Instrument* instrument) {
2551      const char* name = instrument->pInfo->Name.c_str();      const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
2552    
2553      // update instrument tree view      // update instrument tree view
2554      instrument_name_connection.block();      instrument_name_connection.block();
2555      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
2556      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
2557        rowInstr[m_Columns.m_col_nr] = m_refTreeModel->children().size() - 1;
2558      rowInstr[m_Columns.m_col_name] = name;      rowInstr[m_Columns.m_col_name] = name;
2559      rowInstr[m_Columns.m_col_instr] = instrument;      rowInstr[m_Columns.m_col_instr] = instrument;
2560      instrument_name_connection.unblock();      instrument_name_connection.unblock();
# Line 1344  void MainWindow::on_action_add_instrumen Line 2571  void MainWindow::on_action_add_instrumen
2571      if (!file) return;      if (!file) return;
2572      gig::Instrument* instrument = file->AddInstrument();      gig::Instrument* instrument = file->AddInstrument();
2573      __instrument_indexer++;      __instrument_indexer++;
2574      instrument->pInfo->Name =      instrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument ") +
2575          _("Unnamed Instrument ") + ToString(__instrument_indexer);                                              ToString(__instrument_indexer));
2576    
2577      add_instrument(instrument);      add_instrument(instrument);
2578  }  }
# Line 1356  void MainWindow::on_action_duplicate_ins Line 2583  void MainWindow::on_action_duplicate_ins
2583      // retrieve the currently selected instrument      // retrieve the currently selected instrument
2584      // (being the original instrument to be duplicated)      // (being the original instrument to be duplicated)
2585      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
2586      Gtk::TreeModel::iterator itSelection = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2587      if (!itSelection) return;      for (int r = 0; r < rows.size(); ++r) {
2588      Gtk::TreeModel::Row row = *itSelection;          Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
2589      gig::Instrument* instrOrig = row[m_Columns.m_col_instr];          if (it) {
2590      if (!instrOrig) return;              Gtk::TreeModel::Row row = *it;
2591                gig::Instrument* instrOrig = row[m_Columns.m_col_instr];
2592      // duplicate the orginal instrument              if (instrOrig) {
2593      gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);                  // duplicate the orginal instrument
2594      instrNew->pInfo->Name =                  gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
2595          instrOrig->pInfo->Name + " (" + _("Copy") + ")";                  instrNew->pInfo->Name =
2596                        instrOrig->pInfo->Name +
2597                        gig_from_utf8(Glib::ustring(" (") + _("Copy") + ")");
2598    
2599      add_instrument(instrNew);                  add_instrument(instrNew);
2600                }
2601            }
2602        }
2603  }  }
2604    
2605  void MainWindow::on_action_remove_instrument() {  void MainWindow::on_action_remove_instrument() {
# Line 1384  void MainWindow::on_action_remove_instru Line 2616  void MainWindow::on_action_remove_instru
2616      }      }
2617    
2618      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
2619      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2620      if (it) {      for (int r = rows.size() - 1; r >= 0; --r) {
2621            Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
2622            if (!it) continue;
2623          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
2624          gig::Instrument* instr = row[m_Columns.m_col_instr];          gig::Instrument* instr = row[m_Columns.m_col_instr];
2625          try {          try {
# Line 1400  void MainWindow::on_action_remove_instru Line 2634  void MainWindow::on_action_remove_instru
2634    
2635              // remove row from instruments tree view              // remove row from instruments tree view
2636              m_refTreeModel->erase(it);              m_refTreeModel->erase(it);
2637                // update "Nr" column of all instrument rows
2638                {
2639                    int index = 0;
2640                    for (Gtk::TreeModel::iterator it = m_refTreeModel->children().begin();
2641                         it != m_refTreeModel->children().end(); ++it, ++index)
2642                    {
2643                        Gtk::TreeModel::Row row = *it;
2644                        row[m_Columns.m_col_nr] = index;
2645                    }
2646                }
2647    
2648  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
2649              // select another instrument (in gtk3 this is done              // select another instrument (in gtk3 this is done
# Line 1413  void MainWindow::on_action_remove_instru Line 2657  void MainWindow::on_action_remove_instru
2657              }              }
2658  #endif  #endif
2659              instr_props_set_instrument();              instr_props_set_instrument();
2660                instr = get_instrument();
2661                if (instr) {
2662                    midiRules.set_instrument(instr);
2663                } else {
2664                    midiRules.hide();
2665                }
2666          } catch (RIFF::Exception e) {          } catch (RIFF::Exception e) {
2667              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
2668              msg.run();              msg.run();
# Line 1428  void MainWindow::on_action_sample_proper Line 2678  void MainWindow::on_action_sample_proper
2678      msg.run();      msg.run();
2679  }  }
2680    
2681    void MainWindow::on_action_add_script_group() {
2682        static int __script_indexer = 0;
2683        if (!file) return;
2684        gig::ScriptGroup* group = file->AddScriptGroup();
2685        group->Name = gig_from_utf8(_("Unnamed Group"));
2686        if (__script_indexer) group->Name += " " + ToString(__script_indexer);
2687        __script_indexer++;
2688        // update sample tree view
2689        Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
2690        Gtk::TreeModel::Row rowGroup = *iterGroup;
2691        rowGroup[m_ScriptsModel.m_col_name] = gig_to_utf8(group->Name);
2692        rowGroup[m_ScriptsModel.m_col_script] = NULL;
2693        rowGroup[m_ScriptsModel.m_col_group] = group;
2694        file_changed();
2695    }
2696    
2697    void MainWindow::on_action_add_script() {
2698        if (!file) return;
2699        // get selected group
2700        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2701        Gtk::TreeModel::iterator it = sel->get_selected();
2702        if (!it) return;
2703        Gtk::TreeModel::Row row = *it;
2704        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
2705        if (!group) { // not a group, but a script is selected (probably)
2706            gig::Script* script = row[m_ScriptsModel.m_col_script];
2707            if (!script) return;
2708            it = row.parent(); // resolve parent (that is the script's group)
2709            if (!it) return;
2710            row = *it;
2711            group = row[m_ScriptsModel.m_col_group];
2712            if (!group) return;
2713        }
2714    
2715        // add a new script to the .gig file
2716        gig::Script* script = group->AddScript();    
2717        Glib::ustring name = _("Unnamed Script");
2718        script->Name = gig_from_utf8(name);
2719    
2720        // add script to the tree view
2721        Gtk::TreeModel::iterator iterScript =
2722            m_refScriptsTreeModel->append(row.children());
2723        Gtk::TreeModel::Row rowScript = *iterScript;
2724        rowScript[m_ScriptsModel.m_col_name] = name;
2725        rowScript[m_ScriptsModel.m_col_script] = script;
2726        rowScript[m_ScriptsModel.m_col_group]  = NULL;
2727    
2728        // unfold group of new script item in treeview
2729        Gtk::TreeModel::Path path(iterScript);
2730        m_TreeViewScripts.expand_to_path(path);
2731    }
2732    
2733    void MainWindow::on_action_edit_script() {
2734        if (!file) return;
2735        // get selected script
2736        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2737        Gtk::TreeModel::iterator it = sel->get_selected();
2738        if (!it) return;
2739        Gtk::TreeModel::Row row = *it;
2740        gig::Script* script = row[m_ScriptsModel.m_col_script];
2741        if (!script) return;
2742    
2743        ScriptEditor* editor = new ScriptEditor;
2744        editor->signal_script_to_be_changed.connect(
2745            signal_script_to_be_changed.make_slot()
2746        );
2747        editor->signal_script_changed.connect(
2748            signal_script_changed.make_slot()
2749        );
2750        editor->setScript(script);
2751        //editor->reparent(*this);
2752        editor->show();
2753    }
2754    
2755    void MainWindow::on_action_remove_script() {
2756        if (!file) return;
2757        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2758        Gtk::TreeModel::iterator it = sel->get_selected();
2759        if (it) {
2760            Gtk::TreeModel::Row row = *it;
2761            gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
2762            gig::Script* script     = row[m_ScriptsModel.m_col_script];
2763            Glib::ustring name      = row[m_ScriptsModel.m_col_name];
2764            try {
2765                // remove script group or script from the gig file
2766                if (group) {
2767                    // notify everybody that we're going to remove these samples
2768    //TODO:         scripts_to_be_removed_signal.emit(members);
2769                    // delete the group in the .gig file including the
2770                    // samples that belong to the group
2771                    file->DeleteScriptGroup(group);
2772                    // notify that we're done with removal
2773    //TODO:         scripts_removed_signal.emit();
2774                    file_changed();
2775                } else if (script) {
2776                    // notify everybody that we're going to remove this sample
2777    //TODO:         std::list<gig::Script*> lscripts;
2778    //TODO:         lscripts.push_back(script);
2779    //TODO:         scripts_to_be_removed_signal.emit(lscripts);
2780                    // remove sample from the .gig file
2781                    script->GetGroup()->DeleteScript(script);
2782                    // notify that we're done with removal
2783    //TODO:         scripts_removed_signal.emit();
2784                    dimreg_changed();
2785                    file_changed();
2786                }
2787                // remove respective row(s) from samples tree view
2788                m_refScriptsTreeModel->erase(it);
2789            } catch (RIFF::Exception e) {
2790                // pretend we're done with removal (i.e. to avoid dead locks)
2791    //TODO:     scripts_removed_signal.emit();
2792                // show error message
2793                Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
2794                msg.run();
2795            }
2796        }
2797    }
2798    
2799  void MainWindow::on_action_add_group() {  void MainWindow::on_action_add_group() {
2800      static int __sample_indexer = 0;      static int __sample_indexer = 0;
2801      if (!file) return;      if (!file) return;
2802      gig::Group* group = file->AddGroup();      gig::Group* group = file->AddGroup();
2803      group->Name = _("Unnamed Group");      group->Name = gig_from_utf8(_("Unnamed Group"));
2804      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
2805      __sample_indexer++;      __sample_indexer++;
2806      // update sample tree view      // update sample tree view
2807      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
2808      Gtk::TreeModel::Row rowGroup = *iterGroup;      Gtk::TreeModel::Row rowGroup = *iterGroup;
2809      rowGroup[m_SamplesModel.m_col_name] = group->Name.c_str();      rowGroup[m_SamplesModel.m_col_name] = gig_to_utf8(group->Name);
2810      rowGroup[m_SamplesModel.m_col_sample] = NULL;      rowGroup[m_SamplesModel.m_col_sample] = NULL;
2811      rowGroup[m_SamplesModel.m_col_group] = group;      rowGroup[m_SamplesModel.m_col_group] = group;
2812      file_changed();      file_changed();
2813  }  }
2814    
2815    void MainWindow::on_action_replace_sample() {
2816        add_or_replace_sample(true);
2817    }
2818    
2819  void MainWindow::on_action_add_sample() {  void MainWindow::on_action_add_sample() {
2820        add_or_replace_sample(false);
2821    }
2822    
2823    void MainWindow::add_or_replace_sample(bool replace) {
2824      if (!file) return;      if (!file) return;
2825      // get selected group  
2826        // get selected group (and probably selected sample)
2827      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
2828      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
2829        if (rows.empty()) return;
2830        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
2831      if (!it) return;      if (!it) return;
2832      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
2833        gig::Sample* sample = NULL;
2834      gig::Group* group = row[m_SamplesModel.m_col_group];      gig::Group* group = row[m_SamplesModel.m_col_group];
2835      if (!group) { // not a group, but a sample is selected (probably)      if (!group) { // not a group, but a sample is selected (probably)
2836          gig::Sample* sample = row[m_SamplesModel.m_col_sample];          if (replace) sample = row[m_SamplesModel.m_col_sample];
2837          if (!sample) return;          if (!row[m_SamplesModel.m_col_sample]) return;
2838          it = row.parent(); // resolve parent (that is the sample's group)          it = row.parent(); // resolve parent (that is the sample's group)
2839          if (!it) return;          if (!it) return;
2840          row = *it;          if (!replace) row = *it;
2841          group = row[m_SamplesModel.m_col_group];          group = (*it)[m_SamplesModel.m_col_group];
2842          if (!group) return;          if (!group) return;
2843      }      }
2844        if (replace && !sample) return;
2845    
2846      // show 'browse for file' dialog      // show 'browse for file' dialog
2847      Gtk::FileChooserDialog dialog(*this, _("Add Sample(s)"));      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));
2848      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2849      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
2850      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
2851    
2852      // matches all file types supported by libsndfile      // matches all file types supported by libsndfile
2853  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
# Line 1536  void MainWindow::on_action_add_sample() Line 2918  void MainWindow::on_action_add_sample()
2918                          sf_close(hFile); // close sound file                          sf_close(hFile); // close sound file
2919                          throw std::string(_("format not supported")); // unsupported subformat (yet?)                          throw std::string(_("format not supported")); // unsupported subformat (yet?)
2920                  }                  }
2921                  // add a new sample to the .gig file                  // add a new sample to the .gig file (if adding is requested actually)
2922                  gig::Sample* sample = file->AddSample();                  if (!replace) sample = file->AddSample();
2923                  // file name without path                  // file name without path
2924                  Glib::ustring filename = Glib::filename_display_basename(*iter);                  Glib::ustring filename = Glib::filename_display_basename(*iter);
2925                  // remove file extension if there is one                  // remove file extension if there is one
# Line 1547  void MainWindow::on_action_add_sample() Line 2929  void MainWindow::on_action_add_sample()
2929                          break;                          break;
2930                      }                      }
2931                  }                  }
2932                  sample->pInfo->Name = filename;                  sample->pInfo->Name = gig_from_utf8(filename);
2933                  sample->Channels = info.channels;                  sample->Channels = info.channels;
2934                  sample->BitDepth = bitdepth;                  sample->BitDepth = bitdepth;
2935                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;
# Line 1561  void MainWindow::on_action_add_sample() Line 2943  void MainWindow::on_action_add_sample()
2943                                 &instrument, sizeof(instrument)) != SF_FALSE)                                 &instrument, sizeof(instrument)) != SF_FALSE)
2944                  {                  {
2945                      sample->MIDIUnityNote = instrument.basenote;                      sample->MIDIUnityNote = instrument.basenote;
2946                        sample->FineTune      = instrument.detune;
2947    
2948                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {
2949                          sample->Loops = 1;                          sample->Loops = 1;
# Line 1587  void MainWindow::on_action_add_sample() Line 2970  void MainWindow::on_action_add_sample()
2970                  // physically when File::Save() is called)                  // physically when File::Save() is called)
2971                  sample->Resize(info.frames);                  sample->Resize(info.frames);
2972                  // make sure sample is part of the selected group                  // make sure sample is part of the selected group
2973                  group->AddSample(sample);                  if (!replace) group->AddSample(sample);
2974                  // schedule that physical resize and sample import                  // schedule that physical resize and sample import
2975                  // (data copying), performed when "Save" is requested                  // (data copying), performed when "Save" is requested
2976                  SampleImportItem sched_item;                  SampleImportItem sched_item;
2977                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
2978                  sched_item.sample_path = *iter;                  sched_item.sample_path = *iter;
2979                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue[sample] = sched_item;
2980                  // add sample to the tree view                  // add sample to the tree view
2981                  Gtk::TreeModel::iterator iterSample =                  if (replace) {
2982                      m_refSamplesTreeModel->append(row.children());                      row[m_SamplesModel.m_col_name] = gig_to_utf8(sample->pInfo->Name);
2983                  Gtk::TreeModel::Row rowSample = *iterSample;                  } else {
2984                  rowSample[m_SamplesModel.m_col_name]   = filename;                      Gtk::TreeModel::iterator iterSample =
2985                  rowSample[m_SamplesModel.m_col_sample] = sample;                          m_refSamplesTreeModel->append(row.children());
2986                  rowSample[m_SamplesModel.m_col_group]  = NULL;                      Gtk::TreeModel::Row rowSample = *iterSample;
2987                        rowSample[m_SamplesModel.m_col_name] =
2988                            gig_to_utf8(sample->pInfo->Name);
2989                        rowSample[m_SamplesModel.m_col_sample] = sample;
2990                        rowSample[m_SamplesModel.m_col_group]  = NULL;
2991                    }
2992                  // close sound file                  // close sound file
2993                  sf_close(hFile);                  sf_close(hFile);
2994                  file_changed();                  file_changed();
# Line 1611  void MainWindow::on_action_add_sample() Line 2999  void MainWindow::on_action_add_sample()
2999          }          }
3000          // 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
3001          if (!error_files.empty()) {          if (!error_files.empty()) {
3002              Glib::ustring txt = _("Could not add the following sample(s):\n") + error_files;              Glib::ustring txt =
3003                    (replace
3004                        ? _("Failed to replace sample with:\n")
3005                        : _("Could not add the following sample(s):\n"))
3006                    + error_files;
3007              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
3008              msg.run();              msg.run();
3009          }          }
# Line 1669  void MainWindow::on_action_replace_all_s Line 3061  void MainWindow::on_action_replace_all_s
3061               sample; sample = file->GetNextSample())               sample; sample = file->GetNextSample())
3062          {          {
3063              std::string filename =              std::string filename =
3064                  folder + G_DIR_SEPARATOR_S + sample->pInfo->Name +                  folder + G_DIR_SEPARATOR_S +
3065                  postfixEntryBox.get_text().raw();                  Glib::filename_from_utf8(gig_to_utf8(sample->pInfo->Name) +
3066                                             postfixEntryBox.get_text());
3067              SF_INFO info;              SF_INFO info;
3068              info.format = 0;              info.format = 0;
3069              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
3070              try              try
3071              {              {
3072                  if (!hFile) throw std::string(_("could not open file"));                  if (!hFile) throw std::string(_("could not open file"));
                 int bitdepth;  
3073                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
3074                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
3075                      case SF_FORMAT_PCM_16:                      case SF_FORMAT_PCM_16:
3076                      case SF_FORMAT_PCM_U8:                      case SF_FORMAT_PCM_U8:
                         bitdepth = 16;  
                         break;  
3077                      case SF_FORMAT_PCM_24:                      case SF_FORMAT_PCM_24:
3078                      case SF_FORMAT_PCM_32:                      case SF_FORMAT_PCM_32:
3079                      case SF_FORMAT_FLOAT:                      case SF_FORMAT_FLOAT:
3080                      case SF_FORMAT_DOUBLE:                      case SF_FORMAT_DOUBLE:
                         bitdepth = 24;  
3081                          break;                          break;
3082                      default:                      default:
3083                          sf_close(hFile);                          sf_close(hFile);
# Line 1697  void MainWindow::on_action_replace_all_s Line 3086  void MainWindow::on_action_replace_all_s
3086                  SampleImportItem sched_item;                  SampleImportItem sched_item;
3087                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
3088                  sched_item.sample_path = filename;                  sched_item.sample_path = filename;
3089                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue[sample] = sched_item;
3090                  sf_close(hFile);                  sf_close(hFile);
3091                  file_changed();                  file_changed();
3092              }              }
3093              catch (std::string what)              catch (std::string what)
3094              {              {
3095                  if (!error_files.empty()) error_files += "\n";                  if (!error_files.empty()) error_files += "\n";
3096                      error_files += filename += " (" + what + ")";                  error_files += Glib::filename_to_utf8(filename) +
3097                        " (" + what + ")";
3098              }              }
3099          }          }
3100          // show error message box when some file(s) could not be opened / added          // show error message box when some file(s) could not be opened / added
# Line 1720  void MainWindow::on_action_replace_all_s Line 3110  void MainWindow::on_action_replace_all_s
3110  void MainWindow::on_action_remove_sample() {  void MainWindow::on_action_remove_sample() {
3111      if (!file) return;      if (!file) return;
3112      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
3113      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3114      if (it) {      for (int r = rows.size() - 1; r >= 0; --r) {
3115            Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
3116            if (!it) continue;
3117          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
3118          gig::Group* group   = row[m_SamplesModel.m_col_group];          gig::Group* group   = row[m_SamplesModel.m_col_group];
3119          gig::Sample* sample = row[m_SamplesModel.m_col_sample];          gig::Sample* sample = row[m_SamplesModel.m_col_sample];
# Line 1729  void MainWindow::on_action_remove_sample Line 3121  void MainWindow::on_action_remove_sample
3121          try {          try {
3122              // remove group or sample from the gig file              // remove group or sample from the gig file
3123              if (group) {              if (group) {
3124                  // temporarily remember the samples that bolong to                  // temporarily remember the samples that belong to
3125                  // that group (we need that to clean the queue)                  // that group (we need that to clean the queue)
3126                  std::list<gig::Sample*> members;                  std::list<gig::Sample*> members;
3127                  for (gig::Sample* pSample = group->GetFirstSample();                  for (gig::Sample* pSample = group->GetFirstSample();
# Line 1746  void MainWindow::on_action_remove_sample Line 3138  void MainWindow::on_action_remove_sample
3138                  // if sample(s) were just previously added, remove                  // if sample(s) were just previously added, remove
3139                  // them from the import queue                  // them from the import queue
3140                  for (std::list<gig::Sample*>::iterator member = members.begin();                  for (std::list<gig::Sample*>::iterator member = members.begin();
3141                       member != members.end(); ++member) {                       member != members.end(); ++member)
3142                      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();                  {
3143                           iter != m_SampleImportQueue.end(); ++iter) {                      if (m_SampleImportQueue.count(*member)) {
3144                          if ((*iter).gig_sample == *member) {                          printf("Removing previously added sample '%s' from group '%s'\n",
3145                              printf("Removing previously added sample '%s' from group '%s'\n",                                 m_SampleImportQueue[sample].sample_path.c_str(), name.c_str());
3146                                     (*iter).sample_path.c_str(), name.c_str());                          m_SampleImportQueue.erase(*member);
                             m_SampleImportQueue.erase(iter);  
                             break;  
                         }  
3147                      }                      }
3148                  }                  }
3149                  file_changed();                  file_changed();
# Line 1769  void MainWindow::on_action_remove_sample Line 3158  void MainWindow::on_action_remove_sample
3158                  samples_removed_signal.emit();                  samples_removed_signal.emit();
3159                  // if sample was just previously added, remove it from                  // if sample was just previously added, remove it from
3160                  // the import queue                  // the import queue
3161                  for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();                  if (m_SampleImportQueue.count(sample)) {
3162                       iter != m_SampleImportQueue.end(); ++iter) {                      printf("Removing previously added sample '%s'\n",
3163                      if ((*iter).gig_sample == sample) {                             m_SampleImportQueue[sample].sample_path.c_str());
3164                          printf("Removing previously added sample '%s'\n",                      m_SampleImportQueue.erase(sample);
                                (*iter).sample_path.c_str());  
                         m_SampleImportQueue.erase(iter);  
                         break;  
                     }  
3165                  }                  }
3166                  dimreg_changed();                  dimreg_changed();
3167                  file_changed();                  file_changed();
# Line 1793  void MainWindow::on_action_remove_sample Line 3178  void MainWindow::on_action_remove_sample
3178      }      }
3179  }  }
3180    
3181    void MainWindow::on_action_remove_unused_samples() {
3182        if (!file) return;
3183    
3184        // collect all samples that are not referenced by any instrument
3185        std::list<gig::Sample*> lsamples;
3186        for (int iSample = 0; file->GetSample(iSample); ++iSample) {
3187            gig::Sample* sample = file->GetSample(iSample);
3188            bool isUsed = false;
3189            for (gig::Instrument* instrument = file->GetFirstInstrument(); instrument;
3190                                  instrument = file->GetNextInstrument())
3191            {
3192                for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
3193                                  rgn = instrument->GetNextRegion())
3194                {
3195                    for (int i = 0; i < 256; ++i) {
3196                        if (!rgn->pDimensionRegions[i]) continue;
3197                        if (rgn->pDimensionRegions[i]->pSample != sample) continue;
3198                        isUsed = true;
3199                        goto endOfRefSearch;
3200                    }
3201                }
3202            }
3203            endOfRefSearch:
3204            if (!isUsed) lsamples.push_back(sample);
3205        }
3206    
3207        if (lsamples.empty()) return;
3208    
3209        // notify everybody that we're going to remove these samples
3210        samples_to_be_removed_signal.emit(lsamples);
3211    
3212        // remove collected samples
3213        try {
3214            for (std::list<gig::Sample*>::iterator itSample = lsamples.begin();
3215                 itSample != lsamples.end(); ++itSample)
3216            {
3217                gig::Sample* sample = *itSample;
3218                // remove sample from the .gig file
3219                file->DeleteSample(sample);
3220                // if sample was just previously added, remove it from the import queue
3221                if (m_SampleImportQueue.count(sample)) {
3222                    printf("Removing previously added sample '%s'\n",
3223                           m_SampleImportQueue[sample].sample_path.c_str());
3224                    m_SampleImportQueue.erase(sample);
3225                }
3226            }
3227        } catch (RIFF::Exception e) {
3228            // show error message
3229            Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
3230            msg.run();
3231        }
3232    
3233        // notify everybody that we're done with removal
3234        samples_removed_signal.emit();
3235    
3236        dimreg_changed();
3237        file_changed();
3238        __refreshEntireGUI();
3239    }
3240    
3241    // see comment on on_sample_treeview_drag_begin()
3242    void MainWindow::on_scripts_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
3243    {
3244        first_call_to_drag_data_get = true;
3245    }
3246    
3247    void MainWindow::on_scripts_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
3248                                                       Gtk::SelectionData& selection_data, guint, guint)
3249    {
3250        if (!first_call_to_drag_data_get) return;
3251        first_call_to_drag_data_get = false;
3252    
3253        // get selected script
3254        gig::Script* script = NULL;
3255        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
3256        Gtk::TreeModel::iterator it = sel->get_selected();
3257        if (it) {
3258            Gtk::TreeModel::Row row = *it;
3259            script = row[m_ScriptsModel.m_col_script];
3260        }
3261        // pass the gig::Script as pointer
3262        selection_data.set(selection_data.get_target(), 0/*unused*/,
3263                           (const guchar*)&script,
3264                           sizeof(script)/*length of data in bytes*/);
3265    }
3266    
3267    // see comment on on_sample_treeview_drag_begin()
3268    void MainWindow::on_instruments_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
3269    {
3270        first_call_to_drag_data_get = true;
3271    }
3272    
3273    void MainWindow::on_instruments_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
3274                                                           Gtk::SelectionData& selection_data, guint, guint)
3275    {
3276        if (!first_call_to_drag_data_get) return;
3277        first_call_to_drag_data_get = false;
3278    
3279        // get selected source instrument
3280        gig::Instrument* src = NULL;
3281        {
3282            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
3283            std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3284            if (!rows.empty()) {
3285                Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
3286                if (it) {
3287                    Gtk::TreeModel::Row row = *it;
3288                    src = row[m_Columns.m_col_instr];
3289                }
3290            }
3291        }
3292        if (!src) return;
3293    
3294        // pass the source gig::Instrument as pointer
3295        selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&src,
3296                           sizeof(src)/*length of data in bytes*/);
3297    }
3298    
3299    void MainWindow::on_instruments_treeview_drop_drag_data_received(
3300        const Glib::RefPtr<Gdk::DragContext>& context, int x, int y,
3301        const Gtk::SelectionData& selection_data, guint, guint time)
3302    {
3303        gig::Instrument* src = *((gig::Instrument**) selection_data.get_data());
3304        if (!src || selection_data.get_length() != sizeof(gig::Instrument*))
3305            return;
3306    
3307        gig::Instrument* dst = NULL;
3308        {
3309            Gtk::TreeModel::Path path;
3310            const bool found = m_TreeView.get_path_at_pos(x, y, path);
3311            if (!found) return;
3312    
3313            Gtk::TreeModel::iterator iter = m_refTreeModel->get_iter(path);
3314            if (!iter) return;
3315            Gtk::TreeModel::Row row = *iter;
3316            dst = row[m_Columns.m_col_instr];
3317        }
3318        if (!dst) return;
3319    
3320        //printf("dragdrop received src=%s dst=%s\n", src->pInfo->Name.c_str(), dst->pInfo->Name.c_str());
3321        src->MoveTo(dst);
3322        __refreshEntireGUI();
3323        select_instrument(src);
3324    }
3325    
3326  // For some reason drag_data_get gets called two times for each  // For some reason drag_data_get gets called two times for each
3327  // 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
3328  // makes sure the code in drag_data_get and drop_drag_data_received is  // makes sure the code in drag_data_get and drop_drag_data_received is
# Line 1811  void MainWindow::on_sample_treeview_drag Line 3341  void MainWindow::on_sample_treeview_drag
3341      // get selected sample      // get selected sample
3342      gig::Sample* sample = NULL;      gig::Sample* sample = NULL;
3343      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
3344      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3345      if (it) {      if (!rows.empty()) {
3346          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
3347          sample = row[m_SamplesModel.m_col_sample];          if (it) {
3348                Gtk::TreeModel::Row row = *it;
3349                sample = row[m_SamplesModel.m_col_sample];
3350            }
3351      }      }
3352      // pass the gig::Sample as pointer      // pass the gig::Sample as pointer
3353      selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&sample,      selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&sample,
# Line 1851  void MainWindow::on_sample_label_drop_dr Line 3384  void MainWindow::on_sample_label_drop_dr
3384          bool channels_changed = false;          bool channels_changed = false;
3385          if (sample->Channels == 1 && stereo_dimension) {          if (sample->Channels == 1 && stereo_dimension) {
3386              // remove the samplechannel dimension              // remove the samplechannel dimension
3387    /* commented out, because it makes it impossible building up an instrument from scratch using two separate L/R samples
3388              region->DeleteDimension(stereo_dimension);              region->DeleteDimension(stereo_dimension);
3389              channels_changed = true;              channels_changed = true;
3390              region_changed();              region_changed();
3391    */
3392          }          }
3393          dimreg_edit.set_sample(sample);          dimreg_edit.set_sample(
3394                sample,
3395                is_copy_samples_unity_note_enabled(),
3396                is_copy_samples_fine_tune_enabled(),
3397                is_copy_samples_loop_enabled()
3398            );
3399    
3400          if (sample->Channels == 2 && !stereo_dimension) {          if (sample->Channels == 2 && !stereo_dimension) {
3401              // add samplechannel dimension              // add samplechannel dimension
# Line 1898  void MainWindow::sample_name_changed(con Line 3438  void MainWindow::sample_name_changed(con
3438      Glib::ustring name  = row[m_SamplesModel.m_col_name];      Glib::ustring name  = row[m_SamplesModel.m_col_name];
3439      gig::Group* group   = row[m_SamplesModel.m_col_group];      gig::Group* group   = row[m_SamplesModel.m_col_group];
3440      gig::Sample* sample = row[m_SamplesModel.m_col_sample];      gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3441        gig::String gigname(gig_from_utf8(name));
3442      if (group) {      if (group) {
3443          if (group->Name != name) {          if (group->Name != gigname) {
3444              group->Name = name;              group->Name = gigname;
3445              printf("group name changed\n");              printf("group name changed\n");
3446              file_changed();              file_changed();
3447          }          }
3448      } else if (sample) {      } else if (sample) {
3449          if (sample->pInfo->Name != name.raw()) {          if (sample->pInfo->Name != gigname) {
3450              sample->pInfo->Name = name.raw();              sample->pInfo->Name = gigname;
3451              printf("sample name changed\n");              printf("sample name changed\n");
3452              file_changed();              file_changed();
3453          }          }
3454      }      }
3455  }  }
3456    
3457    void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,
3458                                         const Gtk::TreeModel::iterator& iter) {
3459        if (!iter) return;
3460        Gtk::TreeModel::Row row = *iter;
3461        Glib::ustring name      = row[m_ScriptsModel.m_col_name];
3462        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
3463        gig::Script* script     = row[m_ScriptsModel.m_col_script];
3464        gig::String gigname(gig_from_utf8(name));
3465        if (group) {
3466            if (group->Name != gigname) {
3467                group->Name = gigname;
3468                printf("script group name changed\n");
3469                file_changed();
3470            }
3471        } else if (script) {
3472            if (script->Name != gigname) {
3473                script->Name = gigname;
3474                printf("script name changed\n");
3475                file_changed();
3476            }
3477        }
3478    }
3479    
3480    void MainWindow::script_double_clicked(const Gtk::TreeModel::Path& path,
3481                                           Gtk::TreeViewColumn* column)
3482    {
3483        Gtk::TreeModel::iterator iter = m_refScriptsTreeModel->get_iter(path);
3484        if (!iter) return;
3485        Gtk::TreeModel::Row row = *iter;
3486        gig::Script* script = row[m_ScriptsModel.m_col_script];
3487        if (!script) return;
3488    
3489        ScriptEditor* editor = new ScriptEditor;
3490        editor->signal_script_to_be_changed.connect(
3491            signal_script_to_be_changed.make_slot()
3492        );
3493        editor->signal_script_changed.connect(
3494            signal_script_changed.make_slot()
3495        );
3496        editor->setScript(script);
3497        //editor->reparent(*this);
3498        editor->show();
3499    }
3500    
3501  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,
3502                                           const Gtk::TreeModel::iterator& iter) {                                           const Gtk::TreeModel::iterator& iter) {
3503      if (!iter) return;      if (!iter) return;
# Line 1934  void MainWindow::instrument_name_changed Line 3519  void MainWindow::instrument_name_changed
3519    
3520      // change name in gig      // change name in gig
3521      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_Columns.m_col_instr];
3522      if (instrument && instrument->pInfo->Name != name.raw()) {      gig::String gigname(gig_from_utf8(name));
3523          instrument->pInfo->Name = name.raw();      if (instrument && instrument->pInfo->Name != gigname) {
3524            instrument->pInfo->Name = gigname;
3525    
3526          // change name in the instrument properties window          // change name in the instrument properties window
3527          if (instrumentProps.get_instrument() == instrument) {          if (instrumentProps.get_instrument() == instrument) {
# Line 1946  void MainWindow::instrument_name_changed Line 3532  void MainWindow::instrument_name_changed
3532      }      }
3533  }  }
3534    
3535    void MainWindow::on_action_combine_instruments() {
3536        CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);
3537        d->show_all();
3538        d->resize(500, 400);
3539        d->run();
3540        if (d->fileWasChanged()) {
3541            // update GUI with new instrument just created
3542            add_instrument(d->newCombinedInstrument());
3543        }
3544        delete d;
3545    }
3546    
3547    void MainWindow::on_action_view_references() {
3548        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
3549        std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3550        if (rows.empty()) return;
3551        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
3552        if (!it) return;
3553        Gtk::TreeModel::Row row = *it;
3554        gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3555        if (!sample) return;
3556    
3557        ReferencesView* d = new ReferencesView(*this);
3558        d->setSample(sample);
3559        d->dimension_region_selected.connect(
3560            sigc::mem_fun(*this, &MainWindow::select_dimension_region)
3561        );
3562        d->show_all();
3563        d->resize(500, 400);
3564        d->run();
3565        delete d;
3566    }
3567    
3568    void MainWindow::mergeFiles(const std::vector<std::string>& filenames) {
3569        struct _Source {
3570            std::vector<RIFF::File*> riffs;
3571            std::vector<gig::File*> gigs;
3572            
3573            ~_Source() {
3574                for (int k = 0; k < gigs.size(); ++k) delete gigs[k];
3575                for (int k = 0; k < riffs.size(); ++k) delete riffs[k];
3576                riffs.clear();
3577                gigs.clear();
3578            }
3579        } sources;
3580    
3581        if (filenames.empty())
3582            throw RIFF::Exception(_("No files selected, so nothing done."));
3583    
3584        // first open all input files (to avoid output file corruption)
3585        int i;
3586        try {
3587            for (i = 0; i < filenames.size(); ++i) {
3588                const std::string& filename = filenames[i];
3589                printf("opening file=%s\n", filename.c_str());
3590    
3591                RIFF::File* riff = new RIFF::File(filename);
3592                sources.riffs.push_back(riff);
3593    
3594                gig::File* gig = new gig::File(riff);
3595                sources.gigs.push_back(gig);
3596            }
3597        } catch (RIFF::Exception e) {
3598            throw RIFF::Exception(
3599                _("Error occurred while opening '") +
3600                filenames[i] +
3601                "': " +
3602                e.Message
3603            );
3604        } catch (...) {
3605            throw RIFF::Exception(
3606                _("Unknown exception occurred while opening '") +
3607                filenames[i] + "'"
3608            );
3609        }
3610    
3611        // now merge the opened .gig files to the main .gig file currently being
3612        // open in gigedit
3613        try {
3614            for (i = 0; i < filenames.size(); ++i) {
3615                const std::string& filename = filenames[i];
3616                printf("merging file=%s\n", filename.c_str());
3617                assert(i < sources.gigs.size());
3618    
3619                this->file->AddContentOf(sources.gigs[i]);
3620            }
3621        } catch (RIFF::Exception e) {
3622            throw RIFF::Exception(
3623                _("Error occurred while merging '") +
3624                filenames[i] +
3625                "': " +
3626                e.Message
3627            );
3628        } catch (...) {
3629            throw RIFF::Exception(
3630                _("Unknown exception occurred while merging '") +
3631                filenames[i] + "'"
3632            );
3633        }
3634    
3635        // Finally save gig file persistently to disk ...
3636        //NOTE: requires that this gig file already has a filename !
3637        {
3638            std::cout << "Saving file\n" << std::flush;
3639            file_structure_to_be_changed_signal.emit(this->file);
3640    
3641            progress_dialog = new ProgressDialog( //FIXME: memory leak!
3642                _("Saving") +  Glib::ustring(" '") +
3643                Glib::filename_display_basename(this->filename) + "' ...",
3644                *this
3645            );
3646            progress_dialog->show_all();
3647            saver = new Saver(this->file); //FIXME: memory leak!
3648            saver->signal_progress().connect(
3649                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
3650            saver->signal_finished().connect(
3651                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
3652            saver->signal_error().connect(
3653                sigc::mem_fun(*this, &MainWindow::on_saver_error));
3654            saver->launch();
3655        }
3656    }
3657    
3658    void MainWindow::on_action_merge_files() {
3659        if (this->file->GetFileName().empty()) {
3660            Glib::ustring txt = _(
3661                "You seem to have a new .gig file open that has not been saved "
3662                "yet. You must save it somewhere before starting to merge it with "
3663                "other .gig files though, because during the merge operation the "
3664                "other files' sample data must be written on file level to the "
3665                "target .gig file."
3666            );
3667            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
3668            msg.run();
3669            return;
3670        }
3671    
3672        Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
3673        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
3674        dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
3675        dialog.set_default_response(Gtk::RESPONSE_CANCEL);
3676    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
3677        Gtk::FileFilter filter;
3678        filter.add_pattern("*.gig");
3679    #else
3680        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
3681        filter->add_pattern("*.gig");
3682    #endif
3683        dialog.set_filter(filter);
3684        if (current_gig_dir != "") {
3685            dialog.set_current_folder(current_gig_dir);
3686        }
3687        dialog.set_select_multiple(true);
3688    
3689        // show warning in the file picker dialog
3690        Gtk::HBox descriptionArea;
3691        descriptionArea.set_spacing(15);
3692        Gtk::Image warningIcon;
3693        warningIcon.set_from_icon_name("dialog-warning",
3694                                       Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
3695        descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
3696    #if GTKMM_MAJOR_VERSION < 3
3697        view::WrapLabel description;
3698    #else
3699        Gtk::Label description;
3700        description.set_line_wrap();
3701    #endif
3702        description.set_markup(_(
3703            "\nSelect at least one .gig file that shall be merged to the .gig file "
3704            "currently being open in gigedit.\n\n"
3705            "<b>Please Note:</b> Merging with other files will modify your "
3706            "currently open .gig file on file level! And be aware that the current "
3707            "merge algorithm does not detect duplicate samples yet. So if you are "
3708            "merging files which are using equivalent sample data, those "
3709            "equivalent samples will currently be treated as separate samples and "
3710            "will accordingly be stored separately in the target .gig file!"
3711        ));
3712        descriptionArea.pack_start(description);
3713        dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
3714        descriptionArea.show_all();
3715    
3716        if (dialog.run() == Gtk::RESPONSE_OK) {
3717            printf("on_action_merge_files self=%p\n",
3718                   static_cast<void*>(Glib::Threads::Thread::self()));
3719            std::vector<std::string> filenames = dialog.get_filenames();
3720    
3721            // merge the selected files to the currently open .gig file
3722            try {
3723                mergeFiles(filenames);
3724            } catch (RIFF::Exception e) {
3725                Gtk::MessageDialog msg(*this, e.Message, false, Gtk::MESSAGE_ERROR);
3726                msg.run();
3727            }
3728    
3729            // update GUI
3730            __refreshEntireGUI();
3731        }
3732    }
3733    
3734  void MainWindow::set_file_is_shared(bool b) {  void MainWindow::set_file_is_shared(bool b) {
3735      this->file_is_shared = b;      this->file_is_shared = b;
3736    
# Line 1960  void MainWindow::set_file_is_shared(bool Line 3745  void MainWindow::set_file_is_shared(bool
3745              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)
3746          );          );
3747      }      }
3748    
3749        {
3750            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
3751                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
3752            if (item) item->set_sensitive(b);
3753        }
3754    }
3755    
3756    void MainWindow::on_sample_ref_count_incremented(gig::Sample* sample, int offset) {
3757        if (!sample) return;
3758        sample_ref_count[sample] += offset;
3759        const int refcount = sample_ref_count[sample];
3760    
3761        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
3762        for (int g = 0; g < model->children().size(); ++g) {
3763            Gtk::TreeModel::Row rowGroup = model->children()[g];
3764            for (int s = 0; s < rowGroup.children().size(); ++s) {
3765                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
3766                if (rowSample[m_SamplesModel.m_col_sample] != sample) continue;
3767                rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
3768                rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
3769            }
3770        }
3771    }
3772    
3773    void MainWindow::on_sample_ref_changed(gig::Sample* oldSample, gig::Sample* newSample) {
3774        on_sample_ref_count_incremented(oldSample, -1);
3775        on_sample_ref_count_incremented(newSample, +1);
3776    }
3777    
3778    void MainWindow::on_samples_to_be_removed(std::list<gig::Sample*> samples) {
3779        // just in case a new sample is added later with exactly the same memory
3780        // address, which would lead to incorrect refcount if not deleted here
3781        for (std::list<gig::Sample*>::const_iterator it = samples.begin();
3782             it != samples.end(); ++it)
3783        {
3784            sample_ref_count.erase(*it);
3785        }
3786    }
3787    
3788    void MainWindow::show_samples_tab() {
3789        m_TreeViewNotebook.set_current_page(0);
3790    }
3791    
3792    void MainWindow::show_intruments_tab() {
3793        m_TreeViewNotebook.set_current_page(1);
3794    }
3795    
3796    void MainWindow::show_scripts_tab() {
3797        m_TreeViewNotebook.set_current_page(2);
3798    }
3799    
3800    void MainWindow::select_prev_region() {
3801        m_RegionChooser.select_prev_region();
3802    }
3803    
3804    void MainWindow::select_next_region() {
3805        m_RegionChooser.select_next_region();
3806    }
3807    
3808    void MainWindow::select_next_dim_rgn_zone() {
3809        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
3810        m_DimRegionChooser.select_next_dimzone();
3811    }
3812    
3813    void MainWindow::select_prev_dim_rgn_zone() {
3814        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
3815        m_DimRegionChooser.select_prev_dimzone();
3816    }
3817    
3818    void MainWindow::select_add_next_dim_rgn_zone() {
3819        m_DimRegionChooser.select_next_dimzone(true);
3820    }
3821    
3822    void MainWindow::select_add_prev_dim_rgn_zone() {
3823        m_DimRegionChooser.select_prev_dimzone(true);
3824    }
3825    
3826    void MainWindow::select_prev_dimension() {
3827        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
3828        m_DimRegionChooser.select_prev_dimension();
3829    }
3830    
3831    void MainWindow::select_next_dimension() {
3832        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
3833        m_DimRegionChooser.select_next_dimension();
3834    }
3835    
3836    #define CLIPBOARD_DIMENSIONREGION_TARGET \
3837        ("libgig.DimensionRegion." + m_serializationArchive.rawDataFormat())
3838    
3839    void MainWindow::copy_selected_dimrgn() {
3840        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
3841        if (!pDimRgn) {
3842            updateClipboardPasteAvailable();
3843            updateClipboardCopyAvailable();
3844            return;
3845        }
3846    
3847        std::vector<Gtk::TargetEntry> targets;
3848        targets.push_back( Gtk::TargetEntry(CLIPBOARD_DIMENSIONREGION_TARGET) );
3849    
3850        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
3851        clipboard->set(
3852            targets,
3853            sigc::mem_fun(*this, &MainWindow::on_clipboard_get),
3854            sigc::mem_fun(*this, &MainWindow::on_clipboard_clear)
3855        );
3856    
3857        m_serializationArchive.serialize(pDimRgn);
3858    
3859        updateClipboardPasteAvailable();
3860    }
3861    
3862    void MainWindow::paste_copied_dimrgn() {
3863        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
3864        clipboard->request_contents(
3865            CLIPBOARD_DIMENSIONREGION_TARGET,
3866            sigc::mem_fun(*this, &MainWindow::on_clipboard_received)
3867        );
3868        updateClipboardPasteAvailable();
3869    }
3870    
3871    void MainWindow::adjust_clipboard_content() {
3872        MacroEditor* editor = new MacroEditor();
3873        editor->setMacro(&m_serializationArchive, true);
3874        editor->show();
3875    }
3876    
3877    void MainWindow::updateClipboardPasteAvailable() {
3878        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
3879        clipboard->request_targets(
3880            sigc::mem_fun(*this, &MainWindow::on_clipboard_received_targets)
3881        );
3882    }
3883    
3884    void MainWindow::updateClipboardCopyAvailable() {
3885        bool bDimensionRegionCopyIsPossible = m_DimRegionChooser.get_main_dimregion();
3886        static_cast<Gtk::MenuItem*>(
3887            uiManager->get_widget("/MenuBar/MenuEdit/CopyDimRgn")
3888        )->set_sensitive(bDimensionRegionCopyIsPossible);
3889    }
3890    
3891    void MainWindow::on_clipboard_owner_change(GdkEventOwnerChange* event) {
3892        updateClipboardPasteAvailable();
3893    }
3894    
3895    void MainWindow::on_clipboard_get(Gtk::SelectionData& selection_data, guint /*info*/) {
3896        const std::string target = selection_data.get_target();
3897        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
3898            selection_data.set(
3899                CLIPBOARD_DIMENSIONREGION_TARGET, 8 /* "format": probably unused*/,
3900                &m_serializationArchive.rawData()[0],
3901                m_serializationArchive.rawData().size()
3902            );
3903        } else {
3904            std::cerr << "Clipboard: content for unknown target '" << target << "' requested\n";
3905        }
3906    }
3907    
3908    void MainWindow::on_clipboard_clear() {
3909        m_serializationArchive.clear();
3910        updateClipboardPasteAvailable();
3911        updateClipboardCopyAvailable();
3912    }
3913    
3914    //NOTE: Might throw exception !!!
3915    void MainWindow::applyMacro(Serialization::Archive& macro) {
3916        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
3917        if (!pDimRgn) return;
3918    
3919        for (std::set<gig::DimensionRegion*>::iterator itDimReg = dimreg_edit.dimregs.begin();
3920             itDimReg != dimreg_edit.dimregs.end(); ++itDimReg)
3921        {
3922            gig::DimensionRegion* pDimRgn = *itDimReg;
3923            dimreg_to_be_changed_signal.emit(pDimRgn);
3924            macro.deserialize(pDimRgn);
3925            dimreg_changed_signal.emit(pDimRgn);
3926        }
3927        //region_changed()
3928        file_changed();
3929        dimreg_changed();
3930    }
3931    
3932    void MainWindow::on_clipboard_received(const Gtk::SelectionData& selection_data) {
3933        const std::string target = selection_data.get_target();
3934        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
3935            Glib::ustring errorText;
3936            try {
3937                m_serializationArchive.decode(
3938                    selection_data.get_data(), selection_data.get_length()
3939                );
3940                applyMacro(m_serializationArchive);
3941            } catch (Serialization::Exception e) {
3942                errorText = e.Message;
3943            } catch (...) {
3944                errorText = _("Unknown exception while pasting DimensionRegion");
3945            }
3946            if (!errorText.empty()) {
3947                Glib::ustring txt = _("Pasting DimensionRegion failed:\n") + errorText;
3948                Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
3949                msg.run();
3950            }
3951        }
3952    }
3953    
3954    void MainWindow::on_clipboard_received_targets(const std::vector<Glib::ustring>& targets) {
3955        const bool bDimensionRegionPasteIsPossible =
3956            std::find(targets.begin(), targets.end(),
3957                      CLIPBOARD_DIMENSIONREGION_TARGET) != targets.end();
3958    
3959        static_cast<Gtk::MenuItem*>(
3960            uiManager->get_widget("/MenuBar/MenuEdit/PasteDimRgn")
3961        )->set_sensitive(bDimensionRegionPasteIsPossible);
3962    
3963        static_cast<Gtk::MenuItem*>(
3964            uiManager->get_widget("/MenuBar/MenuEdit/AdjustClipboard")
3965        )->set_sensitive(bDimensionRegionPasteIsPossible);
3966  }  }
3967    
3968  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {
# Line 2017  sigc::signal<void, int/*key*/, int/*velo Line 4020  sigc::signal<void, int/*key*/, int/*velo
4020  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {
4021      return m_RegionChooser.signal_keyboard_key_released();      return m_RegionChooser.signal_keyboard_key_released();
4022  }  }
4023    
4024    sigc::signal<void, gig::Instrument*>& MainWindow::signal_switch_sampler_instrument() {
4025        return switch_sampler_instrument_signal;
4026    }

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

  ViewVC Help
Powered by ViewVC