/[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 2151 by persson, Sun Nov 21 12:38:41 2010 UTC revision 3417 by schoenebeck, Fri Feb 9 15:29:13 2018 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2010 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 "compat.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>
32    #include <glibmm/dispatcher.h>
33    #include <glibmm/miscutils.h>
34    #include <glibmm/stringutils.h>
35    #include <glibmm/regex.h>
36  #include <gtkmm/aboutdialog.h>  #include <gtkmm/aboutdialog.h>
37  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
38  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
39  #include <gtkmm/stock.h>  #if HAS_GTKMM_STOCK
40    # include <gtkmm/stock.h>
41    #endif
42  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
43  #include <gtkmm/main.h>  #include <gtkmm/main.h>
44  #include <gtkmm/toggleaction.h>  #if GTKMM_MAJOR_VERSION < 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION < 89)
45    # include <gtkmm/toggleaction.h>
46    #endif
47    #include <gtkmm/accelmap.h>
48    #if GTKMM_MAJOR_VERSION < 3
49  #include "wrapLabel.hh"  #include "wrapLabel.hh"
50    #endif
51    
52  #include "global.h"  #include "global.h"
53    #include "compat.h"
 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 18) || GTKMM_MAJOR_VERSION < 2  
 #define set_can_default() set_flags(Gtk::CAN_DEFAULT)  
 #endif  
54    
55  #include <stdio.h>  #include <stdio.h>
56  #include <sndfile.h>  #ifdef LIBSNDFILE_HEADER_FILE
57    # include LIBSNDFILE_HEADER_FILE(sndfile.h)
58    #else
59    # include <sndfile.h>
60    #endif
61    #include <assert.h>
62    
63  #include "mainwindow.h"  #include "mainwindow.h"
64    #include "Settings.h"
65    #include "CombineInstrumentsDialog.h"
66    #include "scripteditor.h"
67    #include "scriptslots.h"
68    #include "ReferencesView.h"
69  #include "../../gfx/status_attached.xpm"  #include "../../gfx/status_attached.xpm"
70  #include "../../gfx/status_detached.xpm"  #include "../../gfx/status_detached.xpm"
71    #include "gfx/builtinpix.h"
72    #include "MacroEditor.h"
73    #include "MacrosSetup.h"
74    #if defined(__APPLE__)
75    # include "MacHelper.h"
76    #endif
77    
78  template<class T> inline std::string ToString(T o) {  static const Gdk::ModifierType primaryModifierKey =
79      std::stringstream ss;      #if defined(__APPLE__)
80      ss << o;      Gdk::META_MASK; // Cmd key on Mac
81      return ss.str();      #else
82  }      Gdk::CONTROL_MASK; // Ctrl key on all other OSs
83        #endif
 Table::Table(int x, int y) : Gtk::Table(x, y), rowno(0) {  }  
   
 void Table::add(BoolEntry& boolentry)  
 {  
     attach(boolentry.widget, 0, 2, rowno, rowno + 1,  
            Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
 }  
   
 void Table::add(BoolEntryPlus6& boolentry)  
 {  
     attach(boolentry.widget, 0, 2, rowno, rowno + 1,  
            Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
 }  
   
 void Table::add(LabelWidget& prop)  
 {  
     attach(prop.label, 1, 2, rowno, rowno + 1,  
            Gtk::FILL, Gtk::SHRINK);  
     attach(prop.widget, 2, 3, rowno, rowno + 1,  
            Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
 }  
84    
85  MainWindow::MainWindow() :  MainWindow::MainWindow() :
86        m_DimRegionChooser(*this),
87      dimreg_label(_("Changes apply to:")),      dimreg_label(_("Changes apply to:")),
88      dimreg_all_regions(_("all regions")),      dimreg_all_regions(_("all regions")),
89      dimreg_all_dimregs(_("all dimension splits")),      dimreg_all_dimregs(_("all dimension splits")),
90      dimreg_stereo(_("both channels"))      dimreg_stereo(_("both channels")),
91        labelLegend(_("Legend:")),
92        labelNoSample(_(" No Sample")),
93        labelMissingSample(_(" Missing some Sample(s)")),
94        labelLooped(_(" Looped")),
95        labelSomeLoops(_(" Some Loop(s)"))
96  {  {
97        loadBuiltInPix();
98    
99        this->file = NULL;
100    
101  //    set_border_width(5);  //    set_border_width(5);
 //    set_default_size(400, 200);  
102    
103        if (!Settings::singleton()->autoRestoreWindowDimension) {
104    #if GTKMM_MAJOR_VERSION >= 3
105            set_default_size(895, 600);
106    #else
107            set_default_size(800, 600);
108    #endif
109            set_position(Gtk::WIN_POS_CENTER);
110        }
111    
112      add(m_VBox);      add(m_VBox);
113    
114      // Handle selection      // Handle selection
115      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      m_TreeView.get_selection()->signal_changed().connect(
     tree_sel_ref->signal_changed().connect(  
116          sigc::mem_fun(*this, &MainWindow::on_sel_change));          sigc::mem_fun(*this, &MainWindow::on_sel_change));
117    
118      // m_TreeView.set_reorderable();      // m_TreeView.set_reorderable();
119    
120    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
121        m_TreeView.signal_button_press_event().connect(
122            sigc::mem_fun(*this, &MainWindow::on_button_release));
123    #else
124      m_TreeView.signal_button_press_event().connect_notify(      m_TreeView.signal_button_press_event().connect_notify(
125          sigc::mem_fun(*this, &MainWindow::on_button_release));          sigc::mem_fun(*this, &MainWindow::on_button_release));
126    #endif
127    
128      // Add the TreeView tab, inside a ScrolledWindow, with the button underneath:      // Add the TreeView tab, inside a ScrolledWindow, with the button underneath:
129      m_ScrolledWindow.add(m_TreeView);      m_ScrolledWindow.add(m_TreeView);
# Line 104  MainWindow::MainWindow() : Line 133  MainWindow::MainWindow() :
133      m_ScrolledWindowSamples.add(m_TreeViewSamples);      m_ScrolledWindowSamples.add(m_TreeViewSamples);
134      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
135    
136        m_ScrolledWindowScripts.add(m_TreeViewScripts);
137        m_ScrolledWindowScripts.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
138    
139    #if GTKMM_MAJOR_VERSION < 3
140      m_TreeViewNotebook.set_size_request(300);      m_TreeViewNotebook.set_size_request(300);
141    #endif
142    
143        m_searchLabel.set_text(Glib::ustring(" ") + _("Filter:"));
144        m_searchField.pack_start(m_searchLabel, Gtk::PACK_SHRINK);
145        m_searchField.pack_start(m_searchText);
146        m_searchField.set_spacing(5);
147    
148        m_left_vbox.pack_start(m_TreeViewNotebook);
149        m_left_vbox.pack_start(m_searchField, Gtk::PACK_SHRINK);
150    
151        m_HPaned.add1(m_left_vbox);
152    
     m_HPaned.add1(m_TreeViewNotebook);  
153      dimreg_hbox.add(dimreg_label);      dimreg_hbox.add(dimreg_label);
154      dimreg_hbox.add(dimreg_all_regions);      dimreg_hbox.add(dimreg_all_regions);
155      dimreg_hbox.add(dimreg_all_dimregs);      dimreg_hbox.add(dimreg_all_dimregs);
# Line 115  MainWindow::MainWindow() : Line 157  MainWindow::MainWindow() :
157      dimreg_hbox.add(dimreg_stereo);      dimreg_hbox.add(dimreg_stereo);
158      dimreg_vbox.add(dimreg_edit);      dimreg_vbox.add(dimreg_edit);
159      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);
160        {
161            legend_hbox.add(labelLegend);
162    
163            imageNoSample.set(redDot);
164    #if HAS_GTKMM_ALIGNMENT
165            imageNoSample.set_alignment(Gtk::ALIGN_END);
166            labelNoSample.set_alignment(Gtk::ALIGN_START);
167    #else
168            imageNoSample.set_halign(Gtk::ALIGN_END);
169            labelNoSample.set_halign(Gtk::ALIGN_START);
170    #endif
171            legend_hbox.add(imageNoSample);
172            legend_hbox.add(labelNoSample);
173    
174            imageMissingSample.set(yellowDot);
175    #if HAS_GTKMM_ALIGNMENT
176            imageMissingSample.set_alignment(Gtk::ALIGN_END);
177            labelMissingSample.set_alignment(Gtk::ALIGN_START);
178    #else
179            imageMissingSample.set_halign(Gtk::ALIGN_END);
180            labelMissingSample.set_halign(Gtk::ALIGN_START);
181    #endif
182            legend_hbox.add(imageMissingSample);
183            legend_hbox.add(labelMissingSample);
184    
185            imageLooped.set(blackLoop);
186    #if HAS_GTKMM_ALIGNMENT
187            imageLooped.set_alignment(Gtk::ALIGN_END);
188            labelLooped.set_alignment(Gtk::ALIGN_START);
189    #else
190            imageLooped.set_halign(Gtk::ALIGN_END);
191            labelLooped.set_halign(Gtk::ALIGN_START);
192    #endif
193            legend_hbox.add(imageLooped);
194            legend_hbox.add(labelLooped);
195    
196            imageSomeLoops.set(grayLoop);
197    #if HAS_GTKMM_ALIGNMENT
198            imageSomeLoops.set_alignment(Gtk::ALIGN_END);
199            labelSomeLoops.set_alignment(Gtk::ALIGN_START);
200    #else
201            imageSomeLoops.set_halign(Gtk::ALIGN_END);
202            labelSomeLoops.set_halign(Gtk::ALIGN_START);
203    #endif
204            legend_hbox.add(imageSomeLoops);
205            legend_hbox.add(labelSomeLoops);
206    
207    #if HAS_GTKMM_SHOW_ALL_CHILDREN
208            legend_hbox.show_all_children();
209    #endif
210        }
211        dimreg_vbox.pack_start(legend_hbox, Gtk::PACK_SHRINK);
212      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
213    
214        dimreg_label.set_tooltip_text(_("To automatically apply your changes above globally to the entire instrument, check all 3 check boxes on the right."));
215        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."));
216        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."));
217        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)."));
218    
219      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
220      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
221        m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));
222    
223    #if USE_GLIB_ACTION
224        m_actionGroup = Gio::SimpleActionGroup::create();
225        m_actionGroup->add_action(
226            "New", sigc::mem_fun(*this, &MainWindow::on_action_file_new)
227        );
228        m_actionGroup->add_action(
229            "Open", sigc::mem_fun(*this, &MainWindow::on_action_file_open)
230        );
231        m_actionGroup->add_action(
232            "Save", sigc::mem_fun(*this, &MainWindow::on_action_file_save)
233        );
234        m_actionGroup->add_action(
235            "SaveAs", sigc::mem_fun(*this, &MainWindow::on_action_file_save_as)
236        );
237        m_actionGroup->add_action(
238            "Properties", sigc::mem_fun(*this, &MainWindow::on_action_file_properties)
239        );
240        m_actionGroup->add_action(
241            "InstrProperties", sigc::mem_fun(*this, &MainWindow::show_instr_props)
242        );
243        m_actionMIDIRules = m_actionGroup->add_action(
244            "MidiRules", sigc::mem_fun(*this, &MainWindow::show_midi_rules)
245        );
246        m_actionGroup->add_action(
247            "ScriptSlots", sigc::mem_fun(*this, &MainWindow::show_script_slots)
248        );
249        m_actionGroup->add_action(
250            "Quit", sigc::mem_fun(*this, &MainWindow::on_action_quit)
251        );
252        m_actionGroup->add_action(
253            "MenuSample", sigc::mem_fun(*this, &MainWindow::show_samples_tab)
254        );
255        m_actionGroup->add_action(
256            "MenuInstrument", sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
257        );
258        m_actionGroup->add_action(
259            "MenuScript", sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
260        );
261    #else
262      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
263    
264      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));
# Line 151  MainWindow::MainWindow() : Line 288  MainWindow::MainWindow() :
288                                           Gtk::Stock::PROPERTIES),                                           Gtk::Stock::PROPERTIES),
289                       sigc::mem_fun(                       sigc::mem_fun(
290                           *this, &MainWindow::show_instr_props));                           *this, &MainWindow::show_instr_props));
291        actionGroup->add(Gtk::Action::create("MidiRules",
292                                             _("_Midi Rules...")),
293                         sigc::mem_fun(
294                             *this, &MainWindow::show_midi_rules));
295        actionGroup->add(Gtk::Action::create("ScriptSlots",
296                                             _("_Script Slots...")),
297                         sigc::mem_fun(
298                             *this, &MainWindow::show_script_slots));
299      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),
300                       sigc::mem_fun(                       sigc::mem_fun(
301                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
302      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));      actionGroup->add(
303            Gtk::Action::create("MenuSample", _("_Sample")),
304            sigc::mem_fun(*this, &MainWindow::show_samples_tab)
305        );
306        actionGroup->add(
307            Gtk::Action::create("MenuInstrument", _("_Instrument")),
308            sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
309        );
310        actionGroup->add(
311            Gtk::Action::create("MenuScript", _("Scr_ipt")),
312            sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
313        );
314        actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));
315        actionGroup->add(Gtk::Action::create("AssignScripts", _("Assign Script")));
316    
317      actionGroup->add(Gtk::Action::create("MenuView", _("_View")));      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
318    #endif
319    
320        const Gdk::ModifierType primaryModifierKey =
321    #if defined(__APPLE__)
322        Gdk::META_MASK; // Cmd key on Mac
323    #else
324        Gdk::CONTROL_MASK; // Ctrl key on all other OSs
325    #endif
326    
327    #if USE_GLIB_ACTION
328        m_actionCopyDimRgn = m_actionGroup->add_action(
329            "CopyDimRgn", sigc::mem_fun(*this, &MainWindow::copy_selected_dimrgn)
330        );
331        m_actionPasteDimRgn = m_actionGroup->add_action(
332            "PasteDimRgn", sigc::mem_fun(*this, &MainWindow::paste_copied_dimrgn)
333        );
334        m_actionAdjustClipboard = m_actionGroup->add_action(
335            "AdjustClipboard", sigc::mem_fun(*this, &MainWindow::adjust_clipboard_content)
336        );
337        m_actionGroup->add_action(
338            "SelectPrevInstr", sigc::mem_fun(*this, &MainWindow::select_prev_instrument)
339        );
340        m_actionGroup->add_action(
341            "SelectNextInstr", sigc::mem_fun(*this, &MainWindow::select_next_instrument)
342        );
343        m_actionGroup->add_action(
344            "SelectPrevRegion", sigc::mem_fun(*this, &MainWindow::select_prev_region)
345        );
346        m_actionGroup->add_action(
347            "SelectNextRegion", sigc::mem_fun(*this, &MainWindow::select_next_region)
348        );
349        m_actionGroup->add_action(
350            "SelectPrevDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_prev_dim_rgn_zone)
351        );
352        m_actionGroup->add_action(
353            "SelectNextDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_next_dim_rgn_zone)
354        );
355        m_actionGroup->add_action(
356            "SelectPrevDimension", sigc::mem_fun(*this, &MainWindow::select_prev_dimension)
357        );
358        m_actionGroup->add_action(
359            "SelectNextDimension", sigc::mem_fun(*this, &MainWindow::select_next_dimension)
360        );
361        m_actionGroup->add_action(
362            "SelectAddPrevDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_add_prev_dim_rgn_zone)
363        );
364        m_actionGroup->add_action(
365            "SelectAddNextDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_add_next_dim_rgn_zone)
366        );
367    #else
368        actionGroup->add(Gtk::Action::create("CopyDimRgn",
369                                             _("Copy selected dimension region")),
370                         Gtk::AccelKey(GDK_KEY_c, Gdk::MOD1_MASK),
371                         sigc::mem_fun(*this, &MainWindow::copy_selected_dimrgn));
372    
373        actionGroup->add(Gtk::Action::create("PasteDimRgn",
374                                             _("Paste dimension region")),
375                         Gtk::AccelKey(GDK_KEY_v, Gdk::MOD1_MASK),
376                         sigc::mem_fun(*this, &MainWindow::paste_copied_dimrgn));
377    
378        actionGroup->add(Gtk::Action::create("AdjustClipboard",
379                                             _("Adjust Clipboard Content")),
380                         Gtk::AccelKey(GDK_KEY_x, Gdk::MOD1_MASK),
381                         sigc::mem_fun(*this, &MainWindow::adjust_clipboard_content));
382    
383        actionGroup->add(Gtk::Action::create("SelectPrevInstr",
384                                             _("Select Previous Instrument")),
385                         Gtk::AccelKey(GDK_KEY_Up, primaryModifierKey),
386                         sigc::mem_fun(*this, &MainWindow::select_prev_instrument));
387    
388        actionGroup->add(Gtk::Action::create("SelectNextInstr",
389                                             _("Select Next Instrument")),
390                         Gtk::AccelKey(GDK_KEY_Down, primaryModifierKey),
391                         sigc::mem_fun(*this, &MainWindow::select_next_instrument));
392    
393        actionGroup->add(Gtk::Action::create("SelectPrevRegion",
394                                             _("Select Previous Region")),
395                         Gtk::AccelKey(GDK_KEY_Left, primaryModifierKey),
396                         sigc::mem_fun(*this, &MainWindow::select_prev_region));
397    
398        actionGroup->add(Gtk::Action::create("SelectNextRegion",
399                                             _("Select Next Region")),
400                         Gtk::AccelKey(GDK_KEY_Right, primaryModifierKey),
401                         sigc::mem_fun(*this, &MainWindow::select_next_region));
402    
403        actionGroup->add(Gtk::Action::create("SelectPrevDimRgnZone",
404                                             _("Select Previous Dimension Region Zone")),
405                         Gtk::AccelKey(GDK_KEY_Left, Gdk::MOD1_MASK),
406                         sigc::mem_fun(*this, &MainWindow::select_prev_dim_rgn_zone));
407    
408        actionGroup->add(Gtk::Action::create("SelectNextDimRgnZone",
409                                             _("Select Next Dimension Region Zone")),
410                         Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK),
411                         sigc::mem_fun(*this, &MainWindow::select_next_dim_rgn_zone));
412    
413        actionGroup->add(Gtk::Action::create("SelectPrevDimension",
414                                             _("Select Previous Dimension")),
415                         Gtk::AccelKey(GDK_KEY_Up, Gdk::MOD1_MASK),
416                         sigc::mem_fun(*this, &MainWindow::select_prev_dimension));
417    
418        actionGroup->add(Gtk::Action::create("SelectNextDimension",
419                                             _("Select Next Dimension")),
420                         Gtk::AccelKey(GDK_KEY_Down, Gdk::MOD1_MASK),
421                         sigc::mem_fun(*this, &MainWindow::select_next_dimension));
422    
423        actionGroup->add(Gtk::Action::create("SelectAddPrevDimRgnZone",
424                                             _("Add Previous Dimension Region Zone to Selection")),
425                         Gtk::AccelKey(GDK_KEY_Left, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
426                         sigc::mem_fun(*this, &MainWindow::select_add_prev_dim_rgn_zone));
427    
428        actionGroup->add(Gtk::Action::create("SelectAddNextDimRgnZone",
429                                             _("Add Next Dimension Region Zone to Selection")),
430                         Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
431                         sigc::mem_fun(*this, &MainWindow::select_add_next_dim_rgn_zone));
432    #endif
433    
434    #if USE_GLIB_ACTION
435        m_actionToggleCopySampleUnity = m_actionGroup->add_action_bool("CopySampleUnity", true);
436        m_actionToggleCopySampleTune  = m_actionGroup->add_action_bool("CopySampleTune", true);
437        m_actionToggleCopySampleLoop  = m_actionGroup->add_action_bool("CopySampleLoop", true);
438    #else
439      Glib::RefPtr<Gtk::ToggleAction> toggle_action =      Glib::RefPtr<Gtk::ToggleAction> toggle_action =
440            Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"));
441        toggle_action->set_active(true);
442        actionGroup->add(toggle_action);
443    
444        toggle_action =
445            Gtk::ToggleAction::create("CopySampleTune", _("Copy Sample's _Fine Tune"));
446        toggle_action->set_active(true);
447        actionGroup->add(toggle_action);
448    
449        toggle_action =
450            Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));
451        toggle_action->set_active(true);
452        actionGroup->add(toggle_action);
453    #endif
454    
455    #if USE_GLIB_ACTION
456        m_actionToggleStatusBar =
457            m_actionGroup->add_action_bool("Statusbar", sigc::mem_fun(*this, &MainWindow::on_action_view_status_bar), true);
458        m_actionToggleRestoreWinDim =
459            m_actionGroup->add_action_bool("AutoRestoreWinDim", sigc::mem_fun(*this, &MainWindow::on_auto_restore_win_dim), Settings::singleton()->autoRestoreWindowDimension);
460        m_actionToggleShowTooltips = m_actionGroup->add_action_bool(
461            "ShowTooltips", sigc::mem_fun(*this, &MainWindow::on_action_show_tooltips),
462            Settings::singleton()->showTooltips
463        );
464        m_actionToggleSaveWithTempFile =
465            m_actionGroup->add_action_bool("SaveWithTemporaryFile", sigc::mem_fun(*this, &MainWindow::on_save_with_temporary_file), Settings::singleton()->saveWithTemporaryFile);
466        m_actionGroup->add_action("RefreshAll", sigc::mem_fun(*this, &MainWindow::on_action_refresh_all));
467    #else
468        actionGroup->add(Gtk::Action::create("MenuMacro", _("_Macro")));
469    
470    
471        actionGroup->add(Gtk::Action::create("MenuView", _("Vie_w")));
472        toggle_action =
473          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));
474      toggle_action->set_active(true);      toggle_action->set_active(true);
475      actionGroup->add(toggle_action,      actionGroup->add(toggle_action,
476                       sigc::mem_fun(                       sigc::mem_fun(
477                           *this, &MainWindow::on_action_view_status_bar));                           *this, &MainWindow::on_action_view_status_bar));
478    
479        toggle_action =
480            Gtk::ToggleAction::create("AutoRestoreWinDim", _("_Auto Restore Window Dimension"));
481        toggle_action->set_active(Settings::singleton()->autoRestoreWindowDimension);
482        actionGroup->add(toggle_action,
483                         sigc::mem_fun(
484                             *this, &MainWindow::on_auto_restore_win_dim));
485    
486        toggle_action =
487            Gtk::ToggleAction::create("ShowTooltips", _("Tooltips for Beginners"));
488        toggle_action->set_active(Settings::singleton()->showTooltips);
489        actionGroup->add(
490            toggle_action,
491            sigc::mem_fun(*this, &MainWindow::on_action_show_tooltips)
492        );
493    
494        toggle_action =
495            Gtk::ToggleAction::create("SaveWithTemporaryFile", _("Save with _temporary file"));
496        toggle_action->set_active(Settings::singleton()->saveWithTemporaryFile);
497        actionGroup->add(toggle_action,
498                         sigc::mem_fun(
499                             *this, &MainWindow::on_save_with_temporary_file));
500    
501        actionGroup->add(
502            Gtk::Action::create("RefreshAll", _("_Refresh All")),
503            sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)
504        );                
505    #endif
506    
507    #if USE_GLIB_ACTION
508        m_actionGroup->add_action(
509            "About", sigc::mem_fun(*this, &MainWindow::on_action_help_about)
510        );
511        m_actionGroup->add_action(
512            "AddInstrument", sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)
513        );
514        m_actionGroup->add_action(
515            "DupInstrument", sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
516        );
517        m_actionGroup->add_action(
518            "CombInstruments", sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
519        );
520        m_actionGroup->add_action(
521            "RemoveInstrument", sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
522        );
523    #else
524      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
525      actionGroup->add(Gtk::Action::create("MenuHelp",      actionGroup->add(Gtk::Action::create("MenuHelp",
526                                           action->property_label()));                                           action->property_label()));
# Line 175  MainWindow::MainWindow() : Line 532  MainWindow::MainWindow() :
532          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)
533      );      );
534      actionGroup->add(      actionGroup->add(
535            Gtk::Action::create("DupInstrument", _("_Duplicate Instrument")),
536            sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
537        );
538        actionGroup->add(
539            Gtk::Action::create("CombInstruments", _("_Combine Instruments ...")),
540            Gtk::AccelKey(GDK_KEY_j, primaryModifierKey),
541            sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
542        );
543        actionGroup->add(
544          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),
545          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
546      );      );
547    #endif
548    
549    #if USE_GLIB_ACTION
550        m_actionToggleWarnOnExtensions = m_actionGroup->add_action_bool(
551            "WarnUserOnExtensions", sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions),
552            Settings::singleton()->warnUserOnExtensions
553        );
554        m_actionToggleSyncSamplerSelection = m_actionGroup->add_action_bool(
555            "SyncSamplerInstrumentSelection", sigc::mem_fun(*this, &MainWindow::on_action_sync_sampler_instrument_selection),
556            Settings::singleton()->syncSamplerInstrumentSelection
557        );
558        m_actionToggleMoveRootNoteWithRegion = m_actionGroup->add_action_bool(
559            "MoveRootNoteWithRegionMoved", sigc::mem_fun(*this, &MainWindow::on_action_move_root_note_with_region_moved),
560            Settings::singleton()->moveRootNoteWithRegionMoved
561        );
562    #else
563        actionGroup->add(Gtk::Action::create("MenuSettings", _("_Settings")));
564        
565        toggle_action =
566            Gtk::ToggleAction::create("WarnUserOnExtensions", _("Show warning on format _extensions"));
567        toggle_action->set_active(Settings::singleton()->warnUserOnExtensions);
568        actionGroup->add(
569            toggle_action,
570            sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions)
571        );
572    
573        toggle_action =
574            Gtk::ToggleAction::create("SyncSamplerInstrumentSelection", _("Synchronize sampler's instrument selection"));
575        toggle_action->set_active(Settings::singleton()->syncSamplerInstrumentSelection);
576        actionGroup->add(
577            toggle_action,
578            sigc::mem_fun(*this, &MainWindow::on_action_sync_sampler_instrument_selection)
579        );
580    
581        toggle_action =
582            Gtk::ToggleAction::create("MoveRootNoteWithRegionMoved", _("Move root note with region moved"));
583        toggle_action->set_active(Settings::singleton()->moveRootNoteWithRegionMoved);
584        actionGroup->add(
585            toggle_action,
586            sigc::mem_fun(*this, &MainWindow::on_action_move_root_note_with_region_moved)
587        );
588    #endif
589    
590    #if USE_GLIB_ACTION
591        m_actionGroup->add_action(
592            "CombineInstruments", sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
593        );
594        m_actionGroup->add_action(
595            "MergeFiles", sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
596        );
597    #else
598        actionGroup->add(Gtk::Action::create("MenuTools", _("_Tools")));
599    
600        actionGroup->add(
601            Gtk::Action::create("CombineInstruments", _("_Combine Instruments...")),
602            sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
603        );
604    
605        actionGroup->add(
606            Gtk::Action::create("MergeFiles", _("_Merge Files...")),
607            sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
608        );
609    #endif
610    
611      // sample right-click popup actions      // sample right-click popup actions
612    #if USE_GLIB_ACTION
613        m_actionSampleProperties = m_actionGroup->add_action(
614            "SampleProperties", sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
615        );
616        m_actionAddSampleGroup = m_actionGroup->add_action(
617            "AddGroup", sigc::mem_fun(*this, &MainWindow::on_action_add_group)
618        );
619        m_actionAddSample = m_actionGroup->add_action(
620            "AddSample", sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
621        );
622        m_actionRemoveSample = m_actionGroup->add_action(
623            "RemoveSample", sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
624        );
625        m_actionGroup->add_action(
626            "RemoveUnusedSamples", sigc::mem_fun(*this, &MainWindow::on_action_remove_unused_samples)
627        );
628        m_actionViewSampleRefs = m_actionGroup->add_action(
629            "ShowSampleRefs", sigc::mem_fun(*this, &MainWindow::on_action_view_references)
630        );
631        m_actionReplaceSample = m_actionGroup->add_action(
632            "ReplaceSample", sigc::mem_fun(*this, &MainWindow::on_action_replace_sample)
633        );
634        m_actionGroup->add_action(
635            "ReplaceAllSamplesInAllGroups", sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
636        );
637    #else
638      actionGroup->add(      actionGroup->add(
639          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),
640          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
# Line 197  MainWindow::MainWindow() : Line 652  MainWindow::MainWindow() :
652          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
653      );      );
654      actionGroup->add(      actionGroup->add(
655            Gtk::Action::create("RemoveUnusedSamples", _("Remove _Unused Samples")),
656            sigc::mem_fun(*this, &MainWindow::on_action_remove_unused_samples)
657        );
658        actionGroup->add(
659            Gtk::Action::create("ShowSampleRefs", _("Show References...")),
660            sigc::mem_fun(*this, &MainWindow::on_action_view_references)
661        );
662        actionGroup->add(
663            Gtk::Action::create("ReplaceSample",
664                                _("Replace Sample...")),
665            sigc::mem_fun(*this, &MainWindow::on_action_replace_sample)
666        );
667        actionGroup->add(
668          Gtk::Action::create("ReplaceAllSamplesInAllGroups",          Gtk::Action::create("ReplaceAllSamplesInAllGroups",
669                              _("Replace All Samples in All Groups...")),                              _("Replace All Samples in All Groups...")),
670          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)
671      );      );
672    #endif
673        
674        // script right-click popup actions
675    #if USE_GLIB_ACTION
676        m_actionAddScriptGroup = m_actionGroup->add_action(
677            "AddScriptGroup", sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
678        );
679        m_actionAddScript = m_actionGroup->add_action(
680            "AddScript", sigc::mem_fun(*this, &MainWindow::on_action_add_script)
681        );
682        m_actionEditScript = m_actionGroup->add_action(
683            "EditScript", sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
684        );
685        m_actionRemoveScript = m_actionGroup->add_action(
686            "RemoveScript", sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
687        );
688    #else
689        actionGroup->add(
690            Gtk::Action::create("AddScriptGroup", _("Add _Group")),
691            sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
692        );
693        actionGroup->add(
694            Gtk::Action::create("AddScript", _("Add _Script")),
695            sigc::mem_fun(*this, &MainWindow::on_action_add_script)
696        );
697        actionGroup->add(
698            Gtk::Action::create("EditScript", _("_Edit Script...")),
699            sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
700        );
701        actionGroup->add(
702            Gtk::Action::create("RemoveScript", Gtk::Stock::REMOVE),
703            sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
704        );
705    #endif
706    
707    #if USE_GTKMM_BUILDER
708        insert_action_group("AppMenu", m_actionGroup);
709        
710        m_uiManager = Gtk::Builder::create();
711        Glib::ustring ui_info =
712            "<interface>"
713            "  <menubar id='MenuBar'>"
714            "    <menu id='MenuFile'>"
715            "      <attribute name='label' translatable='yes'>_File</attribute>"
716            "      <section>"
717            "        <item id='New'>"
718            "          <attribute name='label' translatable='yes'>New</attribute>"
719            "          <attribute name='action'>AppMenu.New</attribute>"
720            "        </item>"
721            "        <item id='Open'>"
722            "          <attribute name='label' translatable='yes'>Open</attribute>"
723            "          <attribute name='action'>AppMenu.Open</attribute>"
724            "        </item>"
725            "      </section>"
726            "      <section>"
727            "        <item id='Save'>"
728            "          <attribute name='label' translatable='yes'>Save</attribute>"
729            "          <attribute name='action'>AppMenu.Save</attribute>"
730            "        </item>"
731            "        <item id='SaveAs'>"
732            "          <attribute name='label' translatable='yes'>Save As</attribute>"
733            "          <attribute name='action'>AppMenu.SaveAs</attribute>"
734            "        </item>"
735            "      </section>"
736            "      <section>"
737            "        <item id='Properties'>"
738            "          <attribute name='label' translatable='yes'>Properties</attribute>"
739            "          <attribute name='action'>AppMenu.Properties</attribute>"
740            "        </item>"
741            "      </section>"
742            "      <section>"
743            "        <item id='Quit'>"
744            "          <attribute name='label' translatable='yes'>Quit</attribute>"
745            "          <attribute name='action'>AppMenu.Quit</attribute>"
746            "        </item>"
747            "      </section>"
748            "    </menu>"
749            "    <menu id='MenuEdit'>"
750            "      <attribute name='label' translatable='yes'>Edit</attribute>"
751            "      <section>"
752            "        <item id='CopyDimRgn'>"
753            "          <attribute name='label' translatable='yes'>Copy Dimension Region</attribute>"
754            "          <attribute name='action'>AppMenu.CopyDimRgn</attribute>"
755            "        </item>"
756            "        <item id='AdjustClipboard'>"
757            "          <attribute name='label' translatable='yes'>Adjust Clipboard</attribute>"
758            "          <attribute name='action'>AppMenu.AdjustClipboard</attribute>"
759            "        </item>"
760            "        <item id='PasteDimRgn'>"
761            "          <attribute name='label' translatable='yes'>Paste Dimension Region</attribute>"
762            "          <attribute name='action'>AppMenu.PasteDimRgn</attribute>"
763            "        </item>"
764            "      </section>"
765            "        <item id='SelectPrevInstr'>"
766            "          <attribute name='label' translatable='yes'>Previous Instrument</attribute>"
767            "          <attribute name='action'>AppMenu.SelectPrevInstr</attribute>"
768            "        </item>"
769            "        <item id='SelectNextInstr'>"
770            "          <attribute name='label' translatable='yes'>Next Instrument</attribute>"
771            "          <attribute name='action'>AppMenu.SelectNextInstr</attribute>"
772            "        </item>"
773            "      <section>"
774            "        <item id='SelectPrevRegion'>"
775            "          <attribute name='label' translatable='yes'>Previous Region</attribute>"
776            "          <attribute name='action'>AppMenu.SelectPrevRegion</attribute>"
777            "        </item>"
778            "        <item id='SelectNextRegion'>"
779            "          <attribute name='label' translatable='yes'>Next Region</attribute>"
780            "          <attribute name='action'>AppMenu.SelectNextRegion</attribute>"
781            "        </item>"
782            "      </section>"
783            "        <item id='SelectPrevDimension'>"
784            "          <attribute name='label' translatable='yes'>Previous Dimension</attribute>"
785            "          <attribute name='action'>AppMenu.SelectPrevDimension</attribute>"
786            "        </item>"
787            "        <item id='SelectNextDimension'>"
788            "          <attribute name='label' translatable='yes'>Next Dimension</attribute>"
789            "          <attribute name='action'>AppMenu.SelectNextDimension</attribute>"
790            "        </item>"
791            "        <item id='SelectPrevDimRgnZone'>"
792            "          <attribute name='label' translatable='yes'>Previous Dimension Region Zone</attribute>"
793            "          <attribute name='action'>AppMenu.SelectPrevDimRgnZone</attribute>"
794            "        </item>"
795            "        <item id='SelectNextDimRgnZone'>"
796            "          <attribute name='label' translatable='yes'>Next Dimension Region Zone</attribute>"
797            "          <attribute name='action'>AppMenu.SelectNextDimRgnZone</attribute>"
798            "        </item>"
799            "        <item id='SelectAddPrevDimRgnZone'>"
800            "          <attribute name='label' translatable='yes'>Add Previous Dimension Region Zone</attribute>"
801            "          <attribute name='action'>AppMenu.SelectAddPrevDimRgnZone</attribute>"
802            "        </item>"
803            "        <item id='SelectAddNextDimRgnZone'>"
804            "          <attribute name='label' translatable='yes'>Add Next Dimension Region Zone</attribute>"
805            "          <attribute name='action'>AppMenu.SelectAddNextDimRgnZone</attribute>"
806            "        </item>"
807            "      <section>"
808            "        <item id='CopySampleUnity'>"
809            "          <attribute name='label' translatable='yes'>Copy Sample Unity</attribute>"
810            "          <attribute name='action'>AppMenu.CopySampleUnity</attribute>"
811            "        </item>"
812            "        <item id='CopySampleTune'>"
813            "          <attribute name='label' translatable='yes'>Copy Sample Tune</attribute>"
814            "          <attribute name='action'>AppMenu.CopySampleTune</attribute>"
815            "        </item>"
816            "        <item id='CopySampleLoop'>"
817            "          <attribute name='label' translatable='yes'>Copy Sample Loop</attribute>"
818            "          <attribute name='action'>AppMenu.CopySampleLoop</attribute>"
819            "        </item>"
820            "      </section>"
821            "    </menu>"
822            "    <menu id='MenuMacro'>"
823            "      <attribute name='label' translatable='yes'>Macro</attribute>"
824            "      <section>"
825            "      </section>"
826            "    </menu>"
827            "    <menu id='MenuSample'>"
828            "      <attribute name='label' translatable='yes'>Sample</attribute>"
829            "      <section>"
830            "        <item id='SampleProperties'>"
831            "          <attribute name='label' translatable='yes'>Properties</attribute>"
832            "          <attribute name='action'>AppMenu.SampleProperties</attribute>"
833            "        </item>"
834            "        <item id='AddGroup'>"
835            "          <attribute name='label' translatable='yes'>Add Group</attribute>"
836            "          <attribute name='action'>AppMenu.AddGroup</attribute>"
837            "        </item>"
838            "        <item id='AddSample'>"
839            "          <attribute name='label' translatable='yes'>Add Sample</attribute>"
840            "          <attribute name='action'>AppMenu.AddSample</attribute>"
841            "        </item>"
842            "        <item id='ShowSampleRefs'>"
843            "          <attribute name='label' translatable='yes'>Show Sample References</attribute>"
844            "          <attribute name='action'>AppMenu.ShowSampleRefs</attribute>"
845            "        </item>"
846            "        <item id='ReplaceSample'>"
847            "          <attribute name='label' translatable='yes'>Replace Sample</attribute>"
848            "          <attribute name='action'>AppMenu.ReplaceSample</attribute>"
849            "        </item>"
850            "        <item id='ReplaceAllSamplesInAllGroups'>"
851            "          <attribute name='label' translatable='yes'>Replace all Samples in all Groups</attribute>"
852            "          <attribute name='action'>AppMenu.ReplaceAllSamplesInAllGroups</attribute>"
853            "        </item>"
854            "      </section>"
855            "      <section>"
856            "        <item id='RemoveSample'>"
857            "          <attribute name='label' translatable='yes'>Remove Sample</attribute>"
858            "          <attribute name='action'>AppMenu.RemoveSample</attribute>"
859            "        </item>"
860            "        <item id='RemoveUnusedSamples'>"
861            "          <attribute name='label' translatable='yes'>Remove unused Samples</attribute>"
862            "          <attribute name='action'>AppMenu.RemoveUnusedSamples</attribute>"
863            "        </item>"
864            "      </section>"
865            "    </menu>"
866            "    <menu id='MenuInstrument'>"
867            "      <attribute name='label' translatable='yes'>Instrument</attribute>"
868            "      <section>"
869            "        <item id='InstrProperties'>"
870            "          <attribute name='label' translatable='yes'>Properties</attribute>"
871            "          <attribute name='action'>AppMenu.InstrProperties</attribute>"
872            "        </item>"
873            "        <item id='MidiRules'>"
874            "          <attribute name='label' translatable='yes'>MIDI Rules</attribute>"
875            "          <attribute name='action'>AppMenu.MidiRules</attribute>"
876            "        </item>"
877            "        <item id='ScriptSlots'>"
878            "          <attribute name='label' translatable='yes'>Script Slots</attribute>"
879            "          <attribute name='action'>AppMenu.ScriptSlots</attribute>"
880            "        </item>"
881            "      </section>"
882            "      <submenu id='AssignScripts'>"
883            "        <attribute name='label' translatable='yes'>Assign Scripts</attribute>"
884            "      </submenu>"
885            "      <section>"
886            "        <item id='AddInstrument'>"
887            "          <attribute name='label' translatable='yes'>Add Instrument</attribute>"
888            "          <attribute name='action'>AppMenu.AddInstrument</attribute>"
889            "        </item>"
890            "        <item id='DupInstrument'>"
891            "          <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"
892            "          <attribute name='action'>AppMenu.DupInstrument</attribute>"
893            "        </item>"
894            "        <item id='CombInstruments'>"
895            "          <attribute name='label' translatable='yes'>Combine Instrument</attribute>"
896            "          <attribute name='action'>AppMenu.CombInstruments</attribute>"
897            "        </item>"
898            "      </section>"
899            "      <section>"
900            "        <item id='RemoveInstrument'>"
901            "          <attribute name='label' translatable='yes'>Remove Instrument</attribute>"
902            "          <attribute name='action'>AppMenu.RemoveInstrument</attribute>"
903            "        </item>"
904            "      </section>"
905            "    </menu>"
906            "    <menu id='MenuScript'>"
907            "      <attribute name='label' translatable='yes'>Script</attribute>"
908            "      <section>"
909            "        <item id='AddScriptGroup'>"
910            "          <attribute name='label' translatable='yes'>Add Script Group</attribute>"
911            "          <attribute name='action'>AppMenu.AddScriptGroup</attribute>"
912            "        </item>"
913            "        <item id='AddScript'>"
914            "          <attribute name='label' translatable='yes'>Add Script</attribute>"
915            "          <attribute name='action'>AppMenu.AddScript</attribute>"
916            "        </item>"
917            "        <item id='EditScript'>"
918            "          <attribute name='label' translatable='yes'>Edit Script</attribute>"
919            "          <attribute name='action'>AppMenu.EditScript</attribute>"
920            "        </item>"
921            "      </section>"
922            "      <section>"
923            "        <item id='RemoveScript'>"
924            "          <attribute name='label' translatable='yes'>Remove Script</attribute>"
925            "          <attribute name='action'>AppMenu.RemoveScript</attribute>"
926            "        </item>"
927            "      </section>"
928            "    </menu>"
929            "    <menu id='MenuView'>"
930            "      <attribute name='label' translatable='yes'>View</attribute>"
931            "      <section>"
932            "        <item id='Statusbar'>"
933            "          <attribute name='label' translatable='yes'>Statusbar</attribute>"
934            "          <attribute name='action'>AppMenu.Statusbar</attribute>"
935            "        </item>"
936            "        <item id='ShowTooltips'>"
937            "          <attribute name='label' translatable='yes'>Tooltips for Beginners</attribute>"
938            "          <attribute name='action'>AppMenu.ShowTooltips</attribute>"
939            "        </item>"
940            "        <item id='AutoRestoreWinDim'>"
941            "          <attribute name='label' translatable='yes'>Auto restore Window Dimensions</attribute>"
942            "          <attribute name='action'>AppMenu.AutoRestoreWinDim</attribute>"
943            "        </item>"
944            "      </section>"
945            "      <section>"
946            "        <item id='RefreshAll'>"
947            "          <attribute name='label' translatable='yes'>Refresh All</attribute>"
948            "          <attribute name='action'>AppMenu.RefreshAll</attribute>"
949            "        </item>"
950            "      </section>"
951            "    </menu>"
952            "    <menu id='MenuTools'>"
953            "      <attribute name='label' translatable='yes'>Tools</attribute>"
954            "      <section>"
955            "        <item id='CombineInstruments'>"
956            "          <attribute name='label' translatable='yes'>Combine Instruments ...</attribute>"
957            "          <attribute name='action'>AppMenu.CombineInstruments</attribute>"
958            "        </item>"
959            "        <item id='MergeFiles'>"
960            "          <attribute name='label' translatable='yes'>Merge Files ...</attribute>"
961            "          <attribute name='action'>AppMenu.MergeFiles</attribute>"
962            "        </item>"
963            "      </section>"
964            "    </menu>"
965            "    <menu id='MenuSettings'>"
966            "      <attribute name='label' translatable='yes'>Settings</attribute>"
967            "      <section>"
968            "        <item id='WarnUserOnExtensions'>"
969            "          <attribute name='label' translatable='yes'>Warning on Format Extensions</attribute>"
970            "          <attribute name='action'>AppMenu.WarnUserOnExtensions</attribute>"
971            "        </item>"
972            "        <item id='SyncSamplerInstrumentSelection'>"
973            "          <attribute name='label' translatable='yes'>Synchronize Sampler Selection</attribute>"
974            "          <attribute name='action'>AppMenu.SyncSamplerInstrumentSelection</attribute>"
975            "        </item>"
976            "        <item id='MoveRootNoteWithRegionMoved'>"
977            "          <attribute name='label' translatable='yes'>Move Root Note with Region moved</attribute>"
978            "          <attribute name='action'>AppMenu.MoveRootNoteWithRegionMoved</attribute>"
979            "        </item>"
980            "        <item id='SaveWithTemporaryFile'>"
981            "          <attribute name='label' translatable='yes'>Save with temporary file</attribute>"
982            "          <attribute name='action'>AppMenu.SaveWithTemporaryFile</attribute>"
983            "        </item>"
984            "      </section>"
985            "    </menu>"
986            "    <menu id='MenuHelp'>"
987            "      <attribute name='label' translatable='yes'>Help</attribute>"
988            "      <section>"
989            "        <item id='About'>"
990            "          <attribute name='label' translatable='yes'>About ...</attribute>"
991            "          <attribute name='action'>AppMenu.About</attribute>"
992            "        </item>"
993            "      </section>"
994            "    </menu>"
995            "  </menubar>"
996            // popups
997            "  <menu id='PopupMenu'>"
998            "    <section>"
999            "      <item id='InstrProperties'>"
1000            "        <attribute name='label' translatable='yes'>Instrument Properties</attribute>"
1001            "        <attribute name='action'>AppMenu.InstrProperties</attribute>"
1002            "      </item>"
1003            "      <item id='MidiRules'>"
1004            "        <attribute name='label' translatable='yes'>MIDI Rules</attribute>"
1005            "        <attribute name='action'>AppMenu.MidiRules</attribute>"
1006            "      </item>"
1007            "      <item id='ScriptSlots'>"
1008            "        <attribute name='label' translatable='yes'>Script Slots</attribute>"
1009            "        <attribute name='action'>AppMenu.ScriptSlots</attribute>"
1010            "      </item>"
1011            "      <item id='AddInstrument'>"
1012            "        <attribute name='label' translatable='yes'>Add Instrument</attribute>"
1013            "        <attribute name='action'>AppMenu.AddInstrument</attribute>"
1014            "      </item>"
1015            "      <item id='DupInstrument'>"
1016            "        <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"
1017            "        <attribute name='action'>AppMenu.DupInstrument</attribute>"
1018            "      </item>"
1019            "      <item id='CombInstruments'>"
1020            "        <attribute name='label' translatable='yes'>Combine Instruments</attribute>"
1021            "        <attribute name='action'>AppMenu.CombInstruments</attribute>"
1022            "      </item>"
1023            "    </section>"
1024            "    <section>"
1025            "      <item id='RemoveInstrument'>"
1026            "        <attribute name='label' translatable='yes'>Remove Instruments</attribute>"
1027            "        <attribute name='action'>AppMenu.RemoveInstrument</attribute>"
1028            "      </item>"
1029            "    </section>"
1030            "  </menu>"
1031            "  <menu id='SamplePopupMenu'>"
1032            "    <section>"
1033            "      <item id='SampleProperties'>"
1034            "        <attribute name='label' translatable='yes'>Sample Properties</attribute>"
1035            "        <attribute name='action'>AppMenu.SampleProperties</attribute>"
1036            "      </item>"
1037            "      <item id='AddGroup'>"
1038            "        <attribute name='label' translatable='yes'>Add Sample Group</attribute>"
1039            "        <attribute name='action'>AppMenu.AddGroup</attribute>"
1040            "      </item>"
1041            "      <item id='AddSample'>"
1042            "        <attribute name='label' translatable='yes'>Add Sample</attribute>"
1043            "        <attribute name='action'>AppMenu.AddSample</attribute>"
1044            "      </item>"
1045            "      <item id='ShowSampleRefs'>"
1046            "        <attribute name='label' translatable='yes'>Show Sample References ...</attribute>"
1047            "        <attribute name='action'>AppMenu.ShowSampleRefs</attribute>"
1048            "      </item>"
1049            "      <item id='ReplaceSample'>"
1050            "        <attribute name='label' translatable='yes'>Replace Sample</attribute>"
1051            "        <attribute name='action'>AppMenu.ReplaceSample</attribute>"
1052            "      </item>"
1053            "      <item id='ReplaceAllSamplesInAllGroups'>"
1054            "        <attribute name='label' translatable='yes'>Replace all Samples ...</attribute>"
1055            "        <attribute name='action'>AppMenu.ReplaceAllSamplesInAllGroups</attribute>"
1056            "      </item>"
1057            "    </section>"
1058            "    <section>"
1059            "      <item id='RemoveSample'>"
1060            "        <attribute name='label' translatable='yes'>Remove Sample</attribute>"
1061            "        <attribute name='action'>AppMenu.RemoveSample</attribute>"
1062            "      </item>"
1063            "      <item id='RemoveUnusedSamples'>"
1064            "        <attribute name='label' translatable='yes'>Remove unused Samples</attribute>"
1065            "        <attribute name='action'>AppMenu.RemoveUnusedSamples</attribute>"
1066            "      </item>"
1067            "    </section>"
1068            "  </menu>"
1069            "  <menu id='ScriptPopupMenu'>"
1070            "    <section>"
1071            "      <item id='AddScriptGroup'>"
1072            "        <attribute name='label' translatable='yes'>Add Script Group</attribute>"
1073            "        <attribute name='action'>AppMenu.AddScriptGroup</attribute>"
1074            "      </item>"
1075            "      <item id='AddScript'>"
1076            "        <attribute name='label' translatable='yes'>Add Script</attribute>"
1077            "        <attribute name='action'>AppMenu.AddScript</attribute>"
1078            "      </item>"
1079            "      <item id='EditScript'>"
1080            "        <attribute name='label' translatable='yes'>Edit Script</attribute>"
1081            "        <attribute name='action'>AppMenu.EditScript</attribute>"
1082            "      </item>"
1083            "    </section>"
1084            "    <section>"
1085            "      <item id='RemoveScript'>"
1086            "        <attribute name='label' translatable='yes'>Remove Script</attribute>"
1087            "        <attribute name='action'>AppMenu.RemoveScript</attribute>"
1088            "      </item>"
1089            "    </section>"
1090            "  </menu>"
1091            "</interface>";
1092        m_uiManager->add_from_string(ui_info);
1093    #else
1094      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
1095      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
1096      add_accel_group(uiManager->get_accel_group());      add_accel_group(uiManager->get_accel_group());
# Line 220  MainWindow::MainWindow() : Line 1109  MainWindow::MainWindow() :
1109          "      <separator/>"          "      <separator/>"
1110          "      <menuitem action='Quit'/>"          "      <menuitem action='Quit'/>"
1111          "    </menu>"          "    </menu>"
1112            "    <menu action='MenuEdit'>"
1113            "      <menuitem action='CopyDimRgn'/>"
1114            "      <menuitem action='AdjustClipboard'/>"
1115            "      <menuitem action='PasteDimRgn'/>"
1116            "      <separator/>"
1117            "      <menuitem action='SelectPrevInstr'/>"
1118            "      <menuitem action='SelectNextInstr'/>"
1119            "      <separator/>"
1120            "      <menuitem action='SelectPrevRegion'/>"
1121            "      <menuitem action='SelectNextRegion'/>"
1122            "      <separator/>"
1123            "      <menuitem action='SelectPrevDimension'/>"
1124            "      <menuitem action='SelectNextDimension'/>"
1125            "      <menuitem action='SelectPrevDimRgnZone'/>"
1126            "      <menuitem action='SelectNextDimRgnZone'/>"
1127            "      <menuitem action='SelectAddPrevDimRgnZone'/>"
1128            "      <menuitem action='SelectAddNextDimRgnZone'/>"
1129            "      <separator/>"
1130            "      <menuitem action='CopySampleUnity'/>"
1131            "      <menuitem action='CopySampleTune'/>"
1132            "      <menuitem action='CopySampleLoop'/>"
1133            "    </menu>"
1134            "    <menu action='MenuMacro'>"
1135            "    </menu>"
1136            "    <menu action='MenuSample'>"
1137            "      <menuitem action='SampleProperties'/>"
1138            "      <menuitem action='AddGroup'/>"
1139            "      <menuitem action='AddSample'/>"
1140            "      <menuitem action='ShowSampleRefs'/>"
1141            "      <menuitem action='ReplaceSample' />"
1142            "      <menuitem action='ReplaceAllSamplesInAllGroups' />"
1143            "      <separator/>"
1144            "      <menuitem action='RemoveSample'/>"
1145            "      <menuitem action='RemoveUnusedSamples'/>"
1146            "    </menu>"
1147          "    <menu action='MenuInstrument'>"          "    <menu action='MenuInstrument'>"
1148            "      <menu action='AllInstruments'>"
1149            "      </menu>"
1150            "      <separator/>"
1151            "      <menuitem action='InstrProperties'/>"
1152            "      <menuitem action='MidiRules'/>"
1153            "      <menuitem action='ScriptSlots'/>"
1154            "      <menu action='AssignScripts'/>"
1155            "      <menuitem action='AddInstrument'/>"
1156            "      <menuitem action='DupInstrument'/>"
1157            "      <menuitem action='CombInstruments'/>"
1158            "      <separator/>"
1159            "      <menuitem action='RemoveInstrument'/>"
1160            "    </menu>"
1161            "    <menu action='MenuScript'>"
1162            "      <menuitem action='AddScriptGroup'/>"
1163            "      <menuitem action='AddScript'/>"
1164            "      <menuitem action='EditScript'/>"
1165            "      <separator/>"
1166            "      <menuitem action='RemoveScript'/>"
1167          "    </menu>"          "    </menu>"
1168          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
1169          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
1170            "      <menuitem action='ShowTooltips'/>"
1171            "      <menuitem action='AutoRestoreWinDim'/>"
1172            "      <separator/>"
1173            "      <menuitem action='RefreshAll'/>"
1174            "    </menu>"
1175            "    <menu action='MenuTools'>"
1176            "      <menuitem action='CombineInstruments'/>"
1177            "      <menuitem action='MergeFiles'/>"
1178            "    </menu>"
1179            "    <menu action='MenuSettings'>"
1180            "      <menuitem action='WarnUserOnExtensions'/>"
1181            "      <menuitem action='SyncSamplerInstrumentSelection'/>"
1182            "      <menuitem action='MoveRootNoteWithRegionMoved'/>"
1183            "      <menuitem action='SaveWithTemporaryFile'/>"
1184          "    </menu>"          "    </menu>"
1185          "    <menu action='MenuHelp'>"          "    <menu action='MenuHelp'>"
1186          "      <menuitem action='About'/>"          "      <menuitem action='About'/>"
# Line 231  MainWindow::MainWindow() : Line 1188  MainWindow::MainWindow() :
1188          "  </menubar>"          "  </menubar>"
1189          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
1190          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
1191            "    <menuitem action='MidiRules'/>"
1192            "    <menuitem action='ScriptSlots'/>"
1193          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
1194            "    <menuitem action='DupInstrument'/>"
1195            "    <menuitem action='CombInstruments'/>"
1196          "    <separator/>"          "    <separator/>"
1197          "    <menuitem action='RemoveInstrument'/>"          "    <menuitem action='RemoveInstrument'/>"
1198          "  </popup>"          "  </popup>"
# Line 239  MainWindow::MainWindow() : Line 1200  MainWindow::MainWindow() :
1200          "    <menuitem action='SampleProperties'/>"          "    <menuitem action='SampleProperties'/>"
1201          "    <menuitem action='AddGroup'/>"          "    <menuitem action='AddGroup'/>"
1202          "    <menuitem action='AddSample'/>"          "    <menuitem action='AddSample'/>"
1203          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"          "    <menuitem action='ShowSampleRefs'/>"
1204            "    <menuitem action='ReplaceSample' />"
1205            "    <menuitem action='ReplaceAllSamplesInAllGroups' />"
1206          "    <separator/>"          "    <separator/>"
1207          "    <menuitem action='RemoveSample'/>"          "    <menuitem action='RemoveSample'/>"
1208            "    <menuitem action='RemoveUnusedSamples'/>"
1209            "  </popup>"
1210            "  <popup name='ScriptPopupMenu'>"
1211            "    <menuitem action='AddScriptGroup'/>"
1212            "    <menuitem action='AddScript'/>"
1213            "    <menuitem action='EditScript'/>"
1214            "    <separator/>"
1215            "    <menuitem action='RemoveScript'/>"
1216          "  </popup>"          "  </popup>"
1217          "</ui>";          "</ui>";
1218      uiManager->add_ui_from_string(ui_info);      uiManager->add_ui_from_string(ui_info);
1219    #endif
1220    
1221    #if USE_GTKMM_BUILDER
1222        popup_menu = new Gtk::Menu(
1223            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1224                m_uiManager->get_object("PopupMenu")
1225            )
1226        );
1227        sample_popup = new Gtk::Menu(
1228            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1229                m_uiManager->get_object("SamplePopupMenu")
1230            )
1231        );
1232        script_popup = new Gtk::Menu(
1233            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1234                m_uiManager->get_object("ScriptPopupMenu")
1235            )
1236        );
1237    #else
1238      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));
1239        
1240        // Set tooltips for menu items (for some reason, setting a tooltip on the
1241        // respective Gtk::Action objects above will simply be ignored, no matter
1242        // if using Gtk::Action::set_tooltip() or passing the tooltip string on
1243        // Gtk::Action::create()).
1244        {
1245            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1246                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
1247            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."));
1248        }
1249        {
1250            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1251                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
1252            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."));
1253        }
1254        {
1255            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1256                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
1257            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 information to be altered by this action."));
1258        }
1259        {
1260            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1261                uiManager->get_widget("/MenuBar/MenuSettings/WarnUserOnExtensions"));
1262            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."));
1263        }
1264        {
1265            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1266                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
1267            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)."));
1268        }
1269        {
1270            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1271                uiManager->get_widget("/MenuBar/MenuSettings/MoveRootNoteWithRegionMoved"));
1272            item->set_tooltip_text(_("If checked, and when a region is moved by dragging it around on the virtual keyboard, the keyboard position dependent pitch will move exactly with the amount of semi tones the region was moved around."));
1273        }
1274        {
1275            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1276                uiManager->get_widget("/MenuBar/MenuSample/RemoveUnusedSamples"));
1277            item->set_tooltip_text(_("Removes all samples that are not referenced by any instrument (i.e. red ones)."));
1278            // copy tooltip to popup menu
1279            Gtk::MenuItem* item2 = dynamic_cast<Gtk::MenuItem*>(
1280                uiManager->get_widget("/SamplePopupMenu/RemoveUnusedSamples"));
1281            item2->set_tooltip_text(item->get_tooltip_text());
1282        }
1283        {
1284            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1285                uiManager->get_widget("/MenuBar/MenuView/RefreshAll"));
1286            item->set_tooltip_text(_("Reloads the currently open gig file and updates the entire graphical user interface."));
1287        }
1288        {
1289            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1290                uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
1291            item->set_tooltip_text(_("If checked, size and position of all windows will be saved and automatically restored next time."));
1292        }
1293        {
1294            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1295                uiManager->get_widget("/MenuBar/MenuTools/CombineInstruments"));
1296            item->set_tooltip_text(_("Create combi sounds out of individual sounds of this .gig file."));
1297        }
1298        {
1299            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1300                uiManager->get_widget("/MenuBar/MenuTools/MergeFiles"));
1301            item->set_tooltip_text(_("Add instruments and samples of other .gig files to this .gig file."));
1302        }
1303    #endif
1304    
1305    #if USE_GTKMM_BUILDER
1306        assign_scripts_menu = new Gtk::Menu(
1307            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1308                m_uiManager->get_object("AssignScripts")
1309            )
1310        );
1311    #else
1312        instrument_menu = static_cast<Gtk::MenuItem*>(
1313            uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();
1314    
1315        assign_scripts_menu = static_cast<Gtk::MenuItem*>(
1316            uiManager->get_widget("/MenuBar/MenuInstrument/AssignScripts"))->get_submenu();
1317    #endif
1318    
1319    #if USE_GTKMM_BUILDER
1320        Gtk::Widget* menuBar = NULL;
1321        m_uiManager->get_widget("MenuBar", menuBar);
1322    #else
1323      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");
1324    #endif
1325    
1326      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
1327      m_VBox.pack_start(m_HPaned);      m_VBox.pack_start(m_HPaned);
1328      m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK);
# Line 256  MainWindow::MainWindow() : Line 1330  MainWindow::MainWindow() :
1330      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);
1331      m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);
1332    
1333        set_file_is_shared(false);
1334    
1335      // Status Bar:      // Status Bar:
1336    #if USE_GTKMM_BOX
1337    # warning No status bar layout for GTKMM 4 yet
1338    #else
1339      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);
1340      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);
1341    #endif
1342      m_StatusBar.show();      m_StatusBar.show();
1343    
1344      m_RegionChooser.signal_region_selected().connect(      m_RegionChooser.signal_region_selected().connect(
# Line 269  MainWindow::MainWindow() : Line 1349  MainWindow::MainWindow() :
1349    
1350      // Create the Tree model:      // Create the Tree model:
1351      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refTreeModel = Gtk::ListStore::create(m_Columns);
1352      m_TreeView.set_model(m_refTreeModel);      m_refTreeModelFilter = Gtk::TreeModelFilter::create(m_refTreeModel);
1353      m_refTreeModel->signal_row_changed().connect(      m_refTreeModelFilter->set_visible_func(
1354            sigc::mem_fun(*this, &MainWindow::instrument_row_visible)
1355        );
1356        m_TreeView.set_model(m_refTreeModelFilter);
1357    
1358        m_TreeView.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
1359        m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules. Drag & drop to change the order of instruments."));
1360        instrument_name_connection = m_refTreeModel->signal_row_changed().connect(
1361          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
1362      );      );
1363    
1364      // Add the TreeView's view columns:      // Add the TreeView's view columns:
1365      m_TreeView.append_column_editable("Instrument", m_Columns.m_col_name);      m_TreeView.append_column(_("Nr"), m_Columns.m_col_nr);
1366      m_TreeView.set_headers_visible(false);      m_TreeView.append_column_editable(_("Instrument"), m_Columns.m_col_name);
1367        m_TreeView.append_column(_("Scripts"), m_Columns.m_col_scripts);
1368        m_TreeView.set_headers_visible(true);
1369        
1370        // establish drag&drop within the instrument tree view, allowing to reorder
1371        // the sequence of instruments within the gig file
1372        {
1373            std::vector<Gtk::TargetEntry> drag_target_instrument;
1374            drag_target_instrument.push_back(Gtk::TargetEntry("gig::Instrument"));
1375            m_TreeView.drag_source_set(drag_target_instrument);
1376            m_TreeView.drag_dest_set(drag_target_instrument);
1377            m_TreeView.signal_drag_begin().connect(
1378                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_begin)
1379            );
1380            m_TreeView.signal_drag_data_get().connect(
1381                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_data_get)
1382            );
1383            m_TreeView.signal_drag_data_received().connect(
1384                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drop_drag_data_received)
1385            );
1386        }
1387    
1388      // create samples treeview (including its data model)      // create samples treeview (including its data model)
1389      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);
1390      m_TreeViewSamples.set_model(m_refSamplesTreeModel);      m_TreeViewSamples.set_model(m_refSamplesTreeModel);
1391        m_TreeViewSamples.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
1392        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."));
1393      // m_TreeViewSamples.set_reorderable();      // m_TreeViewSamples.set_reorderable();
1394      m_TreeViewSamples.append_column_editable("Samples", m_SamplesModel.m_col_name);      m_TreeViewSamples.append_column_editable(_("Name"), m_SamplesModel.m_col_name);
1395      m_TreeViewSamples.set_headers_visible(false);      m_TreeViewSamples.append_column(_("Referenced"), m_SamplesModel.m_col_refcount);
1396        {
1397            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(0);
1398            Gtk::CellRendererText* cellrenderer =
1399                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
1400            column->add_attribute(
1401                cellrenderer->property_foreground(), m_SamplesModel.m_color
1402            );
1403        }
1404        {
1405            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(1);
1406            Gtk::CellRendererText* cellrenderer =
1407                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
1408            column->add_attribute(
1409                cellrenderer->property_foreground(), m_SamplesModel.m_color
1410            );
1411        }
1412        m_TreeViewSamples.set_headers_visible(true);
1413    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
1414        m_TreeViewSamples.signal_button_press_event().connect(
1415            sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
1416        );
1417    #else
1418      m_TreeViewSamples.signal_button_press_event().connect_notify(      m_TreeViewSamples.signal_button_press_event().connect_notify(
1419          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
1420      );      );
1421    #endif
1422      m_refSamplesTreeModel->signal_row_changed().connect(      m_refSamplesTreeModel->signal_row_changed().connect(
1423          sigc::mem_fun(*this, &MainWindow::sample_name_changed)          sigc::mem_fun(*this, &MainWindow::sample_name_changed)
1424      );      );
1425    
1426        // create scripts treeview (including its data model)
1427        m_refScriptsTreeModel = ScriptsTreeStore::create(m_ScriptsModel);
1428        m_TreeViewScripts.set_model(m_refScriptsTreeModel);
1429        m_TreeViewScripts.set_tooltip_text(_(
1430            "Use CTRL + double click for editing a script."
1431            "\n\n"
1432            "Note: instrument scripts are a LinuxSampler extension of the gig "
1433            "format. This feature will not work with the GigaStudio software!"
1434        ));
1435        // m_TreeViewScripts.set_reorderable();
1436        m_TreeViewScripts.append_column_editable("Samples", m_ScriptsModel.m_col_name);
1437        m_TreeViewScripts.set_headers_visible(false);
1438    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
1439        m_TreeViewScripts.signal_button_press_event().connect(
1440            sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
1441        );
1442    #else
1443        m_TreeViewScripts.signal_button_press_event().connect_notify(
1444            sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
1445        );
1446    #endif
1447        //FIXME: why the heck does this double click signal_row_activated() only fire while CTRL key is pressed ?
1448        m_TreeViewScripts.signal_row_activated().connect(
1449            sigc::mem_fun(*this, &MainWindow::script_double_clicked)
1450        );
1451        m_refScriptsTreeModel->signal_row_changed().connect(
1452            sigc::mem_fun(*this, &MainWindow::script_name_changed)
1453        );
1454    
1455        // establish drag&drop between scripts tree view and ScriptSlots window
1456        std::vector<Gtk::TargetEntry> drag_target_gig_script;
1457        drag_target_gig_script.push_back(Gtk::TargetEntry("gig::Script"));
1458        m_TreeViewScripts.drag_source_set(drag_target_gig_script);
1459        m_TreeViewScripts.signal_drag_begin().connect(
1460            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_begin)
1461        );
1462        m_TreeViewScripts.signal_drag_data_get().connect(
1463            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_data_get)
1464        );
1465    
1466      // 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
1467      std::list<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
1468      drag_target_gig_sample.push_back( Gtk::TargetEntry("gig::Sample") );      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
1469      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);      m_TreeViewSamples.drag_source_set(drag_target_gig_sample);
1470      m_TreeViewSamples.signal_drag_begin().connect(      m_TreeViewSamples.signal_drag_begin().connect(
1471          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)
# Line 309  MainWindow::MainWindow() : Line 1481  MainWindow::MainWindow() :
1481          sigc::hide(sigc::mem_fun(*this, &MainWindow::file_changed)));          sigc::hide(sigc::mem_fun(*this, &MainWindow::file_changed)));
1482      m_RegionChooser.signal_instrument_changed().connect(      m_RegionChooser.signal_instrument_changed().connect(
1483          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1484        m_RegionChooser.signal_instrument_changed().connect(
1485            sigc::mem_fun(*this, &MainWindow::region_changed));
1486      m_DimRegionChooser.signal_region_changed().connect(      m_DimRegionChooser.signal_region_changed().connect(
1487          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1488      instrumentProps.signal_instrument_changed().connect(      instrumentProps.signal_changed().connect(
1489          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1490      propDialog.signal_info_changed().connect(      propDialog.signal_changed().connect(
1491            sigc::mem_fun(*this, &MainWindow::file_changed));
1492        midiRules.signal_changed().connect(
1493          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1494    
1495      dimreg_edit.signal_dimreg_to_be_changed().connect(      dimreg_edit.signal_dimreg_to_be_changed().connect(
# Line 322  MainWindow::MainWindow() : Line 1498  MainWindow::MainWindow() :
1498          dimreg_changed_signal.make_slot());          dimreg_changed_signal.make_slot());
1499      dimreg_edit.signal_sample_ref_changed().connect(      dimreg_edit.signal_sample_ref_changed().connect(
1500          sample_ref_changed_signal.make_slot());          sample_ref_changed_signal.make_slot());
1501        sample_ref_changed_signal.connect(
1502            sigc::mem_fun(*this, &MainWindow::on_sample_ref_changed)
1503        );
1504        samples_to_be_removed_signal.connect(
1505            sigc::mem_fun(*this, &MainWindow::on_samples_to_be_removed)
1506        );
1507    
1508        dimreg_edit.signal_select_sample().connect(
1509            sigc::mem_fun(*this, &MainWindow::select_sample)
1510        );
1511    
1512      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(
1513          sigc::hide(          sigc::hide(
# Line 356  MainWindow::MainWindow() : Line 1542  MainWindow::MainWindow() :
1542      dimreg_stereo.signal_toggled().connect(      dimreg_stereo.signal_toggled().connect(
1543          sigc::mem_fun(*this, &MainWindow::update_dimregs));          sigc::mem_fun(*this, &MainWindow::update_dimregs));
1544    
1545        m_searchText.signal_changed().connect(
1546            sigc::mem_fun(m_refTreeModelFilter.operator->(), &Gtk::TreeModelFilter::refilter)
1547        );
1548    
1549      file = 0;      file = 0;
1550      file_is_changed = false;      file_is_changed = false;
     set_file_is_shared(false);  
1551    
1552    #if HAS_GTKMM_SHOW_ALL_CHILDREN
1553      show_all_children();      show_all_children();
1554    #endif
1555    
1556      // start with a new gig file by default      // start with a new gig file by default
1557      on_action_file_new();      on_action_file_new();
1558    
1559        m_TreeViewNotebook.signal_switch_page().connect(
1560            sigc::mem_fun(*this, &MainWindow::on_notebook_tab_switched)
1561        );
1562    
1563        // select 'Instruments' tab by default
1564        // (gtk allows this only if the tab childs are visible, thats why it's here)
1565        m_TreeViewNotebook.set_current_page(1);
1566    
1567        Gtk::Clipboard::get()->signal_owner_change().connect(
1568            sigc::mem_fun(*this, &MainWindow::on_clipboard_owner_change)
1569        );
1570        updateClipboardPasteAvailable();
1571        updateClipboardCopyAvailable();
1572    
1573        // setup macros and their keyboard accelerators
1574        {
1575    #if USE_GTKMM_BUILDER
1576            menuMacro = new Gtk::Menu(
1577                Glib::RefPtr<Gio::Menu>::cast_dynamic(
1578                    m_uiManager->get_object("MenuMacro")
1579                )
1580            );
1581    #else
1582            Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
1583                uiManager->get_widget("/MenuBar/MenuMacro")
1584            )->get_submenu();
1585    #endif
1586    
1587            const Gdk::ModifierType noModifier = (Gdk::ModifierType)0;
1588            Gtk::AccelMap::add_entry("<Macros>/macro_0", GDK_KEY_F1, noModifier);
1589            Gtk::AccelMap::add_entry("<Macros>/macro_1", GDK_KEY_F2, noModifier);
1590            Gtk::AccelMap::add_entry("<Macros>/macro_2", GDK_KEY_F3, noModifier);
1591            Gtk::AccelMap::add_entry("<Macros>/macro_3", GDK_KEY_F4, noModifier);
1592            Gtk::AccelMap::add_entry("<Macros>/macro_4", GDK_KEY_F5, noModifier);
1593            Gtk::AccelMap::add_entry("<Macros>/macro_5", GDK_KEY_F6, noModifier);
1594            Gtk::AccelMap::add_entry("<Macros>/macro_6", GDK_KEY_F7, noModifier);
1595            Gtk::AccelMap::add_entry("<Macros>/macro_7", GDK_KEY_F8, noModifier);
1596            Gtk::AccelMap::add_entry("<Macros>/macro_8", GDK_KEY_F9, noModifier);
1597            Gtk::AccelMap::add_entry("<Macros>/macro_9", GDK_KEY_F10, noModifier);
1598            Gtk::AccelMap::add_entry("<Macros>/macro_10", GDK_KEY_F11, noModifier);
1599            Gtk::AccelMap::add_entry("<Macros>/macro_11", GDK_KEY_F12, noModifier);
1600            Gtk::AccelMap::add_entry("<Macros>/macro_12", GDK_KEY_F13, noModifier);
1601            Gtk::AccelMap::add_entry("<Macros>/macro_13", GDK_KEY_F14, noModifier);
1602            Gtk::AccelMap::add_entry("<Macros>/macro_14", GDK_KEY_F15, noModifier);
1603            Gtk::AccelMap::add_entry("<Macros>/macro_15", GDK_KEY_F16, noModifier);
1604            Gtk::AccelMap::add_entry("<Macros>/macro_16", GDK_KEY_F17, noModifier);
1605            Gtk::AccelMap::add_entry("<Macros>/macro_17", GDK_KEY_F18, noModifier);
1606            Gtk::AccelMap::add_entry("<Macros>/macro_18", GDK_KEY_F19, noModifier);
1607            Gtk::AccelMap::add_entry("<Macros>/SetupMacros", 'm', primaryModifierKey);
1608    
1609            Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
1610            menuMacro->set_accel_group(accelGroup);
1611    
1612            updateMacroMenu();
1613        }
1614    
1615        // setup "Assign Scripts" keyboard accelerators
1616        {
1617            Gtk::AccelMap::add_entry("<Scripts>/script_0", GDK_KEY_F1, Gdk::SHIFT_MASK);
1618            Gtk::AccelMap::add_entry("<Scripts>/script_1", GDK_KEY_F2, Gdk::SHIFT_MASK);
1619            Gtk::AccelMap::add_entry("<Scripts>/script_2", GDK_KEY_F3, Gdk::SHIFT_MASK);
1620            Gtk::AccelMap::add_entry("<Scripts>/script_3", GDK_KEY_F4, Gdk::SHIFT_MASK);
1621            Gtk::AccelMap::add_entry("<Scripts>/script_4", GDK_KEY_F5, Gdk::SHIFT_MASK);
1622            Gtk::AccelMap::add_entry("<Scripts>/script_5", GDK_KEY_F6, Gdk::SHIFT_MASK);
1623            Gtk::AccelMap::add_entry("<Scripts>/script_6", GDK_KEY_F7, Gdk::SHIFT_MASK);
1624            Gtk::AccelMap::add_entry("<Scripts>/script_7", GDK_KEY_F8, Gdk::SHIFT_MASK);
1625            Gtk::AccelMap::add_entry("<Scripts>/script_8", GDK_KEY_F9, Gdk::SHIFT_MASK);
1626            Gtk::AccelMap::add_entry("<Scripts>/script_9", GDK_KEY_F10, Gdk::SHIFT_MASK);
1627            Gtk::AccelMap::add_entry("<Scripts>/script_10", GDK_KEY_F11, Gdk::SHIFT_MASK);
1628            Gtk::AccelMap::add_entry("<Scripts>/script_11", GDK_KEY_F12, Gdk::SHIFT_MASK);
1629            Gtk::AccelMap::add_entry("<Scripts>/script_12", GDK_KEY_F13, Gdk::SHIFT_MASK);
1630            Gtk::AccelMap::add_entry("<Scripts>/script_13", GDK_KEY_F14, Gdk::SHIFT_MASK);
1631            Gtk::AccelMap::add_entry("<Scripts>/script_14", GDK_KEY_F15, Gdk::SHIFT_MASK);
1632            Gtk::AccelMap::add_entry("<Scripts>/script_15", GDK_KEY_F16, Gdk::SHIFT_MASK);
1633            Gtk::AccelMap::add_entry("<Scripts>/script_16", GDK_KEY_F17, Gdk::SHIFT_MASK);
1634            Gtk::AccelMap::add_entry("<Scripts>/script_17", GDK_KEY_F18, Gdk::SHIFT_MASK);
1635            Gtk::AccelMap::add_entry("<Scripts>/script_18", GDK_KEY_F19, Gdk::SHIFT_MASK);
1636    
1637            Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
1638            assign_scripts_menu->set_accel_group(accelGroup);
1639        }
1640    
1641        on_show_tooltips_changed();
1642    
1643        Glib::signal_idle().connect_once(
1644            sigc::mem_fun(*this, &MainWindow::bringToFront),
1645            200
1646        );
1647  }  }
1648    
1649  MainWindow::~MainWindow()  MainWindow::~MainWindow()
1650  {  {
1651  }  }
1652    
1653    void MainWindow::bringToFront() {
1654        #if defined(__APPLE__)
1655        macRaiseAppWindow();
1656        #endif
1657        raise();
1658        present();
1659    }
1660    
1661    void MainWindow::updateMacroMenu() {
1662    #if !USE_GTKMM_BUILDER
1663        Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
1664            uiManager->get_widget("/MenuBar/MenuMacro")
1665        )->get_submenu();
1666    #endif
1667    
1668        // remove all entries from "Macro" menu
1669        {
1670            const std::vector<Gtk::Widget*> children = menuMacro->get_children();
1671            for (int i = 0; i < children.size(); ++i) {
1672                Gtk::Widget* child = children[i];
1673                menuMacro->remove(*child);
1674                delete child;
1675            }
1676        }
1677    
1678        // (re)load all macros from config file
1679        try {
1680            Settings::singleton()->loadMacros(m_macros);
1681        } catch (Serialization::Exception e) {
1682            std::cerr << "Exception while loading macros: " << e.Message << std::endl;
1683        } catch (...) {
1684            std::cerr << "Unknown exception while loading macros!" << std::endl;
1685        }
1686    
1687        // add all configured macros as menu items to the "Macro" menu
1688        for (int iMacro = 0; iMacro < m_macros.size(); ++iMacro) {
1689            const Serialization::Archive& macro = m_macros[iMacro];
1690            std::string name =
1691                macro.name().empty() ?
1692                    (std::string(_("Unnamed Macro")) + " " + ToString(iMacro+1)) : macro.name();
1693            Gtk::MenuItem* item = new Gtk::MenuItem(name);
1694            item->signal_activate().connect(
1695                sigc::bind(
1696                    sigc::mem_fun(*this, &MainWindow::onMacroSelected), iMacro
1697                )
1698            );
1699            menuMacro->append(*item);
1700            item->set_accel_path("<Macros>/macro_" + ToString(iMacro));
1701            Glib::ustring comment = macro.comment();
1702            if (!comment.empty())
1703                item->set_tooltip_text(comment);
1704        }
1705        // if there are no macros configured at all, then show a dummy entry instead
1706        if (m_macros.empty()) {
1707            Gtk::MenuItem* item = new Gtk::MenuItem(_("No Macros"));
1708            item->set_sensitive(false);
1709            menuMacro->append(*item);
1710        }
1711    
1712        // add separator line to menu
1713        menuMacro->append(*new Gtk::SeparatorMenuItem);
1714    
1715        {
1716            Gtk::MenuItem* item = new Gtk::MenuItem(_("Setup Macros ..."));
1717            item->signal_activate().connect(
1718                sigc::mem_fun(*this, &MainWindow::setupMacros)
1719            );
1720            menuMacro->append(*item);
1721            item->set_accel_path("<Macros>/SetupMacros");
1722        }
1723    
1724    #if HAS_GTKMM_SHOW_ALL_CHILDREN
1725        menuMacro->show_all_children();
1726    #endif
1727    }
1728    
1729    void MainWindow::onMacroSelected(int iMacro) {
1730        printf("onMacroSelected(%d)\n", iMacro);
1731        if (iMacro < 0 || iMacro >= m_macros.size()) return;
1732        Glib::ustring errorText;
1733        try {
1734            applyMacro(m_macros[iMacro]);
1735        } catch (Serialization::Exception e) {
1736            errorText = e.Message;
1737        } catch (...) {
1738            errorText = _("Unknown exception while applying macro");
1739        }
1740        if (!errorText.empty()) {
1741            Glib::ustring txt = _("Applying macro failed:\n") + errorText;
1742            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1743            msg.run();
1744        }
1745    }
1746    
1747    void MainWindow::setupMacros() {
1748        MacrosSetup* setup = new MacrosSetup();
1749        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
1750        setup->setMacros(m_macros, &m_serializationArchive, pDimRgn);
1751        setup->signal_macros_changed().connect(
1752            sigc::mem_fun(*this, &MainWindow::onMacrosSetupChanged)
1753        );
1754        setup->show();
1755    }
1756    
1757    void MainWindow::onMacrosSetupChanged(const std::vector<Serialization::Archive>& macros) {
1758        m_macros = macros;
1759        Settings::singleton()->saveMacros(m_macros);
1760        updateMacroMenu();
1761    }
1762    
1763    //NOTE: the actual signal's first argument for argument 'page' is on some gtkmm version GtkNotebookPage* and on some Gtk::Widget*. Since we don't need that argument, it is simply void* here for now.
1764    void MainWindow::on_notebook_tab_switched(void* page, guint page_num) {
1765        bool isInstrumentsPage = (page_num == 1);
1766        // so far we only support filtering for the instruments list, so hide the
1767        // filter text entry field if another tab is selected
1768        m_searchField.set_visible(isInstrumentsPage);
1769    }
1770    
1771  bool MainWindow::on_delete_event(GdkEventAny* event)  bool MainWindow::on_delete_event(GdkEventAny* event)
1772  {  {
1773      return !file_is_shared && file_is_changed && !close_confirmation_dialog();      return !file_is_shared && file_is_changed && !close_confirmation_dialog();
# Line 389  void MainWindow::region_changed() Line 1787  void MainWindow::region_changed()
1787  gig::Instrument* MainWindow::get_instrument()  gig::Instrument* MainWindow::get_instrument()
1788  {  {
1789      gig::Instrument* instrument = 0;      gig::Instrument* instrument = 0;
1790      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
1791        if (rows.empty()) return NULL;
1792      Gtk::TreeModel::iterator it = tree_sel_ref->get_selected();      //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
1793        Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
1794      if (it) {      if (it) {
1795          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
1796          instrument = row[m_Columns.m_col_instr];          instrument = row[m_Columns.m_col_instr];
# Line 434  void MainWindow::update_dimregs() Line 1833  void MainWindow::update_dimregs()
1833              add_region_to_dimregs(region, stereo, all_dimregs);              add_region_to_dimregs(region, stereo, all_dimregs);
1834          }          }
1835      }      }
1836    
1837        m_RegionChooser.setModifyAllRegions(all_regions);
1838        m_DimRegionChooser.setModifyAllRegions(all_regions);
1839        m_DimRegionChooser.setModifyAllDimensionRegions(all_dimregs);
1840        m_DimRegionChooser.setModifyBothChannels(stereo);
1841    
1842        updateClipboardCopyAvailable();
1843  }  }
1844    
1845  void MainWindow::dimreg_all_dimregs_toggled()  void MainWindow::dimreg_all_dimregs_toggled()
# Line 445  void MainWindow::dimreg_all_dimregs_togg Line 1851  void MainWindow::dimreg_all_dimregs_togg
1851  void MainWindow::dimreg_changed()  void MainWindow::dimreg_changed()
1852  {  {
1853      update_dimregs();      update_dimregs();
1854      dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion());      dimreg_edit.set_dim_region(m_DimRegionChooser.get_main_dimregion());
1855  }  }
1856    
1857  void MainWindow::on_sel_change()  void MainWindow::on_sel_change()
1858  {  {
1859    #if !USE_GTKMM_BUILDER
1860        // select item in instrument menu
1861        std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
1862        if (!rows.empty()) {
1863            Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
1864            if (it) {
1865                Gtk::TreePath path(it);
1866                int index = path[0];
1867                const std::vector<Gtk::Widget*> children =
1868                    instrument_menu->get_children();
1869                static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();
1870            }
1871        }
1872    #endif
1873    
1874        updateScriptListOfMenu();
1875    
1876      m_RegionChooser.set_instrument(get_instrument());      m_RegionChooser.set_instrument(get_instrument());
1877    
1878        if (Settings::singleton()->syncSamplerInstrumentSelection) {
1879            switch_sampler_instrument_signal.emit(get_instrument());
1880        }
1881  }  }
1882    
1883  void loader_progress_callback(gig::progress_t* progress)  void loader_progress_callback(gig::progress_t* progress)
# Line 462  void loader_progress_callback(gig::progr Line 1889  void loader_progress_callback(gig::progr
1889  void Loader::progress_callback(float fraction)  void Loader::progress_callback(float fraction)
1890  {  {
1891      {      {
1892          Glib::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
1893          progress = fraction;          progress = fraction;
1894      }      }
1895      progress_dispatcher();      progress_dispatcher();
1896  }  }
1897    
1898    #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
1899    // make sure stack is 16-byte aligned for SSE instructions
1900    __attribute__((force_align_arg_pointer))
1901    #endif
1902  void Loader::thread_function()  void Loader::thread_function()
1903  {  {
1904      printf("thread_function self=%x\n", Glib::Thread::self());      printf("thread_function self=%p\n",
1905      printf("Start %s\n", filename);             static_cast<void*>(Glib::Threads::Thread::self()));
1906      RIFF::File* riff = new RIFF::File(filename);      printf("Start %s\n", filename.c_str());
1907      gig = new gig::File(riff);      try {
1908      gig::progress_t progress;          RIFF::File* riff = new RIFF::File(filename);
1909      progress.callback = loader_progress_callback;          gig = new gig::File(riff);
1910      progress.custom = this;          gig::progress_t progress;
1911            progress.callback = loader_progress_callback;
1912      gig->GetInstrument(0, &progress);          progress.custom = this;
1913      printf("End\n");  
1914      finished_dispatcher();          gig->GetInstrument(0, &progress);
1915            printf("End\n");
1916            finished_dispatcher();
1917        } catch (RIFF::Exception e) {
1918            error_message = e.Message;
1919            error_dispatcher.emit();
1920        } catch (...) {
1921            error_message = _("Unknown exception occurred");
1922            error_dispatcher.emit();
1923        }
1924  }  }
1925    
1926  Loader::Loader(const char* filename)  Loader::Loader(const char* filename)
1927      : filename(filename), thread(0)      : filename(filename), gig(0), thread(0), progress(0.f)
1928  {  {
1929  }  }
1930    
1931  void Loader::launch()  void Loader::launch()
1932  {  {
1933    #ifdef OLD_THREADS
1934      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);
1935      printf("launch thread=%x\n", thread);  #else
1936        thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));
1937    #endif
1938        printf("launch thread=%p\n", static_cast<void*>(thread));
1939  }  }
1940    
1941  float Loader::get_progress()  float Loader::get_progress()
1942  {  {
1943      float res;      float res;
1944      {      {
1945          Glib::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
1946          res = progress;          res = progress;
1947      }      }
1948      return res;      return res;
# Line 514  Glib::Dispatcher& Loader::signal_finishe Line 1958  Glib::Dispatcher& Loader::signal_finishe
1958      return finished_dispatcher;      return finished_dispatcher;
1959  }  }
1960    
1961  LoadDialog::LoadDialog(const Glib::ustring& title, Gtk::Window& parent)  Glib::Dispatcher& Loader::signal_error()
1962    {
1963        return error_dispatcher;
1964    }
1965    
1966    void saver_progress_callback(gig::progress_t* progress)
1967    {
1968        Saver* saver = static_cast<Saver*>(progress->custom);
1969        saver->progress_callback(progress->factor);
1970    }
1971    
1972    void Saver::progress_callback(float fraction)
1973    {
1974        {
1975            Glib::Threads::Mutex::Lock lock(progressMutex);
1976            progress = fraction;
1977        }
1978        progress_dispatcher.emit();
1979    }
1980    
1981    #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
1982    // make sure stack is 16-byte aligned for SSE instructions
1983    __attribute__((force_align_arg_pointer))
1984    #endif
1985    void Saver::thread_function()
1986    {
1987        printf("thread_function self=%p\n",
1988               static_cast<void*>(Glib::Threads::Thread::self()));
1989        printf("Start %s\n", filename.c_str());
1990        try {
1991            gig::progress_t progress;
1992            progress.callback = saver_progress_callback;
1993            progress.custom = this;
1994    
1995            // if no filename was provided, that means "save", if filename was provided means "save as"
1996            if (filename.empty()) {
1997                if (!Settings::singleton()->saveWithTemporaryFile) {
1998                    // save directly over the existing .gig file
1999                    // (requires less disk space than solution below
2000                    // but may be slower)
2001                    gig->Save(&progress);
2002                } else {
2003                    // save the file as separate temporary file first,
2004                    // then move the saved file over the old file
2005                    // (may result in performance speedup during save)
2006                    gig::String tmpname = filename + ".TMP";
2007                    gig->Save(tmpname, &progress);
2008                    #if defined(WIN32)
2009                    if (!DeleteFile(filename.c_str())) {
2010                        throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file).");
2011                    }
2012                    #else // POSIX ...
2013                    if (unlink(filename.c_str())) {
2014                        throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + gig::String(strerror(errno)));
2015                    }
2016                    #endif
2017                    if (rename(tmpname.c_str(), filename.c_str())) {
2018                        #if defined(WIN32)
2019                        throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");
2020                        #else
2021                        throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file): " + gig::String(strerror(errno)));
2022                        #endif
2023                    }
2024                }
2025            } else {
2026                gig->Save(filename, &progress);
2027            }
2028    
2029            printf("End\n");
2030            finished_dispatcher.emit();
2031        } catch (RIFF::Exception e) {
2032            error_message = e.Message;
2033            error_dispatcher.emit();
2034        } catch (...) {
2035            error_message = _("Unknown exception occurred");
2036            error_dispatcher.emit();
2037        }
2038    }
2039    
2040    Saver::Saver(gig::File* file, Glib::ustring filename)
2041        : gig(file), filename(filename), thread(0), progress(0.f)
2042    {
2043    }
2044    
2045    void Saver::launch()
2046    {
2047    #ifdef OLD_THREADS
2048        thread = Glib::Thread::create(sigc::mem_fun(*this, &Saver::thread_function), true);
2049    #else
2050        thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Saver::thread_function));
2051    #endif
2052        printf("launch thread=%p\n", static_cast<void*>(thread));
2053    }
2054    
2055    float Saver::get_progress()
2056    {
2057        float res;
2058        {
2059            Glib::Threads::Mutex::Lock lock(progressMutex);
2060            res = progress;
2061        }
2062        return res;
2063    }
2064    
2065    Glib::Dispatcher& Saver::signal_progress()
2066    {
2067        return progress_dispatcher;
2068    }
2069    
2070    Glib::Dispatcher& Saver::signal_finished()
2071    {
2072        return finished_dispatcher;
2073    }
2074    
2075    Glib::Dispatcher& Saver::signal_error()
2076    {
2077        return error_dispatcher;
2078    }
2079    
2080    ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)
2081      : Gtk::Dialog(title, parent, true)      : Gtk::Dialog(title, parent, true)
2082  {  {
2083    #if USE_GTKMM_BOX
2084        get_content_area()->pack_start(progressBar);
2085    #else
2086      get_vbox()->pack_start(progressBar);      get_vbox()->pack_start(progressBar);
2087    #endif
2088    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2089      show_all_children();      show_all_children();
2090    #endif
2091        resize(600,50);
2092  }  }
2093    
2094  // Clear all GUI elements / controls. This method is typically called  // Clear all GUI elements / controls. This method is typically called
2095  // before a new .gig file is to be created or to be loaded.  // before a new .gig file is to be created or to be loaded.
2096  void MainWindow::__clear() {  void MainWindow::__clear() {
     // remove all entries from "Instrument" menu  
     Gtk::MenuItem* instrument_menu =  
         dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));  
     instrument_menu->hide();  
     for (int i = 0; i < instrument_menu->get_submenu()->items().size(); i++) {  
         delete &instrument_menu->get_submenu()->items()[i];  
     }  
     instrument_menu->get_submenu()->items().clear();  
2097      // forget all samples that ought to be imported      // forget all samples that ought to be imported
2098      m_SampleImportQueue.clear();      m_SampleImportQueue.clear();
2099      // clear the samples and instruments tree views      // clear the samples and instruments tree views
2100      m_refTreeModel->clear();      m_refTreeModel->clear();
2101      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
2102        m_refScriptsTreeModel->clear();
2103    #if !USE_GTKMM_BUILDER
2104        // remove all entries from "Instrument" menu
2105        while (!instrument_menu->get_children().empty()) {
2106            remove_instrument_from_menu(0);
2107        }
2108    #endif
2109      // free libgig's gig::File instance      // free libgig's gig::File instance
2110      if (file && !file_is_shared) delete file;      if (file && !file_is_shared) delete file;
2111      file = NULL;      file = NULL;
2112      set_file_is_shared(false);      set_file_is_shared(false);
2113  }  }
2114    
2115    void MainWindow::__refreshEntireGUI() {
2116        // clear the samples and instruments tree views
2117        m_refTreeModel->clear();
2118        m_refSamplesTreeModel->clear();
2119        m_refScriptsTreeModel->clear();
2120    #if !USE_GTKMM_BUILDER
2121        // remove all entries from "Instrument" menu
2122        while (!instrument_menu->get_children().empty()) {
2123            remove_instrument_from_menu(0);
2124        }
2125    #endif
2126    
2127        if (!this->file) return;
2128    
2129        load_gig(
2130            this->file, this->file->pInfo->Name.c_str(), this->file_is_shared
2131        );
2132    }
2133    
2134  void MainWindow::on_action_file_new()  void MainWindow::on_action_file_new()
2135  {  {
2136      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;
# Line 555  void MainWindow::on_action_file_new() Line 2143  void MainWindow::on_action_file_new()
2143      gig::File* pFile = new gig::File;      gig::File* pFile = new gig::File;
2144      // already add one new instrument by default      // already add one new instrument by default
2145      gig::Instrument* pInstrument = pFile->AddInstrument();      gig::Instrument* pInstrument = pFile->AddInstrument();
2146      pInstrument->pInfo->Name = _("Unnamed Instrument");      pInstrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument"));
2147      // update GUI with that new gig::File      // update GUI with that new gig::File
2148      load_gig(pFile, 0 /*no file name yet*/);      load_gig(pFile, 0 /*no file name yet*/);
2149  }  }
# Line 568  bool MainWindow::close_confirmation_dial Line 2156  bool MainWindow::close_confirmation_dial
2156      g_free(msg);      g_free(msg);
2157      dialog.set_secondary_text(_("If you close without saving, your changes will be lost."));      dialog.set_secondary_text(_("If you close without saving, your changes will be lost."));
2158      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
2159    #if HAS_GTKMM_STOCK
2160      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2161      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);
2162    #else
2163        dialog.add_button(_("_OK"), Gtk::RESPONSE_OK);
2164        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2165    #endif
2166      dialog.set_default_response(Gtk::RESPONSE_YES);      dialog.set_default_response(Gtk::RESPONSE_YES);
2167      int response = dialog.run();      int response = dialog.run();
2168      dialog.hide();      dialog.hide();
2169      if (response == Gtk::RESPONSE_YES) return file_save();  
2170      return response != Gtk::RESPONSE_CANCEL;      // user decided to exit app without saving
2171        if (response == Gtk::RESPONSE_NO) return true;
2172    
2173        // user cancelled dialog, thus don't close app
2174        if (response == Gtk::RESPONSE_CANCEL) return false;
2175    
2176        // TODO: the following return valid is disabled and hard coded instead for
2177        // now, due to the fact that saving with progress bar is now implemented
2178        // asynchronously, as a result the app does not close automatically anymore
2179        // after saving the file has completed
2180        //
2181        //   if (response == Gtk::RESPONSE_YES) return file_save();
2182        //   return response != Gtk::RESPONSE_CANCEL;
2183        //
2184        if (response == Gtk::RESPONSE_YES) file_save();
2185        return false; // always prevent closing the app for now (see comment above)
2186  }  }
2187    
2188  bool MainWindow::leaving_shared_mode_dialog() {  bool MainWindow::leaving_shared_mode_dialog() {
# Line 585  bool MainWindow::leaving_shared_mode_dia Line 2193  bool MainWindow::leaving_shared_mode_dia
2193            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
2194            "load it."));            "load it."));
2195      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
2196    #if HAS_GTKMM_STOCK
2197      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2198    #else
2199        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2200    #endif
2201      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
2202      int response = dialog.run();      int response = dialog.run();
2203      dialog.hide();      dialog.hide();
# Line 599  void MainWindow::on_action_file_open() Line 2211  void MainWindow::on_action_file_open()
2211      if (file_is_shared && !leaving_shared_mode_dialog()) return;      if (file_is_shared && !leaving_shared_mode_dialog()) return;
2212    
2213      Gtk::FileChooserDialog dialog(*this, _("Open file"));      Gtk::FileChooserDialog dialog(*this, _("Open file"));
2214    #if HAS_GTKMM_STOCK
2215      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2216      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
2217    #else
2218        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2219        dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
2220    #endif
2221      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
2222    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
2223      Gtk::FileFilter filter;      Gtk::FileFilter filter;
2224      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
2225    #else
2226        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
2227        filter->add_pattern("*.gig");
2228    #endif
2229      dialog.set_filter(filter);      dialog.set_filter(filter);
2230      if (current_gig_dir != "") {      if (current_gig_dir != "") {
2231          dialog.set_current_folder(current_gig_dir);          dialog.set_current_folder(current_gig_dir);
# Line 611  void MainWindow::on_action_file_open() Line 2233  void MainWindow::on_action_file_open()
2233      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2234          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
2235          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
2236          printf("on_action_file_open self=%x\n", Glib::Thread::self());          printf("on_action_file_open self=%p\n",
2237                   static_cast<void*>(Glib::Threads::Thread::self()));
2238          load_file(filename.c_str());          load_file(filename.c_str());
2239          current_gig_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
2240      }      }
# Line 620  void MainWindow::on_action_file_open() Line 2243  void MainWindow::on_action_file_open()
2243  void MainWindow::load_file(const char* name)  void MainWindow::load_file(const char* name)
2244  {  {
2245      __clear();      __clear();
2246      load_dialog = new LoadDialog(_("Loading..."), *this);  
2247      load_dialog->show_all();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
2248      loader = new Loader(strdup(name));          _("Loading") +  Glib::ustring(" '") +
2249            Glib::filename_display_basename(name) + "' ...",
2250            *this
2251        );
2252    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2253        progress_dialog->show_all();
2254    #endif
2255        loader = new Loader(name); //FIXME: memory leak!
2256      loader->signal_progress().connect(      loader->signal_progress().connect(
2257          sigc::mem_fun(*this, &MainWindow::on_loader_progress));          sigc::mem_fun(*this, &MainWindow::on_loader_progress));
2258      loader->signal_finished().connect(      loader->signal_finished().connect(
2259          sigc::mem_fun(*this, &MainWindow::on_loader_finished));          sigc::mem_fun(*this, &MainWindow::on_loader_finished));
2260        loader->signal_error().connect(
2261            sigc::mem_fun(*this, &MainWindow::on_loader_error));
2262      loader->launch();      loader->launch();
2263  }  }
2264    
# Line 642  void MainWindow::load_instrument(gig::In Line 2274  void MainWindow::load_instrument(gig::In
2274      // load the instrument      // load the instrument
2275      gig::File* pFile = (gig::File*) instr->GetParent();      gig::File* pFile = (gig::File*) instr->GetParent();
2276      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);
2277      //TODO: automatically select the given instrument      // automatically select the given instrument
2278        int i = 0;
2279        for (gig::Instrument* instrument = pFile->GetFirstInstrument(); instrument;
2280             instrument = pFile->GetNextInstrument(), ++i)
2281        {
2282            if (instrument == instr) {
2283                // select item in "instruments" tree view
2284                m_TreeView.get_selection()->select(Gtk::TreePath(ToString(i)));
2285                // make sure the selected item in the "instruments" tree view is
2286                // visible (scroll to it)
2287                m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));
2288    #if !USE_GTKMM_BUILDER
2289                // select item in instrument menu
2290                {
2291                    const std::vector<Gtk::Widget*> children =
2292                        instrument_menu->get_children();
2293                    static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();
2294                }
2295    #endif
2296                // update region chooser and dimension region chooser
2297                m_RegionChooser.set_instrument(instr);
2298                break;
2299            }
2300        }
2301  }  }
2302    
2303  void MainWindow::on_loader_progress()  void MainWindow::on_loader_progress()
2304  {  {
2305      load_dialog->set_fraction(loader->get_progress());      progress_dialog->set_fraction(loader->get_progress());
2306  }  }
2307    
2308  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
2309  {  {
2310      printf("Loader finished!\n");      printf("Loader finished!\n");
2311      printf("on_loader_finished self=%x\n", Glib::Thread::self());      printf("on_loader_finished self=%p\n",
2312      load_gig(loader->gig, loader->filename);             static_cast<void*>(Glib::Threads::Thread::self()));
2313      load_dialog->hide();      load_gig(loader->gig, loader->filename.c_str());
2314        progress_dialog->hide();
2315    }
2316    
2317    void MainWindow::on_loader_error()
2318    {
2319        Glib::ustring txt = _("Could not load file: ") + loader->error_message;
2320        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2321        msg.run();
2322        progress_dialog->hide();
2323  }  }
2324    
2325  void MainWindow::on_action_file_save()  void MainWindow::on_action_file_save()
# Line 694  bool MainWindow::file_save() Line 2358  bool MainWindow::file_save()
2358    
2359      std::cout << "Saving file\n" << std::flush;      std::cout << "Saving file\n" << std::flush;
2360      file_structure_to_be_changed_signal.emit(this->file);      file_structure_to_be_changed_signal.emit(this->file);
2361      try {  
2362          file->Save();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
2363          if (file_is_changed) {          _("Saving") +  Glib::ustring(" '") +
2364              set_title(get_title().substr(1));          Glib::filename_display_basename(this->filename) + "' ...",
2365              file_is_changed = false;          *this
2366          }      );
2367      } catch (RIFF::Exception e) {  #if HAS_GTKMM_SHOW_ALL_CHILDREN
2368          file_structure_changed_signal.emit(this->file);      progress_dialog->show_all();
2369          Glib::ustring txt = _("Could not save file: ") + e.Message;  #endif
2370          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);      saver = new Saver(this->file); //FIXME: memory leak!
2371          msg.run();      saver->signal_progress().connect(
2372          return false;          sigc::mem_fun(*this, &MainWindow::on_saver_progress));
2373      }      saver->signal_finished().connect(
2374      std::cout << "Saving file done\n" << std::flush;          sigc::mem_fun(*this, &MainWindow::on_saver_finished));
2375        saver->signal_error().connect(
2376            sigc::mem_fun(*this, &MainWindow::on_saver_error));
2377        saver->launch();
2378    
2379        return true;
2380    }
2381    
2382    void MainWindow::on_saver_progress()
2383    {
2384        progress_dialog->set_fraction(saver->get_progress());
2385    }
2386    
2387    void MainWindow::on_saver_error()
2388    {
2389        file_structure_changed_signal.emit(this->file);
2390        Glib::ustring txt = _("Could not save file: ") + saver->error_message;
2391        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2392        msg.run();
2393    }
2394    
2395    void MainWindow::on_saver_finished()
2396    {
2397        this->file = saver->gig;
2398        this->filename = saver->filename;
2399        current_gig_dir = Glib::path_get_dirname(filename);
2400        set_title(Glib::filename_display_basename(filename));
2401        file_has_name = true;
2402        file_is_changed = false;
2403        std::cout << "Saving file done. Importing queued samples now ...\n" << std::flush;
2404      __import_queued_samples();      __import_queued_samples();
2405        std::cout << "Importing queued samples done.\n" << std::flush;
2406    
2407      file_structure_changed_signal.emit(this->file);      file_structure_changed_signal.emit(this->file);
2408      return true;  
2409        __refreshEntireGUI();
2410        progress_dialog->hide();
2411  }  }
2412    
2413  void MainWindow::on_action_file_save_as()  void MainWindow::on_action_file_save_as()
# Line 722  void MainWindow::on_action_file_save_as( Line 2419  void MainWindow::on_action_file_save_as(
2419  bool MainWindow::file_save_as()  bool MainWindow::file_save_as()
2420  {  {
2421      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);
2422    #if HAS_GTKMM_STOCK
2423      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2424      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
2425    #else
2426        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2427        dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);
2428    #endif
2429      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
2430      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
2431    
2432    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
2433      Gtk::FileFilter filter;      Gtk::FileFilter filter;
2434      filter.add_pattern("*.gig");      filter.add_pattern("*.gig");
2435    #else
2436        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
2437        filter->add_pattern("*.gig");
2438    #endif
2439      dialog.set_filter(filter);      dialog.set_filter(filter);
2440    
2441      // set initial dir and filename of the Save As dialog      // set initial dir and filename of the Save As dialog
# Line 747  bool MainWindow::file_save_as() Line 2454  bool MainWindow::file_save_as()
2454      }      }
2455    
2456      // show warning in the dialog      // show warning in the dialog
2457      Gtk::HBox descriptionArea;      HBox descriptionArea;
2458      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
2459      Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));      Gtk::Image warningIcon;
2460        warningIcon.set_from_icon_name("dialog-warning",
2461                                       Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
2462      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
2463    #if GTKMM_MAJOR_VERSION < 3
2464      view::WrapLabel description;      view::WrapLabel description;
2465    #else
2466        Gtk::Label description;
2467        description.set_line_wrap();
2468    #endif
2469      description.set_markup(      description.set_markup(
2470          _("\n<b>CAUTION:</b> You <b>MUST</b> use the "          _("\n<b>CAUTION:</b> You <b>MUST</b> use the "
2471            "<span style=\"italic\">\"Save\"</span> dialog instead of "            "<span style=\"italic\">\"Save\"</span> dialog instead of "
# Line 761  bool MainWindow::file_save_as() Line 2475  bool MainWindow::file_save_as()
2475            "same .gig file will end up in corrupted sample wave data!\n")            "same .gig file will end up in corrupted sample wave data!\n")
2476      );      );
2477      descriptionArea.pack_start(description);      descriptionArea.pack_start(description);
2478    #if USE_GTKMM_BOX
2479        dialog.get_content_area()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2480    #else
2481      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2482    #endif
2483    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2484      descriptionArea.show_all();      descriptionArea.show_all();
2485    #endif
2486    
2487      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2488          file_structure_to_be_changed_signal.emit(this->file);          std::string filename = dialog.get_filename();
2489          try {          if (!Glib::str_has_suffix(filename, ".gig")) {
2490              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;  
2491          }          }
2492          __import_queued_samples();          printf("filename=%s\n", filename.c_str());
2493          file_structure_changed_signal.emit(this->file);  
2494            progress_dialog = new ProgressDialog( //FIXME: memory leak!
2495                _("Saving") +  Glib::ustring(" '") +
2496                Glib::filename_display_basename(filename) + "' ...",
2497                *this
2498            );
2499    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2500            progress_dialog->show_all();
2501    #endif
2502    
2503            saver = new Saver(file, filename); //FIXME: memory leak!
2504            saver->signal_progress().connect(
2505                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
2506            saver->signal_finished().connect(
2507                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
2508            saver->signal_error().connect(
2509                sigc::mem_fun(*this, &MainWindow::on_saver_error));
2510            saver->launch();
2511    
2512          return true;          return true;
2513      }      }
2514      return false;      return false;
# Line 796  bool MainWindow::file_save_as() Line 2518  bool MainWindow::file_save_as()
2518  void MainWindow::__import_queued_samples() {  void MainWindow::__import_queued_samples() {
2519      std::cout << "Starting sample import\n" << std::flush;      std::cout << "Starting sample import\n" << std::flush;
2520      Glib::ustring error_files;      Glib::ustring error_files;
2521      printf("Samples to import: %d\n", m_SampleImportQueue.size());      printf("Samples to import: %d\n", int(m_SampleImportQueue.size()));
2522      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();      for (std::map<gig::Sample*, SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
2523           iter != m_SampleImportQueue.end(); ) {           iter != m_SampleImportQueue.end(); ) {
2524          printf("Importing sample %s\n",(*iter).sample_path.c_str());          printf("Importing sample %s\n",iter->second.sample_path.c_str());
2525          SF_INFO info;          SF_INFO info;
2526          info.format = 0;          info.format = 0;
2527          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);
2528            sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);
2529          try {          try {
2530              if (!hFile) throw std::string(_("could not open file"));              if (!hFile) throw std::string(_("could not open file"));
2531              // determine sample's bit depth              // determine sample's bit depth
# Line 824  void MainWindow::__import_queued_samples Line 2547  void MainWindow::__import_queued_samples
2547                      throw std::string(_("format not supported")); // unsupported subformat (yet?)                      throw std::string(_("format not supported")); // unsupported subformat (yet?)
2548              }              }
2549    
2550                // reset write position for sample
2551                iter->first->SetPos(0);
2552    
2553              const int bufsize = 10000;              const int bufsize = 10000;
2554              switch (bitdepth) {              switch (bitdepth) {
2555                  case 16: {                  case 16: {
# Line 833  void MainWindow::__import_queued_samples Line 2559  void MainWindow::__import_queued_samples
2559                          // libsndfile does the conversion for us (if needed)                          // libsndfile does the conversion for us (if needed)
2560                          int n = sf_readf_short(hFile, buffer, bufsize);                          int n = sf_readf_short(hFile, buffer, bufsize);
2561                          // write from buffer directly (physically) into .gig file                          // write from buffer directly (physically) into .gig file
2562                          iter->gig_sample->Write(buffer, n);                          iter->first->Write(buffer, n);
2563                          cnt -= n;                          cnt -= n;
2564                      }                      }
2565                      delete[] buffer;                      delete[] buffer;
# Line 853  void MainWindow::__import_queued_samples Line 2579  void MainWindow::__import_queued_samples
2579                              dstbuf[j++] = srcbuf[i] >> 24;                              dstbuf[j++] = srcbuf[i] >> 24;
2580                          }                          }
2581                          // write from buffer directly (physically) into .gig file                          // write from buffer directly (physically) into .gig file
2582                          iter->gig_sample->Write(dstbuf, n);                          iter->first->Write(dstbuf, n);
2583                          cnt -= n;                          cnt -= n;
2584                      }                      }
2585                      delete[] srcbuf;                      delete[] srcbuf;
# Line 864  void MainWindow::__import_queued_samples Line 2590  void MainWindow::__import_queued_samples
2590              // cleanup              // cleanup
2591              sf_close(hFile);              sf_close(hFile);
2592              // let the sampler re-cache the sample if needed              // let the sampler re-cache the sample if needed
2593              sample_changed_signal.emit(iter->gig_sample);              sample_changed_signal.emit(iter->first);
2594              // on success we remove the sample from the import queue,              // on success we remove the sample from the import queue,
2595              // otherwise keep it, maybe it works the next time ?              // otherwise keep it, maybe it works the next time ?
2596              std::list<SampleImportItem>::iterator cur = iter;              std::map<gig::Sample*, SampleImportItem>::iterator cur = iter;
2597              ++iter;              ++iter;
2598              m_SampleImportQueue.erase(cur);              m_SampleImportQueue.erase(cur);
2599          } catch (std::string what) {          } catch (std::string what) {
2600              // remember the files that made trouble (and their cause)              // remember the files that made trouble (and their cause)
2601              if (error_files.size()) error_files += "\n";              if (!error_files.empty()) error_files += "\n";
2602              error_files += (*iter).sample_path += " (" + what + ")";              error_files += iter->second.sample_path += " (" + what + ")";
2603              ++iter;              ++iter;
2604          }          }
2605      }      }
2606      // show error message box when some sample(s) could not be imported      // show error message box when some sample(s) could not be imported
2607      if (error_files.size()) {      if (!error_files.empty()) {
2608          Glib::ustring txt = _("Could not import the following sample(s):\n") + error_files;          Glib::ustring txt = _("Could not import the following sample(s):\n") + error_files;
2609          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2610          msg.run();          msg.run();
# Line 891  void MainWindow::on_action_file_properti Line 2617  void MainWindow::on_action_file_properti
2617      propDialog.deiconify();      propDialog.deiconify();
2618  }  }
2619    
2620    void MainWindow::on_action_warn_user_on_extensions() {
2621        Settings::singleton()->warnUserOnExtensions =
2622            !Settings::singleton()->warnUserOnExtensions;
2623    }
2624    
2625    void MainWindow::on_action_show_tooltips() {
2626        Settings::singleton()->showTooltips =
2627            !Settings::singleton()->showTooltips;
2628    
2629        on_show_tooltips_changed();
2630    }
2631    
2632    void MainWindow::on_show_tooltips_changed() {
2633        const bool b = Settings::singleton()->showTooltips;
2634    
2635        dimreg_label.set_has_tooltip(b);
2636        dimreg_all_regions.set_has_tooltip(b);
2637        dimreg_all_dimregs.set_has_tooltip(b);
2638        dimreg_stereo.set_has_tooltip(b);
2639        m_TreeView.set_has_tooltip(b);
2640        m_TreeViewSamples.set_has_tooltip(b);
2641        m_TreeViewScripts.set_has_tooltip(b);
2642    
2643        set_has_tooltip(b);
2644    }
2645    
2646    void MainWindow::on_action_sync_sampler_instrument_selection() {
2647        Settings::singleton()->syncSamplerInstrumentSelection =
2648            !Settings::singleton()->syncSamplerInstrumentSelection;
2649    }
2650    
2651    void MainWindow::on_action_move_root_note_with_region_moved() {
2652        Settings::singleton()->moveRootNoteWithRegionMoved =
2653            !Settings::singleton()->moveRootNoteWithRegionMoved;
2654    }
2655    
2656  void MainWindow::on_action_help_about()  void MainWindow::on_action_help_about()
2657  {  {
2658      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
# Line 900  void MainWindow::on_action_help_about() Line 2662  void MainWindow::on_action_help_about()
2662      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
2663  #endif  #endif
2664      dialog.set_version(VERSION);      dialog.set_version(VERSION);
2665      dialog.set_copyright("Copyright (C) 2006-2010 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2017 Andreas Persson");
2666      dialog.set_comments(_(      const std::string sComment =
2667          "Released under the GNU General Public License.\n"          _("Built " __DATE__ "\nUsing ") +
2668          "\n"          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
2669          "Please notice that this is still a very young instrument editor. "          _(
2670          "So better backup your Gigasampler files before editing them with "              "Gigedit is released under the GNU General Public License.\n"
2671          "this application.\n"              "\n"
2672          "\n"              "This program is distributed WITHOUT ANY WARRANTY; So better "
2673          "Please report bugs to: http://bugs.linuxsampler.org")              "backup your Gigasampler/GigaStudio files before editing them with "
2674      );              "this application.\n"
2675                "\n"
2676                "Please report bugs to: http://bugs.linuxsampler.org"
2677            );
2678        dialog.set_comments(sComment.c_str());
2679      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("http://www.linuxsampler.org");
2680      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("http://www.linuxsampler.org");
2681        dialog.set_position(Gtk::WIN_POS_CENTER);
2682      dialog.run();      dialog.run();
2683  }  }
2684    
2685  PropDialog::PropDialog()  PropDialog::PropDialog()
2686      : eName(_("Name")),      : eFileFormat(_("File Format")),
2687          eName(_("Name")),
2688        eCreationDate(_("Creation date")),        eCreationDate(_("Creation date")),
2689        eComments(_("Comments")),        eComments(_("Comments")),
2690        eProduct(_("Product")),        eProduct(_("Product")),
# Line 932  PropDialog::PropDialog() Line 2700  PropDialog::PropDialog()
2700        eSourceForm(_("Source form")),        eSourceForm(_("Source form")),
2701        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
2702        eSubject(_("Subject")),        eSubject(_("Subject")),
2703    #if HAS_GTKMM_STOCK
2704        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
2705    #else
2706          quitButton(_("_Close")),
2707    #endif
2708        table(2, 1),        table(2, 1),
2709        update_model(0)        m_file(NULL)
2710  {  {
2711        if (!Settings::singleton()->autoRestoreWindowDimension) {
2712            set_default_size(470, 390);
2713            set_position(Gtk::WIN_POS_MOUSE);
2714        }
2715    
2716      set_title(_("File Properties"));      set_title(_("File Properties"));
2717      eName.set_width_chars(50);      eName.set_width_chars(50);
2718    
# Line 956  PropDialog::PropDialog() Line 2733  PropDialog::PropDialog()
2733      connect(eCommissioned, &DLS::Info::Commissioned);      connect(eCommissioned, &DLS::Info::Commissioned);
2734      connect(eSubject, &DLS::Info::Subject);      connect(eSubject, &DLS::Info::Subject);
2735    
2736        table.add(eFileFormat);
2737      table.add(eName);      table.add(eName);
2738      table.add(eCreationDate);      table.add(eCreationDate);
2739      table.add(eComments);      table.add(eComments);
# Line 973  PropDialog::PropDialog() Line 2751  PropDialog::PropDialog()
2751      table.add(eCommissioned);      table.add(eCommissioned);
2752      table.add(eSubject);      table.add(eSubject);
2753    
2754    #if USE_GTKMM_GRID
2755        table.set_column_spacing(5);
2756    #else
2757      table.set_col_spacings(5);      table.set_col_spacings(5);
2758    #endif
2759    
2760      add(vbox);      add(vbox);
2761    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)
2762        table.set_margin(5);
2763    #else
2764      table.set_border_width(5);      table.set_border_width(5);
2765    #endif
2766      vbox.add(table);      vbox.add(table);
2767      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
2768      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
2769    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)
2770        buttonBox.set_margin(5);
2771    #else
2772      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
2773    #endif
2774      buttonBox.show();      buttonBox.show();
2775      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
2776      quitButton.set_can_default();      quitButton.set_can_default();
2777      quitButton.grab_focus();      quitButton.grab_focus();
2778      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
2779          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &PropDialog::hide));
2780        eFileFormat.signal_value_changed().connect(
2781            sigc::mem_fun(*this, &PropDialog::onFileFormatChanged));
2782    
2783      quitButton.show();      quitButton.show();
2784      vbox.show();      vbox.show();
2785    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2786      show_all_children();      show_all_children();
2787    #endif
2788  }  }
2789    
2790  void PropDialog::set_info(DLS::Info* info)  void PropDialog::set_file(gig::File* file)
2791  {  {
2792      this->info = info;      m_file = file;
2793      update_model++;  
2794      eName.set_value(info->Name);      // update file format version combo box
2795      eCreationDate.set_value(info->CreationDate);      const std::string sGiga = "Gigasampler/GigaStudio v";
2796      eComments.set_value(info->Comments);      const int major = file->pVersion->major;
2797      eProduct.set_value(info->Product);      std::vector<std::string> txts;
2798      eCopyright.set_value(info->Copyright);      std::vector<int> values;
2799      eArtists.set_value(info->Artists);      txts.push_back(sGiga + "2"); values.push_back(2);
2800      eGenre.set_value(info->Genre);      txts.push_back(sGiga + "3/v4"); values.push_back(3);
2801      eKeywords.set_value(info->Keywords);      if (major != 2 && major != 3) {
2802      eEngineer.set_value(info->Engineer);          txts.push_back(sGiga + ToString(major)); values.push_back(major);
2803      eTechnician.set_value(info->Technician);      }
2804      eSoftware.set_value(info->Software);      std::vector<const char*> texts;
2805      eMedium.set_value(info->Medium);      for (int i = 0; i < txts.size(); ++i) texts.push_back(txts[i].c_str());
2806      eSource.set_value(info->Source);      texts.push_back(NULL); values.push_back(0);
2807      eSourceForm.set_value(info->SourceForm);      eFileFormat.set_choices(&texts[0], &values[0]);
2808      eCommissioned.set_value(info->Commissioned);      eFileFormat.set_value(major);
     eSubject.set_value(info->Subject);  
     update_model--;  
2809  }  }
2810    
2811  sigc::signal<void>& PropDialog::signal_info_changed()  void PropDialog::onFileFormatChanged() {
2812  {      const int major = eFileFormat.get_value();
2813      return info_changed;      if (m_file) m_file->pVersion->major = major;
2814  }  }
2815    
2816  void InstrumentProps::set_IsDrum(bool value)  void PropDialog::set_info(DLS::Info* info)
2817  {  {
2818      instrument->IsDrum = value;      update(info);
2819  }  }
2820    
2821  void InstrumentProps::set_MIDIBank(uint16_t value)  
2822    void InstrumentProps::set_Name(const gig::String& name)
2823  {  {
2824      instrument->MIDIBank = value;      m->pInfo->Name = name;
2825  }  }
2826    
2827  void InstrumentProps::set_MIDIProgram(uint32_t value)  void InstrumentProps::update_name()
2828  {  {
2829      instrument->MIDIProgram = value;      update_model++;
2830        eName.set_value(m->pInfo->Name);
2831        update_model--;
2832  }  }
2833    
2834  void InstrumentProps::set_DimensionKeyRange_low(uint8_t value)  void InstrumentProps::set_IsDrum(bool value)
2835  {  {
2836      instrument->DimensionKeyRange.low = value;      m->IsDrum = value;
     if (value > instrument->DimensionKeyRange.high) {  
         eDimensionKeyRangeHigh.set_value(value);  
     }  
2837  }  }
2838    
2839  void InstrumentProps::set_DimensionKeyRange_high(uint8_t value)  void InstrumentProps::set_MIDIBank(uint16_t value)
2840  {  {
2841      instrument->DimensionKeyRange.high = value;      m->MIDIBank = value;
     if (value < instrument->DimensionKeyRange.low) {  
         eDimensionKeyRangeLow.set_value(value);  
     }  
2842  }  }
2843    
2844  InstrumentProps::InstrumentProps()  void InstrumentProps::set_MIDIProgram(uint32_t value)
     : update_model(0),  
       quitButton(Gtk::Stock::CLOSE),  
       table(2,1),  
       eName(_("Name")),  
       eIsDrum(_("Is drum")),  
       eMIDIBank(_("MIDI bank"), 0, 16383),  
       eMIDIProgram(_("MIDI program")),  
       eAttenuation(_("Attenuation"), 0, 96, 0, 1),  
       eGainPlus6(_("Gain +6dB"), eAttenuation, -6),  
       eEffectSend(_("Effect send"), 0, 65535),  
       eFineTune(_("Fine tune"), -8400, 8400),  
       ePitchbendRange(_("Pitchbend range"), 0, 12),  
       ePianoReleaseMode(_("Piano release mode")),  
       eDimensionKeyRangeLow(_("Keyswitching range low")),  
       eDimensionKeyRangeHigh(_("Keyswitching range high"))  
2845  {  {
2846        m->MIDIProgram = value;
2847    }
2848    
2849    InstrumentProps::InstrumentProps() :
2850    #if HAS_GTKMM_STOCK
2851        quitButton(Gtk::Stock::CLOSE),
2852    #else
2853        quitButton(_("_Close")),
2854    #endif
2855        table(2,1),
2856        eName(_("Name")),
2857        eIsDrum(_("Is drum")),
2858        eMIDIBank(_("MIDI bank"), 0, 16383),
2859        eMIDIProgram(_("MIDI program")),
2860        eAttenuation(_("Attenuation"), 0, 96, 0, 1),
2861        eGainPlus6(_("Gain +6dB"), eAttenuation, -6),
2862        eEffectSend(_("Effect send"), 0, 65535),
2863        eFineTune(_("Fine tune"), -8400, 8400),
2864        ePitchbendRange(_("Pitchbend range"), 0, 48),
2865        ePianoReleaseMode(_("Piano release mode")),
2866        eDimensionKeyRangeLow(_("Keyswitching range low")),
2867        eDimensionKeyRangeHigh(_("Keyswitching range high"))
2868    {
2869        if (!Settings::singleton()->autoRestoreWindowDimension) {
2870            //set_default_size(470, 390);
2871            set_position(Gtk::WIN_POS_MOUSE);
2872        }
2873    
2874      set_title(_("Instrument Properties"));      set_title(_("Instrument Properties"));
2875    
2876      eDimensionKeyRangeLow.set_tip(      eDimensionKeyRangeLow.set_tip(
# Line 1079  InstrumentProps::InstrumentProps() Line 2882  InstrumentProps::InstrumentProps()
2882            "\"keyswitching\" dimension")            "\"keyswitching\" dimension")
2883      );      );
2884    
2885        connect(eName, &InstrumentProps::set_Name);
2886      connect(eIsDrum, &InstrumentProps::set_IsDrum);      connect(eIsDrum, &InstrumentProps::set_IsDrum);
2887      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);
2888      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);
# Line 1088  InstrumentProps::InstrumentProps() Line 2892  InstrumentProps::InstrumentProps()
2892      connect(eFineTune, &gig::Instrument::FineTune);      connect(eFineTune, &gig::Instrument::FineTune);
2893      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);
2894      connect(ePianoReleaseMode, &gig::Instrument::PianoReleaseMode);      connect(ePianoReleaseMode, &gig::Instrument::PianoReleaseMode);
2895      connect(eDimensionKeyRangeLow,      connect(eDimensionKeyRangeLow, eDimensionKeyRangeHigh,
2896              &InstrumentProps::set_DimensionKeyRange_low);              &gig::Instrument::DimensionKeyRange);
2897      connect(eDimensionKeyRangeHigh,  
2898              &InstrumentProps::set_DimensionKeyRange_high);      eName.signal_value_changed().connect(sig_name_changed.make_slot());
2899    
2900    #if USE_GTKMM_GRID
2901        table.set_column_spacing(5);
2902    #else
2903      table.set_col_spacings(5);      table.set_col_spacings(5);
2904    #endif
2905    
2906      table.add(eName);      table.add(eName);
2907      table.add(eIsDrum);      table.add(eIsDrum);
# Line 1109  InstrumentProps::InstrumentProps() Line 2917  InstrumentProps::InstrumentProps()
2917      table.add(eDimensionKeyRangeHigh);      table.add(eDimensionKeyRangeHigh);
2918    
2919      add(vbox);      add(vbox);
2920    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)
2921        table.set_margin(5);
2922    #else
2923      table.set_border_width(5);      table.set_border_width(5);
2924    #endif
2925      vbox.pack_start(table);      vbox.pack_start(table);
2926      table.show();      table.show();
2927      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
2928      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
2929    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)
2930        buttonBox.set_margin(5);
2931    #else
2932      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
2933    #endif
2934      buttonBox.show();      buttonBox.show();
2935      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
2936      quitButton.set_can_default();      quitButton.set_can_default();
# Line 1125  InstrumentProps::InstrumentProps() Line 2941  InstrumentProps::InstrumentProps()
2941    
2942      quitButton.show();      quitButton.show();
2943      vbox.show();      vbox.show();
2944    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2945      show_all_children();      show_all_children();
2946    #endif
2947  }  }
2948    
2949  void InstrumentProps::set_instrument(gig::Instrument* instrument)  void InstrumentProps::set_instrument(gig::Instrument* instrument)
2950  {  {
2951      this->instrument = instrument;      update(instrument);
2952    
2953      update_model++;      update_model++;
2954      eName.set_value(instrument->pInfo->Name);      eName.set_value(instrument->pInfo->Name);
2955      eIsDrum.set_value(instrument->IsDrum);      eIsDrum.set_value(instrument->IsDrum);
2956      eMIDIBank.set_value(instrument->MIDIBank);      eMIDIBank.set_value(instrument->MIDIBank);
2957      eMIDIProgram.set_value(instrument->MIDIProgram);      eMIDIProgram.set_value(instrument->MIDIProgram);
     eAttenuation.set_value(instrument->Attenuation);  
     eGainPlus6.set_value(instrument->Attenuation);  
     eEffectSend.set_value(instrument->EffectSend);  
     eFineTune.set_value(instrument->FineTune);  
     ePitchbendRange.set_value(instrument->PitchbendRange);  
     ePianoReleaseMode.set_value(instrument->PianoReleaseMode);  
     eDimensionKeyRangeLow.set_value(instrument->DimensionKeyRange.low);  
     eDimensionKeyRangeHigh.set_value(instrument->DimensionKeyRange.high);  
2958      update_model--;      update_model--;
2959  }  }
2960    
 sigc::signal<void>& InstrumentProps::signal_instrument_changed()  
 {  
     return instrument_changed;  
 }  
2961    
2962  void MainWindow::file_changed()  void MainWindow::file_changed()
2963  {  {
# Line 1161  void MainWindow::file_changed() Line 2967  void MainWindow::file_changed()
2967      }      }
2968  }  }
2969    
2970    void MainWindow::updateSampleRefCountMap(gig::File* gig) {
2971        sample_ref_count.clear();
2972        
2973        if (!gig) return;
2974    
2975        for (gig::Instrument* instrument = gig->GetFirstInstrument(); instrument;
2976             instrument = gig->GetNextInstrument())
2977        {
2978            for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
2979                 rgn = instrument->GetNextRegion())
2980            {
2981                for (int i = 0; i < 256; ++i) {
2982                    if (!rgn->pDimensionRegions[i]) continue;
2983                    if (rgn->pDimensionRegions[i]->pSample) {
2984                        sample_ref_count[rgn->pDimensionRegions[i]->pSample]++;
2985                    }
2986                }
2987            }
2988        }
2989    }
2990    
2991  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
2992  {  {
2993      file = 0;      file = 0;
2994      set_file_is_shared(isSharedInstrument);      set_file_is_shared(isSharedInstrument);
2995    
2996      this->filename = filename ? filename : _("Unsaved Gig File");      this->filename =
2997            (filename && strlen(filename) > 0) ?
2998                filename : (!gig->GetFileName().empty()) ?
2999                    gig->GetFileName() : _("Unsaved Gig File");
3000      set_title(Glib::filename_display_basename(this->filename));      set_title(Glib::filename_display_basename(this->filename));
3001      file_has_name = filename;      file_has_name = filename;
3002      file_is_changed = false;      file_is_changed = false;
3003    
3004        propDialog.set_file(gig);
3005      propDialog.set_info(gig->pInfo);      propDialog.set_info(gig->pInfo);
3006    
3007      Gtk::MenuItem* instrument_menu =      instrument_name_connection.block();
3008          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));      int index = 0;
   
     int instrument_index = 0;  
     Gtk::RadioMenuItem::Group instrument_group;  
3009      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
3010           instrument = gig->GetNextInstrument()) {           instrument = gig->GetNextInstrument(), ++index) {
3011            Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3012            const int iScriptSlots = instrument->ScriptSlotCount();
3013    
3014          Gtk::TreeModel::iterator iter = m_refTreeModel->append();          Gtk::TreeModel::iterator iter = m_refTreeModel->append();
3015          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
3016          row[m_Columns.m_col_name] = instrument->pInfo->Name.c_str();          row[m_Columns.m_col_nr] = index;
3017            row[m_Columns.m_col_name] = name;
3018          row[m_Columns.m_col_instr] = instrument;          row[m_Columns.m_col_instr] = instrument;
3019          // create a menu item for this instrument          row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3020          Gtk::RadioMenuItem* item =  
3021              new Gtk::RadioMenuItem(instrument_group, instrument->pInfo->Name.c_str());  #if !USE_GTKMM_BUILDER
3022          instrument_menu->get_submenu()->append(*item);          add_instrument_to_menu(name);
3023          item->signal_activate().connect(  #endif
             sigc::bind(  
                 sigc::mem_fun(*this, &MainWindow::on_instrument_selection_change),  
                 instrument_index  
             )  
         );  
         instrument_index++;  
3024      }      }
3025      instrument_menu->show();      instrument_name_connection.unblock();
3026      instrument_menu->get_submenu()->show_all_children();  #if !USE_GTKMM_BUILDER
3027        uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();
3028    #endif
3029    
3030        updateSampleRefCountMap(gig);
3031    
3032      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {
3033          if (group->Name != "") {          if (group->Name != "") {
3034              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
3035              Gtk::TreeModel::Row rowGroup = *iterGroup;              Gtk::TreeModel::Row rowGroup = *iterGroup;
3036              rowGroup[m_SamplesModel.m_col_name]   = group->Name.c_str();              rowGroup[m_SamplesModel.m_col_name]   = gig_to_utf8(group->Name);
3037              rowGroup[m_SamplesModel.m_col_group]  = group;              rowGroup[m_SamplesModel.m_col_group]  = group;
3038              rowGroup[m_SamplesModel.m_col_sample] = NULL;              rowGroup[m_SamplesModel.m_col_sample] = NULL;
3039              for (gig::Sample* sample = group->GetFirstSample();              for (gig::Sample* sample = group->GetFirstSample();
# Line 1211  void MainWindow::load_gig(gig::File* gig Line 3041  void MainWindow::load_gig(gig::File* gig
3041                  Gtk::TreeModel::iterator iterSample =                  Gtk::TreeModel::iterator iterSample =
3042                      m_refSamplesTreeModel->append(rowGroup.children());                      m_refSamplesTreeModel->append(rowGroup.children());
3043                  Gtk::TreeModel::Row rowSample = *iterSample;                  Gtk::TreeModel::Row rowSample = *iterSample;
3044                  rowSample[m_SamplesModel.m_col_name]   = sample->pInfo->Name.c_str();                  rowSample[m_SamplesModel.m_col_name] =
3045                        gig_to_utf8(sample->pInfo->Name);
3046                  rowSample[m_SamplesModel.m_col_sample] = sample;                  rowSample[m_SamplesModel.m_col_sample] = sample;
3047                  rowSample[m_SamplesModel.m_col_group]  = NULL;                  rowSample[m_SamplesModel.m_col_group]  = NULL;
3048                    int refcount = sample_ref_count.count(sample) ? sample_ref_count[sample] : 0;
3049                    rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
3050                    rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
3051              }              }
3052          }          }
3053      }      }
3054        
3055        for (int i = 0; gig->GetScriptGroup(i); ++i) {
3056            gig::ScriptGroup* group = gig->GetScriptGroup(i);
3057    
3058            Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
3059            Gtk::TreeModel::Row rowGroup = *iterGroup;
3060            rowGroup[m_ScriptsModel.m_col_name]   = gig_to_utf8(group->Name);
3061            rowGroup[m_ScriptsModel.m_col_group]  = group;
3062            rowGroup[m_ScriptsModel.m_col_script] = NULL;
3063            for (int s = 0; group->GetScript(s); ++s) {
3064                gig::Script* script = group->GetScript(s);
3065    
3066                Gtk::TreeModel::iterator iterScript =
3067                    m_refScriptsTreeModel->append(rowGroup.children());
3068                Gtk::TreeModel::Row rowScript = *iterScript;
3069                rowScript[m_ScriptsModel.m_col_name] = gig_to_utf8(script->Name);
3070                rowScript[m_ScriptsModel.m_col_script] = script;
3071                rowScript[m_ScriptsModel.m_col_group]  = NULL;
3072            }
3073        }
3074        // unfold all sample groups & script groups by default
3075        m_TreeViewSamples.expand_all();
3076        m_TreeViewScripts.expand_all();
3077    
3078      file = gig;      file = gig;
3079    
3080      // select the first instrument      // select the first instrument
3081      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      m_TreeView.get_selection()->select(Gtk::TreePath("0"));
3082      tree_sel_ref->select(Gtk::TreePath("0"));  
3083        instr_props_set_instrument();
3084        gig::Instrument* instrument = get_instrument();
3085        if (instrument) {
3086            midiRules.set_instrument(instrument);
3087        }
3088  }  }
3089    
3090  void MainWindow::show_instr_props()  bool MainWindow::instr_props_set_instrument()
3091  {  {
3092      gig::Instrument* instrument = get_instrument();      instrumentProps.signal_name_changed().clear();
3093      if (instrument)  
3094      {      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
3095        if (rows.empty()) {
3096            instrumentProps.hide();
3097            return false;
3098        }
3099        //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
3100        Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
3101        if (it) {
3102            Gtk::TreeModel::Row row = *it;
3103            gig::Instrument* instrument = row[m_Columns.m_col_instr];
3104    
3105          instrumentProps.set_instrument(instrument);          instrumentProps.set_instrument(instrument);
3106    
3107            // make sure instrument tree is updated when user changes the
3108            // instrument name in instrument properties window
3109            instrumentProps.signal_name_changed().connect(
3110                sigc::bind(
3111                    sigc::mem_fun(*this,
3112                                  &MainWindow::instr_name_changed_by_instr_props),
3113                    it));
3114        } else {
3115            instrumentProps.hide();
3116        }
3117        //NOTE: explicit boolean cast required for GTKMM4 development branch here
3118        return it ? true : false;
3119    }
3120    
3121    void MainWindow::show_instr_props()
3122    {
3123        if (instr_props_set_instrument()) {
3124          instrumentProps.show();          instrumentProps.show();
3125          instrumentProps.deiconify();          instrumentProps.deiconify();
3126      }      }
3127  }  }
3128    
3129    void MainWindow::instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it)
3130    {
3131        Gtk::TreeModel::Row row = *it;
3132        Glib::ustring name = row[m_Columns.m_col_name];
3133    
3134        gig::Instrument* instrument = row[m_Columns.m_col_instr];
3135        Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
3136        if (gigname != name) {
3137            row[m_Columns.m_col_name] = gigname;
3138        }
3139    }
3140    
3141    void MainWindow::show_midi_rules()
3142    {
3143        if (gig::Instrument* instrument = get_instrument())
3144        {
3145            midiRules.set_instrument(instrument);
3146            midiRules.show();
3147            midiRules.deiconify();
3148        }
3149    }
3150    
3151    void MainWindow::show_script_slots() {
3152        if (!file) return;
3153        // get selected instrument
3154        std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
3155        if (rows.empty()) return;
3156        Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
3157        if (!it) return;
3158        Gtk::TreeModel::Row row = *it;
3159        gig::Instrument* instrument = row[m_Columns.m_col_instr];
3160        if (!instrument) return;
3161    
3162        ScriptSlots* window = new ScriptSlots;
3163        window->setInstrument(instrument);
3164        window->signal_script_slots_changed().connect(
3165            sigc::mem_fun(*this, &MainWindow::onScriptSlotsModified)
3166        );
3167        //window->reparent(*this);
3168        window->show();
3169    }
3170    
3171    void MainWindow::onScriptSlotsModified(gig::Instrument* pInstrument) {
3172        if (!pInstrument) return;
3173        const int iScriptSlots = pInstrument->ScriptSlotCount();
3174    
3175        //NOTE: This is a big mess! Sometimes GTK requires m_TreeView.get_model(), here we need m_refTreeModelFilter->get_model(), otherwise accessing children below causes an error!
3176        //Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
3177        Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();
3178    
3179        for (int i = 0; i < model->children().size(); ++i) {
3180            Gtk::TreeModel::Row row = model->children()[i];
3181            if (row[m_Columns.m_col_instr] != pInstrument) continue;
3182            row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3183            break;
3184        }
3185    
3186        // causes the sampler to reload the instrument with the new script
3187        on_sel_change();
3188    }
3189    
3190    void MainWindow::assignScript(gig::Script* pScript) {
3191        if (!pScript) {
3192            printf("assignScript() : !script\n");
3193            return;
3194        }
3195        printf("assignScript('%s')\n", pScript->Name.c_str());
3196    
3197        gig::Instrument* pInstrument = get_instrument();
3198        if (!pInstrument) {
3199            printf("!instrument\n");
3200            return;
3201        }
3202    
3203        pInstrument->AddScriptSlot(pScript);
3204    
3205        onScriptSlotsModified(pInstrument);
3206    }
3207    
3208    void MainWindow::on_action_refresh_all() {
3209        __refreshEntireGUI();
3210    }
3211    
3212  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
3213    #if USE_GLIB_ACTION
3214        bool active = false;
3215        m_actionToggleStatusBar->get_state(active);
3216        // for some reason toggle state does not change automatically
3217        active = !active;
3218        m_actionToggleStatusBar->change_state(active);
3219        if (active)
3220            m_StatusBar.show();
3221        else
3222            m_StatusBar.hide();
3223    #else
3224      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3225          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
3226      if (!item) {      if (!item) {
# Line 1245  void MainWindow::on_action_view_status_b Line 3229  void MainWindow::on_action_view_status_b
3229      }      }
3230      if (item->get_active()) m_StatusBar.show();      if (item->get_active()) m_StatusBar.show();
3231      else                    m_StatusBar.hide();      else                    m_StatusBar.hide();
3232    #endif
3233  }  }
3234    
3235  void MainWindow::on_button_release(GdkEventButton* button)  void MainWindow::on_auto_restore_win_dim() {
3236  {  #if USE_GLIB_ACTION
3237        bool active = false;
3238        m_actionToggleRestoreWinDim->get_state(active);
3239        // for some reason toggle state does not change automatically
3240        active = !active;
3241        m_actionToggleRestoreWinDim->change_state(active);
3242        Settings::singleton()->autoRestoreWindowDimension = active;
3243    #else
3244        Gtk::CheckMenuItem* item =
3245            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
3246        if (!item) {
3247            std::cerr << "/MenuBar/MenuView/AutoRestoreWinDim == NULL\n";
3248            return;
3249        }
3250        Settings::singleton()->autoRestoreWindowDimension = item->get_active();
3251    #endif
3252    }
3253    
3254    void MainWindow::on_save_with_temporary_file() {
3255    #if USE_GLIB_ACTION
3256        bool active = false;
3257        m_actionToggleSaveWithTempFile->get_state(active);
3258        // for some reason toggle state does not change automatically
3259        active = !active;
3260        m_actionToggleSaveWithTempFile->change_state(active);
3261        Settings::singleton()->saveWithTemporaryFile = active;
3262    #else
3263        Gtk::CheckMenuItem* item =
3264            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));
3265        if (!item) {
3266            std::cerr << "/MenuBar/MenuSettings/SaveWithTemporaryFile == NULL\n";
3267            return;
3268        }
3269        Settings::singleton()->saveWithTemporaryFile = item->get_active();
3270    #endif
3271    }
3272    
3273    bool MainWindow::is_copy_samples_unity_note_enabled() const {
3274    #if USE_GLIB_ACTION
3275        bool active = false;
3276        m_actionToggleCopySampleUnity->get_state(active);
3277        return active;
3278    #else
3279        Gtk::CheckMenuItem* item =
3280            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
3281        if (!item) {
3282            std::cerr << "/MenuBar/MenuEdit/CopySampleUnity == NULL\n";
3283            return true;
3284        }
3285        return item->get_active();
3286    #endif
3287    }
3288    
3289    bool MainWindow::is_copy_samples_fine_tune_enabled() const {
3290    #if USE_GLIB_ACTION
3291        bool active = false;
3292        m_actionToggleCopySampleTune->get_state(active);
3293        return active;
3294    #else
3295        Gtk::CheckMenuItem* item =
3296            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
3297        if (!item) {
3298            std::cerr << "/MenuBar/MenuEdit/CopySampleTune == NULL\n";
3299            return true;
3300        }
3301        return item->get_active();
3302    #endif
3303    }
3304    
3305    bool MainWindow::is_copy_samples_loop_enabled() const {
3306    #if USE_GLIB_ACTION
3307        bool active = false;
3308        m_actionToggleCopySampleLoop->get_state(active);
3309        return active;
3310    #else
3311        Gtk::CheckMenuItem* item =
3312            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
3313        if (!item) {
3314            std::cerr << "/MenuBar/MenuEdit/CopySampleLoop == NULL\n";
3315            return true;
3316        }
3317        return item->get_active();
3318    #endif
3319    }
3320    
3321    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
3322    bool MainWindow::on_button_release(Gdk::EventButton& _button) {
3323        GdkEventButton* button = _button.gobj();
3324    #else
3325    void MainWindow::on_button_release(GdkEventButton* button) {
3326    #endif
3327      if (button->type == GDK_2BUTTON_PRESS) {      if (button->type == GDK_2BUTTON_PRESS) {
3328          show_instr_props();          show_instr_props();
3329      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
3330            // gig v2 files have no midi rules
3331            const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
3332    #if USE_GTKMM_BUILDER
3333            m_actionMIDIRules->property_enabled() = bEnabled;
3334    #else
3335            static_cast<Gtk::MenuItem*>(
3336                uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(
3337                    bEnabled
3338                );
3339            static_cast<Gtk::MenuItem*>(
3340                uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
3341                    bEnabled
3342                );
3343    #endif
3344          popup_menu->popup(button->button, button->time);          popup_menu->popup(button->button, button->time);
3345      }      }
3346    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
3347        return false;
3348    #endif
3349    }
3350    
3351    #if !USE_GTKMM_BUILDER
3352    void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {
3353        if (item->get_active()) {
3354            const std::vector<Gtk::Widget*> children =
3355                instrument_menu->get_children();
3356            std::vector<Gtk::Widget*>::const_iterator it =
3357                find(children.begin(), children.end(), item);
3358            if (it != children.end()) {
3359                int index = it - children.begin();
3360                m_TreeView.get_selection()->select(Gtk::TreePath(ToString(index)));
3361    
3362                m_RegionChooser.set_instrument(file->GetInstrument(index));
3363            }
3364        }
3365  }  }
3366    #endif
3367    
3368  void MainWindow::on_instrument_selection_change(int index) {  void MainWindow::select_instrument(gig::Instrument* instrument) {
3369      m_RegionChooser.set_instrument(file->GetInstrument(index));      if (!instrument) return;
3370    
3371        //NOTE: This is a big mess! Sometimes GTK requires m_refTreeModelFilter->get_model(), here we need m_TreeView.get_model(), otherwise treeview selection below causes an error!
3372        Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
3373        //Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();
3374    
3375        for (int i = 0; i < model->children().size(); ++i) {
3376            Gtk::TreeModel::Row row = model->children()[i];
3377            if (row[m_Columns.m_col_instr] == instrument) {
3378                // select and show the respective instrument in the list view
3379                show_intruments_tab();
3380                m_TreeView.get_selection()->unselect_all();
3381                
3382    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)
3383                auto iterSel = model->children()[i].get_iter();
3384                m_TreeView.get_selection()->select(iterSel);
3385    #else
3386                m_TreeView.get_selection()->select(model->children()[i]);
3387    #endif
3388                std::vector<Gtk::TreeModel::Path> rows =
3389                    m_TreeView.get_selection()->get_selected_rows();
3390                if (!rows.empty())
3391                    m_TreeView.scroll_to_row(rows[0]);
3392                on_sel_change(); // the regular instrument selection change callback
3393            }
3394        }
3395  }  }
3396    
3397    /// Returns true if requested dimension region was successfully selected and scrolled to in the list view, false on error.
3398    bool MainWindow::select_dimension_region(gig::DimensionRegion* dimRgn) {
3399        gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();
3400        gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();
3401    
3402        //NOTE: This is a big mess! Sometimes GTK requires m_refTreeModelFilter->get_model(), here we need m_TreeView.get_model(), otherwise treeview selection below causes an error!
3403        Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
3404        //Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();
3405    
3406        for (int i = 0; i < model->children().size(); ++i) {
3407            Gtk::TreeModel::Row row = model->children()[i];
3408            if (row[m_Columns.m_col_instr] == pInstrument) {
3409                // select and show the respective instrument in the list view
3410                show_intruments_tab();
3411                m_TreeView.get_selection()->unselect_all();
3412    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)
3413                auto iterSel = model->children()[i].get_iter();
3414                m_TreeView.get_selection()->select(iterSel);
3415    #else
3416                m_TreeView.get_selection()->select(model->children()[i]);
3417    #endif
3418                std::vector<Gtk::TreeModel::Path> rows =
3419                    m_TreeView.get_selection()->get_selected_rows();
3420                if (!rows.empty())
3421                    m_TreeView.scroll_to_row(rows[0]);
3422                on_sel_change(); // the regular instrument selection change callback
3423    
3424                // select respective region in the region selector
3425                m_RegionChooser.set_region(pRegion);
3426    
3427                // select and show the respective dimension region in the editor
3428                //update_dimregs();
3429                if (!m_DimRegionChooser.select_dimregion(dimRgn)) return false;
3430                //dimreg_edit.set_dim_region(dimRgn);
3431    
3432                return true;
3433            }
3434        }
3435    
3436        return false;
3437    }
3438    
3439    void MainWindow::select_sample(gig::Sample* sample) {
3440        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
3441        for (int g = 0; g < model->children().size(); ++g) {
3442            Gtk::TreeModel::Row rowGroup = model->children()[g];
3443            for (int s = 0; s < rowGroup.children().size(); ++s) {
3444                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
3445                if (rowSample[m_SamplesModel.m_col_sample] == sample) {
3446                    show_samples_tab();
3447                    m_TreeViewSamples.get_selection()->unselect_all();
3448    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)
3449                    auto iterSel = rowGroup.children()[s].get_iter();
3450                    m_TreeViewSamples.get_selection()->select(iterSel);
3451    #else
3452                    m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);
3453    #endif
3454                    std::vector<Gtk::TreeModel::Path> rows =
3455                        m_TreeViewSamples.get_selection()->get_selected_rows();
3456                    if (rows.empty()) return;
3457                    m_TreeViewSamples.scroll_to_row(rows[0]);
3458                    return;
3459                }
3460            }
3461        }
3462    }
3463    
3464    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
3465    bool MainWindow::on_sample_treeview_button_release(Gdk::EventButton& _button) {
3466        GdkEventButton* button = _button.gobj();
3467    #else
3468  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
3469    #endif
3470      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
3471            // by default if Ctrl keys is pressed down, then a mouse right-click
3472            // does not select the respective row, so we must assure this
3473            // programmatically ...
3474            /*{
3475                Gtk::TreeModel::Path path;
3476                Gtk::TreeViewColumn* pColumn = NULL;
3477                int cellX, cellY;
3478                bool bSuccess = m_TreeViewSamples.get_path_at_pos(
3479                    (int)button->x, (int)button->y,
3480                    path, pColumn, cellX, cellY
3481                );
3482                if (bSuccess) {
3483                    if (m_TreeViewSamples.get_selection()->count_selected_rows() <= 0) {
3484                        printf("not selected !!!\n");
3485                        m_TreeViewSamples.get_selection()->select(path);
3486                    }
3487                }
3488            }*/
3489    
3490    #if !USE_GTKMM_BUILDER
3491          Gtk::Menu* sample_popup =          Gtk::Menu* sample_popup =
3492              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));
3493    #endif
3494    
3495          // update enabled/disabled state of sample popup items          // update enabled/disabled state of sample popup items
3496          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
3497          Gtk::TreeModel::iterator it = sel->get_selected();          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3498          bool group_selected  = false;          const int n = rows.size();
3499          bool sample_selected = false;          int nGroups  = 0;
3500          if (it) {          int nSamples = 0;
3501            for (int r = 0; r < n; ++r) {
3502                Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
3503                if (!it) continue;
3504              Gtk::TreeModel::Row row = *it;              Gtk::TreeModel::Row row = *it;
3505              group_selected  = row[m_SamplesModel.m_col_group];              if (row[m_SamplesModel.m_col_group]) nGroups++;
3506              sample_selected = row[m_SamplesModel.m_col_sample];              if (row[m_SamplesModel.m_col_sample]) nSamples++;
3507          }          }
3508    
3509    #if USE_GTKMM_BUILDER
3510            m_actionSampleProperties->property_enabled() = (n == 1);
3511            m_actionAddSample->property_enabled() = (n);
3512            m_actionAddSampleGroup->property_enabled() = (file);
3513            m_actionViewSampleRefs->property_enabled() = (nSamples == 1);
3514            m_actionRemoveSample->property_enabled() = (n);
3515            m_actionReplaceSample->property_enabled() = (nSamples == 1);
3516    #else
3517          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
3518              set_sensitive(group_selected || sample_selected);              set_sensitive(n == 1);
3519          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
3520              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
3521          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->
3522              set_sensitive(file);              set_sensitive(file);
3523            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/ShowSampleRefs"))->
3524                set_sensitive(nSamples == 1);
3525          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
3526              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
3527    #endif
3528          // show sample popup          // show sample popup
3529          sample_popup->popup(button->button, button->time);          sample_popup->popup(button->button, button->time);
3530    
3531    #if !USE_GTKMM_BUILDER
3532            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->
3533                set_sensitive(n == 1);
3534            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->
3535                set_sensitive(n);
3536            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddGroup"))->
3537                set_sensitive(file);
3538            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/ShowSampleRefs"))->
3539                set_sensitive(nSamples == 1);
3540            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->
3541                set_sensitive(n);
3542    #endif
3543      }      }
3544        
3545    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
3546        return false;
3547    #endif
3548  }  }
3549    
3550  void MainWindow::on_action_add_instrument() {  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
3551      static int __instrument_indexer = 0;  bool MainWindow::on_script_treeview_button_release(Gdk::EventButton& _button) {
3552      if (!file) return;      GdkEventButton* button = _button.gobj();
3553      gig::Instrument* instrument = file->AddInstrument();  #else
3554      __instrument_indexer++;  void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {
3555      instrument->pInfo->Name =  #endif
3556          _("Unnamed Instrument ") + ToString(__instrument_indexer);      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
3557    #if !USE_GTKMM_BUILDER
3558            Gtk::Menu* script_popup =
3559                dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));
3560    #endif
3561            // update enabled/disabled state of sample popup items
3562            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
3563            Gtk::TreeModel::iterator it = sel->get_selected();
3564            bool group_selected  = false;
3565            bool script_selected = false;
3566            if (it) {
3567                Gtk::TreeModel::Row row = *it;
3568                group_selected  = row[m_ScriptsModel.m_col_group];
3569                script_selected = row[m_ScriptsModel.m_col_script];
3570            }
3571    #if USE_GTKMM_BUILDER
3572            m_actionAddScript->property_enabled() = (group_selected || script_selected);
3573            m_actionAddScriptGroup->property_enabled() = (file);
3574            m_actionEditScript->property_enabled() = (script_selected);
3575            m_actionRemoveScript->property_enabled() = (group_selected || script_selected);
3576    #else
3577            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->
3578                set_sensitive(group_selected || script_selected);
3579            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->
3580                set_sensitive(file);
3581            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/EditScript"))->
3582                set_sensitive(script_selected);    
3583            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->
3584                set_sensitive(group_selected || script_selected);
3585    #endif
3586            // show sample popup
3587            script_popup->popup(button->button, button->time);
3588    
3589    #if !USE_GTKMM_BUILDER
3590            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->
3591                set_sensitive(group_selected || script_selected);
3592            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->
3593                set_sensitive(file);
3594            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/EditScript"))->
3595                set_sensitive(script_selected);    
3596            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->
3597                set_sensitive(group_selected || script_selected);
3598    #endif
3599        }
3600    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
3601        return false;
3602    #endif
3603    }
3604    
3605    void MainWindow::updateScriptListOfMenu() {
3606        // remove all entries from "Assign Script" menu
3607        {
3608            const std::vector<Gtk::Widget*> children = assign_scripts_menu->get_children();
3609            for (int i = 0; i < children.size(); ++i) {
3610                Gtk::Widget* child = children[i];
3611                assign_scripts_menu->remove(*child);
3612                delete child;
3613            }
3614        }
3615    
3616        int iTotalScripts = 0;
3617    
3618        if (!file) goto noScripts;
3619    
3620        // add all configured macros as menu items to the "Macro" menu
3621        for (int iGroup = 0; file->GetScriptGroup(iGroup); ++iGroup) {
3622            gig::ScriptGroup* pGroup = file->GetScriptGroup(iGroup);
3623            for (int iScript = 0; pGroup->GetScript(iScript); ++iScript, ++iTotalScripts) {
3624                gig::Script* pScript = pGroup->GetScript(iScript);
3625                std::string name = pScript->Name;
3626    
3627                Gtk::MenuItem* item = new Gtk::MenuItem(name);
3628                item->signal_activate().connect(
3629                    sigc::bind(
3630                        sigc::mem_fun(*this, &MainWindow::assignScript), pScript
3631                    )
3632                );
3633                assign_scripts_menu->append(*item);
3634                item->set_accel_path("<Scripts>/script_" + ToString(iTotalScripts));
3635                //item->set_tooltip_text(comment);
3636            }
3637        }
3638    
3639        noScripts:
3640    
3641        // if there are no macros configured at all, then show a dummy entry instead
3642        if (!iTotalScripts) {
3643            Gtk::MenuItem* item = new Gtk::MenuItem(_("No Scripts"));
3644            item->set_sensitive(false);
3645            assign_scripts_menu->append(*item);
3646        }
3647    
3648    #if HAS_GTKMM_SHOW_ALL_CHILDREN
3649        assign_scripts_menu->show_all_children();
3650    #endif
3651    }
3652    
3653    #if !USE_GTKMM_BUILDER
3654    Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
3655        const Glib::ustring& name, int position) {
3656    
3657        Gtk::RadioMenuItem::Group instrument_group;
3658        const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
3659        if (!children.empty()) {
3660            instrument_group =
3661                static_cast<Gtk::RadioMenuItem*>(children[0])->get_group();
3662        }
3663        Gtk::RadioMenuItem* item =
3664            new Gtk::RadioMenuItem(instrument_group, name);
3665        if (position < 0) {
3666            instrument_menu->append(*item);
3667        } else {
3668            instrument_menu->insert(*item, position);
3669        }
3670        item->show();
3671        item->signal_activate().connect(
3672            sigc::bind(
3673                sigc::mem_fun(*this, &MainWindow::on_instrument_selection_change),
3674                item));
3675        return item;
3676    }
3677    #endif
3678    
3679    #if !USE_GTKMM_BUILDER
3680    void MainWindow::remove_instrument_from_menu(int index) {
3681        const std::vector<Gtk::Widget*> children =
3682            instrument_menu->get_children();
3683        Gtk::Widget* child = children[index];
3684        instrument_menu->remove(*child);
3685        delete child;
3686    }
3687    #endif
3688    
3689    void MainWindow::add_instrument(gig::Instrument* instrument) {
3690        const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3691    
3692      // update instrument tree view      // update instrument tree view
3693        instrument_name_connection.block();
3694      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
3695      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
3696      rowInstr[m_Columns.m_col_name] = instrument->pInfo->Name.c_str();      rowInstr[m_Columns.m_col_nr] = m_refTreeModel->children().size() - 1;
3697        rowInstr[m_Columns.m_col_name] = name;
3698      rowInstr[m_Columns.m_col_instr] = instrument;      rowInstr[m_Columns.m_col_instr] = instrument;
3699        rowInstr[m_Columns.m_col_scripts] = "";
3700        instrument_name_connection.unblock();
3701    
3702    #if !USE_GTKMM_BUILDER
3703        add_instrument_to_menu(name);
3704    #endif
3705        select_instrument(instrument);
3706      file_changed();      file_changed();
3707  }  }
3708    
3709    void MainWindow::on_action_add_instrument() {
3710        static int __instrument_indexer = 0;
3711        if (!file) return;
3712        gig::Instrument* instrument = file->AddInstrument();
3713        __instrument_indexer++;
3714        instrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument ") +
3715                                                ToString(__instrument_indexer));
3716    
3717        add_instrument(instrument);
3718    }
3719    
3720    void MainWindow::on_action_duplicate_instrument() {
3721        if (!file) return;
3722    
3723        // retrieve the currently selected instrument
3724        // (being the original instrument to be duplicated)
3725        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
3726        std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3727        for (int r = 0; r < rows.size(); ++r) {
3728            Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
3729            if (it) {
3730                Gtk::TreeModel::Row row = *it;
3731                gig::Instrument* instrOrig = row[m_Columns.m_col_instr];
3732                if (instrOrig) {
3733                    // duplicate the orginal instrument
3734                    gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
3735                    instrNew->pInfo->Name =
3736                        instrOrig->pInfo->Name +
3737                        gig_from_utf8(Glib::ustring(" (") + _("Copy") + ")");
3738    
3739                    add_instrument(instrNew);
3740                }
3741            }
3742        }
3743    }
3744    
3745  void MainWindow::on_action_remove_instrument() {  void MainWindow::on_action_remove_instrument() {
3746      if (!file) return;      if (!file) return;
3747      if (file_is_shared) {      if (file_is_shared) {
# Line 1316  void MainWindow::on_action_remove_instru Line 3756  void MainWindow::on_action_remove_instru
3756      }      }
3757    
3758      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
3759      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3760      if (it) {      for (int r = rows.size() - 1; r >= 0; --r) {
3761            Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
3762            if (!it) continue;
3763          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
3764          gig::Instrument* instr = row[m_Columns.m_col_instr];          gig::Instrument* instr = row[m_Columns.m_col_instr];
3765          try {          try {
3766                Gtk::TreePath path(it);
3767                int index = path[0];
3768    
3769              // remove instrument from the gig file              // remove instrument from the gig file
3770              if (instr) file->DeleteInstrument(instr);              if (instr) file->DeleteInstrument(instr);
             // remove respective row from instruments tree view  
             m_refTreeModel->erase(it);  
3771              file_changed();              file_changed();
3772    
3773    #if !USE_GTKMM_BUILDER
3774                remove_instrument_from_menu(index);
3775    #endif
3776    
3777                // remove row from instruments tree view
3778                m_refTreeModel->erase(it);
3779                // update "Nr" column of all instrument rows
3780                {
3781                    int index = 0;
3782                    for (Gtk::TreeModel::iterator it = m_refTreeModel->children().begin();
3783                         it != m_refTreeModel->children().end(); ++it, ++index)
3784                    {
3785                        Gtk::TreeModel::Row row = *it;
3786                        row[m_Columns.m_col_nr] = index;
3787                    }
3788                }
3789    
3790    #if GTKMM_MAJOR_VERSION < 3
3791                // select another instrument (in gtk3 this is done
3792                // automatically)
3793                if (!m_refTreeModel->children().empty()) {
3794                    if (index == m_refTreeModel->children().size()) {
3795                        index--;
3796                    }
3797                    m_TreeView.get_selection()->select(
3798                        Gtk::TreePath(ToString(index)));
3799                }
3800    #endif
3801                instr_props_set_instrument();
3802                instr = get_instrument();
3803                if (instr) {
3804                    midiRules.set_instrument(instr);
3805                } else {
3806                    midiRules.hide();
3807                }
3808          } catch (RIFF::Exception e) {          } catch (RIFF::Exception e) {
3809              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
3810              msg.run();              msg.run();
# Line 1341  void MainWindow::on_action_sample_proper Line 3820  void MainWindow::on_action_sample_proper
3820      msg.run();      msg.run();
3821  }  }
3822    
3823    void MainWindow::on_action_add_script_group() {
3824        static int __script_indexer = 0;
3825        if (!file) return;
3826        gig::ScriptGroup* group = file->AddScriptGroup();
3827        group->Name = gig_from_utf8(_("Unnamed Group"));
3828        if (__script_indexer) group->Name += " " + ToString(__script_indexer);
3829        __script_indexer++;
3830        // update sample tree view
3831        Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
3832        Gtk::TreeModel::Row rowGroup = *iterGroup;
3833        rowGroup[m_ScriptsModel.m_col_name] = gig_to_utf8(group->Name);
3834        rowGroup[m_ScriptsModel.m_col_script] = NULL;
3835        rowGroup[m_ScriptsModel.m_col_group] = group;
3836        file_changed();
3837    }
3838    
3839    void MainWindow::on_action_add_script() {
3840        if (!file) return;
3841        // get selected group
3842        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
3843        Gtk::TreeModel::iterator it = sel->get_selected();
3844        if (!it) return;
3845        Gtk::TreeModel::Row row = *it;
3846        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
3847        if (!group) { // not a group, but a script is selected (probably)
3848            gig::Script* script = row[m_ScriptsModel.m_col_script];
3849            if (!script) return;
3850            it = row.parent(); // resolve parent (that is the script's group)
3851            if (!it) return;
3852            row = *it;
3853            group = row[m_ScriptsModel.m_col_group];
3854            if (!group) return;
3855        }
3856    
3857        // add a new script to the .gig file
3858        gig::Script* script = group->AddScript();    
3859        Glib::ustring name = _("Unnamed Script");
3860        script->Name = gig_from_utf8(name);
3861    
3862        // add script to the tree view
3863        Gtk::TreeModel::iterator iterScript =
3864            m_refScriptsTreeModel->append(row.children());
3865        Gtk::TreeModel::Row rowScript = *iterScript;
3866        rowScript[m_ScriptsModel.m_col_name] = name;
3867        rowScript[m_ScriptsModel.m_col_script] = script;
3868        rowScript[m_ScriptsModel.m_col_group]  = NULL;
3869    
3870        // unfold group of new script item in treeview
3871        Gtk::TreeModel::Path path(iterScript);
3872        m_TreeViewScripts.expand_to_path(path);
3873    }
3874    
3875    void MainWindow::on_action_edit_script() {
3876        if (!file) return;
3877        // get selected script
3878        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
3879        Gtk::TreeModel::iterator it = sel->get_selected();
3880        if (!it) return;
3881        Gtk::TreeModel::Row row = *it;
3882        gig::Script* script = row[m_ScriptsModel.m_col_script];
3883        if (!script) return;
3884    
3885        ScriptEditor* editor = new ScriptEditor;
3886        editor->signal_script_to_be_changed.connect(
3887            signal_script_to_be_changed.make_slot()
3888        );
3889        editor->signal_script_changed.connect(
3890            signal_script_changed.make_slot()
3891        );
3892        editor->setScript(script);
3893        //editor->reparent(*this);
3894        editor->show();
3895    }
3896    
3897    void MainWindow::on_action_remove_script() {
3898        if (!file) return;
3899        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
3900        Gtk::TreeModel::iterator it = sel->get_selected();
3901        if (it) {
3902            Gtk::TreeModel::Row row = *it;
3903            gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
3904            gig::Script* script     = row[m_ScriptsModel.m_col_script];
3905            Glib::ustring name      = row[m_ScriptsModel.m_col_name];
3906            try {
3907                // remove script group or script from the gig file
3908                if (group) {
3909                    // notify everybody that we're going to remove these samples
3910    //TODO:         scripts_to_be_removed_signal.emit(members);
3911                    // delete the group in the .gig file including the
3912                    // samples that belong to the group
3913                    file->DeleteScriptGroup(group);
3914                    // notify that we're done with removal
3915    //TODO:         scripts_removed_signal.emit();
3916                    file_changed();
3917                } else if (script) {
3918                    // notify everybody that we're going to remove this sample
3919    //TODO:         std::list<gig::Script*> lscripts;
3920    //TODO:         lscripts.push_back(script);
3921    //TODO:         scripts_to_be_removed_signal.emit(lscripts);
3922                    // remove sample from the .gig file
3923                    script->GetGroup()->DeleteScript(script);
3924                    // notify that we're done with removal
3925    //TODO:         scripts_removed_signal.emit();
3926                    dimreg_changed();
3927                    file_changed();
3928                }
3929                // remove respective row(s) from samples tree view
3930                m_refScriptsTreeModel->erase(it);
3931            } catch (RIFF::Exception e) {
3932                // pretend we're done with removal (i.e. to avoid dead locks)
3933    //TODO:     scripts_removed_signal.emit();
3934                // show error message
3935                Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
3936                msg.run();
3937            }
3938        }
3939    }
3940    
3941  void MainWindow::on_action_add_group() {  void MainWindow::on_action_add_group() {
3942      static int __sample_indexer = 0;      static int __sample_indexer = 0;
3943      if (!file) return;      if (!file) return;
3944      gig::Group* group = file->AddGroup();      gig::Group* group = file->AddGroup();
3945      group->Name = _("Unnamed Group");      group->Name = gig_from_utf8(_("Unnamed Group"));
3946      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
3947      __sample_indexer++;      __sample_indexer++;
3948      // update sample tree view      // update sample tree view
3949      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
3950      Gtk::TreeModel::Row rowGroup = *iterGroup;      Gtk::TreeModel::Row rowGroup = *iterGroup;
3951      rowGroup[m_SamplesModel.m_col_name] = group->Name.c_str();      rowGroup[m_SamplesModel.m_col_name] = gig_to_utf8(group->Name);
3952      rowGroup[m_SamplesModel.m_col_sample] = NULL;      rowGroup[m_SamplesModel.m_col_sample] = NULL;
3953      rowGroup[m_SamplesModel.m_col_group] = group;      rowGroup[m_SamplesModel.m_col_group] = group;
3954      file_changed();      file_changed();
3955  }  }
3956    
3957    void MainWindow::on_action_replace_sample() {
3958        add_or_replace_sample(true);
3959    }
3960    
3961  void MainWindow::on_action_add_sample() {  void MainWindow::on_action_add_sample() {
3962        add_or_replace_sample(false);
3963    }
3964    
3965    void MainWindow::add_or_replace_sample(bool replace) {
3966      if (!file) return;      if (!file) return;
3967      // get selected group  
3968        // get selected group (and probably selected sample)
3969      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
3970      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
3971        if (rows.empty()) return;
3972        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
3973      if (!it) return;      if (!it) return;
3974      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
3975        gig::Sample* sample = NULL;
3976      gig::Group* group = row[m_SamplesModel.m_col_group];      gig::Group* group = row[m_SamplesModel.m_col_group];
3977      if (!group) { // not a group, but a sample is selected (probably)      if (!group) { // not a group, but a sample is selected (probably)
3978          gig::Sample* sample = row[m_SamplesModel.m_col_sample];          if (replace) sample = row[m_SamplesModel.m_col_sample];
3979          if (!sample) return;          if (!row[m_SamplesModel.m_col_sample]) return;
3980          it = row.parent(); // resolve parent (that is the sample's group)          it = row.parent(); // resolve parent (that is the sample's group)
3981          if (!it) return;          if (!it) return;
3982          row = *it;          if (!replace) row = *it;
3983          group = row[m_SamplesModel.m_col_group];          group = (*it)[m_SamplesModel.m_col_group];
3984          if (!group) return;          if (!group) return;
3985      }      }
3986        if (replace && !sample) return;
3987    
3988      // show 'browse for file' dialog      // show 'browse for file' dialog
3989      Gtk::FileChooserDialog dialog(*this, _("Add Sample(s)"));      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));
3990    #if HAS_GTKMM_STOCK
3991      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
3992      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
3993      dialog.set_select_multiple(true);  #else
3994      Gtk::FileFilter soundfilter; // matches all file types supported by libsndfile      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
3995        dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
3996    #endif
3997        dialog.set_select_multiple(!replace); // allow multi audio file selection only when adding new samples, does not make sense when replacing a specific sample
3998    
3999        // matches all file types supported by libsndfile
4000    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
4001        Gtk::FileFilter soundfilter;
4002    #else
4003        Glib::RefPtr<Gtk::FileFilter> soundfilter = Gtk::FileFilter::create();
4004    #endif
4005      const char* const supportedFileTypes[] = {      const char* const supportedFileTypes[] = {
4006          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",          "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",
4007          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",          "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",
# Line 1387  void MainWindow::on_action_add_sample() Line 4009  void MainWindow::on_action_add_sample()
4009          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",          "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",
4010          "*.caf", "*.CAF", NULL          "*.caf", "*.CAF", NULL
4011      };      };
4012        const char* soundfiles = _("Sound Files");
4013        const char* allfiles = _("All Files");
4014    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
4015      for (int i = 0; supportedFileTypes[i]; i++)      for (int i = 0; supportedFileTypes[i]; i++)
4016          soundfilter.add_pattern(supportedFileTypes[i]);          soundfilter.add_pattern(supportedFileTypes[i]);
4017      soundfilter.set_name(_("Sound Files"));      soundfilter.set_name(soundfiles);
4018      Gtk::FileFilter allpassfilter; // matches every file  
4019        // matches every file
4020        Gtk::FileFilter allpassfilter;
4021      allpassfilter.add_pattern("*.*");      allpassfilter.add_pattern("*.*");
4022      allpassfilter.set_name(_("All Files"));      allpassfilter.set_name(allfiles);
4023    #else
4024        for (int i = 0; supportedFileTypes[i]; i++)
4025            soundfilter->add_pattern(supportedFileTypes[i]);
4026        soundfilter->set_name(soundfiles);
4027    
4028        // matches every file
4029        Glib::RefPtr<Gtk::FileFilter> allpassfilter = Gtk::FileFilter::create();
4030        allpassfilter->add_pattern("*.*");
4031        allpassfilter->set_name(allfiles);
4032    #endif
4033      dialog.add_filter(soundfilter);      dialog.add_filter(soundfilter);
4034      dialog.add_filter(allpassfilter);      dialog.add_filter(allpassfilter);
4035      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 1401  void MainWindow::on_action_add_sample() Line 4038  void MainWindow::on_action_add_sample()
4038      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
4039          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
4040          Glib::ustring error_files;          Glib::ustring error_files;
4041          Glib::SListHandle<Glib::ustring> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
4042          for (Glib::SListHandle<Glib::ustring>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
4043               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
4044              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
4045              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file information
4046              SF_INFO info;              SF_INFO info;
4047              info.format = 0;              info.format = 0;
4048              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
# Line 1428  void MainWindow::on_action_add_sample() Line 4065  void MainWindow::on_action_add_sample()
4065                          sf_close(hFile); // close sound file                          sf_close(hFile); // close sound file
4066                          throw std::string(_("format not supported")); // unsupported subformat (yet?)                          throw std::string(_("format not supported")); // unsupported subformat (yet?)
4067                  }                  }
4068                  // add a new sample to the .gig file                  // add a new sample to the .gig file (if adding is requested actually)
4069                  gig::Sample* sample = file->AddSample();                  if (!replace) sample = file->AddSample();
4070                  // file name without path                  // file name without path
4071                  Glib::ustring filename = Glib::filename_display_basename(*iter);                  Glib::ustring filename = Glib::filename_display_basename(*iter);
4072                  // remove file extension if there is one                  // remove file extension if there is one
# Line 1439  void MainWindow::on_action_add_sample() Line 4076  void MainWindow::on_action_add_sample()
4076                          break;                          break;
4077                      }                      }
4078                  }                  }
4079                  sample->pInfo->Name = filename;                  sample->pInfo->Name = gig_from_utf8(filename);
4080                  sample->Channels = info.channels;                  sample->Channels = info.channels;
4081                  sample->BitDepth = bitdepth;                  sample->BitDepth = bitdepth;
4082                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;
# Line 1453  void MainWindow::on_action_add_sample() Line 4090  void MainWindow::on_action_add_sample()
4090                                 &instrument, sizeof(instrument)) != SF_FALSE)                                 &instrument, sizeof(instrument)) != SF_FALSE)
4091                  {                  {
4092                      sample->MIDIUnityNote = instrument.basenote;                      sample->MIDIUnityNote = instrument.basenote;
4093                        sample->FineTune      = instrument.detune;
4094    
 #if HAVE_SF_INSTRUMENT_LOOPS  
4095                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {
4096                          sample->Loops = 1;                          sample->Loops = 1;
4097    
# Line 1474  void MainWindow::on_action_add_sample() Line 4111  void MainWindow::on_action_add_sample()
4111                          sample->LoopPlayCount = instrument.loops[0].count;                          sample->LoopPlayCount = instrument.loops[0].count;
4112                          sample->LoopSize = sample->LoopEnd - sample->LoopStart + 1;                          sample->LoopSize = sample->LoopEnd - sample->LoopStart + 1;
4113                      }                      }
 #endif  
4114                  }                  }
4115    
4116                  // schedule resizing the sample (which will be done                  // schedule resizing the sample (which will be done
4117                  // physically when File::Save() is called)                  // physically when File::Save() is called)
4118                  sample->Resize(info.frames);                  sample->Resize(info.frames);
4119                  // make sure sample is part of the selected group                  // make sure sample is part of the selected group
4120                  group->AddSample(sample);                  if (!replace) group->AddSample(sample);
4121                  // schedule that physical resize and sample import                  // schedule that physical resize and sample import
4122                  // (data copying), performed when "Save" is requested                  // (data copying), performed when "Save" is requested
4123                  SampleImportItem sched_item;                  SampleImportItem sched_item;
4124                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
4125                  sched_item.sample_path = *iter;                  sched_item.sample_path = *iter;
4126                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue[sample] = sched_item;
4127                  // add sample to the tree view                  // add sample to the tree view
4128                  Gtk::TreeModel::iterator iterSample =                  if (replace) {
4129                      m_refSamplesTreeModel->append(row.children());                      row[m_SamplesModel.m_col_name] = gig_to_utf8(sample->pInfo->Name);
4130                  Gtk::TreeModel::Row rowSample = *iterSample;                  } else {
4131                  rowSample[m_SamplesModel.m_col_name]   = filename;                      Gtk::TreeModel::iterator iterSample =
4132                  rowSample[m_SamplesModel.m_col_sample] = sample;                          m_refSamplesTreeModel->append(row.children());
4133                  rowSample[m_SamplesModel.m_col_group]  = NULL;                      Gtk::TreeModel::Row rowSample = *iterSample;
4134                        rowSample[m_SamplesModel.m_col_name] =
4135                            gig_to_utf8(sample->pInfo->Name);
4136                        rowSample[m_SamplesModel.m_col_sample] = sample;
4137                        rowSample[m_SamplesModel.m_col_group]  = NULL;
4138                    }
4139                  // close sound file                  // close sound file
4140                  sf_close(hFile);                  sf_close(hFile);
4141                  file_changed();                  file_changed();
4142              } catch (std::string what) { // remember the files that made trouble (and their cause)              } catch (std::string what) { // remember the files that made trouble (and their cause)
4143                  if (error_files.size()) error_files += "\n";                  if (!error_files.empty()) error_files += "\n";
4144                  error_files += *iter += " (" + what + ")";                  error_files += *iter += " (" + what + ")";
4145              }              }
4146          }          }
4147          // 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
4148          if (error_files.size()) {          if (!error_files.empty()) {
4149              Glib::ustring txt = _("Could not add the following sample(s):\n") + error_files;              Glib::ustring txt =
4150                    (replace
4151                        ? _("Failed to replace sample with:\n")
4152                        : _("Could not add the following sample(s):\n"))
4153                    + error_files;
4154              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
4155              msg.run();              msg.run();
4156          }          }
# Line 1517  void MainWindow::on_action_replace_all_s Line 4162  void MainWindow::on_action_replace_all_s
4162      if (!file) return;      if (!file) return;
4163      Gtk::FileChooserDialog dialog(*this, _("Select Folder"),      Gtk::FileChooserDialog dialog(*this, _("Select Folder"),
4164                                    Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);                                    Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
4165      view::WrapLabel description(      const char* str =
4166          _("This is a very specific function. It tries to replace all samples "          _("This is a very specific function. It tries to replace all samples "
4167            "in the current gig file by samples located in the chosen "            "in the current gig file by samples located in the chosen "
4168            "directory.\n\n"            "directory.\n\n"
# Line 1531  void MainWindow::on_action_replace_all_s Line 4176  void MainWindow::on_action_replace_all_s
4176            "the sample in the gig file accordingly. If you don't need an "            "the sample in the gig file accordingly. If you don't need an "
4177            "extension, blank the field below. Any gig sample where no "            "extension, blank the field below. Any gig sample where no "
4178            "appropriate sample file could be found will be reported and left "            "appropriate sample file could be found will be reported and left "
4179            "untouched.\n")            "untouched.\n");
4180      );  #if GTKMM_MAJOR_VERSION < 3
4181      Gtk::HBox entryArea;      view::WrapLabel description(str);
4182      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_RIGHT);  #else
4183        Gtk::Label description(str);
4184        description.set_line_wrap();
4185    #endif
4186        HBox entryArea;
4187        Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
4188      Gtk::Entry postfixEntryBox;      Gtk::Entry postfixEntryBox;
4189      postfixEntryBox.set_text(".wav");      postfixEntryBox.set_text(".wav");
4190      entryArea.pack_start(entryLabel);      entryArea.pack_start(entryLabel);
4191      entryArea.pack_start(postfixEntryBox);      entryArea.pack_start(postfixEntryBox);
4192    #if USE_GTKMM_BOX
4193        dialog.get_content_area()->pack_start(description, Gtk::PACK_SHRINK);
4194        dialog.get_content_area()->pack_start(entryArea, Gtk::PACK_SHRINK);
4195    #else
4196      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);
4197      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
4198    #endif
4199      description.show();      description.show();
4200    
4201    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4202      entryArea.show_all();      entryArea.show_all();
4203    #else
4204        entryArea.show();
4205    #endif
4206    
4207    #if HAS_GTKMM_STOCK
4208      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4209    #else
4210        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4211    #endif
4212      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
4213      dialog.set_select_multiple(false);      dialog.set_select_multiple(false);
4214      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 1553  void MainWindow::on_action_replace_all_s Line 4218  void MainWindow::on_action_replace_all_s
4218      {      {
4219          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
4220          Glib::ustring error_files;          Glib::ustring error_files;
4221          Glib::ustring folder = dialog.get_filename();          std::string folder = dialog.get_filename();
4222          for (gig::Sample* sample = file->GetFirstSample();          for (gig::Sample* sample = file->GetFirstSample();
4223               sample; sample = file->GetNextSample())               sample; sample = file->GetNextSample())
4224          {          {
4225              std::string filename =              std::string filename =
4226                  folder + G_DIR_SEPARATOR_S + sample->pInfo->Name +                  folder + G_DIR_SEPARATOR_S +
4227                  postfixEntryBox.get_text().raw();                  Glib::filename_from_utf8(gig_to_utf8(sample->pInfo->Name) +
4228                                             postfixEntryBox.get_text());
4229              SF_INFO info;              SF_INFO info;
4230              info.format = 0;              info.format = 0;
4231              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
4232              try              try
4233              {              {
4234                  if (!hFile) throw std::string(_("could not open file"));                  if (!hFile) throw std::string(_("could not open file"));
                 int bitdepth;  
4235                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
4236                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
4237                      case SF_FORMAT_PCM_16:                      case SF_FORMAT_PCM_16:
4238                      case SF_FORMAT_PCM_U8:                      case SF_FORMAT_PCM_U8:
                         bitdepth = 16;  
                         break;  
4239                      case SF_FORMAT_PCM_24:                      case SF_FORMAT_PCM_24:
4240                      case SF_FORMAT_PCM_32:                      case SF_FORMAT_PCM_32:
4241                      case SF_FORMAT_FLOAT:                      case SF_FORMAT_FLOAT:
4242                      case SF_FORMAT_DOUBLE:                      case SF_FORMAT_DOUBLE:
                         bitdepth = 24;  
4243                          break;                          break;
4244                      default:                      default:
4245                          sf_close(hFile);                          sf_close(hFile);
# Line 1586  void MainWindow::on_action_replace_all_s Line 4248  void MainWindow::on_action_replace_all_s
4248                  SampleImportItem sched_item;                  SampleImportItem sched_item;
4249                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
4250                  sched_item.sample_path = filename;                  sched_item.sample_path = filename;
4251                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue[sample] = sched_item;
4252                  sf_close(hFile);                  sf_close(hFile);
4253                  file_changed();                  file_changed();
4254              }              }
4255              catch (std::string what)              catch (std::string what)
4256              {              {
4257                  if (error_files.size()) error_files += "\n";                  if (!error_files.empty()) error_files += "\n";
4258                      error_files += filename += " (" + what + ")";                  error_files += Glib::filename_to_utf8(filename) +
4259                        " (" + what + ")";
4260              }              }
4261          }          }
4262          // 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
4263          if (error_files.size()) {          if (!error_files.empty()) {
4264              Glib::ustring txt =              Glib::ustring txt =
4265                  _("Could not replace the following sample(s):\n") + error_files;                  _("Could not replace the following sample(s):\n") + error_files;
4266              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
# Line 1609  void MainWindow::on_action_replace_all_s Line 4272  void MainWindow::on_action_replace_all_s
4272  void MainWindow::on_action_remove_sample() {  void MainWindow::on_action_remove_sample() {
4273      if (!file) return;      if (!file) return;
4274      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
4275      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4276      if (it) {      for (int r = rows.size() - 1; r >= 0; --r) {
4277            Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
4278            if (!it) continue;
4279          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
4280          gig::Group* group   = row[m_SamplesModel.m_col_group];          gig::Group* group   = row[m_SamplesModel.m_col_group];
4281          gig::Sample* sample = row[m_SamplesModel.m_col_sample];          gig::Sample* sample = row[m_SamplesModel.m_col_sample];
# Line 1618  void MainWindow::on_action_remove_sample Line 4283  void MainWindow::on_action_remove_sample
4283          try {          try {
4284              // remove group or sample from the gig file              // remove group or sample from the gig file
4285              if (group) {              if (group) {
4286                  // temporarily remember the samples that bolong to                  // temporarily remember the samples that belong to
4287                  // that group (we need that to clean the queue)                  // that group (we need that to clean the queue)
4288                  std::list<gig::Sample*> members;                  std::list<gig::Sample*> members;
4289                  for (gig::Sample* pSample = group->GetFirstSample();                  for (gig::Sample* pSample = group->GetFirstSample();
# Line 1635  void MainWindow::on_action_remove_sample Line 4300  void MainWindow::on_action_remove_sample
4300                  // if sample(s) were just previously added, remove                  // if sample(s) were just previously added, remove
4301                  // them from the import queue                  // them from the import queue
4302                  for (std::list<gig::Sample*>::iterator member = members.begin();                  for (std::list<gig::Sample*>::iterator member = members.begin();
4303                       member != members.end(); ++member) {                       member != members.end(); ++member)
4304                      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();                  {
4305                           iter != m_SampleImportQueue.end(); ++iter) {                      if (m_SampleImportQueue.count(*member)) {
4306                          if ((*iter).gig_sample == *member) {                          printf("Removing previously added sample '%s' from group '%s'\n",
4307                              printf("Removing previously added sample '%s' from group '%s'\n",                                 m_SampleImportQueue[sample].sample_path.c_str(), name.c_str());
4308                                     (*iter).sample_path.c_str(), name.c_str());                          m_SampleImportQueue.erase(*member);
                             m_SampleImportQueue.erase(iter);  
                             break;  
                         }  
4309                      }                      }
4310                  }                  }
4311                  file_changed();                  file_changed();
# Line 1658  void MainWindow::on_action_remove_sample Line 4320  void MainWindow::on_action_remove_sample
4320                  samples_removed_signal.emit();                  samples_removed_signal.emit();
4321                  // if sample was just previously added, remove it from                  // if sample was just previously added, remove it from
4322                  // the import queue                  // the import queue
4323                  for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();                  if (m_SampleImportQueue.count(sample)) {
4324                       iter != m_SampleImportQueue.end(); ++iter) {                      printf("Removing previously added sample '%s'\n",
4325                      if ((*iter).gig_sample == sample) {                             m_SampleImportQueue[sample].sample_path.c_str());
4326                          printf("Removing previously added sample '%s'\n",                      m_SampleImportQueue.erase(sample);
                                (*iter).sample_path.c_str());  
                         m_SampleImportQueue.erase(iter);  
                         break;  
                     }  
4327                  }                  }
4328                  dimreg_changed();                  dimreg_changed();
4329                  file_changed();                  file_changed();
# Line 1682  void MainWindow::on_action_remove_sample Line 4340  void MainWindow::on_action_remove_sample
4340      }      }
4341  }  }
4342    
4343    void MainWindow::on_action_remove_unused_samples() {
4344        if (!file) return;
4345    
4346        // collect all samples that are not referenced by any instrument
4347        std::list<gig::Sample*> lsamples;
4348        for (int iSample = 0; file->GetSample(iSample); ++iSample) {
4349            gig::Sample* sample = file->GetSample(iSample);
4350            bool isUsed = false;
4351            for (gig::Instrument* instrument = file->GetFirstInstrument(); instrument;
4352                                  instrument = file->GetNextInstrument())
4353            {
4354                for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
4355                                  rgn = instrument->GetNextRegion())
4356                {
4357                    for (int i = 0; i < 256; ++i) {
4358                        if (!rgn->pDimensionRegions[i]) continue;
4359                        if (rgn->pDimensionRegions[i]->pSample != sample) continue;
4360                        isUsed = true;
4361                        goto endOfRefSearch;
4362                    }
4363                }
4364            }
4365            endOfRefSearch:
4366            if (!isUsed) lsamples.push_back(sample);
4367        }
4368    
4369        if (lsamples.empty()) return;
4370    
4371        // notify everybody that we're going to remove these samples
4372        samples_to_be_removed_signal.emit(lsamples);
4373    
4374        // remove collected samples
4375        try {
4376            for (std::list<gig::Sample*>::iterator itSample = lsamples.begin();
4377                 itSample != lsamples.end(); ++itSample)
4378            {
4379                gig::Sample* sample = *itSample;
4380                // remove sample from the .gig file
4381                file->DeleteSample(sample);
4382                // if sample was just previously added, remove it from the import queue
4383                if (m_SampleImportQueue.count(sample)) {
4384                    printf("Removing previously added sample '%s'\n",
4385                           m_SampleImportQueue[sample].sample_path.c_str());
4386                    m_SampleImportQueue.erase(sample);
4387                }
4388            }
4389        } catch (RIFF::Exception e) {
4390            // show error message
4391            Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
4392            msg.run();
4393        }
4394    
4395        // notify everybody that we're done with removal
4396        samples_removed_signal.emit();
4397    
4398        dimreg_changed();
4399        file_changed();
4400        __refreshEntireGUI();
4401    }
4402    
4403    // see comment on on_sample_treeview_drag_begin()
4404    void MainWindow::on_scripts_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
4405    {
4406        first_call_to_drag_data_get = true;
4407    }
4408    
4409    void MainWindow::on_scripts_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
4410                                                       Gtk::SelectionData& selection_data, guint, guint)
4411    {
4412        if (!first_call_to_drag_data_get) return;
4413        first_call_to_drag_data_get = false;
4414    
4415        // get selected script
4416        gig::Script* script = NULL;
4417        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
4418        Gtk::TreeModel::iterator it = sel->get_selected();
4419        if (it) {
4420            Gtk::TreeModel::Row row = *it;
4421            script = row[m_ScriptsModel.m_col_script];
4422        }
4423        // pass the gig::Script as pointer
4424        selection_data.set(selection_data.get_target(), 0/*unused*/,
4425                           (const guchar*)&script,
4426                           sizeof(script)/*length of data in bytes*/);
4427    }
4428    
4429    // see comment on on_sample_treeview_drag_begin()
4430    void MainWindow::on_instruments_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
4431    {
4432        first_call_to_drag_data_get = true;
4433    }
4434    
4435    void MainWindow::on_instruments_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
4436                                                           Gtk::SelectionData& selection_data, guint, guint)
4437    {
4438        if (!first_call_to_drag_data_get) return;
4439        first_call_to_drag_data_get = false;
4440    
4441        // get selected source instrument
4442        gig::Instrument* src = NULL;
4443        {
4444            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
4445            std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4446            if (!rows.empty()) {
4447                Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
4448                if (it) {
4449                    Gtk::TreeModel::Row row = *it;
4450                    src = row[m_Columns.m_col_instr];
4451                }
4452            }
4453        }
4454        if (!src) return;
4455    
4456        // pass the source gig::Instrument as pointer
4457        selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&src,
4458                           sizeof(src)/*length of data in bytes*/);
4459    }
4460    
4461    void MainWindow::on_instruments_treeview_drop_drag_data_received(
4462        const Glib::RefPtr<Gdk::DragContext>& context, int x, int y,
4463        const Gtk::SelectionData& selection_data, guint, guint time)
4464    {
4465        gig::Instrument* src = *((gig::Instrument**) selection_data.get_data());
4466        if (!src || selection_data.get_length() != sizeof(gig::Instrument*))
4467            return;
4468    
4469        gig::Instrument* dst = NULL;
4470        {
4471            Gtk::TreeModel::Path path;
4472            const bool found = m_TreeView.get_path_at_pos(x, y, path);
4473            if (!found) return;
4474    
4475            Gtk::TreeModel::iterator iter = m_refTreeModel->get_iter(path);
4476            if (!iter) return;
4477            Gtk::TreeModel::Row row = *iter;
4478            dst = row[m_Columns.m_col_instr];
4479        }
4480        if (!dst) return;
4481    
4482        //printf("dragdrop received src=%s dst=%s\n", src->pInfo->Name.c_str(), dst->pInfo->Name.c_str());
4483        src->MoveTo(dst);
4484        __refreshEntireGUI();
4485        select_instrument(src);
4486    }
4487    
4488  // For some reason drag_data_get gets called two times for each  // For some reason drag_data_get gets called two times for each
4489  // 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
4490  // 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 1700  void MainWindow::on_sample_treeview_drag Line 4503  void MainWindow::on_sample_treeview_drag
4503      // get selected sample      // get selected sample
4504      gig::Sample* sample = NULL;      gig::Sample* sample = NULL;
4505      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
4506      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4507      if (it) {      if (!rows.empty()) {
4508          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
4509          sample = row[m_SamplesModel.m_col_sample];          if (it) {
4510                Gtk::TreeModel::Row row = *it;
4511                sample = row[m_SamplesModel.m_col_sample];
4512            }
4513      }      }
4514      // pass the gig::Sample as pointer      // pass the gig::Sample as pointer
4515      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 1740  void MainWindow::on_sample_label_drop_dr Line 4546  void MainWindow::on_sample_label_drop_dr
4546          bool channels_changed = false;          bool channels_changed = false;
4547          if (sample->Channels == 1 && stereo_dimension) {          if (sample->Channels == 1 && stereo_dimension) {
4548              // remove the samplechannel dimension              // remove the samplechannel dimension
4549    /* commented out, because it makes it impossible building up an instrument from scratch using two separate L/R samples
4550              region->DeleteDimension(stereo_dimension);              region->DeleteDimension(stereo_dimension);
4551              channels_changed = true;              channels_changed = true;
4552              region_changed();              region_changed();
4553    */
4554          }          }
4555          dimreg_edit.set_sample(sample);          dimreg_edit.set_sample(
4556                sample,
4557                is_copy_samples_unity_note_enabled(),
4558                is_copy_samples_fine_tune_enabled(),
4559                is_copy_samples_loop_enabled()
4560            );
4561    
4562          if (sample->Channels == 2 && !stereo_dimension) {          if (sample->Channels == 2 && !stereo_dimension) {
4563              // add samplechannel dimension              // add samplechannel dimension
# Line 1787  void MainWindow::sample_name_changed(con Line 4600  void MainWindow::sample_name_changed(con
4600      Glib::ustring name  = row[m_SamplesModel.m_col_name];      Glib::ustring name  = row[m_SamplesModel.m_col_name];
4601      gig::Group* group   = row[m_SamplesModel.m_col_group];      gig::Group* group   = row[m_SamplesModel.m_col_group];
4602      gig::Sample* sample = row[m_SamplesModel.m_col_sample];      gig::Sample* sample = row[m_SamplesModel.m_col_sample];
4603        gig::String gigname(gig_from_utf8(name));
4604      if (group) {      if (group) {
4605          if (group->Name != name) {          if (group->Name != gigname) {
4606              group->Name = name;              group->Name = gigname;
4607              printf("group name changed\n");              printf("group name changed\n");
4608              file_changed();              file_changed();
4609          }          }
4610      } else if (sample) {      } else if (sample) {
4611          if (sample->pInfo->Name != name.raw()) {          if (sample->pInfo->Name != gigname) {
4612              sample->pInfo->Name = name.raw();              sample->pInfo->Name = gigname;
4613              printf("sample name changed\n");              printf("sample name changed\n");
4614              file_changed();              file_changed();
4615          }          }
4616      }      }
4617  }  }
4618    
4619    void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,
4620                                         const Gtk::TreeModel::iterator& iter) {
4621        if (!iter) return;
4622        Gtk::TreeModel::Row row = *iter;
4623        Glib::ustring name      = row[m_ScriptsModel.m_col_name];
4624        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
4625        gig::Script* script     = row[m_ScriptsModel.m_col_script];
4626        gig::String gigname(gig_from_utf8(name));
4627        if (group) {
4628            if (group->Name != gigname) {
4629                group->Name = gigname;
4630                printf("script group name changed\n");
4631                file_changed();
4632            }
4633        } else if (script) {
4634            if (script->Name != gigname) {
4635                script->Name = gigname;
4636                printf("script name changed\n");
4637                file_changed();
4638            }
4639        }
4640    }
4641    
4642    void MainWindow::script_double_clicked(const Gtk::TreeModel::Path& path,
4643                                           Gtk::TreeViewColumn* column)
4644    {
4645        Gtk::TreeModel::iterator iter = m_refScriptsTreeModel->get_iter(path);
4646        if (!iter) return;
4647        Gtk::TreeModel::Row row = *iter;
4648        gig::Script* script = row[m_ScriptsModel.m_col_script];
4649        if (!script) return;
4650    
4651        ScriptEditor* editor = new ScriptEditor;
4652        editor->signal_script_to_be_changed.connect(
4653            signal_script_to_be_changed.make_slot()
4654        );
4655        editor->signal_script_changed.connect(
4656            signal_script_changed.make_slot()
4657        );
4658        editor->setScript(script);
4659        //editor->reparent(*this);
4660        editor->show();
4661    }
4662    
4663  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,
4664                                           const Gtk::TreeModel::iterator& iter) {                                           const Gtk::TreeModel::iterator& iter) {
4665      if (!iter) return;      if (!iter) return;
4666      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
4667      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_Columns.m_col_name];
4668    
4669    #if !USE_GTKMM_BUILDER
4670        // change name in instrument menu
4671        int index = path[0];
4672        const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
4673        if (index < children.size()) {
4674    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 16) || GTKMM_MAJOR_VERSION > 2
4675            static_cast<Gtk::RadioMenuItem*>(children[index])->set_label(name);
4676    #else
4677            remove_instrument_from_menu(index);
4678            Gtk::RadioMenuItem* item = add_instrument_to_menu(name, index);
4679            item->set_active();
4680    #endif
4681        }
4682    #endif
4683    
4684        // change name in gig
4685      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_Columns.m_col_instr];
4686      if (instrument && instrument->pInfo->Name != name.raw()) {      gig::String gigname(gig_from_utf8(name));
4687          instrument->pInfo->Name = name.raw();      if (instrument && instrument->pInfo->Name != gigname) {
4688            instrument->pInfo->Name = gigname;
4689    
4690            // change name in the instrument properties window
4691            if (instrumentProps.get_instrument() == instrument) {
4692                instrumentProps.update_name();
4693            }
4694    
4695          file_changed();          file_changed();
4696      }      }
4697  }  }
4698    
4699    bool MainWindow::instrument_row_visible(const Gtk::TreeModel::const_iterator& iter) {
4700        if (!iter)
4701            return true;
4702    
4703        Glib::ustring pattern = m_searchText.get_text().lowercase();
4704        trim(pattern);
4705        if (pattern.empty()) return true;
4706    
4707    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 22)
4708        //HACK: on GTKMM4 development branch const_iterator cannot be easily converted to iterator, probably going to be fixed before final GTKMM4 release though.
4709        Gtk::TreeModel::Row row = **(Gtk::TreeModel::iterator*)(&iter);
4710    #else
4711        Gtk::TreeModel::Row row = *iter;
4712    #endif
4713        Glib::ustring name = row[m_Columns.m_col_name];
4714        name = name.lowercase();
4715    
4716        std::vector<Glib::ustring> tokens = Glib::Regex::split_simple(" ", pattern);
4717        for (int t = 0; t < tokens.size(); ++t)
4718            if (name.find(tokens[t]) == Glib::ustring::npos)
4719                return false;
4720    
4721        return true;
4722    }
4723    
4724    void MainWindow::on_action_combine_instruments() {
4725        CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);
4726    
4727        // take over selection from instruments list view for the combine dialog's
4728        // list view as pre-selection
4729        std::set<int> indeces;
4730        {
4731            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
4732            std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4733            for (int r = 0; r < rows.size(); ++r) {
4734                Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
4735                if (it) {
4736                    Gtk::TreeModel::Row row = *it;
4737                    int index = row[m_Columns.m_col_nr];
4738                    indeces.insert(index);
4739                }
4740            }
4741        }
4742        d->setSelectedInstruments(indeces);
4743    
4744    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4745        d->show_all();
4746    #else
4747        d->show();
4748    #endif
4749        d->run();
4750        if (d->fileWasChanged()) {
4751            // update GUI with new instrument just created
4752            add_instrument(d->newCombinedInstrument());
4753        }
4754        delete d;
4755    }
4756    
4757    void MainWindow::on_action_view_references() {
4758        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
4759        std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4760        if (rows.empty()) return;
4761        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
4762        if (!it) return;
4763        Gtk::TreeModel::Row row = *it;
4764        gig::Sample* sample = row[m_SamplesModel.m_col_sample];
4765        if (!sample) return;
4766    
4767        ReferencesView* d = new ReferencesView(*this);
4768        d->setSample(sample);
4769        d->dimension_region_selected.connect(
4770            sigc::mem_fun(*this, &MainWindow::select_dimension_region)
4771        );
4772    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4773        d->show_all();
4774    #else
4775        d->show();
4776    #endif
4777        d->resize(500, 400);
4778        d->run();
4779        delete d;
4780    }
4781    
4782    void MainWindow::mergeFiles(const std::vector<std::string>& filenames) {
4783        struct _Source {
4784            std::vector<RIFF::File*> riffs;
4785            std::vector<gig::File*> gigs;
4786            
4787            ~_Source() {
4788                for (int k = 0; k < gigs.size(); ++k) delete gigs[k];
4789                for (int k = 0; k < riffs.size(); ++k) delete riffs[k];
4790                riffs.clear();
4791                gigs.clear();
4792            }
4793        } sources;
4794    
4795        if (filenames.empty())
4796            throw RIFF::Exception(_("No files selected, so nothing done."));
4797    
4798        // first open all input files (to avoid output file corruption)
4799        int i;
4800        try {
4801            for (i = 0; i < filenames.size(); ++i) {
4802                const std::string& filename = filenames[i];
4803                printf("opening file=%s\n", filename.c_str());
4804    
4805                RIFF::File* riff = new RIFF::File(filename);
4806                sources.riffs.push_back(riff);
4807    
4808                gig::File* gig = new gig::File(riff);
4809                sources.gigs.push_back(gig);
4810            }
4811        } catch (RIFF::Exception e) {
4812            throw RIFF::Exception(
4813                _("Error occurred while opening '") +
4814                filenames[i] +
4815                "': " +
4816                e.Message
4817            );
4818        } catch (...) {
4819            throw RIFF::Exception(
4820                _("Unknown exception occurred while opening '") +
4821                filenames[i] + "'"
4822            );
4823        }
4824    
4825        // now merge the opened .gig files to the main .gig file currently being
4826        // open in gigedit
4827        try {
4828            for (i = 0; i < filenames.size(); ++i) {
4829                const std::string& filename = filenames[i];
4830                printf("merging file=%s\n", filename.c_str());
4831                assert(i < sources.gigs.size());
4832    
4833                this->file->AddContentOf(sources.gigs[i]);
4834            }
4835        } catch (RIFF::Exception e) {
4836            throw RIFF::Exception(
4837                _("Error occurred while merging '") +
4838                filenames[i] +
4839                "': " +
4840                e.Message
4841            );
4842        } catch (...) {
4843            throw RIFF::Exception(
4844                _("Unknown exception occurred while merging '") +
4845                filenames[i] + "'"
4846            );
4847        }
4848    
4849        // Finally save gig file persistently to disk ...
4850        //NOTE: requires that this gig file already has a filename !
4851        {
4852            std::cout << "Saving file\n" << std::flush;
4853            file_structure_to_be_changed_signal.emit(this->file);
4854    
4855            progress_dialog = new ProgressDialog( //FIXME: memory leak!
4856                _("Saving") +  Glib::ustring(" '") +
4857                Glib::filename_display_basename(this->filename) + "' ...",
4858                *this
4859            );
4860    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4861            progress_dialog->show_all();
4862    #else
4863            progress_dialog->show();
4864    #endif
4865            saver = new Saver(this->file); //FIXME: memory leak!
4866            saver->signal_progress().connect(
4867                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
4868            saver->signal_finished().connect(
4869                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
4870            saver->signal_error().connect(
4871                sigc::mem_fun(*this, &MainWindow::on_saver_error));
4872            saver->launch();
4873        }
4874    }
4875    
4876    void MainWindow::on_action_merge_files() {
4877        if (this->file->GetFileName().empty()) {
4878            Glib::ustring txt = _(
4879                "You seem to have a new .gig file open that has not been saved "
4880                "yet. You must save it somewhere before starting to merge it with "
4881                "other .gig files though, because during the merge operation the "
4882                "other files' sample data must be written on file level to the "
4883                "target .gig file."
4884            );
4885            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
4886            msg.run();
4887            return;
4888        }
4889    
4890        Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
4891    #if HAS_GTKMM_STOCK
4892        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4893    #else
4894        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4895    #endif
4896        dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
4897        dialog.set_default_response(Gtk::RESPONSE_CANCEL);
4898    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
4899        Gtk::FileFilter filter;
4900        filter.add_pattern("*.gig");
4901    #else
4902        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
4903        filter->add_pattern("*.gig");
4904    #endif
4905        dialog.set_filter(filter);
4906        if (current_gig_dir != "") {
4907            dialog.set_current_folder(current_gig_dir);
4908        }
4909        dialog.set_select_multiple(true);
4910    
4911        // show warning in the file picker dialog
4912        HBox descriptionArea;
4913        descriptionArea.set_spacing(15);
4914        Gtk::Image warningIcon;
4915        warningIcon.set_from_icon_name("dialog-warning",
4916                                       Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
4917        descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
4918    #if GTKMM_MAJOR_VERSION < 3
4919        view::WrapLabel description;
4920    #else
4921        Gtk::Label description;
4922        description.set_line_wrap();
4923    #endif
4924        description.set_markup(_(
4925            "\nSelect at least one .gig file that shall be merged to the .gig file "
4926            "currently being open in gigedit.\n\n"
4927            "<b>Please Note:</b> Merging with other files will modify your "
4928            "currently open .gig file on file level! And be aware that the current "
4929            "merge algorithm does not detect duplicate samples yet. So if you are "
4930            "merging files which are using equivalent sample data, those "
4931            "equivalent samples will currently be treated as separate samples and "
4932            "will accordingly be stored separately in the target .gig file!"
4933        ));
4934        descriptionArea.pack_start(description);
4935    #if USE_GTKMM_BOX
4936    # warning No description area implemented for dialog on GTKMM 3
4937    #else
4938        dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
4939    #endif
4940    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4941        descriptionArea.show_all();
4942    #else
4943        descriptionArea.show();
4944    #endif
4945    
4946        if (dialog.run() == Gtk::RESPONSE_OK) {
4947            printf("on_action_merge_files self=%p\n",
4948                   static_cast<void*>(Glib::Threads::Thread::self()));
4949            std::vector<std::string> filenames = dialog.get_filenames();
4950    
4951            // merge the selected files to the currently open .gig file
4952            try {
4953                mergeFiles(filenames);
4954            } catch (RIFF::Exception e) {
4955                Gtk::MessageDialog msg(*this, e.Message, false, Gtk::MESSAGE_ERROR);
4956                msg.run();
4957            }
4958    
4959            // update GUI
4960            __refreshEntireGUI();
4961        }
4962    }
4963    
4964  void MainWindow::set_file_is_shared(bool b) {  void MainWindow::set_file_is_shared(bool b) {
4965      this->file_is_shared = b;      this->file_is_shared = b;
4966    
# Line 1828  void MainWindow::set_file_is_shared(bool Line 4975  void MainWindow::set_file_is_shared(bool
4975              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)
4976          );          );
4977      }      }
4978    
4979        {
4980    #if USE_GTKMM_BUILDER
4981            m_actionToggleSyncSamplerSelection->property_enabled() = b;
4982    #else
4983            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
4984                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
4985            if (item) item->set_sensitive(b);
4986    #endif
4987        }
4988    }
4989    
4990    void MainWindow::on_sample_ref_count_incremented(gig::Sample* sample, int offset) {
4991        if (!sample) return;
4992        sample_ref_count[sample] += offset;
4993        const int refcount = sample_ref_count[sample];
4994    
4995        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
4996        for (int g = 0; g < model->children().size(); ++g) {
4997            Gtk::TreeModel::Row rowGroup = model->children()[g];
4998            for (int s = 0; s < rowGroup.children().size(); ++s) {
4999                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
5000                if (rowSample[m_SamplesModel.m_col_sample] != sample) continue;
5001                rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
5002                rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
5003            }
5004        }
5005    }
5006    
5007    void MainWindow::on_sample_ref_changed(gig::Sample* oldSample, gig::Sample* newSample) {
5008        on_sample_ref_count_incremented(oldSample, -1);
5009        on_sample_ref_count_incremented(newSample, +1);
5010    }
5011    
5012    void MainWindow::on_samples_to_be_removed(std::list<gig::Sample*> samples) {
5013        // just in case a new sample is added later with exactly the same memory
5014        // address, which would lead to incorrect refcount if not deleted here
5015        for (std::list<gig::Sample*>::const_iterator it = samples.begin();
5016             it != samples.end(); ++it)
5017        {
5018            sample_ref_count.erase(*it);
5019        }
5020    }
5021    
5022    void MainWindow::show_samples_tab() {
5023        m_TreeViewNotebook.set_current_page(0);
5024    }
5025    
5026    void MainWindow::show_intruments_tab() {
5027        m_TreeViewNotebook.set_current_page(1);
5028    }
5029    
5030    void MainWindow::show_scripts_tab() {
5031        m_TreeViewNotebook.set_current_page(2);
5032    }
5033    
5034    void MainWindow::select_instrument_by_dir(int dir) {
5035        if (!file) return;
5036        gig::Instrument* pInstrument = get_instrument();
5037        if (!pInstrument) {
5038            select_instrument( file->GetInstrument(0) );
5039            return;
5040        }
5041        for (int i = 0; file->GetInstrument(i); ++i) {
5042            if (file->GetInstrument(i) == pInstrument) {
5043                select_instrument( file->GetInstrument(i + dir) );
5044                return;
5045            }
5046        }
5047    }
5048    
5049    void MainWindow::select_prev_instrument() {
5050        select_instrument_by_dir(-1);
5051    }
5052    
5053    void MainWindow::select_next_instrument() {
5054        select_instrument_by_dir(1);
5055    }
5056    
5057    void MainWindow::select_prev_region() {
5058        m_RegionChooser.select_prev_region();
5059    }
5060    
5061    void MainWindow::select_next_region() {
5062        m_RegionChooser.select_next_region();
5063    }
5064    
5065    void MainWindow::select_next_dim_rgn_zone() {
5066        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5067        m_DimRegionChooser.select_next_dimzone();
5068    }
5069    
5070    void MainWindow::select_prev_dim_rgn_zone() {
5071        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5072        m_DimRegionChooser.select_prev_dimzone();
5073    }
5074    
5075    void MainWindow::select_add_next_dim_rgn_zone() {
5076        m_DimRegionChooser.select_next_dimzone(true);
5077    }
5078    
5079    void MainWindow::select_add_prev_dim_rgn_zone() {
5080        m_DimRegionChooser.select_prev_dimzone(true);
5081    }
5082    
5083    void MainWindow::select_prev_dimension() {
5084        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5085        m_DimRegionChooser.select_prev_dimension();
5086    }
5087    
5088    void MainWindow::select_next_dimension() {
5089        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5090        m_DimRegionChooser.select_next_dimension();
5091    }
5092    
5093    #define CLIPBOARD_DIMENSIONREGION_TARGET \
5094        ("libgig.DimensionRegion." + m_serializationArchive.rawDataFormat())
5095    
5096    void MainWindow::copy_selected_dimrgn() {
5097        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
5098        if (!pDimRgn) {
5099            updateClipboardPasteAvailable();
5100            updateClipboardCopyAvailable();
5101            return;
5102        }
5103    
5104        std::vector<Gtk::TargetEntry> targets;
5105        targets.push_back( Gtk::TargetEntry(CLIPBOARD_DIMENSIONREGION_TARGET) );
5106    
5107        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5108        clipboard->set(
5109            targets,
5110            sigc::mem_fun(*this, &MainWindow::on_clipboard_get),
5111            sigc::mem_fun(*this, &MainWindow::on_clipboard_clear)
5112        );
5113    
5114        m_serializationArchive.serialize(pDimRgn);
5115    
5116        updateClipboardPasteAvailable();
5117    }
5118    
5119    void MainWindow::paste_copied_dimrgn() {
5120        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5121        clipboard->request_contents(
5122            CLIPBOARD_DIMENSIONREGION_TARGET,
5123            sigc::mem_fun(*this, &MainWindow::on_clipboard_received)
5124        );
5125        updateClipboardPasteAvailable();
5126    }
5127    
5128    void MainWindow::adjust_clipboard_content() {
5129        MacroEditor* editor = new MacroEditor();
5130        editor->setMacro(&m_serializationArchive, true);
5131        editor->show();
5132    }
5133    
5134    void MainWindow::updateClipboardPasteAvailable() {
5135        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5136        clipboard->request_targets(
5137            sigc::mem_fun(*this, &MainWindow::on_clipboard_received_targets)
5138        );
5139    }
5140    
5141    void MainWindow::updateClipboardCopyAvailable() {
5142        bool bDimensionRegionCopyIsPossible = m_DimRegionChooser.get_main_dimregion();
5143    #if USE_GTKMM_BUILDER
5144        m_actionCopyDimRgn->property_enabled() = bDimensionRegionCopyIsPossible;
5145    #else
5146        static_cast<Gtk::MenuItem*>(
5147            uiManager->get_widget("/MenuBar/MenuEdit/CopyDimRgn")
5148        )->set_sensitive(bDimensionRegionCopyIsPossible);
5149    #endif
5150    }
5151    
5152    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
5153    void MainWindow::on_clipboard_owner_change(Gdk::EventOwnerChange& event) {
5154    #else
5155    void MainWindow::on_clipboard_owner_change(GdkEventOwnerChange* event) {
5156    #endif
5157        updateClipboardPasteAvailable();
5158    }
5159    
5160    void MainWindow::on_clipboard_get(Gtk::SelectionData& selection_data, guint /*info*/) {
5161        const std::string target = selection_data.get_target();
5162        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
5163            selection_data.set(
5164                CLIPBOARD_DIMENSIONREGION_TARGET, 8 /* "format": probably unused*/,
5165                &m_serializationArchive.rawData()[0],
5166                m_serializationArchive.rawData().size()
5167            );
5168        } else {
5169            std::cerr << "Clipboard: content for unknown target '" << target << "' requested\n";
5170        }
5171    }
5172    
5173    void MainWindow::on_clipboard_clear() {
5174        m_serializationArchive.clear();
5175        updateClipboardPasteAvailable();
5176        updateClipboardCopyAvailable();
5177    }
5178    
5179    //NOTE: Might throw exception !!!
5180    void MainWindow::applyMacro(Serialization::Archive& macro) {
5181        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
5182        if (!pDimRgn) return;
5183    
5184        for (std::set<gig::DimensionRegion*>::iterator itDimReg = dimreg_edit.dimregs.begin();
5185             itDimReg != dimreg_edit.dimregs.end(); ++itDimReg)
5186        {
5187            gig::DimensionRegion* pDimRgn = *itDimReg;
5188            DimRegionChangeGuard(this, pDimRgn);
5189            macro.deserialize(pDimRgn);
5190        }
5191        //region_changed()
5192        file_changed();
5193        dimreg_changed();
5194    }
5195    
5196    void MainWindow::on_clipboard_received(const Gtk::SelectionData& selection_data) {
5197        const std::string target = selection_data.get_target();
5198        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
5199            Glib::ustring errorText;
5200            try {
5201                m_serializationArchive.decode(
5202                    selection_data.get_data(), selection_data.get_length()
5203                );
5204                applyMacro(m_serializationArchive);
5205            } catch (Serialization::Exception e) {
5206                errorText = e.Message;
5207            } catch (...) {
5208                errorText = _("Unknown exception while pasting DimensionRegion");
5209            }
5210            if (!errorText.empty()) {
5211                Glib::ustring txt = _("Pasting DimensionRegion failed:\n") + errorText;
5212                Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
5213                msg.run();
5214            }
5215        }
5216    }
5217    
5218    void MainWindow::on_clipboard_received_targets(const std::vector<Glib::ustring>& targets) {
5219        const bool bDimensionRegionPasteIsPossible =
5220            std::find(targets.begin(), targets.end(),
5221                      CLIPBOARD_DIMENSIONREGION_TARGET) != targets.end();
5222    
5223    #if USE_GTKMM_BUILDER
5224        m_actionPasteDimRgn->property_enabled() = bDimensionRegionPasteIsPossible;
5225        m_actionAdjustClipboard->property_enabled() = bDimensionRegionPasteIsPossible;
5226    #else
5227        static_cast<Gtk::MenuItem*>(
5228            uiManager->get_widget("/MenuBar/MenuEdit/PasteDimRgn")
5229        )->set_sensitive(bDimensionRegionPasteIsPossible);
5230    
5231        static_cast<Gtk::MenuItem*>(
5232            uiManager->get_widget("/MenuBar/MenuEdit/AdjustClipboard")
5233        )->set_sensitive(bDimensionRegionPasteIsPossible);
5234    #endif
5235  }  }
5236    
5237  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 1885  sigc::signal<void, int/*key*/, int/*velo Line 5289  sigc::signal<void, int/*key*/, int/*velo
5289  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {
5290      return m_RegionChooser.signal_keyboard_key_released();      return m_RegionChooser.signal_keyboard_key_released();
5291  }  }
5292    
5293    sigc::signal<void, gig::Instrument*>& MainWindow::signal_switch_sampler_instrument() {
5294        return switch_sampler_instrument_signal;
5295    }

Legend:
Removed from v.2151  
changed lines
  Added in v.3417

  ViewVC Help
Powered by ViewVC