/[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 2845 by persson, Sun Sep 20 10:18:22 2015 UTC revision 3806 by schoenebeck, Thu Aug 13 13:35:33 2020 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2015 Andreas Persson   * Copyright (C) 2006-2020 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 20  Line 20 
20  #include <iostream>  #include <iostream>
21  #include <cstring>  #include <cstring>
22    
23  #include <glibmmconfig.h>  #include "compat.h"
 // threads.h must be included first to be able to build with  
 // G_DISABLE_DEPRECATED  
 #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION == 31 && GLIBMM_MICRO_VERSION >= 2) || \  
     (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION > 31) || GLIBMM_MAJOR_VERSION > 2  
 #include <glibmm/threads.h>  
 #endif  
24    
25  #include <glibmm/convert.h>  #include <glibmm/convert.h>
26  #include <glibmm/dispatcher.h>  #include <glibmm/dispatcher.h>
27  #include <glibmm/miscutils.h>  #include <glibmm/miscutils.h>
28  #include <glibmm/stringutils.h>  #include <glibmm/stringutils.h>
29    #include <glibmm/regex.h>
30  #include <gtkmm/aboutdialog.h>  #include <gtkmm/aboutdialog.h>
31  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
32  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
33    #if HAS_GTKMM_STOCK
34    # include <gtkmm/stock.h>
35    #endif
36  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
37  #include <gtkmm/main.h>  #include <gtkmm/main.h>
38  #include <gtkmm/toggleaction.h>  #if GTKMM_MAJOR_VERSION < 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION < 89)
39    # include <gtkmm/toggleaction.h>
40    #endif
41    #include <gtkmm/accelmap.h>
42  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
43  #include "wrapLabel.hh"  #include "wrapLabel.hh"
44  #endif  #endif
# Line 46  Line 47 
47  #include "compat.h"  #include "compat.h"
48    
49  #include <stdio.h>  #include <stdio.h>
50  #include <sndfile.h>  #ifdef LIBSNDFILE_HEADER_FILE
51    # include LIBSNDFILE_HEADER_FILE(sndfile.h)
52    #else
53    # include <sndfile.h>
54    #endif
55  #include <assert.h>  #include <assert.h>
56    
57  #include "mainwindow.h"  #include "mainwindow.h"
# Line 57  Line 62 
62  #include "ReferencesView.h"  #include "ReferencesView.h"
63  #include "../../gfx/status_attached.xpm"  #include "../../gfx/status_attached.xpm"
64  #include "../../gfx/status_detached.xpm"  #include "../../gfx/status_detached.xpm"
65    #include "gfx/builtinpix.h"
66    #include "MacroEditor.h"
67    #include "MacrosSetup.h"
68    #if defined(__APPLE__)
69    # include "MacHelper.h"
70    #endif
71    
72    static const Gdk::ModifierType primaryModifierKey =
73        #if defined(__APPLE__)
74        Gdk::META_MASK; // Cmd key on Mac
75        #else
76        Gdk::CONTROL_MASK; // Ctrl key on all other OSs
77        #endif
78    
79  MainWindow::MainWindow() :  MainWindow::MainWindow() :
80      m_DimRegionChooser(*this),      m_DimRegionChooser(*this),
81      dimreg_label(_("Changes apply to:")),      dimreg_label(_("Changes apply to:")),
82      dimreg_all_regions(_("all regions")),      dimreg_all_regions(_("all regions")),
83      dimreg_all_dimregs(_("all dimension splits")),      dimreg_all_dimregs(_("all dimension splits")),
84      dimreg_stereo(_("both channels"))      dimreg_stereo(_("both channels")),
85        labelLegend(_("Legend:")),
86        labelNoSample(_(" No Sample")),
87        labelMissingSample(_(" Missing some Sample(s)")),
88        labelLooped(_(" Looped")),
89        labelSomeLoops(_(" Some Loop(s)"))
90  {  {
91        loadBuiltInPix();
92    
93        this->file = NULL;
94    
95  //    set_border_width(5);  //    set_border_width(5);
 //    set_default_size(400, 200);  
96    
97        if (!Settings::singleton()->autoRestoreWindowDimension) {
98    #if GTKMM_MAJOR_VERSION >= 3
99            set_default_size(1010, -1);
100    #else
101            set_default_size(915, -1);
102    #endif
103            set_position(Gtk::WIN_POS_CENTER);
104        }
105    
106      add(m_VBox);      add(m_VBox);
107    
108      // Handle selection      // Handle selection
109      m_TreeView.get_selection()->signal_changed().connect(      m_TreeViewInstruments.get_selection()->signal_changed().connect(
110          sigc::mem_fun(*this, &MainWindow::on_sel_change));          sigc::mem_fun(*this, &MainWindow::on_sel_change));
111    
112      // m_TreeView.set_reorderable();      // m_TreeViewInstruments.set_reorderable();
113    
114      m_TreeView.signal_button_press_event().connect_notify(  #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
115        m_TreeViewInstruments.signal_button_press_event().connect(
116            sigc::mem_fun(*this, &MainWindow::on_button_release));
117    #else
118        m_TreeViewInstruments.signal_button_press_event().connect_notify(
119          sigc::mem_fun(*this, &MainWindow::on_button_release));          sigc::mem_fun(*this, &MainWindow::on_button_release));
120    #endif
121    
122      // Add the TreeView tab, inside a ScrolledWindow, with the button underneath:      // Add the TreeView tab, inside a ScrolledWindow, with the button underneath:
123      m_ScrolledWindow.add(m_TreeView);      m_ScrolledWindow.add(m_TreeViewInstruments);
124  //    m_ScrolledWindow.set_size_request(200, 600);  //    m_ScrolledWindow.set_size_request(200, 600);
125      m_ScrolledWindow.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);      m_ScrolledWindow.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
126    
# Line 92  MainWindow::MainWindow() : Line 130  MainWindow::MainWindow() :
130      m_ScrolledWindowScripts.add(m_TreeViewScripts);      m_ScrolledWindowScripts.add(m_TreeViewScripts);
131      m_ScrolledWindowScripts.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);      m_ScrolledWindowScripts.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
132    
133    #if GTKMM_MAJOR_VERSION < 3
134      m_TreeViewNotebook.set_size_request(300);      m_TreeViewNotebook.set_size_request(300);
135    #endif
136    
137        m_searchLabel.set_text(Glib::ustring(" ") + _("Filter:"));
138        m_searchField.pack_start(m_searchLabel, Gtk::PACK_SHRINK);
139        m_searchField.pack_start(m_searchText);
140        m_searchField.set_spacing(5);
141    
142        m_left_vbox.pack_start(m_TreeViewNotebook);
143        m_left_vbox.pack_start(m_searchField, Gtk::PACK_SHRINK);
144    
145        m_HPaned.add1(m_left_vbox);
146    
     m_HPaned.add1(m_TreeViewNotebook);  
147      dimreg_hbox.add(dimreg_label);      dimreg_hbox.add(dimreg_label);
148      dimreg_hbox.add(dimreg_all_regions);      dimreg_hbox.add(dimreg_all_regions);
149      dimreg_hbox.add(dimreg_all_dimregs);      dimreg_hbox.add(dimreg_all_dimregs);
# Line 103  MainWindow::MainWindow() : Line 151  MainWindow::MainWindow() :
151      dimreg_hbox.add(dimreg_stereo);      dimreg_hbox.add(dimreg_stereo);
152      dimreg_vbox.add(dimreg_edit);      dimreg_vbox.add(dimreg_edit);
153      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);
154        {
155            legend_hbox.add(labelLegend);
156    
157            imageNoSample.set(redDot);
158    #if HAS_GTKMM_ALIGNMENT
159            imageNoSample.set_alignment(Gtk::ALIGN_END);
160            labelNoSample.set_alignment(Gtk::ALIGN_START);
161    #else
162            imageNoSample.set_halign(Gtk::ALIGN_END);
163            labelNoSample.set_halign(Gtk::ALIGN_START);
164    #endif
165            legend_hbox.add(imageNoSample);
166            legend_hbox.add(labelNoSample);
167    
168            imageMissingSample.set(yellowDot);
169    #if HAS_GTKMM_ALIGNMENT
170            imageMissingSample.set_alignment(Gtk::ALIGN_END);
171            labelMissingSample.set_alignment(Gtk::ALIGN_START);
172    #else
173            imageMissingSample.set_halign(Gtk::ALIGN_END);
174            labelMissingSample.set_halign(Gtk::ALIGN_START);
175    #endif
176            legend_hbox.add(imageMissingSample);
177            legend_hbox.add(labelMissingSample);
178    
179            imageLooped.set(blackLoop);
180    #if HAS_GTKMM_ALIGNMENT
181            imageLooped.set_alignment(Gtk::ALIGN_END);
182            labelLooped.set_alignment(Gtk::ALIGN_START);
183    #else
184            imageLooped.set_halign(Gtk::ALIGN_END);
185            labelLooped.set_halign(Gtk::ALIGN_START);
186    #endif
187            legend_hbox.add(imageLooped);
188            legend_hbox.add(labelLooped);
189    
190            imageSomeLoops.set(grayLoop);
191    #if HAS_GTKMM_ALIGNMENT
192            imageSomeLoops.set_alignment(Gtk::ALIGN_END);
193            labelSomeLoops.set_alignment(Gtk::ALIGN_START);
194    #else
195            imageSomeLoops.set_halign(Gtk::ALIGN_END);
196            labelSomeLoops.set_halign(Gtk::ALIGN_START);
197    #endif
198            legend_hbox.add(imageSomeLoops);
199            legend_hbox.add(labelSomeLoops);
200    
201    #if HAS_GTKMM_SHOW_ALL_CHILDREN
202            legend_hbox.show_all_children();
203    #endif
204        }
205        dimreg_vbox.pack_start(legend_hbox, Gtk::PACK_SHRINK);
206      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
207    
208      dimreg_label.set_tooltip_text(_("To automatically apply your changes above globally to the entire instrument, check all 3 check boxes on the right."));      dimreg_label.set_tooltip_text(_("To automatically apply your changes above globally to the entire instrument, check all 3 check boxes on the right."));
# Line 114  MainWindow::MainWindow() : Line 214  MainWindow::MainWindow() :
214      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
215      m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));      m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));
216    
217    #if USE_GLIB_ACTION
218        m_actionGroup = Gio::SimpleActionGroup::create();
219        m_actionGroup->add_action(
220            "New", sigc::mem_fun(*this, &MainWindow::on_action_file_new)
221        );
222        m_actionGroup->add_action(
223            "Open", sigc::mem_fun(*this, &MainWindow::on_action_file_open)
224        );
225        m_actionGroup->add_action(
226            "Save", sigc::mem_fun(*this, &MainWindow::on_action_file_save)
227        );
228        m_actionGroup->add_action(
229            "SaveAs", sigc::mem_fun(*this, &MainWindow::on_action_file_save_as)
230        );
231        m_actionGroup->add_action(
232            "Properties", sigc::mem_fun(*this, &MainWindow::on_action_file_properties)
233        );
234        m_actionGroup->add_action(
235            "InstrProperties", sigc::mem_fun(*this, &MainWindow::show_instr_props)
236        );
237        m_actionMIDIRules = m_actionGroup->add_action(
238            "MidiRules", sigc::mem_fun(*this, &MainWindow::show_midi_rules)
239        );
240        m_actionGroup->add_action(
241            "ScriptSlots", sigc::mem_fun(*this, &MainWindow::show_script_slots)
242        );
243        m_actionGroup->add_action(
244            "Quit", sigc::mem_fun(*this, &MainWindow::on_action_quit)
245        );
246        m_actionGroup->add_action(
247            "MenuSample", sigc::mem_fun(*this, &MainWindow::show_samples_tab)
248        );
249        m_actionGroup->add_action(
250            "MenuInstrument", sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
251        );
252        m_actionGroup->add_action(
253            "MenuScript", sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
254        );
255    #else
256      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
257    
258      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));
259      actionGroup->add(Gtk::Action::create("New", _("_New")),      actionGroup->add(Gtk::Action::create("New", Gtk::Stock::NEW),
                      Gtk::AccelKey("<control>n"),  
260                       sigc::mem_fun(                       sigc::mem_fun(
261                           *this, &MainWindow::on_action_file_new));                           *this, &MainWindow::on_action_file_new));
262      actionGroup->add(Gtk::Action::create("Open", _("_Open...")),      Glib::RefPtr<Gtk::Action> action =
263                       Gtk::AccelKey("<control>o"),          Gtk::Action::create("Open", Gtk::Stock::OPEN);
264        action->property_label() = action->property_label() + "...";
265        actionGroup->add(action,
266                       sigc::mem_fun(                       sigc::mem_fun(
267                           *this, &MainWindow::on_action_file_open));                           *this, &MainWindow::on_action_file_open));
268      actionGroup->add(Gtk::Action::create("Save", _("_Save")),      actionGroup->add(Gtk::Action::create("Save", Gtk::Stock::SAVE),
                      Gtk::AccelKey("<control>s"),  
269                       sigc::mem_fun(                       sigc::mem_fun(
270                           *this, &MainWindow::on_action_file_save));                           *this, &MainWindow::on_action_file_save));
271      actionGroup->add(Gtk::Action::create("SaveAs", _("Save _As...")),      action = Gtk::Action::create("SaveAs", Gtk::Stock::SAVE_AS);
272        action->property_label() = action->property_label() + "...";
273        actionGroup->add(action,
274                       Gtk::AccelKey("<shift><control>s"),                       Gtk::AccelKey("<shift><control>s"),
275                       sigc::mem_fun(                       sigc::mem_fun(
276                           *this, &MainWindow::on_action_file_save_as));                           *this, &MainWindow::on_action_file_save_as));
277      actionGroup->add(Gtk::Action::create("Properties",      actionGroup->add(Gtk::Action::create("Properties",
278                                           _("_Properties")),                                           Gtk::Stock::PROPERTIES),
279                       sigc::mem_fun(                       sigc::mem_fun(
280                           *this, &MainWindow::on_action_file_properties));                           *this, &MainWindow::on_action_file_properties));
281      actionGroup->add(Gtk::Action::create("InstrProperties",      actionGroup->add(Gtk::Action::create("InstrProperties",
282                                           _("_Properties")),                                           Gtk::Stock::PROPERTIES),
283                       sigc::mem_fun(                       sigc::mem_fun(
284                           *this, &MainWindow::show_instr_props));                           *this, &MainWindow::show_instr_props));
285      actionGroup->add(Gtk::Action::create("MidiRules",      actionGroup->add(Gtk::Action::create("MidiRules",
# Line 149  MainWindow::MainWindow() : Line 290  MainWindow::MainWindow() :
290                                           _("_Script Slots...")),                                           _("_Script Slots...")),
291                       sigc::mem_fun(                       sigc::mem_fun(
292                           *this, &MainWindow::show_script_slots));                           *this, &MainWindow::show_script_slots));
293      actionGroup->add(Gtk::Action::create("Quit", _("_Quit")),      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),
                      Gtk::AccelKey("<control>q"),  
294                       sigc::mem_fun(                       sigc::mem_fun(
295                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
296      actionGroup->add(      actionGroup->add(
# Line 162  MainWindow::MainWindow() : Line 302  MainWindow::MainWindow() :
302          sigc::mem_fun(*this, &MainWindow::show_intruments_tab)          sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
303      );      );
304      actionGroup->add(      actionGroup->add(
305          Gtk::Action::create("MenuScript", _("S_cript")),          Gtk::Action::create("MenuScript", _("Scr_ipt")),
306          sigc::mem_fun(*this, &MainWindow::show_scripts_tab)          sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
307      );      );
308      actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));      actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));
309        actionGroup->add(Gtk::Action::create("AssignScripts", _("Assign Script")));
310    
311      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
312    #endif
313    
314        const Gdk::ModifierType primaryModifierKey =
315    #if defined(__APPLE__)
316        Gdk::META_MASK; // Cmd key on Mac
317    #else
318        Gdk::CONTROL_MASK; // Ctrl key on all other OSs
319    #endif
320    
321    #if USE_GLIB_ACTION
322        m_actionCopyDimRgn = m_actionGroup->add_action(
323            "CopyDimRgn", sigc::mem_fun(*this, &MainWindow::copy_selected_dimrgn)
324        );
325        m_actionPasteDimRgn = m_actionGroup->add_action(
326            "PasteDimRgn", sigc::mem_fun(*this, &MainWindow::paste_copied_dimrgn)
327        );
328        m_actionAdjustClipboard = m_actionGroup->add_action(
329            "AdjustClipboard", sigc::mem_fun(*this, &MainWindow::adjust_clipboard_content)
330        );
331        m_actionGroup->add_action(
332            "SelectPrevInstr", sigc::mem_fun(*this, &MainWindow::select_prev_instrument)
333        );
334        m_actionGroup->add_action(
335            "SelectNextInstr", sigc::mem_fun(*this, &MainWindow::select_next_instrument)
336        );
337        m_actionGroup->add_action(
338            "SelectPrevRegion", sigc::mem_fun(*this, &MainWindow::select_prev_region)
339        );
340        m_actionGroup->add_action(
341            "SelectNextRegion", sigc::mem_fun(*this, &MainWindow::select_next_region)
342        );
343        m_actionGroup->add_action(
344            "SelectPrevDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_prev_dim_rgn_zone)
345        );
346        m_actionGroup->add_action(
347            "SelectNextDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_next_dim_rgn_zone)
348        );
349        m_actionGroup->add_action(
350            "SelectPrevDimension", sigc::mem_fun(*this, &MainWindow::select_prev_dimension)
351        );
352        m_actionGroup->add_action(
353            "SelectNextDimension", sigc::mem_fun(*this, &MainWindow::select_next_dimension)
354        );
355        m_actionGroup->add_action(
356            "SelectAddPrevDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_add_prev_dim_rgn_zone)
357        );
358        m_actionGroup->add_action(
359            "SelectAddNextDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_add_next_dim_rgn_zone)
360        );
361    #else
362        actionGroup->add(Gtk::Action::create("CopyDimRgn",
363                                             _("Copy selected dimension region")),
364                         Gtk::AccelKey(GDK_KEY_c, Gdk::MOD1_MASK),
365                         sigc::mem_fun(*this, &MainWindow::copy_selected_dimrgn));
366    
367        actionGroup->add(Gtk::Action::create("PasteDimRgn",
368                                             _("Paste dimension region")),
369                         Gtk::AccelKey(GDK_KEY_v, Gdk::MOD1_MASK),
370                         sigc::mem_fun(*this, &MainWindow::paste_copied_dimrgn));
371    
372        actionGroup->add(Gtk::Action::create("AdjustClipboard",
373                                             _("Adjust Clipboard Content")),
374                         Gtk::AccelKey(GDK_KEY_x, Gdk::MOD1_MASK),
375                         sigc::mem_fun(*this, &MainWindow::adjust_clipboard_content));
376    
377        actionGroup->add(Gtk::Action::create("SelectPrevInstr",
378                                             _("Select Previous Instrument")),
379                         Gtk::AccelKey(GDK_KEY_Up, primaryModifierKey),
380                         sigc::mem_fun(*this, &MainWindow::select_prev_instrument));
381    
382        actionGroup->add(Gtk::Action::create("SelectNextInstr",
383                                             _("Select Next Instrument")),
384                         Gtk::AccelKey(GDK_KEY_Down, primaryModifierKey),
385                         sigc::mem_fun(*this, &MainWindow::select_next_instrument));
386    
387        actionGroup->add(Gtk::Action::create("SelectPrevRegion",
388                                             _("Select Previous Region")),
389                         Gtk::AccelKey(GDK_KEY_Left, primaryModifierKey),
390                         sigc::mem_fun(*this, &MainWindow::select_prev_region));
391    
392        actionGroup->add(Gtk::Action::create("SelectNextRegion",
393                                             _("Select Next Region")),
394                         Gtk::AccelKey(GDK_KEY_Right, primaryModifierKey),
395                         sigc::mem_fun(*this, &MainWindow::select_next_region));
396    
397        actionGroup->add(Gtk::Action::create("SelectPrevDimRgnZone",
398                                             _("Select Previous Dimension Region Zone")),
399                         Gtk::AccelKey(GDK_KEY_Left, Gdk::MOD1_MASK),
400                         sigc::mem_fun(*this, &MainWindow::select_prev_dim_rgn_zone));
401    
402        actionGroup->add(Gtk::Action::create("SelectNextDimRgnZone",
403                                             _("Select Next Dimension Region Zone")),
404                         Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK),
405                         sigc::mem_fun(*this, &MainWindow::select_next_dim_rgn_zone));
406    
407        actionGroup->add(Gtk::Action::create("SelectPrevDimension",
408                                             _("Select Previous Dimension")),
409                         Gtk::AccelKey(GDK_KEY_Up, Gdk::MOD1_MASK),
410                         sigc::mem_fun(*this, &MainWindow::select_prev_dimension));
411    
412        actionGroup->add(Gtk::Action::create("SelectNextDimension",
413                                             _("Select Next Dimension")),
414                         Gtk::AccelKey(GDK_KEY_Down, Gdk::MOD1_MASK),
415                         sigc::mem_fun(*this, &MainWindow::select_next_dimension));
416    
417        actionGroup->add(Gtk::Action::create("SelectAddPrevDimRgnZone",
418                                             _("Add Previous Dimension Region Zone to Selection")),
419                         Gtk::AccelKey(GDK_KEY_Left, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
420                         sigc::mem_fun(*this, &MainWindow::select_add_prev_dim_rgn_zone));
421    
422        actionGroup->add(Gtk::Action::create("SelectAddNextDimRgnZone",
423                                             _("Add Next Dimension Region Zone to Selection")),
424                         Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
425                         sigc::mem_fun(*this, &MainWindow::select_add_next_dim_rgn_zone));
426    #endif
427    
428    #if USE_GLIB_ACTION
429        m_actionToggleCopySampleUnity = m_actionGroup->add_action_bool("CopySampleUnity", true);
430        m_actionToggleCopySampleTune  = m_actionGroup->add_action_bool("CopySampleTune", true);
431        m_actionToggleCopySampleLoop  = m_actionGroup->add_action_bool("CopySampleLoop", true);
432    #else
433      Glib::RefPtr<Gtk::ToggleAction> toggle_action =      Glib::RefPtr<Gtk::ToggleAction> toggle_action =
434          Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"));          Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"));
435      toggle_action->set_active(true);      toggle_action->set_active(true);
# Line 183  MainWindow::MainWindow() : Line 444  MainWindow::MainWindow() :
444          Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));          Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));
445      toggle_action->set_active(true);      toggle_action->set_active(true);
446      actionGroup->add(toggle_action);      actionGroup->add(toggle_action);
447    #endif
448    
449    #if USE_GLIB_ACTION
450        m_actionToggleStatusBar =
451            m_actionGroup->add_action_bool("Statusbar", sigc::mem_fun(*this, &MainWindow::on_action_view_status_bar), true);
452        m_actionToggleRestoreWinDim =
453            m_actionGroup->add_action_bool("AutoRestoreWinDim", sigc::mem_fun(*this, &MainWindow::on_auto_restore_win_dim), Settings::singleton()->autoRestoreWindowDimension);
454        m_actionInstrDoubleClickOpensProps =
455            m_actionGroup->add_action_bool(
456                "OpenInstrPropsByDoubleClick",
457                sigc::mem_fun(*this, &MainWindow::on_instr_double_click_opens_props),
458                Settings::singleton()->instrumentDoubleClickOpensProps
459            );
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", _("_View")));      actionGroup->add(Gtk::Action::create("MenuView", _("Vie_w")));
472      toggle_action =      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("OpenInstrPropsByDoubleClick", _("Instrument Properties by Double Click"));
488        toggle_action->set_active(Settings::singleton()->instrumentDoubleClickOpensProps);
489        actionGroup->add(toggle_action,
490                         sigc::mem_fun(
491                             *this, &MainWindow::on_instr_double_click_opens_props));
492    
493        toggle_action =
494            Gtk::ToggleAction::create("ShowTooltips", _("Tooltips for Beginners"));
495        toggle_action->set_active(Settings::singleton()->showTooltips);
496        actionGroup->add(
497            toggle_action,
498            sigc::mem_fun(*this, &MainWindow::on_action_show_tooltips)
499        );
500    
501        toggle_action =
502            Gtk::ToggleAction::create("SaveWithTemporaryFile", _("Save with _temporary file"));
503        toggle_action->set_active(Settings::singleton()->saveWithTemporaryFile);
504        actionGroup->add(toggle_action,
505                         sigc::mem_fun(
506                             *this, &MainWindow::on_save_with_temporary_file));
507    
508      actionGroup->add(      actionGroup->add(
509          Gtk::Action::create("RefreshAll", _("_Refresh All")),          Gtk::Action::create("RefreshAll", _("_Refresh All")),
510          sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)          sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)
511      );                      );                
512    #endif
513    
514      actionGroup->add(Gtk::Action::create("MenuHelp", _("_Help")));  #if USE_GLIB_ACTION
515      actionGroup->add(Gtk::Action::create("About", _("_About")),      m_actionGroup->add_action(
516            "About", sigc::mem_fun(*this, &MainWindow::on_action_help_about)
517        );
518        m_actionGroup->add_action(
519            "AddInstrument", sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)
520        );
521        m_actionGroup->add_action(
522            "DupInstrument", sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
523        );
524        m_actionGroup->add_action(
525            "MoveInstrument", sigc::mem_fun(*this, &MainWindow::on_action_move_instr)
526        );
527        m_actionGroup->add_action(
528            "CombInstruments", sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
529        );
530        m_actionGroup->add_action(
531            "RemoveInstrument", sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
532        );
533    #else
534        action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
535        actionGroup->add(Gtk::Action::create("MenuHelp",
536                                             action->property_label()));
537        actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),
538                       sigc::mem_fun(                       sigc::mem_fun(
539                           *this, &MainWindow::on_action_help_about));                           *this, &MainWindow::on_action_help_about));
540      actionGroup->add(      actionGroup->add(
# Line 210  MainWindow::MainWindow() : Line 546  MainWindow::MainWindow() :
546          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
547      );      );
548      actionGroup->add(      actionGroup->add(
549          Gtk::Action::create("RemoveInstrument", _("_Remove")),          Gtk::Action::create("MoveInstrument", _("Move _Instrument To ...")),
550            Gtk::AccelKey(GDK_KEY_i, primaryModifierKey),
551            sigc::mem_fun(*this, &MainWindow::on_action_move_instr)
552        );
553        actionGroup->add(
554            Gtk::Action::create("CombInstruments", _("_Combine Instruments ...")),
555            Gtk::AccelKey(GDK_KEY_j, primaryModifierKey),
556            sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
557        );
558        actionGroup->add(
559            Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),
560          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
561      );      );
562    #endif
563    
564    #if USE_GLIB_ACTION
565        m_actionToggleWarnOnExtensions = m_actionGroup->add_action_bool(
566            "WarnUserOnExtensions", sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions),
567            Settings::singleton()->warnUserOnExtensions
568        );
569        m_actionToggleSyncSamplerSelection = m_actionGroup->add_action_bool(
570            "SyncSamplerInstrumentSelection", sigc::mem_fun(*this, &MainWindow::on_action_sync_sampler_instrument_selection),
571            Settings::singleton()->syncSamplerInstrumentSelection
572        );
573        m_actionToggleMoveRootNoteWithRegion = m_actionGroup->add_action_bool(
574            "MoveRootNoteWithRegionMoved", sigc::mem_fun(*this, &MainWindow::on_action_move_root_note_with_region_moved),
575            Settings::singleton()->moveRootNoteWithRegionMoved
576        );
577    #else
578      actionGroup->add(Gtk::Action::create("MenuSettings", _("_Settings")));      actionGroup->add(Gtk::Action::create("MenuSettings", _("_Settings")));
579            
580      toggle_action =      toggle_action =
# Line 240  MainWindow::MainWindow() : Line 600  MainWindow::MainWindow() :
600          toggle_action,          toggle_action,
601          sigc::mem_fun(*this, &MainWindow::on_action_move_root_note_with_region_moved)          sigc::mem_fun(*this, &MainWindow::on_action_move_root_note_with_region_moved)
602      );      );
603    #endif
604    
605    #if USE_GLIB_ACTION
606        m_actionGroup->add_action(
607            "CombineInstruments", sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
608        );
609        m_actionGroup->add_action(
610            "MergeFiles", sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
611        );
612    #else
613      actionGroup->add(Gtk::Action::create("MenuTools", _("_Tools")));      actionGroup->add(Gtk::Action::create("MenuTools", _("_Tools")));
614    
615      actionGroup->add(      actionGroup->add(
# Line 253  MainWindow::MainWindow() : Line 621  MainWindow::MainWindow() :
621          Gtk::Action::create("MergeFiles", _("_Merge Files...")),          Gtk::Action::create("MergeFiles", _("_Merge Files...")),
622          sigc::mem_fun(*this, &MainWindow::on_action_merge_files)          sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
623      );      );
624    #endif
625    
626      // sample right-click popup actions      // sample right-click popup actions
627    #if USE_GLIB_ACTION
628        m_actionSampleProperties = m_actionGroup->add_action(
629            "SampleProperties", sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
630        );
631        m_actionAddSampleGroup = m_actionGroup->add_action(
632            "AddGroup", sigc::mem_fun(*this, &MainWindow::on_action_add_group)
633        );
634        m_actionAddSample = m_actionGroup->add_action(
635            "AddSample", sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
636        );
637        m_actionRemoveSample = m_actionGroup->add_action(
638            "RemoveSample", sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
639        );
640        m_actionGroup->add_action(
641            "RemoveUnusedSamples", sigc::mem_fun(*this, &MainWindow::on_action_remove_unused_samples)
642        );
643        m_actionViewSampleRefs = m_actionGroup->add_action(
644            "ShowSampleRefs", sigc::mem_fun(*this, &MainWindow::on_action_view_references)
645        );
646        m_actionReplaceSample = m_actionGroup->add_action(
647            "ReplaceSample", sigc::mem_fun(*this, &MainWindow::on_action_replace_sample)
648        );
649        m_actionGroup->add_action(
650            "ReplaceAllSamplesInAllGroups", sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
651        );
652    #else
653      actionGroup->add(      actionGroup->add(
654          Gtk::Action::create("SampleProperties", _("_Properties")),          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),
655          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
656      );      );
657      actionGroup->add(      actionGroup->add(
# Line 269  MainWindow::MainWindow() : Line 663  MainWindow::MainWindow() :
663          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
664      );      );
665      actionGroup->add(      actionGroup->add(
666          Gtk::Action::create("RemoveSample", _("_Remove")),          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),
667          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
668      );      );
669      actionGroup->add(      actionGroup->add(
# Line 290  MainWindow::MainWindow() : Line 684  MainWindow::MainWindow() :
684                              _("Replace All Samples in All Groups...")),                              _("Replace All Samples in All Groups...")),
685          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)
686      );      );
687    #endif
688            
689      // script right-click popup actions      // script right-click popup actions
690    #if USE_GLIB_ACTION
691        m_actionAddScriptGroup = m_actionGroup->add_action(
692            "AddScriptGroup", sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
693        );
694        m_actionAddScript = m_actionGroup->add_action(
695            "AddScript", sigc::mem_fun(*this, &MainWindow::on_action_add_script)
696        );
697        m_actionEditScript = m_actionGroup->add_action(
698            "EditScript", sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
699        );
700        m_actionRemoveScript = m_actionGroup->add_action(
701            "RemoveScript", sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
702        );
703    #else
704      actionGroup->add(      actionGroup->add(
705          Gtk::Action::create("AddScriptGroup", _("Add _Group")),          Gtk::Action::create("AddScriptGroup", _("Add _Group")),
706          sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)          sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
# Line 305  MainWindow::MainWindow() : Line 714  MainWindow::MainWindow() :
714          sigc::mem_fun(*this, &MainWindow::on_action_edit_script)          sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
715      );      );
716      actionGroup->add(      actionGroup->add(
717          Gtk::Action::create("RemoveScript", _("_Remove")),          Gtk::Action::create("RemoveScript", Gtk::Stock::REMOVE),
718          sigc::mem_fun(*this, &MainWindow::on_action_remove_script)          sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
719      );      );
720    #endif
721    
722    #if USE_GTKMM_BUILDER
723        insert_action_group("AppMenu", m_actionGroup);
724        
725        m_uiManager = Gtk::Builder::create();
726        Glib::ustring ui_info =
727            "<interface>"
728            "  <menubar id='MenuBar'>"
729            "    <menu id='MenuFile'>"
730            "      <attribute name='label' translatable='yes'>_File</attribute>"
731            "      <section>"
732            "        <item id='New'>"
733            "          <attribute name='label' translatable='yes'>New</attribute>"
734            "          <attribute name='action'>AppMenu.New</attribute>"
735            "        </item>"
736            "        <item id='Open'>"
737            "          <attribute name='label' translatable='yes'>Open</attribute>"
738            "          <attribute name='action'>AppMenu.Open</attribute>"
739            "        </item>"
740            "      </section>"
741            "      <section>"
742            "        <item id='Save'>"
743            "          <attribute name='label' translatable='yes'>Save</attribute>"
744            "          <attribute name='action'>AppMenu.Save</attribute>"
745            "        </item>"
746            "        <item id='SaveAs'>"
747            "          <attribute name='label' translatable='yes'>Save As</attribute>"
748            "          <attribute name='action'>AppMenu.SaveAs</attribute>"
749            "        </item>"
750            "      </section>"
751            "      <section>"
752            "        <item id='Properties'>"
753            "          <attribute name='label' translatable='yes'>Properties</attribute>"
754            "          <attribute name='action'>AppMenu.Properties</attribute>"
755            "        </item>"
756            "      </section>"
757            "      <section>"
758            "        <item id='Quit'>"
759            "          <attribute name='label' translatable='yes'>Quit</attribute>"
760            "          <attribute name='action'>AppMenu.Quit</attribute>"
761            "        </item>"
762            "      </section>"
763            "    </menu>"
764            "    <menu id='MenuEdit'>"
765            "      <attribute name='label' translatable='yes'>Edit</attribute>"
766            "      <section>"
767            "        <item id='CopyDimRgn'>"
768            "          <attribute name='label' translatable='yes'>Copy Dimension Region</attribute>"
769            "          <attribute name='action'>AppMenu.CopyDimRgn</attribute>"
770            "        </item>"
771            "        <item id='AdjustClipboard'>"
772            "          <attribute name='label' translatable='yes'>Adjust Clipboard</attribute>"
773            "          <attribute name='action'>AppMenu.AdjustClipboard</attribute>"
774            "        </item>"
775            "        <item id='PasteDimRgn'>"
776            "          <attribute name='label' translatable='yes'>Paste Dimension Region</attribute>"
777            "          <attribute name='action'>AppMenu.PasteDimRgn</attribute>"
778            "        </item>"
779            "      </section>"
780            "        <item id='SelectPrevInstr'>"
781            "          <attribute name='label' translatable='yes'>Previous Instrument</attribute>"
782            "          <attribute name='action'>AppMenu.SelectPrevInstr</attribute>"
783            "        </item>"
784            "        <item id='SelectNextInstr'>"
785            "          <attribute name='label' translatable='yes'>Next Instrument</attribute>"
786            "          <attribute name='action'>AppMenu.SelectNextInstr</attribute>"
787            "        </item>"
788            "      <section>"
789            "        <item id='SelectPrevRegion'>"
790            "          <attribute name='label' translatable='yes'>Previous Region</attribute>"
791            "          <attribute name='action'>AppMenu.SelectPrevRegion</attribute>"
792            "        </item>"
793            "        <item id='SelectNextRegion'>"
794            "          <attribute name='label' translatable='yes'>Next Region</attribute>"
795            "          <attribute name='action'>AppMenu.SelectNextRegion</attribute>"
796            "        </item>"
797            "      </section>"
798            "        <item id='SelectPrevDimension'>"
799            "          <attribute name='label' translatable='yes'>Previous Dimension</attribute>"
800            "          <attribute name='action'>AppMenu.SelectPrevDimension</attribute>"
801            "        </item>"
802            "        <item id='SelectNextDimension'>"
803            "          <attribute name='label' translatable='yes'>Next Dimension</attribute>"
804            "          <attribute name='action'>AppMenu.SelectNextDimension</attribute>"
805            "        </item>"
806            "        <item id='SelectPrevDimRgnZone'>"
807            "          <attribute name='label' translatable='yes'>Previous Dimension Region Zone</attribute>"
808            "          <attribute name='action'>AppMenu.SelectPrevDimRgnZone</attribute>"
809            "        </item>"
810            "        <item id='SelectNextDimRgnZone'>"
811            "          <attribute name='label' translatable='yes'>Next Dimension Region Zone</attribute>"
812            "          <attribute name='action'>AppMenu.SelectNextDimRgnZone</attribute>"
813            "        </item>"
814            "        <item id='SelectAddPrevDimRgnZone'>"
815            "          <attribute name='label' translatable='yes'>Add Previous Dimension Region Zone</attribute>"
816            "          <attribute name='action'>AppMenu.SelectAddPrevDimRgnZone</attribute>"
817            "        </item>"
818            "        <item id='SelectAddNextDimRgnZone'>"
819            "          <attribute name='label' translatable='yes'>Add Next Dimension Region Zone</attribute>"
820            "          <attribute name='action'>AppMenu.SelectAddNextDimRgnZone</attribute>"
821            "        </item>"
822            "      <section>"
823            "        <item id='CopySampleUnity'>"
824            "          <attribute name='label' translatable='yes'>Copy Sample Unity</attribute>"
825            "          <attribute name='action'>AppMenu.CopySampleUnity</attribute>"
826            "        </item>"
827            "        <item id='CopySampleTune'>"
828            "          <attribute name='label' translatable='yes'>Copy Sample Tune</attribute>"
829            "          <attribute name='action'>AppMenu.CopySampleTune</attribute>"
830            "        </item>"
831            "        <item id='CopySampleLoop'>"
832            "          <attribute name='label' translatable='yes'>Copy Sample Loop</attribute>"
833            "          <attribute name='action'>AppMenu.CopySampleLoop</attribute>"
834            "        </item>"
835            "      </section>"
836            "    </menu>"
837            "    <menu id='MenuMacro'>"
838            "      <attribute name='label' translatable='yes'>Macro</attribute>"
839            "      <section>"
840            "      </section>"
841            "    </menu>"
842            "    <menu id='MenuSample'>"
843            "      <attribute name='label' translatable='yes'>Sample</attribute>"
844            "      <section>"
845            "        <item id='SampleProperties'>"
846            "          <attribute name='label' translatable='yes'>Properties</attribute>"
847            "          <attribute name='action'>AppMenu.SampleProperties</attribute>"
848            "        </item>"
849            "        <item id='AddGroup'>"
850            "          <attribute name='label' translatable='yes'>Add Group</attribute>"
851            "          <attribute name='action'>AppMenu.AddGroup</attribute>"
852            "        </item>"
853            "        <item id='AddSample'>"
854            "          <attribute name='label' translatable='yes'>Add Sample</attribute>"
855            "          <attribute name='action'>AppMenu.AddSample</attribute>"
856            "        </item>"
857            "        <item id='ShowSampleRefs'>"
858            "          <attribute name='label' translatable='yes'>Show Sample References</attribute>"
859            "          <attribute name='action'>AppMenu.ShowSampleRefs</attribute>"
860            "        </item>"
861            "        <item id='ReplaceSample'>"
862            "          <attribute name='label' translatable='yes'>Replace Sample</attribute>"
863            "          <attribute name='action'>AppMenu.ReplaceSample</attribute>"
864            "        </item>"
865            "        <item id='ReplaceAllSamplesInAllGroups'>"
866            "          <attribute name='label' translatable='yes'>Replace all Samples in all Groups</attribute>"
867            "          <attribute name='action'>AppMenu.ReplaceAllSamplesInAllGroups</attribute>"
868            "        </item>"
869            "      </section>"
870            "      <section>"
871            "        <item id='RemoveSample'>"
872            "          <attribute name='label' translatable='yes'>Remove Sample</attribute>"
873            "          <attribute name='action'>AppMenu.RemoveSample</attribute>"
874            "        </item>"
875            "        <item id='RemoveUnusedSamples'>"
876            "          <attribute name='label' translatable='yes'>Remove unused Samples</attribute>"
877            "          <attribute name='action'>AppMenu.RemoveUnusedSamples</attribute>"
878            "        </item>"
879            "      </section>"
880            "    </menu>"
881            "    <menu id='MenuInstrument'>"
882            "      <attribute name='label' translatable='yes'>Instrument</attribute>"
883            "      <section>"
884            "        <item id='InstrProperties'>"
885            "          <attribute name='label' translatable='yes'>Properties</attribute>"
886            "          <attribute name='action'>AppMenu.InstrProperties</attribute>"
887            "        </item>"
888            "        <item id='MidiRules'>"
889            "          <attribute name='label' translatable='yes'>MIDI Rules</attribute>"
890            "          <attribute name='action'>AppMenu.MidiRules</attribute>"
891            "        </item>"
892            "        <item id='ScriptSlots'>"
893            "          <attribute name='label' translatable='yes'>Script Slots</attribute>"
894            "          <attribute name='action'>AppMenu.ScriptSlots</attribute>"
895            "        </item>"
896            "      </section>"
897            "      <submenu id='AssignScripts'>"
898            "        <attribute name='label' translatable='yes'>Assign Scripts</attribute>"
899            "      </submenu>"
900            "      <section>"
901            "        <item id='AddInstrument'>"
902            "          <attribute name='label' translatable='yes'>Add Instrument</attribute>"
903            "          <attribute name='action'>AppMenu.AddInstrument</attribute>"
904            "        </item>"
905            "        <item id='DupInstrument'>"
906            "          <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"
907            "          <attribute name='action'>AppMenu.DupInstrument</attribute>"
908            "        </item>"
909            "        <item id='MoveInstrument'>"
910            "          <attribute name='label' translatable='yes'>Move Instrument To ...</attribute>"
911            "          <attribute name='action'>AppMenu.MoveInstrument</attribute>"
912            "        </item>"
913            "        <item id='CombInstruments'>"
914            "          <attribute name='label' translatable='yes'>Combine Instrument</attribute>"
915            "          <attribute name='action'>AppMenu.CombInstruments</attribute>"
916            "        </item>"
917            "      </section>"
918            "      <section>"
919            "        <item id='RemoveInstrument'>"
920            "          <attribute name='label' translatable='yes'>Remove Instrument</attribute>"
921            "          <attribute name='action'>AppMenu.RemoveInstrument</attribute>"
922            "        </item>"
923            "      </section>"
924            "    </menu>"
925            "    <menu id='MenuScript'>"
926            "      <attribute name='label' translatable='yes'>Script</attribute>"
927            "      <section>"
928            "        <item id='AddScriptGroup'>"
929            "          <attribute name='label' translatable='yes'>Add Script Group</attribute>"
930            "          <attribute name='action'>AppMenu.AddScriptGroup</attribute>"
931            "        </item>"
932            "        <item id='AddScript'>"
933            "          <attribute name='label' translatable='yes'>Add Script</attribute>"
934            "          <attribute name='action'>AppMenu.AddScript</attribute>"
935            "        </item>"
936            "        <item id='EditScript'>"
937            "          <attribute name='label' translatable='yes'>Edit Script</attribute>"
938            "          <attribute name='action'>AppMenu.EditScript</attribute>"
939            "        </item>"
940            "      </section>"
941            "      <section>"
942            "        <item id='RemoveScript'>"
943            "          <attribute name='label' translatable='yes'>Remove Script</attribute>"
944            "          <attribute name='action'>AppMenu.RemoveScript</attribute>"
945            "        </item>"
946            "      </section>"
947            "    </menu>"
948            "    <menu id='MenuView'>"
949            "      <attribute name='label' translatable='yes'>View</attribute>"
950            "      <section>"
951            "        <item id='Statusbar'>"
952            "          <attribute name='label' translatable='yes'>Statusbar</attribute>"
953            "          <attribute name='action'>AppMenu.Statusbar</attribute>"
954            "        </item>"
955            "        <item id='ShowTooltips'>"
956            "          <attribute name='label' translatable='yes'>Tooltips for Beginners</attribute>"
957            "          <attribute name='action'>AppMenu.ShowTooltips</attribute>"
958            "        </item>"
959            "        <item id='AutoRestoreWinDim'>"
960            "          <attribute name='label' translatable='yes'>Auto restore Window Dimensions</attribute>"
961            "          <attribute name='action'>AppMenu.AutoRestoreWinDim</attribute>"
962            "        </item>"
963            "        <item id='OpenInstrPropsByDoubleClick'>"
964            "          <attribute name='label' translatable='yes'>Instrument Properties by Double Click</attribute>"
965            "          <attribute name='action'>AppMenu.OpenInstrPropsByDoubleClick</attribute>"
966            "        </item>"
967            "      </section>"
968            "      <section>"
969            "        <item id='RefreshAll'>"
970            "          <attribute name='label' translatable='yes'>Refresh All</attribute>"
971            "          <attribute name='action'>AppMenu.RefreshAll</attribute>"
972            "        </item>"
973            "      </section>"
974            "    </menu>"
975            "    <menu id='MenuTools'>"
976            "      <attribute name='label' translatable='yes'>Tools</attribute>"
977            "      <section>"
978            "        <item id='CombineInstruments'>"
979            "          <attribute name='label' translatable='yes'>Combine Instruments ...</attribute>"
980            "          <attribute name='action'>AppMenu.CombineInstruments</attribute>"
981            "        </item>"
982            "        <item id='MergeFiles'>"
983            "          <attribute name='label' translatable='yes'>Merge Files ...</attribute>"
984            "          <attribute name='action'>AppMenu.MergeFiles</attribute>"
985            "        </item>"
986            "      </section>"
987            "    </menu>"
988            "    <menu id='MenuSettings'>"
989            "      <attribute name='label' translatable='yes'>Settings</attribute>"
990            "      <section>"
991            "        <item id='WarnUserOnExtensions'>"
992            "          <attribute name='label' translatable='yes'>Warning on Format Extensions</attribute>"
993            "          <attribute name='action'>AppMenu.WarnUserOnExtensions</attribute>"
994            "        </item>"
995            "        <item id='SyncSamplerInstrumentSelection'>"
996            "          <attribute name='label' translatable='yes'>Synchronize Sampler Selection</attribute>"
997            "          <attribute name='action'>AppMenu.SyncSamplerInstrumentSelection</attribute>"
998            "        </item>"
999            "        <item id='MoveRootNoteWithRegionMoved'>"
1000            "          <attribute name='label' translatable='yes'>Move Root Note with Region moved</attribute>"
1001            "          <attribute name='action'>AppMenu.MoveRootNoteWithRegionMoved</attribute>"
1002            "        </item>"
1003            "        <item id='SaveWithTemporaryFile'>"
1004            "          <attribute name='label' translatable='yes'>Save with temporary file</attribute>"
1005            "          <attribute name='action'>AppMenu.SaveWithTemporaryFile</attribute>"
1006            "        </item>"
1007            "      </section>"
1008            "    </menu>"
1009            "    <menu id='MenuHelp'>"
1010            "      <attribute name='label' translatable='yes'>Help</attribute>"
1011            "      <section>"
1012            "        <item id='About'>"
1013            "          <attribute name='label' translatable='yes'>About ...</attribute>"
1014            "          <attribute name='action'>AppMenu.About</attribute>"
1015            "        </item>"
1016            "      </section>"
1017            "    </menu>"
1018            "  </menubar>"
1019            // popups
1020            "  <menu id='PopupMenu'>"
1021            "    <section>"
1022            "      <item id='InstrProperties'>"
1023            "        <attribute name='label' translatable='yes'>Instrument Properties</attribute>"
1024            "        <attribute name='action'>AppMenu.InstrProperties</attribute>"
1025            "      </item>"
1026            "      <item id='MidiRules'>"
1027            "        <attribute name='label' translatable='yes'>MIDI Rules</attribute>"
1028            "        <attribute name='action'>AppMenu.MidiRules</attribute>"
1029            "      </item>"
1030            "      <item id='ScriptSlots'>"
1031            "        <attribute name='label' translatable='yes'>Script Slots</attribute>"
1032            "        <attribute name='action'>AppMenu.ScriptSlots</attribute>"
1033            "      </item>"
1034            "      <item id='AddInstrument'>"
1035            "        <attribute name='label' translatable='yes'>Add Instrument</attribute>"
1036            "        <attribute name='action'>AppMenu.AddInstrument</attribute>"
1037            "      </item>"
1038            "      <item id='DupInstrument'>"
1039            "        <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"
1040            "        <attribute name='action'>AppMenu.DupInstrument</attribute>"
1041            "      </item>"
1042            "      <item id='MoveInstrument'>"
1043            "        <attribute name='label' translatable='yes'>Move Instrument To ...</attribute>"
1044            "        <attribute name='action'>AppMenu.MoveInstrument</attribute>"
1045            "      </item>"
1046            "      <item id='CombInstruments'>"
1047            "        <attribute name='label' translatable='yes'>Combine Instruments</attribute>"
1048            "        <attribute name='action'>AppMenu.CombInstruments</attribute>"
1049            "      </item>"
1050            "    </section>"
1051            "    <section>"
1052            "      <item id='RemoveInstrument'>"
1053            "        <attribute name='label' translatable='yes'>Remove Instruments</attribute>"
1054            "        <attribute name='action'>AppMenu.RemoveInstrument</attribute>"
1055            "      </item>"
1056            "    </section>"
1057            "  </menu>"
1058            "  <menu id='SamplePopupMenu'>"
1059            "    <section>"
1060            "      <item id='SampleProperties'>"
1061            "        <attribute name='label' translatable='yes'>Sample Properties</attribute>"
1062            "        <attribute name='action'>AppMenu.SampleProperties</attribute>"
1063            "      </item>"
1064            "      <item id='AddGroup'>"
1065            "        <attribute name='label' translatable='yes'>Add Sample Group</attribute>"
1066            "        <attribute name='action'>AppMenu.AddGroup</attribute>"
1067            "      </item>"
1068            "      <item id='AddSample'>"
1069            "        <attribute name='label' translatable='yes'>Add Sample</attribute>"
1070            "        <attribute name='action'>AppMenu.AddSample</attribute>"
1071            "      </item>"
1072            "      <item id='ShowSampleRefs'>"
1073            "        <attribute name='label' translatable='yes'>Show Sample References ...</attribute>"
1074            "        <attribute name='action'>AppMenu.ShowSampleRefs</attribute>"
1075            "      </item>"
1076            "      <item id='ReplaceSample'>"
1077            "        <attribute name='label' translatable='yes'>Replace Sample</attribute>"
1078            "        <attribute name='action'>AppMenu.ReplaceSample</attribute>"
1079            "      </item>"
1080            "      <item id='ReplaceAllSamplesInAllGroups'>"
1081            "        <attribute name='label' translatable='yes'>Replace all Samples ...</attribute>"
1082            "        <attribute name='action'>AppMenu.ReplaceAllSamplesInAllGroups</attribute>"
1083            "      </item>"
1084            "    </section>"
1085            "    <section>"
1086            "      <item id='RemoveSample'>"
1087            "        <attribute name='label' translatable='yes'>Remove Sample</attribute>"
1088            "        <attribute name='action'>AppMenu.RemoveSample</attribute>"
1089            "      </item>"
1090            "      <item id='RemoveUnusedSamples'>"
1091            "        <attribute name='label' translatable='yes'>Remove unused Samples</attribute>"
1092            "        <attribute name='action'>AppMenu.RemoveUnusedSamples</attribute>"
1093            "      </item>"
1094            "    </section>"
1095            "  </menu>"
1096            "  <menu id='ScriptPopupMenu'>"
1097            "    <section>"
1098            "      <item id='AddScriptGroup'>"
1099            "        <attribute name='label' translatable='yes'>Add Script Group</attribute>"
1100            "        <attribute name='action'>AppMenu.AddScriptGroup</attribute>"
1101            "      </item>"
1102            "      <item id='AddScript'>"
1103            "        <attribute name='label' translatable='yes'>Add Script</attribute>"
1104            "        <attribute name='action'>AppMenu.AddScript</attribute>"
1105            "      </item>"
1106            "      <item id='EditScript'>"
1107            "        <attribute name='label' translatable='yes'>Edit Script</attribute>"
1108            "        <attribute name='action'>AppMenu.EditScript</attribute>"
1109            "      </item>"
1110            "    </section>"
1111            "    <section>"
1112            "      <item id='RemoveScript'>"
1113            "        <attribute name='label' translatable='yes'>Remove Script</attribute>"
1114            "        <attribute name='action'>AppMenu.RemoveScript</attribute>"
1115            "      </item>"
1116            "    </section>"
1117            "  </menu>"
1118            "</interface>";
1119        m_uiManager->add_from_string(ui_info);
1120    #else
1121      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
1122      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
1123      add_accel_group(uiManager->get_accel_group());      add_accel_group(uiManager->get_accel_group());
# Line 328  MainWindow::MainWindow() : Line 1137  MainWindow::MainWindow() :
1137          "      <menuitem action='Quit'/>"          "      <menuitem action='Quit'/>"
1138          "    </menu>"          "    </menu>"
1139          "    <menu action='MenuEdit'>"          "    <menu action='MenuEdit'>"
1140            "      <menuitem action='CopyDimRgn'/>"
1141            "      <menuitem action='AdjustClipboard'/>"
1142            "      <menuitem action='PasteDimRgn'/>"
1143            "      <separator/>"
1144            "      <menuitem action='SelectPrevInstr'/>"
1145            "      <menuitem action='SelectNextInstr'/>"
1146            "      <separator/>"
1147            "      <menuitem action='SelectPrevRegion'/>"
1148            "      <menuitem action='SelectNextRegion'/>"
1149            "      <separator/>"
1150            "      <menuitem action='SelectPrevDimension'/>"
1151            "      <menuitem action='SelectNextDimension'/>"
1152            "      <menuitem action='SelectPrevDimRgnZone'/>"
1153            "      <menuitem action='SelectNextDimRgnZone'/>"
1154            "      <menuitem action='SelectAddPrevDimRgnZone'/>"
1155            "      <menuitem action='SelectAddNextDimRgnZone'/>"
1156            "      <separator/>"
1157          "      <menuitem action='CopySampleUnity'/>"          "      <menuitem action='CopySampleUnity'/>"
1158          "      <menuitem action='CopySampleTune'/>"          "      <menuitem action='CopySampleTune'/>"
1159          "      <menuitem action='CopySampleLoop'/>"          "      <menuitem action='CopySampleLoop'/>"
1160          "    </menu>"          "    </menu>"
1161            "    <menu action='MenuMacro'>"
1162            "    </menu>"
1163          "    <menu action='MenuSample'>"          "    <menu action='MenuSample'>"
1164          "      <menuitem action='SampleProperties'/>"          "      <menuitem action='SampleProperties'/>"
1165          "      <menuitem action='AddGroup'/>"          "      <menuitem action='AddGroup'/>"
# Line 350  MainWindow::MainWindow() : Line 1178  MainWindow::MainWindow() :
1178          "      <menuitem action='InstrProperties'/>"          "      <menuitem action='InstrProperties'/>"
1179          "      <menuitem action='MidiRules'/>"          "      <menuitem action='MidiRules'/>"
1180          "      <menuitem action='ScriptSlots'/>"          "      <menuitem action='ScriptSlots'/>"
1181            "      <menu action='AssignScripts'/>"
1182          "      <menuitem action='AddInstrument'/>"          "      <menuitem action='AddInstrument'/>"
1183          "      <menuitem action='DupInstrument'/>"          "      <menuitem action='DupInstrument'/>"
1184            "      <menuitem action='MoveInstrument'/>"
1185            "      <menuitem action='CombInstruments'/>"
1186          "      <separator/>"          "      <separator/>"
1187          "      <menuitem action='RemoveInstrument'/>"          "      <menuitem action='RemoveInstrument'/>"
1188          "    </menu>"          "    </menu>"
# Line 364  MainWindow::MainWindow() : Line 1195  MainWindow::MainWindow() :
1195          "    </menu>"          "    </menu>"
1196          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
1197          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
1198            "      <menuitem action='ShowTooltips'/>"
1199            "      <menuitem action='AutoRestoreWinDim'/>"
1200            "      <menuitem action='OpenInstrPropsByDoubleClick'/>"
1201          "      <separator/>"          "      <separator/>"
1202          "      <menuitem action='RefreshAll'/>"          "      <menuitem action='RefreshAll'/>"
1203          "    </menu>"          "    </menu>"
# Line 375  MainWindow::MainWindow() : Line 1209  MainWindow::MainWindow() :
1209          "      <menuitem action='WarnUserOnExtensions'/>"          "      <menuitem action='WarnUserOnExtensions'/>"
1210          "      <menuitem action='SyncSamplerInstrumentSelection'/>"          "      <menuitem action='SyncSamplerInstrumentSelection'/>"
1211          "      <menuitem action='MoveRootNoteWithRegionMoved'/>"          "      <menuitem action='MoveRootNoteWithRegionMoved'/>"
1212            "      <menuitem action='SaveWithTemporaryFile'/>"
1213          "    </menu>"          "    </menu>"
1214          "    <menu action='MenuHelp'>"          "    <menu action='MenuHelp'>"
1215          "      <menuitem action='About'/>"          "      <menuitem action='About'/>"
# Line 386  MainWindow::MainWindow() : Line 1221  MainWindow::MainWindow() :
1221          "    <menuitem action='ScriptSlots'/>"          "    <menuitem action='ScriptSlots'/>"
1222          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
1223          "    <menuitem action='DupInstrument'/>"          "    <menuitem action='DupInstrument'/>"
1224            "    <menuitem action='MoveInstrument'/>"
1225            "    <menuitem action='CombInstruments'/>"
1226          "    <separator/>"          "    <separator/>"
1227          "    <menuitem action='RemoveInstrument'/>"          "    <menuitem action='RemoveInstrument'/>"
1228          "  </popup>"          "  </popup>"
# Line 409  MainWindow::MainWindow() : Line 1246  MainWindow::MainWindow() :
1246          "  </popup>"          "  </popup>"
1247          "</ui>";          "</ui>";
1248      uiManager->add_ui_from_string(ui_info);      uiManager->add_ui_from_string(ui_info);
1249    #endif
1250    
1251    #if USE_GTKMM_BUILDER
1252        popup_menu = new Gtk::Menu(
1253            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1254                m_uiManager->get_object("PopupMenu")
1255            )
1256        );
1257        sample_popup = new Gtk::Menu(
1258            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1259                m_uiManager->get_object("SamplePopupMenu")
1260            )
1261        );
1262        script_popup = new Gtk::Menu(
1263            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1264                m_uiManager->get_object("ScriptPopupMenu")
1265            )
1266        );
1267    #else
1268      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));
1269            
1270      // Set tooltips for menu items (for some reason, setting a tooltip on the      // Set tooltips for menu items (for some reason, setting a tooltip on the
# Line 429  MainWindow::MainWindow() : Line 1284  MainWindow::MainWindow() :
1284      {      {
1285          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1286              uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));              uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
1287          item->set_tooltip_text(_("Used when dragging a sample to a region's sample reference field. You may disable this for example if you want to replace an existing sample in a region with a new sample, but don't want that the region's current loop informations to be altered by this action."));          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."));
1288      }      }
1289      {      {
1290          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
# Line 444  MainWindow::MainWindow() : Line 1299  MainWindow::MainWindow() :
1299      {      {
1300          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1301              uiManager->get_widget("/MenuBar/MenuSettings/MoveRootNoteWithRegionMoved"));              uiManager->get_widget("/MenuBar/MenuSettings/MoveRootNoteWithRegionMoved"));
1302          item->set_tooltip_text(_("If checked, and when a region is moved by dragging it around on the virtual keyboard, the keybord position dependent pitch will move exactly with the amount of semi tones the region was moved around."));          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."));
1303      }      }
1304      {      {
1305          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
# Line 462  MainWindow::MainWindow() : Line 1317  MainWindow::MainWindow() :
1317      }      }
1318      {      {
1319          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1320                uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
1321            item->set_tooltip_text(_("If checked, size and position of all windows will be saved and automatically restored next time."));
1322        }
1323        {
1324            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1325                uiManager->get_widget("/MenuBar/MenuView/OpenInstrPropsByDoubleClick"));
1326            item->set_tooltip_text(_("If checked, double clicking an instrument opens its properties dialog."));
1327        }
1328        {
1329            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1330              uiManager->get_widget("/MenuBar/MenuTools/CombineInstruments"));              uiManager->get_widget("/MenuBar/MenuTools/CombineInstruments"));
1331          item->set_tooltip_text(_("Create combi sounds out of individual sounds of this .gig file."));          item->set_tooltip_text(_("Create combi sounds out of individual sounds of this .gig file."));
1332      }      }
# Line 470  MainWindow::MainWindow() : Line 1335  MainWindow::MainWindow() :
1335              uiManager->get_widget("/MenuBar/MenuTools/MergeFiles"));              uiManager->get_widget("/MenuBar/MenuTools/MergeFiles"));
1336          item->set_tooltip_text(_("Add instruments and samples of other .gig files to this .gig file."));          item->set_tooltip_text(_("Add instruments and samples of other .gig files to this .gig file."));
1337      }      }
1338    #endif
1339    
1340    #if USE_GTKMM_BUILDER
1341        assign_scripts_menu = new Gtk::Menu(
1342            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1343                m_uiManager->get_object("AssignScripts")
1344            )
1345        );
1346    #else
1347      instrument_menu = static_cast<Gtk::MenuItem*>(      instrument_menu = static_cast<Gtk::MenuItem*>(
1348          uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();          uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();
1349    
1350        assign_scripts_menu = static_cast<Gtk::MenuItem*>(
1351            uiManager->get_widget("/MenuBar/MenuInstrument/AssignScripts"))->get_submenu();
1352    #endif
1353    
1354    #if USE_GTKMM_BUILDER
1355        Gtk::Widget* menuBar = NULL;
1356        m_uiManager->get_widget("MenuBar", menuBar);
1357    #else
1358      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");
1359    #endif
1360    
1361      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
1362      m_VBox.pack_start(m_HPaned);      m_VBox.pack_start(m_HPaned);
1363      m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK);
# Line 486  MainWindow::MainWindow() : Line 1368  MainWindow::MainWindow() :
1368      set_file_is_shared(false);      set_file_is_shared(false);
1369    
1370      // Status Bar:      // Status Bar:
1371    #if USE_GTKMM_BOX
1372    # warning No status bar layout for GTKMM 4 yet
1373    #else
1374      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);
1375      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);
1376    #endif
1377      m_StatusBar.show();      m_StatusBar.show();
1378    
1379      m_RegionChooser.signal_region_selected().connect(      m_RegionChooser.signal_region_selected().connect(
# Line 497  MainWindow::MainWindow() : Line 1383  MainWindow::MainWindow() :
1383    
1384    
1385      // Create the Tree model:      // Create the Tree model:
1386      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refInstrumentsTreeModel = Gtk::ListStore::create(m_InstrumentsModel);
1387      m_TreeView.set_model(m_refTreeModel);      m_refInstrumentsModelFilter = Gtk::TreeModelFilter::create(m_refInstrumentsTreeModel);
1388      m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules. Drag & drop to change the order of instruments."));      m_refInstrumentsModelFilter->set_visible_func(
1389      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(          sigc::mem_fun(*this, &MainWindow::instrument_row_visible)
1390        );
1391        m_TreeViewInstruments.set_model(m_refInstrumentsModelFilter);
1392    
1393        m_TreeViewInstruments.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
1394        m_TreeViewInstruments.set_has_tooltip(true);
1395        m_TreeViewInstruments.signal_query_tooltip().connect(
1396            sigc::mem_fun(*this, &MainWindow::onQueryTreeViewTooltip)
1397        );
1398        instrument_name_connection = m_refInstrumentsTreeModel->signal_row_changed().connect(
1399          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
1400      );      );
1401    
1402      // Add the TreeView's view columns:      // Add the TreeView's view columns:
1403      m_TreeView.append_column_editable("Instrument", m_Columns.m_col_name);      m_TreeViewInstruments.append_column(_("Nr"), m_InstrumentsModel.m_col_nr);
1404      m_TreeView.set_headers_visible(false);      m_TreeViewInstruments.append_column_editable(_("Instrument"), m_InstrumentsModel.m_col_name);
1405        m_TreeViewInstruments.append_column(_("Scripts"), m_InstrumentsModel.m_col_scripts);
1406        m_TreeViewInstruments.set_headers_visible(true);
1407            
1408      // establish drag&drop within the instrument tree view, allowing to reorder      // establish drag&drop within the instrument tree view, allowing to reorder
1409      // the sequence of instruments within the gig file      // the sequence of instruments within the gig file
1410      {      {
1411          std::vector<Gtk::TargetEntry> drag_target_instrument;          std::vector<Gtk::TargetEntry> drag_target_instrument;
1412          drag_target_instrument.push_back(Gtk::TargetEntry("gig::Instrument"));          drag_target_instrument.push_back(Gtk::TargetEntry("gig::Instrument"));
1413          m_TreeView.drag_source_set(drag_target_instrument);          m_TreeViewInstruments.drag_source_set(drag_target_instrument);
1414          m_TreeView.drag_dest_set(drag_target_instrument);          m_TreeViewInstruments.drag_dest_set(drag_target_instrument);
1415          m_TreeView.signal_drag_begin().connect(          m_TreeViewInstruments.signal_drag_begin().connect(
1416              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_begin)              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_begin)
1417          );          );
1418          m_TreeView.signal_drag_data_get().connect(          m_TreeViewInstruments.signal_drag_data_get().connect(
1419              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_data_get)              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_data_get)
1420          );          );
1421          m_TreeView.signal_drag_data_received().connect(          m_TreeViewInstruments.signal_drag_data_received().connect(
1422              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drop_drag_data_received)              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drop_drag_data_received)
1423          );          );
1424      }      }
# Line 529  MainWindow::MainWindow() : Line 1426  MainWindow::MainWindow() :
1426      // create samples treeview (including its data model)      // create samples treeview (including its data model)
1427      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);
1428      m_TreeViewSamples.set_model(m_refSamplesTreeModel);      m_TreeViewSamples.set_model(m_refSamplesTreeModel);
1429        m_TreeViewSamples.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
1430      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."));      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."));
1431      // m_TreeViewSamples.set_reorderable();      // m_TreeViewSamples.set_reorderable();
1432      m_TreeViewSamples.append_column_editable(_("Name"), m_SamplesModel.m_col_name);      m_TreeViewSamples.append_column_editable(_("Name"), m_SamplesModel.m_col_name);
# Line 550  MainWindow::MainWindow() : Line 1448  MainWindow::MainWindow() :
1448          );          );
1449      }      }
1450      m_TreeViewSamples.set_headers_visible(true);      m_TreeViewSamples.set_headers_visible(true);
1451    #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
1452        m_TreeViewSamples.signal_button_press_event().connect(
1453            sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
1454        );
1455    #else
1456      m_TreeViewSamples.signal_button_press_event().connect_notify(      m_TreeViewSamples.signal_button_press_event().connect_notify(
1457          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
1458      );      );
1459    #endif
1460      m_refSamplesTreeModel->signal_row_changed().connect(      m_refSamplesTreeModel->signal_row_changed().connect(
1461          sigc::mem_fun(*this, &MainWindow::sample_name_changed)          sigc::mem_fun(*this, &MainWindow::sample_name_changed)
1462      );      );
# Line 569  MainWindow::MainWindow() : Line 1473  MainWindow::MainWindow() :
1473      // m_TreeViewScripts.set_reorderable();      // m_TreeViewScripts.set_reorderable();
1474      m_TreeViewScripts.append_column_editable("Samples", m_ScriptsModel.m_col_name);      m_TreeViewScripts.append_column_editable("Samples", m_ScriptsModel.m_col_name);
1475      m_TreeViewScripts.set_headers_visible(false);      m_TreeViewScripts.set_headers_visible(false);
1476    #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
1477        m_TreeViewScripts.signal_button_press_event().connect(
1478            sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
1479        );
1480    #else
1481      m_TreeViewScripts.signal_button_press_event().connect_notify(      m_TreeViewScripts.signal_button_press_event().connect_notify(
1482          sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)          sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
1483      );      );
1484    #endif
1485      //FIXME: why the heck does this double click signal_row_activated() only fire while CTRL key is pressed ?      //FIXME: why the heck does this double click signal_row_activated() only fire while CTRL key is pressed ?
1486      m_TreeViewScripts.signal_row_activated().connect(      m_TreeViewScripts.signal_row_activated().connect(
1487          sigc::mem_fun(*this, &MainWindow::script_double_clicked)          sigc::mem_fun(*this, &MainWindow::script_double_clicked)
# Line 615  MainWindow::MainWindow() : Line 1525  MainWindow::MainWindow() :
1525          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1526      instrumentProps.signal_changed().connect(      instrumentProps.signal_changed().connect(
1527          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1528      propDialog.signal_changed().connect(      sampleProps.signal_changed().connect(
1529            sigc::mem_fun(*this, &MainWindow::file_changed));
1530        fileProps.signal_changed().connect(
1531          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1532      midiRules.signal_changed().connect(      midiRules.signal_changed().connect(
1533          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
# Line 637  MainWindow::MainWindow() : Line 1549  MainWindow::MainWindow() :
1549          sigc::mem_fun(*this, &MainWindow::select_sample)          sigc::mem_fun(*this, &MainWindow::select_sample)
1550      );      );
1551    
1552        dimreg_edit.editScriptSlotsButton.signal_clicked().connect(
1553            sigc::mem_fun(*this, &MainWindow::show_script_slots)
1554        );
1555        // simply sending the same signal (pair) to the sampler on 'patch' variable
1556        // changes as the already existing signal (pair) when the user edits the
1557        // script's source code, because the sampler would reload the source code
1558        // and the 'patch' variables from the instrument on this signal anyway
1559        dimreg_edit.scriptVars.signal_vars_to_be_changed.connect(
1560            [this](gig::Instrument* instr) {
1561                for (int i = 0; i < instr->ScriptSlotCount(); ++i) {
1562                    gig::Script* script = instr->GetScriptOfSlot(i);
1563                    signal_script_to_be_changed.emit(script);
1564                }
1565            }
1566        );
1567        dimreg_edit.scriptVars.signal_vars_changed.connect(
1568            [this](gig::Instrument* instr) {
1569                for (int i = 0; i < instr->ScriptSlotCount(); ++i) {
1570                    gig::Script* script = instr->GetScriptOfSlot(i);
1571                    signal_script_changed.emit(script);
1572                }
1573            }
1574        );
1575        dimreg_edit.scriptVars.signal_edit_script.connect(
1576            [this](gig::Script* script) {
1577                editScript(script);
1578            }
1579        );
1580    
1581      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(
1582          sigc::hide(          sigc::hide(
1583              sigc::bind(              sigc::bind(
1584                  file_structure_to_be_changed_signal.make_slot(),                  file_structure_to_be_changed_signal.make_slot(),
1585    #if SIGCXX_MAJOR_VERSION > 2 || (SIGCXX_MAJOR_VERSION == 2 && SIGCXX_MINOR_VERSION >= 8)
1586                    std::ref(this->file)
1587    #else
1588                  sigc::ref(this->file)                  sigc::ref(this->file)
1589    #endif
1590              )              )
1591          )          )
1592      );      );
# Line 649  MainWindow::MainWindow() : Line 1594  MainWindow::MainWindow() :
1594          sigc::hide(          sigc::hide(
1595              sigc::bind(              sigc::bind(
1596                  file_structure_changed_signal.make_slot(),                  file_structure_changed_signal.make_slot(),
1597    #if SIGCXX_MAJOR_VERSION > 2 || (SIGCXX_MAJOR_VERSION == 2 && SIGCXX_MINOR_VERSION >= 8)
1598                    std::ref(this->file)
1599    #else
1600                  sigc::ref(this->file)                  sigc::ref(this->file)
1601    #endif
1602              )              )
1603          )          )
1604      );      );
# Line 670  MainWindow::MainWindow() : Line 1619  MainWindow::MainWindow() :
1619      dimreg_stereo.signal_toggled().connect(      dimreg_stereo.signal_toggled().connect(
1620          sigc::mem_fun(*this, &MainWindow::update_dimregs));          sigc::mem_fun(*this, &MainWindow::update_dimregs));
1621    
1622        m_searchText.signal_changed().connect(
1623            sigc::mem_fun(*m_refInstrumentsModelFilter.operator->(), &Gtk::TreeModelFilter::refilter)
1624        );
1625    
1626      file = 0;      file = 0;
1627      file_is_changed = false;      file_is_changed = false;
1628    
1629    #if HAS_GTKMM_SHOW_ALL_CHILDREN
1630      show_all_children();      show_all_children();
1631    #endif
1632    
1633      // start with a new gig file by default      // start with a new gig file by default
1634      on_action_file_new();      on_action_file_new();
1635    
1636        m_TreeViewNotebook.signal_switch_page().connect(
1637            sigc::mem_fun(*this, &MainWindow::on_notebook_tab_switched)
1638        );
1639    
1640      // select 'Instruments' tab by default      // select 'Instruments' tab by default
1641      // (gtk allows this only if the tab childs are visible, thats why it's here)      // (gtk allows this only if the tab childs are visible, thats why it's here)
1642      m_TreeViewNotebook.set_current_page(1);      m_TreeViewNotebook.set_current_page(1);
1643    
1644        Gtk::Clipboard::get()->signal_owner_change().connect(
1645            sigc::mem_fun(*this, &MainWindow::on_clipboard_owner_change)
1646        );
1647        updateClipboardPasteAvailable();
1648        updateClipboardCopyAvailable();
1649    
1650        // setup macros and their keyboard accelerators
1651        {
1652    #if USE_GTKMM_BUILDER
1653            menuMacro = new Gtk::Menu(
1654                Glib::RefPtr<Gio::Menu>::cast_dynamic(
1655                    m_uiManager->get_object("MenuMacro")
1656                )
1657            );
1658    #else
1659            Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
1660                uiManager->get_widget("/MenuBar/MenuMacro")
1661            )->get_submenu();
1662    #endif
1663    
1664            const Gdk::ModifierType noModifier = (Gdk::ModifierType)0;
1665            Gtk::AccelMap::add_entry("<Macros>/macro_0", GDK_KEY_F1, noModifier);
1666            Gtk::AccelMap::add_entry("<Macros>/macro_1", GDK_KEY_F2, noModifier);
1667            Gtk::AccelMap::add_entry("<Macros>/macro_2", GDK_KEY_F3, noModifier);
1668            Gtk::AccelMap::add_entry("<Macros>/macro_3", GDK_KEY_F4, noModifier);
1669            Gtk::AccelMap::add_entry("<Macros>/macro_4", GDK_KEY_F5, noModifier);
1670            Gtk::AccelMap::add_entry("<Macros>/macro_5", GDK_KEY_F6, noModifier);
1671            Gtk::AccelMap::add_entry("<Macros>/macro_6", GDK_KEY_F7, noModifier);
1672            Gtk::AccelMap::add_entry("<Macros>/macro_7", GDK_KEY_F8, noModifier);
1673            Gtk::AccelMap::add_entry("<Macros>/macro_8", GDK_KEY_F9, noModifier);
1674            Gtk::AccelMap::add_entry("<Macros>/macro_9", GDK_KEY_F10, noModifier);
1675            Gtk::AccelMap::add_entry("<Macros>/macro_10", GDK_KEY_F11, noModifier);
1676            Gtk::AccelMap::add_entry("<Macros>/macro_11", GDK_KEY_F12, noModifier);
1677            Gtk::AccelMap::add_entry("<Macros>/macro_12", GDK_KEY_F13, noModifier);
1678            Gtk::AccelMap::add_entry("<Macros>/macro_13", GDK_KEY_F14, noModifier);
1679            Gtk::AccelMap::add_entry("<Macros>/macro_14", GDK_KEY_F15, noModifier);
1680            Gtk::AccelMap::add_entry("<Macros>/macro_15", GDK_KEY_F16, noModifier);
1681            Gtk::AccelMap::add_entry("<Macros>/macro_16", GDK_KEY_F17, noModifier);
1682            Gtk::AccelMap::add_entry("<Macros>/macro_17", GDK_KEY_F18, noModifier);
1683            Gtk::AccelMap::add_entry("<Macros>/macro_18", GDK_KEY_F19, noModifier);
1684            Gtk::AccelMap::add_entry("<Macros>/SetupMacros", 'm', primaryModifierKey);
1685    
1686            Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
1687            menuMacro->set_accel_group(accelGroup);
1688    
1689            updateMacroMenu();
1690        }
1691    
1692        // setup "Assign Scripts" keyboard accelerators
1693        {
1694            Gtk::AccelMap::add_entry("<Scripts>/script_0", GDK_KEY_F1, Gdk::SHIFT_MASK);
1695            Gtk::AccelMap::add_entry("<Scripts>/script_1", GDK_KEY_F2, Gdk::SHIFT_MASK);
1696            Gtk::AccelMap::add_entry("<Scripts>/script_2", GDK_KEY_F3, Gdk::SHIFT_MASK);
1697            Gtk::AccelMap::add_entry("<Scripts>/script_3", GDK_KEY_F4, Gdk::SHIFT_MASK);
1698            Gtk::AccelMap::add_entry("<Scripts>/script_4", GDK_KEY_F5, Gdk::SHIFT_MASK);
1699            Gtk::AccelMap::add_entry("<Scripts>/script_5", GDK_KEY_F6, Gdk::SHIFT_MASK);
1700            Gtk::AccelMap::add_entry("<Scripts>/script_6", GDK_KEY_F7, Gdk::SHIFT_MASK);
1701            Gtk::AccelMap::add_entry("<Scripts>/script_7", GDK_KEY_F8, Gdk::SHIFT_MASK);
1702            Gtk::AccelMap::add_entry("<Scripts>/script_8", GDK_KEY_F9, Gdk::SHIFT_MASK);
1703            Gtk::AccelMap::add_entry("<Scripts>/script_9", GDK_KEY_F10, Gdk::SHIFT_MASK);
1704            Gtk::AccelMap::add_entry("<Scripts>/script_10", GDK_KEY_F11, Gdk::SHIFT_MASK);
1705            Gtk::AccelMap::add_entry("<Scripts>/script_11", GDK_KEY_F12, Gdk::SHIFT_MASK);
1706            Gtk::AccelMap::add_entry("<Scripts>/script_12", GDK_KEY_F13, Gdk::SHIFT_MASK);
1707            Gtk::AccelMap::add_entry("<Scripts>/script_13", GDK_KEY_F14, Gdk::SHIFT_MASK);
1708            Gtk::AccelMap::add_entry("<Scripts>/script_14", GDK_KEY_F15, Gdk::SHIFT_MASK);
1709            Gtk::AccelMap::add_entry("<Scripts>/script_15", GDK_KEY_F16, Gdk::SHIFT_MASK);
1710            Gtk::AccelMap::add_entry("<Scripts>/script_16", GDK_KEY_F17, Gdk::SHIFT_MASK);
1711            Gtk::AccelMap::add_entry("<Scripts>/script_17", GDK_KEY_F18, Gdk::SHIFT_MASK);
1712            Gtk::AccelMap::add_entry("<Scripts>/script_18", GDK_KEY_F19, Gdk::SHIFT_MASK);
1713            Gtk::AccelMap::add_entry("<Scripts>/DropAllScriptSlots", GDK_KEY_BackSpace, Gdk::SHIFT_MASK);
1714    
1715            Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
1716            assign_scripts_menu->set_accel_group(accelGroup);
1717        }
1718    
1719        on_show_tooltips_changed();
1720    
1721        Glib::signal_idle().connect_once(
1722            sigc::mem_fun(*this, &MainWindow::bringToFront),
1723            200
1724        );
1725  }  }
1726    
1727  MainWindow::~MainWindow()  MainWindow::~MainWindow()
1728  {  {
1729  }  }
1730    
1731    void MainWindow::bringToFront() {
1732        #if defined(__APPLE__)
1733        macRaiseAppWindow();
1734        #endif
1735        raise();
1736        present();
1737    }
1738    
1739    void MainWindow::updateMacroMenu() {
1740    #if !USE_GTKMM_BUILDER
1741        Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
1742            uiManager->get_widget("/MenuBar/MenuMacro")
1743        )->get_submenu();
1744    #endif
1745    
1746        // remove all entries from "Macro" menu
1747        {
1748            const std::vector<Gtk::Widget*> children = menuMacro->get_children();
1749            for (int i = 0; i < children.size(); ++i) {
1750                Gtk::Widget* child = children[i];
1751                menuMacro->remove(*child);
1752                delete child;
1753            }
1754        }
1755    
1756        // (re)load all macros from config file
1757        try {
1758            Settings::singleton()->loadMacros(m_macros);
1759        } catch (Serialization::Exception e) {
1760            std::cerr << "Exception while loading macros: " << e.Message << std::endl;
1761        } catch (...) {
1762            std::cerr << "Unknown exception while loading macros!" << std::endl;
1763        }
1764    
1765        // add all configured macros as menu items to the "Macro" menu
1766        for (int iMacro = 0; iMacro < m_macros.size(); ++iMacro) {
1767            const Serialization::Archive& macro = m_macros[iMacro];
1768            std::string name =
1769                macro.name().empty() ?
1770                    (std::string(_("Unnamed Macro")) + " " + ToString(iMacro+1)) : macro.name();
1771            Gtk::MenuItem* item = new Gtk::MenuItem(name);
1772            item->signal_activate().connect(
1773                sigc::bind(
1774                    sigc::mem_fun(*this, &MainWindow::onMacroSelected), iMacro
1775                )
1776            );
1777            menuMacro->append(*item);
1778            item->set_accel_path("<Macros>/macro_" + ToString(iMacro));
1779            Glib::ustring comment = macro.comment();
1780            if (!comment.empty())
1781                item->set_tooltip_text(comment);
1782        }
1783        // if there are no macros configured at all, then show a dummy entry instead
1784        if (m_macros.empty()) {
1785            Gtk::MenuItem* item = new Gtk::MenuItem(_("No Macros"));
1786            item->set_sensitive(false);
1787            menuMacro->append(*item);
1788        }
1789    
1790        // add separator line to menu
1791        menuMacro->append(*new Gtk::SeparatorMenuItem);
1792    
1793        {
1794            Gtk::MenuItem* item = new Gtk::MenuItem(_("Setup Macros ..."));
1795            item->signal_activate().connect(
1796                sigc::mem_fun(*this, &MainWindow::setupMacros)
1797            );
1798            menuMacro->append(*item);
1799            item->set_accel_path("<Macros>/SetupMacros");
1800        }
1801    
1802    #if HAS_GTKMM_SHOW_ALL_CHILDREN
1803        menuMacro->show_all_children();
1804    #endif
1805    }
1806    
1807    void MainWindow::onMacroSelected(int iMacro) {
1808        printf("onMacroSelected(%d)\n", iMacro);
1809        if (iMacro < 0 || iMacro >= m_macros.size()) return;
1810        Glib::ustring errorText;
1811        try {
1812            applyMacro(m_macros[iMacro]);
1813        } catch (Serialization::Exception e) {
1814            errorText = e.Message;
1815        } catch (...) {
1816            errorText = _("Unknown exception while applying macro");
1817        }
1818        if (!errorText.empty()) {
1819            Glib::ustring txt = _("Applying macro failed:\n") + errorText;
1820            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1821            msg.run();
1822        }
1823    }
1824    
1825    void MainWindow::setupMacros() {
1826        MacrosSetup* setup = new MacrosSetup();
1827        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
1828        setup->setMacros(m_macros, &m_serializationArchive, pDimRgn);
1829        setup->signal_macros_changed().connect(
1830            sigc::mem_fun(*this, &MainWindow::onMacrosSetupChanged)
1831        );
1832        setup->show();
1833    }
1834    
1835    void MainWindow::onMacrosSetupChanged(const std::vector<Serialization::Archive>& macros) {
1836        m_macros = macros;
1837        Settings::singleton()->saveMacros(m_macros);
1838        updateMacroMenu();
1839    }
1840    
1841    //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.
1842    void MainWindow::on_notebook_tab_switched(void* page, guint page_num) {
1843        bool isInstrumentsPage = (page_num == 1);
1844        // so far we only support filtering for the instruments list, so hide the
1845        // filter text entry field if another tab is selected
1846        m_searchField.set_visible(isInstrumentsPage);
1847    }
1848    
1849  bool MainWindow::on_delete_event(GdkEventAny* event)  bool MainWindow::on_delete_event(GdkEventAny* event)
1850  {  {
1851      return !file_is_shared && file_is_changed && !close_confirmation_dialog();      return !file_is_shared && file_is_changed && !close_confirmation_dialog();
# Line 706  void MainWindow::region_changed() Line 1865  void MainWindow::region_changed()
1865  gig::Instrument* MainWindow::get_instrument()  gig::Instrument* MainWindow::get_instrument()
1866  {  {
1867      gig::Instrument* instrument = 0;      gig::Instrument* instrument = 0;
1868      Gtk::TreeModel::const_iterator it =      std::vector<Gtk::TreeModel::Path> rows = m_TreeViewInstruments.get_selection()->get_selected_rows();
1869          m_TreeView.get_selection()->get_selected();      if (rows.empty()) return NULL;
1870        //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
1871        Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[0]);
1872      if (it) {      if (it) {
1873          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
1874          instrument = row[m_Columns.m_col_instr];          instrument = row[m_InstrumentsModel.m_col_instr];
1875      }      }
1876      return instrument;      return instrument;
1877  }  }
# Line 750  void MainWindow::update_dimregs() Line 1911  void MainWindow::update_dimregs()
1911              add_region_to_dimregs(region, stereo, all_dimregs);              add_region_to_dimregs(region, stereo, all_dimregs);
1912          }          }
1913      }      }
1914    
1915        m_RegionChooser.setModifyAllRegions(all_regions);
1916        m_DimRegionChooser.setModifyAllRegions(all_regions);
1917        m_DimRegionChooser.setModifyAllDimensionRegions(all_dimregs);
1918        m_DimRegionChooser.setModifyBothChannels(stereo);
1919    
1920        updateClipboardCopyAvailable();
1921  }  }
1922    
1923  void MainWindow::dimreg_all_dimregs_toggled()  void MainWindow::dimreg_all_dimregs_toggled()
# Line 766  void MainWindow::dimreg_changed() Line 1934  void MainWindow::dimreg_changed()
1934    
1935  void MainWindow::on_sel_change()  void MainWindow::on_sel_change()
1936  {  {
1937    #if !USE_GTKMM_BUILDER
1938      // select item in instrument menu      // select item in instrument menu
1939      Gtk::TreeModel::iterator it = m_TreeView.get_selection()->get_selected();      std::vector<Gtk::TreeModel::Path> rows = m_TreeViewInstruments.get_selection()->get_selected_rows();
1940      if (it) {      if (!rows.empty()) {
1941          Gtk::TreePath path(it);          Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[0]);
1942          int index = path[0];          if (it) {
1943          const std::vector<Gtk::Widget*> children =              Gtk::TreePath path(it);
1944              instrument_menu->get_children();              int index = path[0];
1945          static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();              const std::vector<Gtk::Widget*> children =
1946                    instrument_menu->get_children();
1947                static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();
1948            }
1949      }      }
1950    #endif
1951    
1952        updateScriptListOfMenu();
1953    
1954        gig::Instrument* instr = get_instrument();
1955    
1956      m_RegionChooser.set_instrument(get_instrument());      m_RegionChooser.set_instrument(instr);
1957        dimreg_edit.scriptVars.setInstrument(instr, true/*force update*/);
1958    
1959      if (Settings::singleton()->syncSamplerInstrumentSelection) {      if (Settings::singleton()->syncSamplerInstrumentSelection) {
1960          switch_sampler_instrument_signal.emit(get_instrument());          switch_sampler_instrument_signal.emit(get_instrument());
1961      }      }
1962  }  }
1963    
1964    
1965    LoaderSaverBase::LoaderSaverBase(const Glib::ustring filename, gig::File* gig) :
1966        filename(filename), gig(gig),
1967    #ifdef GLIB_THREADS
1968        thread(0),
1969    #endif
1970        progress(0.f)
1971    {
1972    }
1973    
1974  void loader_progress_callback(gig::progress_t* progress)  void loader_progress_callback(gig::progress_t* progress)
1975  {  {
1976      Loader* loader = static_cast<Loader*>(progress->custom);      LoaderSaverBase* loader = static_cast<LoaderSaverBase*>(progress->custom);
1977      loader->progress_callback(progress->factor);      loader->progress_callback(progress->factor);
1978  }  }
1979    
1980  void Loader::progress_callback(float fraction)  void LoaderSaverBase::progress_callback(float fraction)
1981  {  {
1982      {      {
1983    #ifdef GLIB_THREADS
1984          Glib::Threads::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
1985    #else
1986            std::lock_guard<std::mutex> lock(progressMutex);
1987    #endif
1988          progress = fraction;          progress = fraction;
1989      }      }
1990      progress_dispatcher();      progress_dispatcher();
1991  }  }
1992    
1993  void Loader::thread_function()  #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
1994    // make sure stack is 16-byte aligned for SSE instructions
1995    __attribute__((force_align_arg_pointer))
1996    #endif
1997    void LoaderSaverBase::thread_function()
1998  {  {
1999    #ifdef GLIB_THREADS
2000      printf("thread_function self=%p\n",      printf("thread_function self=%p\n",
2001             static_cast<void*>(Glib::Threads::Thread::self()));             static_cast<void*>(Glib::Threads::Thread::self()));
2002    #else
2003        std::cout << "thread_function self=" << std::this_thread::get_id() << "\n";
2004    #endif
2005      printf("Start %s\n", filename.c_str());      printf("Start %s\n", filename.c_str());
2006      try {      try {
         RIFF::File* riff = new RIFF::File(filename);  
         gig = new gig::File(riff);  
2007          gig::progress_t progress;          gig::progress_t progress;
2008          progress.callback = loader_progress_callback;          progress.callback = loader_progress_callback;
2009          progress.custom = this;          progress.custom = this;
2010    
2011          gig->GetInstrument(0, &progress);          thread_function_sub(progress);
2012          printf("End\n");          printf("End\n");
2013          finished_dispatcher();          finished_dispatcher();
2014      } catch (RIFF::Exception e) {      } catch (RIFF::Exception e) {
# Line 822  void Loader::thread_function() Line 2020  void Loader::thread_function()
2020      }      }
2021  }  }
2022    
2023  Loader::Loader(const char* filename)  void LoaderSaverBase::launch()
     : filename(filename), gig(0), thread(0), progress(0.f)  
 {  
 }  
   
 void Loader::launch()  
2024  {  {
2025    #ifdef GLIB_THREADS
2026  #ifdef OLD_THREADS  #ifdef OLD_THREADS
2027      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);      thread = Glib::Thread::create(sigc::mem_fun(*this, &LoaderSaverBase::thread_function), true);
2028  #else  #else
2029      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &LoaderSaverBase::thread_function));
2030  #endif  #endif
2031      printf("launch thread=%p\n", static_cast<void*>(thread));      printf("launch thread=%p\n", static_cast<void*>(thread));
2032    #else
2033        thread = std::thread([this](){ thread_function(); });
2034        std::cout << "launch thread=" << thread.get_id() << "\n";
2035    #endif
2036  }  }
2037    
2038  float Loader::get_progress()  float LoaderSaverBase::get_progress()
2039  {  {
2040      float res;  #ifdef GLIB_THREADS
2041      {      Glib::Threads::Mutex::Lock lock(progressMutex);
2042          Glib::Threads::Mutex::Lock lock(progressMutex);  #else
2043          res = progress;      std::lock_guard<std::mutex> lock(progressMutex);
2044      }  #endif
2045      return res;      return progress;
2046  }  }
2047    
2048  Glib::Dispatcher& Loader::signal_progress()  Glib::Dispatcher& LoaderSaverBase::signal_progress()
2049  {  {
2050      return progress_dispatcher;      return progress_dispatcher;
2051  }  }
2052    
2053  Glib::Dispatcher& Loader::signal_finished()  Glib::Dispatcher& LoaderSaverBase::signal_finished()
2054  {  {
2055      return finished_dispatcher;      return finished_dispatcher;
2056  }  }
2057    
2058  Glib::Dispatcher& Loader::signal_error()  Glib::Dispatcher& LoaderSaverBase::signal_error()
2059  {  {
2060      return error_dispatcher;      return error_dispatcher;
2061  }  }
2062    
2063  void saver_progress_callback(gig::progress_t* progress)  void LoaderSaverBase::join() {
2064  {  #ifdef GLIB_THREADS
2065      Saver* saver = static_cast<Saver*>(progress->custom);      thread->join();
2066      saver->progress_callback(progress->factor);  #else
2067        thread.join();
2068    #endif
2069  }  }
2070    
2071  void Saver::progress_callback(float fraction)  
2072    Loader::Loader(const char* filename) :
2073        LoaderSaverBase(filename, 0)
2074  {  {
     {  
         Glib::Threads::Mutex::Lock lock(progressMutex);  
         progress = fraction;  
     }  
     progress_dispatcher.emit();  
2075  }  }
2076    
2077  void Saver::thread_function()  void Loader::thread_function_sub(gig::progress_t& progress)
2078  {  {
2079      printf("thread_function self=%p\n",      RIFF::File* riff = new RIFF::File(filename);
2080             static_cast<void*>(Glib::Threads::Thread::self()));      gig = new gig::File(riff);
     printf("Start %s\n", filename.c_str());  
     try {  
         gig::progress_t progress;  
         progress.callback = saver_progress_callback;  
         progress.custom = this;  
   
         // if no filename was provided, that means "save", if filename was provided means "save as"  
         if (filename.empty()) {  
             gig->Save(&progress);  
         } else {  
             gig->Save(filename, &progress);  
         }  
2081    
2082          printf("End\n");      gig->GetInstrument(0, &progress);
         finished_dispatcher.emit();  
     } catch (RIFF::Exception e) {  
         error_message = e.Message;  
         error_dispatcher.emit();  
     } catch (...) {  
         error_message = _("Unknown exception occurred");  
         error_dispatcher.emit();  
     }  
2083  }  }
2084    
2085  Saver::Saver(gig::File* file, Glib::ustring filename)  
2086      : gig(file), filename(filename), thread(0), progress(0.f)  Saver::Saver(gig::File* file, Glib::ustring filename) :
2087        LoaderSaverBase(filename, file)
2088  {  {
2089  }  }
2090    
2091  void Saver::launch()  void Saver::thread_function_sub(gig::progress_t& progress)
2092  {  {
2093  #ifdef OLD_THREADS      // if no filename was provided, that means "save", if filename was provided means "save as"
2094      thread = Glib::Thread::create(sigc::mem_fun(*this, &Saver::thread_function), true);      if (filename.empty()) {
2095            if (!Settings::singleton()->saveWithTemporaryFile) {
2096                // save directly over the existing .gig file
2097                // (requires less disk space than solution below
2098                // but may be slower)
2099                gig->Save(&progress);
2100            } else {
2101                // save the file as separate temporary file first,
2102                // then move the saved file over the old file
2103                // (may result in performance speedup during save)
2104                gig::String tmpname = filename + ".TMP";
2105                gig->Save(tmpname, &progress);
2106    #if defined(WIN32)
2107                if (!DeleteFile(filename.c_str())) {
2108                    throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file).");
2109                }
2110    #else // POSIX ...
2111                if (unlink(filename.c_str())) {
2112                    throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + gig::String(strerror(errno)));
2113                }
2114    #endif
2115                if (rename(tmpname.c_str(), filename.c_str())) {
2116    #if defined(WIN32)
2117                    throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");
2118  #else  #else
2119      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Saver::thread_function));                  throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file): " + gig::String(strerror(errno)));
2120  #endif  #endif
2121      printf("launch thread=%p\n", static_cast<void*>(thread));              }
2122  }          }
2123        } else {
2124  float Saver::get_progress()          gig->Save(filename, &progress);
 {  
     float res;  
     {  
         Glib::Threads::Mutex::Lock lock(progressMutex);  
         res = progress;  
2125      }      }
     return res;  
2126  }  }
2127    
 Glib::Dispatcher& Saver::signal_progress()  
 {  
     return progress_dispatcher;  
 }  
   
 Glib::Dispatcher& Saver::signal_finished()  
 {  
     return finished_dispatcher;  
 }  
   
 Glib::Dispatcher& Saver::signal_error()  
 {  
     return error_dispatcher;  
 }  
2128    
2129  ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)  ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)
2130      : Gtk::Dialog(title, parent, true)      : Gtk::Dialog(title, parent, true)
2131  {  {
2132    #if USE_GTKMM_BOX
2133        get_content_area()->pack_start(progressBar);
2134    #else
2135      get_vbox()->pack_start(progressBar);      get_vbox()->pack_start(progressBar);
2136    #endif
2137    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2138      show_all_children();      show_all_children();
2139    #endif
2140      resize(600,50);      resize(600,50);
2141  }  }
2142    
# Line 959  void MainWindow::__clear() { Line 2146  void MainWindow::__clear() {
2146      // forget all samples that ought to be imported      // forget all samples that ought to be imported
2147      m_SampleImportQueue.clear();      m_SampleImportQueue.clear();
2148      // clear the samples and instruments tree views      // clear the samples and instruments tree views
2149      m_refTreeModel->clear();      m_refInstrumentsTreeModel->clear();
2150      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
2151      m_refScriptsTreeModel->clear();      m_refScriptsTreeModel->clear();
2152    #if !USE_GTKMM_BUILDER
2153      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
2154      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
2155          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
2156      }      }
2157    #endif
2158      // free libgig's gig::File instance      // free libgig's gig::File instance
2159      if (file && !file_is_shared) delete file;      if (file && !file_is_shared) delete file;
2160      file = NULL;      file = NULL;
# Line 974  void MainWindow::__clear() { Line 2163  void MainWindow::__clear() {
2163    
2164  void MainWindow::__refreshEntireGUI() {  void MainWindow::__refreshEntireGUI() {
2165      // clear the samples and instruments tree views      // clear the samples and instruments tree views
2166      m_refTreeModel->clear();      m_refInstrumentsTreeModel->clear();
2167      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
2168      m_refScriptsTreeModel->clear();      m_refScriptsTreeModel->clear();
2169    #if !USE_GTKMM_BUILDER
2170      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
2171      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
2172          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
2173      }      }
2174    #endif
2175    
2176      if (!this->file) return;      if (!this->file) return;
2177    
# Line 1014  bool MainWindow::close_confirmation_dial Line 2205  bool MainWindow::close_confirmation_dial
2205      g_free(msg);      g_free(msg);
2206      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."));
2207      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
2208    #if HAS_GTKMM_STOCK
2209        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2210        dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);
2211    #else
2212        dialog.add_button(_("_OK"), Gtk::RESPONSE_OK);
2213      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2214      dialog.add_button(file_has_name ? _("_Save") : _("Save _As"), Gtk::RESPONSE_YES);  #endif
2215      dialog.set_default_response(Gtk::RESPONSE_YES);      dialog.set_default_response(Gtk::RESPONSE_YES);
2216      int response = dialog.run();      int response = dialog.run();
2217      dialog.hide();      dialog.hide();
# Line 1046  bool MainWindow::leaving_shared_mode_dia Line 2242  bool MainWindow::leaving_shared_mode_dia
2242            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
2243            "load it."));            "load it."));
2244      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
2245    #if HAS_GTKMM_STOCK
2246        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2247    #else
2248      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2249    #endif
2250      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
2251      int response = dialog.run();      int response = dialog.run();
2252      dialog.hide();      dialog.hide();
# Line 1060  void MainWindow::on_action_file_open() Line 2260  void MainWindow::on_action_file_open()
2260      if (file_is_shared && !leaving_shared_mode_dialog()) return;      if (file_is_shared && !leaving_shared_mode_dialog()) return;
2261    
2262      Gtk::FileChooserDialog dialog(*this, _("Open file"));      Gtk::FileChooserDialog dialog(*this, _("Open file"));
2263    #if HAS_GTKMM_STOCK
2264        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2265        dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
2266    #else
2267      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2268      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
2269    #endif
2270      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
2271  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
2272      Gtk::FileFilter filter;      Gtk::FileFilter filter;
# Line 1075  void MainWindow::on_action_file_open() Line 2280  void MainWindow::on_action_file_open()
2280          dialog.set_current_folder(current_gig_dir);          dialog.set_current_folder(current_gig_dir);
2281      }      }
2282      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2283            dialog.hide();
2284          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
2285          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
2286    #ifdef GLIB_THREADS
2287          printf("on_action_file_open self=%p\n",          printf("on_action_file_open self=%p\n",
2288                 static_cast<void*>(Glib::Threads::Thread::self()));                 static_cast<void*>(Glib::Threads::Thread::self()));
2289    #else
2290            std::cout << "on_action_file_open self=" <<
2291                std::this_thread::get_id() << "\n";
2292    #endif
2293          load_file(filename.c_str());          load_file(filename.c_str());
2294          current_gig_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
2295      }      }
# Line 1093  void MainWindow::load_file(const char* n Line 2304  void MainWindow::load_file(const char* n
2304          Glib::filename_display_basename(name) + "' ...",          Glib::filename_display_basename(name) + "' ...",
2305          *this          *this
2306      );      );
2307    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2308      progress_dialog->show_all();      progress_dialog->show_all();
2309    #endif
2310      loader = new Loader(name); //FIXME: memory leak!      loader = new Loader(name); //FIXME: memory leak!
2311      loader->signal_progress().connect(      loader->signal_progress().connect(
2312          sigc::mem_fun(*this, &MainWindow::on_loader_progress));          sigc::mem_fun(*this, &MainWindow::on_loader_progress));
# Line 1123  void MainWindow::load_instrument(gig::In Line 2336  void MainWindow::load_instrument(gig::In
2336      {      {
2337          if (instrument == instr) {          if (instrument == instr) {
2338              // select item in "instruments" tree view              // select item in "instruments" tree view
2339              m_TreeView.get_selection()->select(Gtk::TreePath(ToString(i)));              m_TreeViewInstruments.get_selection()->select(Gtk::TreePath(ToString(i)));
2340              // make sure the selected item in the "instruments" tree view is              // make sure the selected item in the "instruments" tree view is
2341              // visible (scroll to it)              // visible (scroll to it)
2342              m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));              m_TreeViewInstruments.scroll_to_row(Gtk::TreePath(ToString(i)));
2343    #if !USE_GTKMM_BUILDER
2344              // select item in instrument menu              // select item in instrument menu
2345              {              {
2346                  const std::vector<Gtk::Widget*> children =                  const std::vector<Gtk::Widget*> children =
2347                      instrument_menu->get_children();                      instrument_menu->get_children();
2348                  static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();                  static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();
2349              }              }
2350    #endif
2351              // update region chooser and dimension region chooser              // update region chooser and dimension region chooser
2352              m_RegionChooser.set_instrument(instr);              m_RegionChooser.set_instrument(instr);
2353              break;              break;
# Line 1147  void MainWindow::on_loader_progress() Line 2362  void MainWindow::on_loader_progress()
2362    
2363  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
2364  {  {
2365        loader->join();
2366      printf("Loader finished!\n");      printf("Loader finished!\n");
2367    #ifdef GLIB_THREADS
2368      printf("on_loader_finished self=%p\n",      printf("on_loader_finished self=%p\n",
2369             static_cast<void*>(Glib::Threads::Thread::self()));             static_cast<void*>(Glib::Threads::Thread::self()));
2370    #else
2371        std::cout << "on_loader_finished self=" <<
2372            std::this_thread::get_id() << "\n";
2373    #endif
2374      load_gig(loader->gig, loader->filename.c_str());      load_gig(loader->gig, loader->filename.c_str());
2375      progress_dialog->hide();      progress_dialog->hide();
2376  }  }
2377    
2378  void MainWindow::on_loader_error()  void MainWindow::on_loader_error()
2379  {  {
2380        loader->join();
2381      Glib::ustring txt = _("Could not load file: ") + loader->error_message;      Glib::ustring txt = _("Could not load file: ") + loader->error_message;
2382      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2383      msg.run();      msg.run();
# Line 1204  bool MainWindow::file_save() Line 2426  bool MainWindow::file_save()
2426          Glib::filename_display_basename(this->filename) + "' ...",          Glib::filename_display_basename(this->filename) + "' ...",
2427          *this          *this
2428      );      );
2429    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2430      progress_dialog->show_all();      progress_dialog->show_all();
2431    #endif
2432      saver = new Saver(this->file); //FIXME: memory leak!      saver = new Saver(this->file); //FIXME: memory leak!
2433      saver->signal_progress().connect(      saver->signal_progress().connect(
2434          sigc::mem_fun(*this, &MainWindow::on_saver_progress));          sigc::mem_fun(*this, &MainWindow::on_saver_progress));
# Line 1224  void MainWindow::on_saver_progress() Line 2448  void MainWindow::on_saver_progress()
2448    
2449  void MainWindow::on_saver_error()  void MainWindow::on_saver_error()
2450  {  {
2451        saver->join();
2452      file_structure_changed_signal.emit(this->file);      file_structure_changed_signal.emit(this->file);
2453      Glib::ustring txt = _("Could not save file: ") + saver->error_message;      Glib::ustring txt = _("Could not save file: ") + saver->error_message;
2454      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
# Line 1232  void MainWindow::on_saver_error() Line 2457  void MainWindow::on_saver_error()
2457    
2458  void MainWindow::on_saver_finished()  void MainWindow::on_saver_finished()
2459  {  {
2460        saver->join();
2461      this->file = saver->gig;      this->file = saver->gig;
2462      this->filename = saver->filename;      this->filename = saver->filename;
2463      current_gig_dir = Glib::path_get_dirname(filename);      current_gig_dir = Glib::path_get_dirname(filename);
# Line 1256  void MainWindow::on_action_file_save_as( Line 2482  void MainWindow::on_action_file_save_as(
2482    
2483  bool MainWindow::file_save_as()  bool MainWindow::file_save_as()
2484  {  {
2485      Gtk::FileChooserDialog dialog(*this, _("Save As"), Gtk::FILE_CHOOSER_ACTION_SAVE);      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);
2486    #if HAS_GTKMM_STOCK
2487        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2488        dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
2489    #else
2490      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2491      dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);      dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);
2492    #endif
2493      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
2494      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
2495    
# Line 1287  bool MainWindow::file_save_as() Line 2518  bool MainWindow::file_save_as()
2518      }      }
2519    
2520      // show warning in the dialog      // show warning in the dialog
2521      Gtk::HBox descriptionArea;      HBox descriptionArea;
2522      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
2523      Gtk::Image warningIcon;      Gtk::Image warningIcon;
2524      warningIcon.set_from_icon_name("dialog-warning",      warningIcon.set_from_icon_name("dialog-warning",
# Line 1308  bool MainWindow::file_save_as() Line 2539  bool MainWindow::file_save_as()
2539            "same .gig file will end up in corrupted sample wave data!\n")            "same .gig file will end up in corrupted sample wave data!\n")
2540      );      );
2541      descriptionArea.pack_start(description);      descriptionArea.pack_start(description);
2542    #if USE_GTKMM_BOX
2543        dialog.get_content_area()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2544    #else
2545      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2546    #endif
2547    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2548      descriptionArea.show_all();      descriptionArea.show_all();
2549    #endif
2550    
2551      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2552            dialog.hide();
2553          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
2554          if (!Glib::str_has_suffix(filename, ".gig")) {          if (!Glib::str_has_suffix(filename, ".gig")) {
2555              filename += ".gig";              filename += ".gig";
# Line 1323  bool MainWindow::file_save_as() Line 2561  bool MainWindow::file_save_as()
2561              Glib::filename_display_basename(filename) + "' ...",              Glib::filename_display_basename(filename) + "' ...",
2562              *this              *this
2563          );          );
2564    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2565          progress_dialog->show_all();          progress_dialog->show_all();
2566    #endif
2567    
2568          saver = new Saver(file, filename); //FIXME: memory leak!          saver = new Saver(file, filename); //FIXME: memory leak!
2569          saver->signal_progress().connect(          saver->signal_progress().connect(
# Line 1344  void MainWindow::__import_queued_samples Line 2584  void MainWindow::__import_queued_samples
2584      std::cout << "Starting sample import\n" << std::flush;      std::cout << "Starting sample import\n" << std::flush;
2585      Glib::ustring error_files;      Glib::ustring error_files;
2586      printf("Samples to import: %d\n", int(m_SampleImportQueue.size()));      printf("Samples to import: %d\n", int(m_SampleImportQueue.size()));
2587      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();      for (std::map<gig::Sample*, SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
2588           iter != m_SampleImportQueue.end(); ) {           iter != m_SampleImportQueue.end(); ) {
2589          printf("Importing sample %s\n",(*iter).sample_path.c_str());          printf("Importing sample %s\n",iter->second.sample_path.c_str());
2590          SF_INFO info;          SF_INFO info;
2591          info.format = 0;          info.format = 0;
2592          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);
2593          sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);          sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);
2594          try {          try {
2595              if (!hFile) throw std::string(_("could not open file"));              if (!hFile) throw std::string(_("could not open file"));
# Line 1372  void MainWindow::__import_queued_samples Line 2612  void MainWindow::__import_queued_samples
2612                      throw std::string(_("format not supported")); // unsupported subformat (yet?)                      throw std::string(_("format not supported")); // unsupported subformat (yet?)
2613              }              }
2614    
2615                // reset write position for sample
2616                iter->first->SetPos(0);
2617    
2618              const int bufsize = 10000;              const int bufsize = 10000;
2619              switch (bitdepth) {              switch (bitdepth) {
2620                  case 16: {                  case 16: {
# Line 1381  void MainWindow::__import_queued_samples Line 2624  void MainWindow::__import_queued_samples
2624                          // libsndfile does the conversion for us (if needed)                          // libsndfile does the conversion for us (if needed)
2625                          int n = sf_readf_short(hFile, buffer, bufsize);                          int n = sf_readf_short(hFile, buffer, bufsize);
2626                          // write from buffer directly (physically) into .gig file                          // write from buffer directly (physically) into .gig file
2627                          iter->gig_sample->Write(buffer, n);                          iter->first->Write(buffer, n);
2628                          cnt -= n;                          cnt -= n;
2629                      }                      }
2630                      delete[] buffer;                      delete[] buffer;
# Line 1401  void MainWindow::__import_queued_samples Line 2644  void MainWindow::__import_queued_samples
2644                              dstbuf[j++] = srcbuf[i] >> 24;                              dstbuf[j++] = srcbuf[i] >> 24;
2645                          }                          }
2646                          // write from buffer directly (physically) into .gig file                          // write from buffer directly (physically) into .gig file
2647                          iter->gig_sample->Write(dstbuf, n);                          iter->first->Write(dstbuf, n);
2648                          cnt -= n;                          cnt -= n;
2649                      }                      }
2650                      delete[] srcbuf;                      delete[] srcbuf;
# Line 1412  void MainWindow::__import_queued_samples Line 2655  void MainWindow::__import_queued_samples
2655              // cleanup              // cleanup
2656              sf_close(hFile);              sf_close(hFile);
2657              // let the sampler re-cache the sample if needed              // let the sampler re-cache the sample if needed
2658              sample_changed_signal.emit(iter->gig_sample);              sample_changed_signal.emit(iter->first);
2659              // on success we remove the sample from the import queue,              // on success we remove the sample from the import queue,
2660              // otherwise keep it, maybe it works the next time ?              // otherwise keep it, maybe it works the next time ?
2661              std::list<SampleImportItem>::iterator cur = iter;              std::map<gig::Sample*, SampleImportItem>::iterator cur = iter;
2662              ++iter;              ++iter;
2663              m_SampleImportQueue.erase(cur);              m_SampleImportQueue.erase(cur);
2664          } catch (std::string what) {          } catch (std::string what) {
2665              // remember the files that made trouble (and their cause)              // remember the files that made trouble (and their cause)
2666              if (!error_files.empty()) error_files += "\n";              if (!error_files.empty()) error_files += "\n";
2667              error_files += (*iter).sample_path += " (" + what + ")";              error_files += iter->second.sample_path += " (" + what + ")";
2668              ++iter;              ++iter;
2669          }          }
2670      }      }
# Line 1435  void MainWindow::__import_queued_samples Line 2678  void MainWindow::__import_queued_samples
2678    
2679  void MainWindow::on_action_file_properties()  void MainWindow::on_action_file_properties()
2680  {  {
2681      propDialog.show();      fileProps.show();
2682      propDialog.deiconify();      fileProps.deiconify();
2683  }  }
2684    
2685  void MainWindow::on_action_warn_user_on_extensions() {  void MainWindow::on_action_warn_user_on_extensions() {
# Line 1444  void MainWindow::on_action_warn_user_on_ Line 2687  void MainWindow::on_action_warn_user_on_
2687          !Settings::singleton()->warnUserOnExtensions;          !Settings::singleton()->warnUserOnExtensions;
2688  }  }
2689    
2690    void MainWindow::on_action_show_tooltips() {
2691        Settings::singleton()->showTooltips =
2692            !Settings::singleton()->showTooltips;
2693    
2694        on_show_tooltips_changed();
2695    }
2696    
2697    void MainWindow::on_show_tooltips_changed() {
2698        const bool b = Settings::singleton()->showTooltips;
2699    
2700        dimreg_label.set_has_tooltip(b);
2701        dimreg_all_regions.set_has_tooltip(b);
2702        dimreg_all_dimregs.set_has_tooltip(b);
2703        dimreg_stereo.set_has_tooltip(b);
2704    
2705        // Not doing this here, we let onQueryTreeViewTooltip() handle this per cell
2706        //m_TreeViewInstruments.set_has_tooltip(b);
2707    
2708        m_TreeViewSamples.set_has_tooltip(b);
2709        m_TreeViewScripts.set_has_tooltip(b);
2710    
2711        set_has_tooltip(b);
2712    }
2713    
2714  void MainWindow::on_action_sync_sampler_instrument_selection() {  void MainWindow::on_action_sync_sampler_instrument_selection() {
2715      Settings::singleton()->syncSamplerInstrumentSelection =      Settings::singleton()->syncSamplerInstrumentSelection =
2716          !Settings::singleton()->syncSamplerInstrumentSelection;          !Settings::singleton()->syncSamplerInstrumentSelection;
# Line 1463  void MainWindow::on_action_help_about() Line 2730  void MainWindow::on_action_help_about()
2730      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
2731  #endif  #endif
2732      dialog.set_version(VERSION);      dialog.set_version(VERSION);
2733      dialog.set_copyright("Copyright (C) 2006-2015 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2019 Andreas Persson");
2734      const std::string sComment =      const std::string sComment =
2735          _("Built " __DATE__ "\nUsing ") +          _("Built " __DATE__ "\nUsing ") +
2736          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
# Line 1474  void MainWindow::on_action_help_about() Line 2741  void MainWindow::on_action_help_about()
2741              "backup your Gigasampler/GigaStudio files before editing them with "              "backup your Gigasampler/GigaStudio files before editing them with "
2742              "this application.\n"              "this application.\n"
2743              "\n"              "\n"
2744              "Please report bugs to: http://bugs.linuxsampler.org"              "Please report bugs to: https://bugs.linuxsampler.org"
2745          );          );
2746      dialog.set_comments(sComment.c_str());      dialog.set_comments(sComment.c_str());
2747      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("https://www.linuxsampler.org");
2748      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("https://www.linuxsampler.org");
2749        dialog.set_position(Gtk::WIN_POS_CENTER);
2750      dialog.run();      dialog.run();
2751  }  }
2752    
2753  PropDialog::PropDialog()  FilePropDialog::FilePropDialog()
2754      : eFileFormat(_("File Format")),      : eFileFormat(_("File Format")),
2755        eName(_("Name")),        eName(_("Name")),
2756        eCreationDate(_("Creation date")),        eCreationDate(_("Creation date")),
# Line 1500  PropDialog::PropDialog() Line 2768  PropDialog::PropDialog()
2768        eSourceForm(_("Source form")),        eSourceForm(_("Source form")),
2769        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
2770        eSubject(_("Subject")),        eSubject(_("Subject")),
2771        quitButton(_("_Close"), true),  #if HAS_GTKMM_STOCK
2772          quitButton(Gtk::Stock::CLOSE),
2773    #else
2774          quitButton(_("_Close")),
2775    #endif
2776        table(2, 1),        table(2, 1),
2777        m_file(NULL)        m_file(NULL)
2778  {  {
2779        if (!Settings::singleton()->autoRestoreWindowDimension) {
2780            set_default_size(470, 390);
2781            set_position(Gtk::WIN_POS_MOUSE);
2782        }
2783    
2784      set_title(_("File Properties"));      set_title(_("File Properties"));
2785      eName.set_width_chars(50);      eName.set_width_chars(50);
2786    
2787        connect(eFileFormat, &FilePropDialog::set_FileFormat);
2788      connect(eName, &DLS::Info::Name);      connect(eName, &DLS::Info::Name);
2789      connect(eCreationDate, &DLS::Info::CreationDate);      connect(eCreationDate, &DLS::Info::CreationDate);
2790      connect(eComments, &DLS::Info::Comments);      connect(eComments, &DLS::Info::Comments);
# Line 1542  PropDialog::PropDialog() Line 2820  PropDialog::PropDialog()
2820      table.add(eCommissioned);      table.add(eCommissioned);
2821      table.add(eSubject);      table.add(eSubject);
2822    
2823    #if USE_GTKMM_GRID
2824        table.set_column_spacing(5);
2825    #else
2826      table.set_col_spacings(5);      table.set_col_spacings(5);
2827    #endif
2828    
2829      add(vbox);      add(vbox);
2830    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2831        table.set_margin(5);
2832    #else
2833      table.set_border_width(5);      table.set_border_width(5);
2834    #endif
2835      vbox.add(table);      vbox.add(table);
2836      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
2837      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
2838    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2839        buttonBox.set_margin(5);
2840    #else
2841      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
2842    #endif
2843      buttonBox.show();      buttonBox.show();
2844      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
2845      quitButton.set_can_default();      quitButton.set_can_default();
2846      quitButton.grab_focus();      quitButton.grab_focus();
2847      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
2848          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &FilePropDialog::hide));
     eFileFormat.signal_value_changed().connect(  
         sigc::mem_fun(*this, &PropDialog::onFileFormatChanged));  
2849    
2850      quitButton.show();      quitButton.show();
2851      vbox.show();      vbox.show();
2852    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2853      show_all_children();      show_all_children();
2854    #endif
2855  }  }
2856    
2857  void PropDialog::set_file(gig::File* file)  void FilePropDialog::set_file(gig::File* file)
2858  {  {
2859      m_file = file;      m_file = file;
2860        update(file->pInfo);
2861    
2862      // update file format version combo box      // update file format version combo box
2863      const std::string sGiga = "Gigasampler/GigaStudio v";      const std::string sGiga = "Gigasampler/GigaStudio v";
# Line 1573  void PropDialog::set_file(gig::File* fil Line 2865  void PropDialog::set_file(gig::File* fil
2865      std::vector<std::string> txts;      std::vector<std::string> txts;
2866      std::vector<int> values;      std::vector<int> values;
2867      txts.push_back(sGiga + "2"); values.push_back(2);      txts.push_back(sGiga + "2"); values.push_back(2);
2868      txts.push_back(sGiga + "3/v4"); values.push_back(3);      txts.push_back(sGiga + "3"); values.push_back(3);
2869      if (major != 2 && major != 3) {      txts.push_back(sGiga + "4"); values.push_back(4);
2870        if (major < 2 || major > 4) {
2871          txts.push_back(sGiga + ToString(major)); values.push_back(major);          txts.push_back(sGiga + ToString(major)); values.push_back(major);
2872      }      }
2873      std::vector<const char*> texts;      std::vector<const char*> texts;
2874      for (int i = 0; i < txts.size(); ++i) texts.push_back(txts[i].c_str());      for (int i = 0; i < txts.size(); ++i) texts.push_back(txts[i].c_str());
2875      texts.push_back(NULL); values.push_back(0);      texts.push_back(NULL); values.push_back(0);
2876    
2877        update_model++;
2878      eFileFormat.set_choices(&texts[0], &values[0]);      eFileFormat.set_choices(&texts[0], &values[0]);
2879      eFileFormat.set_value(major);      eFileFormat.set_value(major);
2880        update_model--;
2881  }  }
2882    
2883  void PropDialog::onFileFormatChanged() {  void FilePropDialog::set_FileFormat(int value)
     const int major = eFileFormat.get_value();  
     if (m_file) m_file->pVersion->major = major;  
 }  
   
 void PropDialog::set_info(DLS::Info* info)  
2884  {  {
2885      update(info);      m_file->pVersion->major = value;
2886  }  }
2887    
2888    
# Line 1623  void InstrumentProps::set_MIDIProgram(ui Line 2914  void InstrumentProps::set_MIDIProgram(ui
2914  }  }
2915    
2916  InstrumentProps::InstrumentProps() :  InstrumentProps::InstrumentProps() :
2917      quitButton(_("_Close"), true),  #if HAS_GTKMM_STOCK
2918        quitButton(Gtk::Stock::CLOSE),
2919    #else
2920        quitButton(_("_Close")),
2921    #endif
2922      table(2,1),      table(2,1),
2923      eName(_("Name")),      eName(_("Name")),
2924      eIsDrum(_("Is drum")),      eIsDrum(_("Is drum")),
2925      eMIDIBank(_("MIDI bank"), 0, 16383),      eMIDIBank(_("MIDI bank"), 0, 16383),
2926      eMIDIProgram(_("MIDI program")),      eMIDIProgram(_("MIDI program")),
2927      eAttenuation(_("Attenuation"), 0, 96, 0, 1),      eAttenuation(_("Attenuation (dB)"), -96, +96, 0, 1),
     eGainPlus6(_("Gain +6dB"), eAttenuation, -6),  
2928      eEffectSend(_("Effect send"), 0, 65535),      eEffectSend(_("Effect send"), 0, 65535),
2929      eFineTune(_("Fine tune"), -8400, 8400),      eFineTune(_("Fine tune"), -8400, 8400),
2930      ePitchbendRange(_("Pitchbend range"), 0, 12),      ePitchbendRange(_("Pitchbend range (halftones)"), 0, 48),
2931      ePianoReleaseMode(_("Piano release mode")),      ePianoReleaseMode(_("Piano release mode")),
2932      eDimensionKeyRangeLow(_("Keyswitching range low")),      eDimensionKeyRangeLow(_("Keyswitching range low")),
2933      eDimensionKeyRangeHigh(_("Keyswitching range high"))      eDimensionKeyRangeHigh(_("Keyswitching range high")),
2934  {      table2(2,1),
2935        eName2(_("Name")),
2936        eCreationDate(_("Creation date")),
2937        eComments(_("Comments")),
2938        eProduct(_("Product")),
2939        eCopyright(_("Copyright")),
2940        eArtists(_("Artists")),
2941        eGenre(_("Genre")),
2942        eKeywords(_("Keywords")),
2943        eEngineer(_("Engineer")),
2944        eTechnician(_("Technician")),
2945        eSoftware(_("Software")),
2946        eMedium(_("Medium")),
2947        eSource(_("Source")),
2948        eSourceForm(_("Source form")),
2949        eCommissioned(_("Commissioned")),
2950        eSubject(_("Subject"))
2951    {
2952        if (!Settings::singleton()->autoRestoreWindowDimension) {
2953            //set_default_size(470, 390);
2954            set_position(Gtk::WIN_POS_MOUSE);
2955        }
2956    
2957      set_title(_("Instrument Properties"));      set_title(_("Instrument Properties"));
2958    
2959        tabs.append_page(vbox[1], _("Settings"));
2960        tabs.append_page(vbox[2], _("Info"));
2961    
2962      eDimensionKeyRangeLow.set_tip(      eDimensionKeyRangeLow.set_tip(
2963          _("start of the keyboard area which should switch the "          _("start of the keyboard area which should switch the "
2964            "\"keyswitching\" dimension")            "\"keyswitching\" dimension")
# Line 1654  InstrumentProps::InstrumentProps() : Line 2973  InstrumentProps::InstrumentProps() :
2973      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);
2974      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);
2975      connect(eAttenuation, &gig::Instrument::Attenuation);      connect(eAttenuation, &gig::Instrument::Attenuation);
     connect(eGainPlus6, &gig::Instrument::Attenuation);  
2976      connect(eEffectSend, &gig::Instrument::EffectSend);      connect(eEffectSend, &gig::Instrument::EffectSend);
2977      connect(eFineTune, &gig::Instrument::FineTune);      connect(eFineTune, &gig::Instrument::FineTune);
2978      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);
# Line 1664  InstrumentProps::InstrumentProps() : Line 2982  InstrumentProps::InstrumentProps() :
2982    
2983      eName.signal_value_changed().connect(sig_name_changed.make_slot());      eName.signal_value_changed().connect(sig_name_changed.make_slot());
2984    
2985        connect(eName2, &InstrumentProps::set_Name);
2986        connectLambda(eCreationDate, [this](gig::String s) {
2987            m->pInfo->CreationDate = s;
2988        });
2989        connectLambda(eComments, [this](gig::String s) {
2990            m->pInfo->Comments = s;
2991        });
2992        connectLambda(eProduct, [this](gig::String s) {
2993            m->pInfo->Product = s;
2994        });
2995        connectLambda(eCopyright, [this](gig::String s) {
2996            m->pInfo->Copyright = s;
2997        });
2998        connectLambda(eArtists, [this](gig::String s) {
2999            m->pInfo->Artists = s;
3000        });
3001        connectLambda(eGenre, [this](gig::String s) {
3002            m->pInfo->Genre = s;
3003        });
3004        connectLambda(eKeywords, [this](gig::String s) {
3005            m->pInfo->Keywords = s;
3006        });
3007        connectLambda(eEngineer, [this](gig::String s) {
3008            m->pInfo->Engineer = s;
3009        });
3010        connectLambda(eTechnician, [this](gig::String s) {
3011            m->pInfo->Technician = s;
3012        });
3013        connectLambda(eSoftware, [this](gig::String s) {
3014            m->pInfo->Software = s;
3015        });
3016        connectLambda(eMedium, [this](gig::String s) {
3017            m->pInfo->Medium = s;
3018        });
3019        connectLambda(eSource, [this](gig::String s) {
3020            m->pInfo->Source = s;
3021        });
3022        connectLambda(eSourceForm, [this](gig::String s) {
3023            m->pInfo->SourceForm = s;
3024        });
3025        connectLambda(eCommissioned, [this](gig::String s) {
3026            m->pInfo->Commissioned = s;
3027        });
3028        connectLambda(eSubject, [this](gig::String s) {
3029            m->pInfo->Subject = s;
3030        });
3031    
3032        // tab 1
3033    #if USE_GTKMM_GRID
3034        table.set_column_spacing(5);
3035    #else
3036      table.set_col_spacings(5);      table.set_col_spacings(5);
3037    #endif
3038      table.add(eName);      table.add(eName);
3039      table.add(eIsDrum);      table.add(eIsDrum);
3040      table.add(eMIDIBank);      table.add(eMIDIBank);
3041      table.add(eMIDIProgram);      table.add(eMIDIProgram);
3042      table.add(eAttenuation);      table.add(eAttenuation);
     table.add(eGainPlus6);  
3043      table.add(eEffectSend);      table.add(eEffectSend);
3044      table.add(eFineTune);      table.add(eFineTune);
3045      table.add(ePitchbendRange);      table.add(ePitchbendRange);
# Line 1679  InstrumentProps::InstrumentProps() : Line 3047  InstrumentProps::InstrumentProps() :
3047      table.add(eDimensionKeyRangeLow);      table.add(eDimensionKeyRangeLow);
3048      table.add(eDimensionKeyRangeHigh);      table.add(eDimensionKeyRangeHigh);
3049    
3050      add(vbox);      // tab 2
3051    #if USE_GTKMM_GRID
3052        table2.set_column_spacing(5);
3053    #else
3054        table2.set_col_spacings(5);
3055    #endif
3056        table2.add(eName2);
3057        table2.add(eCreationDate);
3058        table2.add(eComments);
3059        table2.add(eProduct);
3060        table2.add(eCopyright);
3061        table2.add(eArtists);
3062        table2.add(eGenre);
3063        table2.add(eKeywords);
3064        table2.add(eEngineer);
3065        table2.add(eTechnician);
3066        table2.add(eSoftware);
3067        table2.add(eMedium);
3068        table2.add(eSource);
3069        table2.add(eSourceForm);
3070        table2.add(eCommissioned);
3071        table2.add(eSubject);
3072    
3073        add(vbox[0]);
3074    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3075        table.set_margin(5);
3076    #else
3077      table.set_border_width(5);      table.set_border_width(5);
3078      vbox.pack_start(table);  #endif
3079        vbox[1].pack_start(table);
3080        vbox[2].pack_start(table2);
3081      table.show();      table.show();
3082      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      table2.show();
3083        vbox[0].pack_start(tabs);
3084        vbox[0].pack_start(buttonBox, Gtk::PACK_SHRINK);
3085      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
3086    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3087        buttonBox.set_margin(5);
3088    #else
3089      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
3090    #endif
3091      buttonBox.show();      buttonBox.show();
3092      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
3093      quitButton.set_can_default();      quitButton.set_can_default();
# Line 1695  InstrumentProps::InstrumentProps() : Line 3097  InstrumentProps::InstrumentProps() :
3097          sigc::mem_fun(*this, &InstrumentProps::hide));          sigc::mem_fun(*this, &InstrumentProps::hide));
3098    
3099      quitButton.show();      quitButton.show();
3100      vbox.show();      vbox[0].show();
3101    #if HAS_GTKMM_SHOW_ALL_CHILDREN
3102      show_all_children();      show_all_children();
3103    #endif
3104  }  }
3105    
3106  void InstrumentProps::set_instrument(gig::Instrument* instrument)  void InstrumentProps::set_instrument(gig::Instrument* instrument)
# Line 1704  void InstrumentProps::set_instrument(gig Line 3108  void InstrumentProps::set_instrument(gig
3108      update(instrument);      update(instrument);
3109    
3110      update_model++;      update_model++;
3111    
3112        // tab 1
3113      eName.set_value(instrument->pInfo->Name);      eName.set_value(instrument->pInfo->Name);
3114      eIsDrum.set_value(instrument->IsDrum);      eIsDrum.set_value(instrument->IsDrum);
3115      eMIDIBank.set_value(instrument->MIDIBank);      eMIDIBank.set_value(instrument->MIDIBank);
3116      eMIDIProgram.set_value(instrument->MIDIProgram);      eMIDIProgram.set_value(instrument->MIDIProgram);
3117        // tab 2
3118        eName2.set_value(instrument->pInfo->Name);
3119        eCreationDate.set_value(instrument->pInfo->CreationDate);
3120        eComments.set_value(instrument->pInfo->Comments);
3121        eProduct.set_value(instrument->pInfo->Product);
3122        eCopyright.set_value(instrument->pInfo->Copyright);
3123        eArtists.set_value(instrument->pInfo->Artists);
3124        eGenre.set_value(instrument->pInfo->Genre);
3125        eKeywords.set_value(instrument->pInfo->Keywords);
3126        eEngineer.set_value(instrument->pInfo->Engineer);
3127        eTechnician.set_value(instrument->pInfo->Technician);
3128        eSoftware.set_value(instrument->pInfo->Software);
3129        eMedium.set_value(instrument->pInfo->Medium);
3130        eSource.set_value(instrument->pInfo->Source);
3131        eSourceForm.set_value(instrument->pInfo->SourceForm);
3132        eCommissioned.set_value(instrument->pInfo->Commissioned);
3133        eSubject.set_value(instrument->pInfo->Subject);
3134    
3135        update_model--;
3136    }
3137    
3138    
3139    SampleProps::SampleProps() :
3140    #if HAS_GTKMM_STOCK
3141        quitButton(Gtk::Stock::CLOSE),
3142    #else
3143        quitButton(_("_Close")),
3144    #endif
3145        table(2,1),
3146        eName(_("Name")),
3147        eUnityNote(_("Unity Note")),
3148        eSampleGroup(_("Sample Group")),
3149        eSampleFormatInfo(_("Sample Format")),
3150        eSampleID("Sample ID"),
3151        eChecksum("Wave Data CRC-32"),
3152        eLoopsCount(_("Loops"), 0, 1), // we might support more than 1 loop in future
3153        eLoopStart(_("Loop start position"), 0, 9999999),
3154        eLoopLength(_("Loop size"), 0, 9999999),
3155        eLoopType(_("Loop type")),
3156        eLoopPlayCount(_("Playback count")),
3157        table2(2,1),
3158        eName2(_("Name")),
3159        eCreationDate(_("Creation date")),
3160        eComments(_("Comments")),
3161        eProduct(_("Product")),
3162        eCopyright(_("Copyright")),
3163        eArtists(_("Artists")),
3164        eGenre(_("Genre")),
3165        eKeywords(_("Keywords")),
3166        eEngineer(_("Engineer")),
3167        eTechnician(_("Technician")),
3168        eSoftware(_("Software")),
3169        eMedium(_("Medium")),
3170        eSource(_("Source")),
3171        eSourceForm(_("Source form")),
3172        eCommissioned(_("Commissioned")),
3173        eSubject(_("Subject"))
3174    {
3175        if (!Settings::singleton()->autoRestoreWindowDimension) {
3176            //set_default_size(470, 390);
3177            set_position(Gtk::WIN_POS_MOUSE);
3178        }
3179    
3180        set_title(_("Sample Properties"));
3181    
3182        tabs.append_page(vbox[1], _("Settings"));
3183        tabs.append_page(vbox[2], _("Info"));
3184    
3185        connect(eName, &SampleProps::set_Name);
3186        connect(eUnityNote, &gig::Sample::MIDIUnityNote);
3187        connect(eLoopsCount, &gig::Sample::Loops);
3188        connectLambda(eLoopStart, [this](uint32_t start){
3189            m->LoopStart = start;
3190            m->LoopEnd = start + m->LoopSize;
3191        });
3192        connectLambda(eLoopLength, [this](uint32_t length){
3193            m->LoopSize = length;
3194            m->LoopEnd = m->LoopStart + length;
3195        });
3196        {
3197            const char* choices[] = { _("normal"), _("bidirectional"), _("backward"), 0 };
3198            static const gig::loop_type_t values[] = {
3199                gig::loop_type_normal,
3200                gig::loop_type_bidirectional,
3201                gig::loop_type_backward
3202            };
3203            eLoopType.set_choices(choices, values);
3204        }
3205        connect(eLoopType, &gig::Sample::LoopType);
3206        connect(eLoopPlayCount, &gig::Sample::LoopPlayCount);
3207    
3208        eName.signal_value_changed().connect(sig_name_changed.make_slot());
3209    
3210        connect(eName2, &SampleProps::set_Name);
3211        connectLambda(eCreationDate, [this](gig::String s) {
3212            m->pInfo->CreationDate = s;
3213        });
3214        connectLambda(eComments, [this](gig::String s) {
3215            m->pInfo->Comments = s;
3216        });
3217        connectLambda(eProduct, [this](gig::String s) {
3218            m->pInfo->Product = s;
3219        });
3220        connectLambda(eCopyright, [this](gig::String s) {
3221            m->pInfo->Copyright = s;
3222        });
3223        connectLambda(eArtists, [this](gig::String s) {
3224            m->pInfo->Artists = s;
3225        });
3226        connectLambda(eGenre, [this](gig::String s) {
3227            m->pInfo->Genre = s;
3228        });
3229        connectLambda(eKeywords, [this](gig::String s) {
3230            m->pInfo->Keywords = s;
3231        });
3232        connectLambda(eEngineer, [this](gig::String s) {
3233            m->pInfo->Engineer = s;
3234        });
3235        connectLambda(eTechnician, [this](gig::String s) {
3236            m->pInfo->Technician = s;
3237        });
3238        connectLambda(eSoftware, [this](gig::String s) {
3239            m->pInfo->Software = s;
3240        });
3241        connectLambda(eMedium, [this](gig::String s) {
3242            m->pInfo->Medium = s;
3243        });
3244        connectLambda(eSource, [this](gig::String s) {
3245            m->pInfo->Source = s;
3246        });
3247        connectLambda(eSourceForm, [this](gig::String s) {
3248            m->pInfo->SourceForm = s;
3249        });
3250        connectLambda(eCommissioned, [this](gig::String s) {
3251            m->pInfo->Commissioned = s;
3252        });
3253        connectLambda(eSubject, [this](gig::String s) {
3254            m->pInfo->Subject = s;
3255        });
3256    
3257        // tab 1
3258    #if USE_GTKMM_GRID
3259        table.set_column_spacing(5);
3260    #else
3261        table.set_col_spacings(5);
3262    #endif
3263        table.add(eName);
3264        table.add(eUnityNote);
3265        table.add(eSampleGroup);
3266        table.add(eSampleFormatInfo);
3267        table.add(eSampleID);
3268        table.add(eChecksum);
3269        table.add(eLoopsCount);
3270        table.add(eLoopStart);
3271        table.add(eLoopLength);
3272        table.add(eLoopType);
3273        table.add(eLoopPlayCount);
3274    
3275        // tab 2
3276    #if USE_GTKMM_GRID
3277        table2.set_column_spacing(5);
3278    #else
3279        table2.set_col_spacings(5);
3280    #endif
3281        table2.add(eName2);
3282        table2.add(eCreationDate);
3283        table2.add(eComments);
3284        table2.add(eProduct);
3285        table2.add(eCopyright);
3286        table2.add(eArtists);
3287        table2.add(eGenre);
3288        table2.add(eKeywords);
3289        table2.add(eEngineer);
3290        table2.add(eTechnician);
3291        table2.add(eSoftware);
3292        table2.add(eMedium);
3293        table2.add(eSource);
3294        table2.add(eSourceForm);
3295        table2.add(eCommissioned);
3296        table2.add(eSubject);
3297    
3298        add(vbox[0]);
3299    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3300        table.set_margin(5);
3301    #else
3302        table.set_border_width(5);
3303    #endif
3304        vbox[1].pack_start(table);
3305        vbox[2].pack_start(table2);
3306        table.show();
3307        table2.show();
3308        vbox[0].pack_start(tabs);
3309        vbox[0].pack_start(buttonBox, Gtk::PACK_SHRINK);
3310        buttonBox.set_layout(Gtk::BUTTONBOX_END);
3311    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3312        buttonBox.set_margin(5);
3313    #else
3314        buttonBox.set_border_width(5);
3315    #endif
3316        buttonBox.show();
3317        buttonBox.pack_start(quitButton);
3318        quitButton.set_can_default();
3319        quitButton.grab_focus();
3320    
3321        quitButton.signal_clicked().connect(
3322            sigc::mem_fun(*this, &SampleProps::hide));
3323    
3324        quitButton.show();
3325        vbox[0].show();
3326    #if HAS_GTKMM_SHOW_ALL_CHILDREN
3327        show_all_children();
3328    #endif
3329    }
3330    
3331    void SampleProps::set_sample(gig::Sample* sample)
3332    {
3333        update(sample);
3334    
3335        update_model++;
3336    
3337        // tab 1
3338        eName.set_value(sample->pInfo->Name);
3339        eUnityNote.set_value(sample->MIDIUnityNote);
3340        // show sample group name
3341        {
3342            Glib::ustring s = "---";
3343            if (sample && sample->GetGroup())
3344                s = sample->GetGroup()->Name;
3345            eSampleGroup.text.set_text(s);
3346        }
3347        // assemble sample format info string
3348        {
3349            Glib::ustring s;
3350            if (sample) {
3351                switch (sample->Channels) {
3352                    case 1: s = _("Mono"); break;
3353                    case 2: s = _("Stereo"); break;
3354                    default:
3355                        s = ToString(sample->Channels) + _(" audio channels");
3356                        break;
3357                }
3358                s += " " + ToString(sample->BitDepth) + " Bits";
3359                s += " " + ToString(sample->SamplesPerSecond/1000) + "."
3360                         + ToString((sample->SamplesPerSecond%1000)/100) + " kHz";
3361            } else {
3362                s = _("No sample assigned to this dimension region.");
3363            }
3364            eSampleFormatInfo.text.set_text(s);
3365        }
3366        // generate sample's memory address pointer string
3367        {
3368            Glib::ustring s;
3369            if (sample) {
3370                char buf[64] = {};
3371                snprintf(buf, sizeof(buf), "%p", sample);
3372                s = buf;
3373            } else {
3374                s = "---";
3375            }
3376            eSampleID.text.set_text(s);
3377        }
3378        // generate raw wave form data CRC-32 checksum string
3379        {
3380            Glib::ustring s = "---";
3381            if (sample) {
3382                char buf[64] = {};
3383                snprintf(buf, sizeof(buf), "%x", sample->GetWaveDataCRC32Checksum());
3384                s = buf;
3385            }
3386            eChecksum.text.set_text(s);
3387        }
3388        eLoopsCount.set_value(sample->Loops);
3389        eLoopStart.set_value(sample->LoopStart);
3390        eLoopLength.set_value(sample->LoopSize);
3391        eLoopType.set_value(sample->LoopType);
3392        eLoopPlayCount.set_value(sample->LoopPlayCount);
3393        // tab 2
3394        eName2.set_value(sample->pInfo->Name);
3395        eCreationDate.set_value(sample->pInfo->CreationDate);
3396        eComments.set_value(sample->pInfo->Comments);
3397        eProduct.set_value(sample->pInfo->Product);
3398        eCopyright.set_value(sample->pInfo->Copyright);
3399        eArtists.set_value(sample->pInfo->Artists);
3400        eGenre.set_value(sample->pInfo->Genre);
3401        eKeywords.set_value(sample->pInfo->Keywords);
3402        eEngineer.set_value(sample->pInfo->Engineer);
3403        eTechnician.set_value(sample->pInfo->Technician);
3404        eSoftware.set_value(sample->pInfo->Software);
3405        eMedium.set_value(sample->pInfo->Medium);
3406        eSource.set_value(sample->pInfo->Source);
3407        eSourceForm.set_value(sample->pInfo->SourceForm);
3408        eCommissioned.set_value(sample->pInfo->Commissioned);
3409        eSubject.set_value(sample->pInfo->Subject);
3410    
3411        update_model--;
3412    }
3413    
3414    void SampleProps::set_Name(const gig::String& name)
3415    {
3416        m->pInfo->Name = name;
3417    }
3418    
3419    void SampleProps::update_name()
3420    {
3421        update_model++;
3422        eName.set_value(m->pInfo->Name);
3423      update_model--;      update_model--;
3424  }  }
3425    
# Line 1741  void MainWindow::updateSampleRefCountMap Line 3453  void MainWindow::updateSampleRefCountMap
3453      }      }
3454  }  }
3455    
3456    bool MainWindow::onQueryTreeViewTooltip(int x, int y, bool keyboardTip, const Glib::RefPtr<Gtk::Tooltip>& tooltip) {
3457        Gtk::TreeModel::iterator iter;
3458        if (!m_TreeViewInstruments.get_tooltip_context_iter(x, y, keyboardTip, iter)) {
3459            return false;
3460        }
3461        Gtk::TreeModel::Path path(iter);
3462        Gtk::TreeModel::Row row = *iter;
3463        Gtk::TreeViewColumn* pointedColumn = NULL;
3464        // resolve the precise table column the mouse points to
3465        {
3466            Gtk::TreeModel::Path path; // unused
3467            int cellX, cellY; // unused
3468            m_TreeViewInstruments.get_path_at_pos(x, y, path, pointedColumn, cellX, cellY);
3469        }
3470        Gtk::TreeViewColumn* scriptsColumn = m_TreeViewInstruments.get_column(2);
3471        if (pointedColumn == scriptsColumn) { // mouse hovers scripts column ...
3472            // show the script(s) assigned to the hovered instrument as tooltip
3473            tooltip->set_markup( row[m_InstrumentsModel.m_col_tooltip] );
3474            m_TreeViewInstruments.set_tooltip_cell(tooltip, &path, scriptsColumn, NULL);
3475        } else {
3476            // if beginners' tooltips is disabled then don't show the following one
3477            if (!Settings::singleton()->showTooltips)
3478                return false;
3479            // yeah, a beginners tooltip
3480            tooltip->set_text(_(
3481                "Right click here for actions on instruments & MIDI Rules. "
3482                "Drag & drop to change the order of instruments."
3483            ));
3484            m_TreeViewInstruments.set_tooltip_cell(tooltip, &path, pointedColumn, NULL);
3485        }
3486        return true;
3487    }
3488    
3489    static Glib::ustring scriptTooltipFor(gig::Instrument* instrument, int index) {
3490        Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3491        const int iScriptSlots = instrument->ScriptSlotCount();
3492        Glib::ustring tooltip = "<u>(" + ToString(index) + ") “"  + name + "”</u>\n\n";
3493        if (!iScriptSlots)
3494            tooltip += "<span foreground='red'><i>No script assigned</i></span>";
3495        else {
3496            for (int i = 0; i < iScriptSlots; ++i) {
3497                tooltip += "• " + ToString(i+1) + ". Script: “<span foreground='#46DEFF'><b>" +
3498                           instrument->GetScriptOfSlot(i)->Name + "</b></span>”";
3499                if (i + 1 < iScriptSlots) tooltip += "\n\n";
3500            }
3501        }
3502        return tooltip;
3503    }
3504    
3505  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
3506  {  {
3507      file = 0;      file = 0;
# Line 1754  void MainWindow::load_gig(gig::File* gig Line 3515  void MainWindow::load_gig(gig::File* gig
3515      file_has_name = filename;      file_has_name = filename;
3516      file_is_changed = false;      file_is_changed = false;
3517    
3518      propDialog.set_file(gig);      fileProps.set_file(gig);
     propDialog.set_info(gig->pInfo);  
3519    
3520      instrument_name_connection.block();      instrument_name_connection.block();
3521        int index = 0;
3522      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
3523           instrument = gig->GetNextInstrument()) {           instrument = gig->GetNextInstrument(), ++index) {
3524          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3525            const int iScriptSlots = instrument->ScriptSlotCount();
3526    
3527          Gtk::TreeModel::iterator iter = m_refTreeModel->append();          Gtk::TreeModel::iterator iter = m_refInstrumentsTreeModel->append();
3528          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
3529          row[m_Columns.m_col_name] = name;          row[m_InstrumentsModel.m_col_nr] = index;
3530          row[m_Columns.m_col_instr] = instrument;          row[m_InstrumentsModel.m_col_name] = name;
3531            row[m_InstrumentsModel.m_col_instr] = instrument;
3532            row[m_InstrumentsModel.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3533            row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
3534    
3535    #if !USE_GTKMM_BUILDER
3536          add_instrument_to_menu(name);          add_instrument_to_menu(name);
3537    #endif
3538      }      }
3539      instrument_name_connection.unblock();      instrument_name_connection.unblock();
3540    #if !USE_GTKMM_BUILDER
3541      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();
3542    #endif
3543    
3544      updateSampleRefCountMap(gig);      updateSampleRefCountMap(gig);
3545    
# Line 1823  void MainWindow::load_gig(gig::File* gig Line 3592  void MainWindow::load_gig(gig::File* gig
3592      file = gig;      file = gig;
3593    
3594      // select the first instrument      // select the first instrument
3595      m_TreeView.get_selection()->select(Gtk::TreePath("0"));      m_TreeViewInstruments.get_selection()->select(Gtk::TreePath("0"));
3596    
3597      instr_props_set_instrument();      instr_props_set_instrument();
3598      gig::Instrument* instrument = get_instrument();      gig::Instrument* instrument = get_instrument();
# Line 1836  bool MainWindow::instr_props_set_instrum Line 3605  bool MainWindow::instr_props_set_instrum
3605  {  {
3606      instrumentProps.signal_name_changed().clear();      instrumentProps.signal_name_changed().clear();
3607    
3608      Gtk::TreeModel::const_iterator it =      std::vector<Gtk::TreeModel::Path> rows = m_TreeViewInstruments.get_selection()->get_selected_rows();
3609          m_TreeView.get_selection()->get_selected();      if (rows.empty()) {
3610            instrumentProps.hide();
3611            return false;
3612        }
3613        //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
3614        Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[0]);
3615      if (it) {      if (it) {
3616          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
3617          gig::Instrument* instrument = row[m_Columns.m_col_instr];          gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
3618    
3619          instrumentProps.set_instrument(instrument);          instrumentProps.set_instrument(instrument);
3620    
# Line 1854  bool MainWindow::instr_props_set_instrum Line 3628  bool MainWindow::instr_props_set_instrum
3628      } else {      } else {
3629          instrumentProps.hide();          instrumentProps.hide();
3630      }      }
3631      return it;      //NOTE: explicit boolean cast required for GTKMM4 development branch here
3632        return it ? true : false;
3633  }  }
3634    
3635  void MainWindow::show_instr_props()  void MainWindow::show_instr_props()
# Line 1868  void MainWindow::show_instr_props() Line 3643  void MainWindow::show_instr_props()
3643  void MainWindow::instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it)  void MainWindow::instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it)
3644  {  {
3645      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
3646      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_InstrumentsModel.m_col_name];
3647    
3648      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
3649      Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));      Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
3650      if (gigname != name) {      if (gigname != name) {
3651          row[m_Columns.m_col_name] = gigname;          Gtk::TreeModel::Path path(*it);
3652            const int index = path[0];
3653            row[m_InstrumentsModel.m_col_name] = gigname;
3654            row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
3655        }
3656    }
3657    
3658    bool MainWindow::sample_props_set_sample()
3659    {
3660        sampleProps.signal_name_changed().clear();
3661    
3662        std::vector<Gtk::TreeModel::Path> rows = m_TreeViewSamples.get_selection()->get_selected_rows();
3663        if (rows.empty()) {
3664            sampleProps.hide();
3665            return false;
3666        }
3667        //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
3668        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
3669        if (it) {
3670            Gtk::TreeModel::Row row = *it;
3671            gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3672    
3673            sampleProps.set_sample(sample);
3674    
3675            // make sure sample tree is updated when user changes the
3676            // sample name in sample properties window
3677            sampleProps.signal_name_changed().connect(
3678                sigc::bind(
3679                    sigc::mem_fun(*this,
3680                        &MainWindow::sample_name_changed_by_sample_props
3681                    ), it
3682                )
3683            );
3684        } else {
3685            sampleProps.hide();
3686        }
3687        //NOTE: explicit boolean cast required for GTKMM4 development branch here
3688        return it ? true : false;
3689    }
3690    
3691    void MainWindow::show_sample_props()
3692    {
3693        if (sample_props_set_sample()) {
3694            sampleProps.show();
3695            sampleProps.deiconify();
3696        }
3697    }
3698    
3699    void MainWindow::sample_name_changed_by_sample_props(Gtk::TreeModel::iterator& it)
3700    {
3701        Gtk::TreeModel::Row row = *it;
3702        Glib::ustring name = row[m_SamplesModel.m_col_name];
3703    
3704        gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3705        Glib::ustring gigname(gig_to_utf8(sample->pInfo->Name));
3706        if (gigname != name) {
3707            Gtk::TreeModel::Path path(*it);
3708            row[m_SamplesModel.m_col_name] = gigname;
3709      }      }
3710  }  }
3711    
# Line 1890  void MainWindow::show_midi_rules() Line 3722  void MainWindow::show_midi_rules()
3722  void MainWindow::show_script_slots() {  void MainWindow::show_script_slots() {
3723      if (!file) return;      if (!file) return;
3724      // get selected instrument      // get selected instrument
3725      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      std::vector<Gtk::TreeModel::Path> rows = m_TreeViewInstruments.get_selection()->get_selected_rows();
3726      Gtk::TreeModel::iterator it = sel->get_selected();      if (rows.empty()) return;
3727        Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[0]);
3728      if (!it) return;      if (!it) return;
3729      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
3730      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
3731      if (!instrument) return;      if (!instrument) return;
3732    
3733      ScriptSlots* window = new ScriptSlots;      ScriptSlots* window = new ScriptSlots;
3734      window->setInstrument(instrument);      window->setInstrument(instrument);
3735        window->signal_script_slots_changed().connect(
3736            sigc::mem_fun(*this, &MainWindow::onScriptSlotsModified)
3737        );
3738      //window->reparent(*this);      //window->reparent(*this);
3739      window->show();      window->show();
3740  }  }
3741    
3742    void MainWindow::onScriptSlotsModified(gig::Instrument* pInstrument) {
3743        if (!pInstrument) return;
3744        const int iScriptSlots = pInstrument->ScriptSlotCount();
3745    
3746        //NOTE: This is a big mess! Sometimes GTK requires m_TreeViewInstruments.get_model(), here we need m_refInstrumentsModelFilter->get_model(), otherwise accessing children below causes an error!
3747        //Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewInstruments.get_model();
3748        Glib::RefPtr<Gtk::TreeModel> model = m_refInstrumentsModelFilter->get_model();
3749    
3750        for (int i = 0; i < model->children().size(); ++i) {
3751            Gtk::TreeModel::Row row = model->children()[i];
3752            if (row[m_InstrumentsModel.m_col_instr] != pInstrument) continue;
3753            row[m_InstrumentsModel.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3754            row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(pInstrument, i);
3755            break;
3756        }
3757    
3758        // causes the sampler to reload the instrument with the new script
3759        on_sel_change();
3760    
3761        // force script 'patch' variables editor ("Script" tab) to be refreshed
3762        dimreg_edit.scriptVars.setInstrument(pInstrument, true/*force update*/);
3763    }
3764    
3765    void MainWindow::assignScript(gig::Script* pScript) {
3766        if (!pScript) {
3767            printf("assignScript() : !script\n");
3768            return;
3769        }
3770        printf("assignScript('%s')\n", pScript->Name.c_str());
3771    
3772        gig::Instrument* pInstrument = get_instrument();
3773        if (!pInstrument) {
3774            printf("!instrument\n");
3775            return;
3776        }
3777    
3778        pInstrument->AddScriptSlot(pScript);
3779    
3780        onScriptSlotsModified(pInstrument);
3781    }
3782    
3783    void MainWindow::dropAllScriptSlots() {
3784        gig::Instrument* pInstrument = get_instrument();
3785        if (!pInstrument) {
3786            printf("!instrument\n");
3787            return;
3788        }
3789    
3790        const int iScriptSlots = pInstrument->ScriptSlotCount();
3791        for (int i = iScriptSlots - 1; i >= 0; --i)
3792            pInstrument->RemoveScriptSlot(i);
3793    
3794        onScriptSlotsModified(pInstrument);
3795    }
3796    
3797  void MainWindow::on_action_refresh_all() {  void MainWindow::on_action_refresh_all() {
3798      __refreshEntireGUI();      __refreshEntireGUI();
3799  }  }
3800    
3801  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
3802    #if USE_GLIB_ACTION
3803        bool active = false;
3804        m_actionToggleStatusBar->get_state(active);
3805        // for some reason toggle state does not change automatically
3806        active = !active;
3807        m_actionToggleStatusBar->change_state(active);
3808        if (active)
3809            m_StatusBar.show();
3810        else
3811            m_StatusBar.hide();
3812    #else
3813      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3814          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
3815      if (!item) {      if (!item) {
# Line 1916  void MainWindow::on_action_view_status_b Line 3818  void MainWindow::on_action_view_status_b
3818      }      }
3819      if (item->get_active()) m_StatusBar.show();      if (item->get_active()) m_StatusBar.show();
3820      else                    m_StatusBar.hide();      else                    m_StatusBar.hide();
3821    #endif
3822    }
3823    
3824    void MainWindow::on_auto_restore_win_dim() {
3825    #if USE_GLIB_ACTION
3826        bool active = false;
3827        m_actionToggleRestoreWinDim->get_state(active);
3828        // for some reason toggle state does not change automatically
3829        active = !active;
3830        m_actionToggleRestoreWinDim->change_state(active);
3831        Settings::singleton()->autoRestoreWindowDimension = active;
3832    #else
3833        Gtk::CheckMenuItem* item =
3834            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
3835        if (!item) {
3836            std::cerr << "/MenuBar/MenuView/AutoRestoreWinDim == NULL\n";
3837            return;
3838        }
3839        Settings::singleton()->autoRestoreWindowDimension = item->get_active();
3840    #endif
3841    }
3842    
3843    void MainWindow::on_instr_double_click_opens_props() {
3844    #if USE_GLIB_ACTION
3845        bool active = false;
3846        m_actionInstrDoubleClickOpensProps->get_state(active);
3847        // for some reason toggle state does not change automatically
3848        active = !active;
3849        m_actionInstrDoubleClickOpensProps->change_state(active);
3850        Settings::singleton()->instrumentDoubleClickOpensProps = active;
3851    #else
3852        Gtk::CheckMenuItem* item =
3853            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/OpenInstrPropsByDoubleClick"));
3854        if (!item) {
3855            std::cerr << "/MenuBar/MenuView/OpenInstrPropsByDoubleClick == NULL\n";
3856            return;
3857        }
3858        Settings::singleton()->instrumentDoubleClickOpensProps = item->get_active();
3859    #endif
3860    }
3861    
3862    void MainWindow::on_save_with_temporary_file() {
3863    #if USE_GLIB_ACTION
3864        bool active = false;
3865        m_actionToggleSaveWithTempFile->get_state(active);
3866        // for some reason toggle state does not change automatically
3867        active = !active;
3868        m_actionToggleSaveWithTempFile->change_state(active);
3869        Settings::singleton()->saveWithTemporaryFile = active;
3870    #else
3871        Gtk::CheckMenuItem* item =
3872            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));
3873        if (!item) {
3874            std::cerr << "/MenuBar/MenuSettings/SaveWithTemporaryFile == NULL\n";
3875            return;
3876        }
3877        Settings::singleton()->saveWithTemporaryFile = item->get_active();
3878    #endif
3879  }  }
3880    
3881  bool MainWindow::is_copy_samples_unity_note_enabled() const {  bool MainWindow::is_copy_samples_unity_note_enabled() const {
3882    #if USE_GLIB_ACTION
3883        bool active = false;
3884        m_actionToggleCopySampleUnity->get_state(active);
3885        return active;
3886    #else
3887      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3888          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
3889      if (!item) {      if (!item) {
# Line 1926  bool MainWindow::is_copy_samples_unity_n Line 3891  bool MainWindow::is_copy_samples_unity_n
3891          return true;          return true;
3892      }      }
3893      return item->get_active();      return item->get_active();
3894    #endif
3895  }  }
3896    
3897  bool MainWindow::is_copy_samples_fine_tune_enabled() const {  bool MainWindow::is_copy_samples_fine_tune_enabled() const {
3898    #if USE_GLIB_ACTION
3899        bool active = false;
3900        m_actionToggleCopySampleTune->get_state(active);
3901        return active;
3902    #else
3903      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3904          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
3905      if (!item) {      if (!item) {
# Line 1936  bool MainWindow::is_copy_samples_fine_tu Line 3907  bool MainWindow::is_copy_samples_fine_tu
3907          return true;          return true;
3908      }      }
3909      return item->get_active();      return item->get_active();
3910    #endif
3911  }  }
3912    
3913  bool MainWindow::is_copy_samples_loop_enabled() const {  bool MainWindow::is_copy_samples_loop_enabled() const {
3914    #if USE_GLIB_ACTION
3915        bool active = false;
3916        m_actionToggleCopySampleLoop->get_state(active);
3917        return active;
3918    #else
3919      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3920          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
3921      if (!item) {      if (!item) {
# Line 1946  bool MainWindow::is_copy_samples_loop_en Line 3923  bool MainWindow::is_copy_samples_loop_en
3923          return true;          return true;
3924      }      }
3925      return item->get_active();      return item->get_active();
3926    #endif
3927  }  }
3928    
3929  void MainWindow::on_button_release(GdkEventButton* button)  #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
3930  {  bool MainWindow::on_button_release(Gdk::EventButton& _button) {
3931        GdkEventButton* button = _button.gobj();
3932    #else
3933    void MainWindow::on_button_release(GdkEventButton* button) {
3934    #endif
3935      if (button->type == GDK_2BUTTON_PRESS) {      if (button->type == GDK_2BUTTON_PRESS) {
3936          show_instr_props();          if (Settings::singleton()->instrumentDoubleClickOpensProps)
3937                show_instr_props();
3938      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
3939          // gig v2 files have no midi rules          // gig v2 files have no midi rules
3940          const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);          const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
3941    #if USE_GTKMM_BUILDER
3942            m_actionMIDIRules->property_enabled() = bEnabled;
3943    #else
3944          static_cast<Gtk::MenuItem*>(          static_cast<Gtk::MenuItem*>(
3945              uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(              uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(
3946                  bEnabled                  bEnabled
# Line 1963  void MainWindow::on_button_release(GdkEv Line 3949  void MainWindow::on_button_release(GdkEv
3949              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
3950                  bEnabled                  bEnabled
3951              );              );
3952    #endif
3953          popup_menu->popup(button->button, button->time);          popup_menu->popup(button->button, button->time);
3954      }      }
3955    #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
3956        return false;
3957    #endif
3958  }  }
3959    
3960    #if !USE_GTKMM_BUILDER
3961  void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {  void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {
3962      if (item->get_active()) {      if (item->get_active()) {
3963          const std::vector<Gtk::Widget*> children =          const std::vector<Gtk::Widget*> children =
# Line 1975  void MainWindow::on_instrument_selection Line 3966  void MainWindow::on_instrument_selection
3966              find(children.begin(), children.end(), item);              find(children.begin(), children.end(), item);
3967          if (it != children.end()) {          if (it != children.end()) {
3968              int index = it - children.begin();              int index = it - children.begin();
3969              m_TreeView.get_selection()->select(Gtk::TreePath(ToString(index)));              m_TreeViewInstruments.get_selection()->select(Gtk::TreePath(ToString(index)));
3970    
3971              m_RegionChooser.set_instrument(file->GetInstrument(index));              m_RegionChooser.set_instrument(file->GetInstrument(index));
3972          }          }
3973      }      }
3974  }  }
3975    #endif
3976    
3977    void MainWindow::on_action_move_instr() {
3978        gig::Instrument* instr = get_instrument();
3979        if (!instr) return;
3980    
3981        int currentIndex = getIndexOf(instr);
3982    
3983        Gtk::Dialog dialog(_("Move Instrument"), true /*modal*/);
3984    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
3985        Gtk::Adjustment adjustment(
3986            currentIndex,
3987            0 /*min*/, file->CountInstruments() - 1 /*max*/
3988        );
3989        Gtk::SpinButton spinBox(adjustment);
3990    #else
3991        Gtk::SpinButton spinBox(
3992            Gtk::Adjustment::create(
3993                currentIndex,
3994                0 /*min*/, file->CountInstruments() - 1 /*max*/
3995            )
3996        );
3997    #endif
3998    #if USE_GTKMM_BOX
3999        dialog.get_content_area()->pack_start(spinBox);
4000    #else
4001        dialog.get_vbox()->pack_start(spinBox);
4002    #endif
4003    #if HAS_GTKMM_STOCK
4004        Gtk::Button* okButton = dialog.add_button(Gtk::Stock::OK, 0);
4005        dialog.add_button(Gtk::Stock::CANCEL, 1);
4006    #else
4007        Gtk::Button* okButton = dialog.add_button(_("_OK"), 0);
4008        dialog.add_button(_("_Cancel"), 1);
4009    #endif
4010        okButton->set_sensitive(false);
4011        // show the dialog at a reasonable screen position
4012        dialog.set_position(Gtk::WIN_POS_MOUSE);
4013        // only enable the 'OK' button if entered new index is not instrument's
4014        // current index already
4015        spinBox.signal_value_changed().connect([&]{
4016            okButton->set_sensitive( spinBox.get_value_as_int() != currentIndex );
4017        });
4018        // usability acceleration: if user hits enter key on the text entry field
4019        // then auto trigger the 'OK' button
4020        spinBox.signal_activate().connect([&]{
4021            if (okButton->get_sensitive())
4022                okButton->clicked();
4023        });
4024    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4025        dialog.show_all_children();
4026    #endif
4027        if (!dialog.run()) { // 'OK' selected ...
4028            int newIndex = spinBox.get_value_as_int();
4029            printf("MOVE TO %d\n", newIndex);
4030            gig::Instrument* dst = file->GetInstrument(newIndex);
4031            instr->MoveTo(dst);
4032            __refreshEntireGUI();
4033            select_instrument(instr);
4034        }
4035    }
4036    
4037  void MainWindow::select_instrument(gig::Instrument* instrument) {  void MainWindow::select_instrument(gig::Instrument* instrument) {
4038      if (!instrument) return;      if (!instrument) return;
4039    
4040      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();      //NOTE: This is a big mess! Sometimes GTK requires m_refInstrumentsModelFilter->get_model(), here we need m_TreeViewInstruments.get_model(), otherwise treeview selection below causes an error!
4041        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewInstruments.get_model();
4042        //Glib::RefPtr<Gtk::TreeModel> model = m_refInstrumentsModelFilter->get_model();
4043    
4044      for (int i = 0; i < model->children().size(); ++i) {      for (int i = 0; i < model->children().size(); ++i) {
4045          Gtk::TreeModel::Row row = model->children()[i];          Gtk::TreeModel::Row row = model->children()[i];
4046          if (row[m_Columns.m_col_instr] == instrument) {          if (row[m_InstrumentsModel.m_col_instr] == instrument) {
4047              // select and show the respective instrument in the list view              // select and show the respective instrument in the list view
4048              show_intruments_tab();              show_intruments_tab();
4049              m_TreeView.get_selection()->select(model->children()[i]);              m_TreeViewInstruments.get_selection()->unselect_all();
4050              Gtk::TreePath path(              
4051                  m_TreeView.get_selection()->get_selected()  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4052              );              auto iterSel = model->children()[i].get_iter();
4053              m_TreeView.scroll_to_row(path);              m_TreeViewInstruments.get_selection()->select(iterSel);
4054    #else
4055                m_TreeViewInstruments.get_selection()->select(model->children()[i]);
4056    #endif
4057                std::vector<Gtk::TreeModel::Path> rows =
4058                    m_TreeViewInstruments.get_selection()->get_selected_rows();
4059                if (!rows.empty())
4060                    m_TreeViewInstruments.scroll_to_row(rows[0]);
4061              on_sel_change(); // the regular instrument selection change callback              on_sel_change(); // the regular instrument selection change callback
4062          }          }
4063      }      }
# Line 2006  bool MainWindow::select_dimension_region Line 4068  bool MainWindow::select_dimension_region
4068      gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();      gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();
4069      gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();      gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();
4070    
4071      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();      //NOTE: This is a big mess! Sometimes GTK requires m_refInstrumentsModelFilter->get_model(), here we need m_TreeViewInstruments.get_model(), otherwise treeview selection below causes an error!
4072        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewInstruments.get_model();
4073        //Glib::RefPtr<Gtk::TreeModel> model = m_refInstrumentsModelFilter->get_model();
4074    
4075      for (int i = 0; i < model->children().size(); ++i) {      for (int i = 0; i < model->children().size(); ++i) {
4076          Gtk::TreeModel::Row row = model->children()[i];          Gtk::TreeModel::Row row = model->children()[i];
4077          if (row[m_Columns.m_col_instr] == pInstrument) {          if (row[m_InstrumentsModel.m_col_instr] == pInstrument) {
4078              // select and show the respective instrument in the list view              // select and show the respective instrument in the list view
4079              show_intruments_tab();              show_intruments_tab();
4080              m_TreeView.get_selection()->select(model->children()[i]);              m_TreeViewInstruments.get_selection()->unselect_all();
4081              Gtk::TreePath path(  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4082                  m_TreeView.get_selection()->get_selected()              auto iterSel = model->children()[i].get_iter();
4083              );              m_TreeViewInstruments.get_selection()->select(iterSel);
4084              m_TreeView.scroll_to_row(path);  #else
4085                m_TreeViewInstruments.get_selection()->select(model->children()[i]);
4086    #endif
4087                std::vector<Gtk::TreeModel::Path> rows =
4088                    m_TreeViewInstruments.get_selection()->get_selected_rows();
4089                if (!rows.empty())
4090                    m_TreeViewInstruments.scroll_to_row(rows[0]);
4091              on_sel_change(); // the regular instrument selection change callback              on_sel_change(); // the regular instrument selection change callback
4092    
4093              // select respective region in the region selector              // select respective region in the region selector
# Line 2042  void MainWindow::select_sample(gig::Samp Line 4113  void MainWindow::select_sample(gig::Samp
4113              Gtk::TreeModel::Row rowSample = rowGroup.children()[s];              Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
4114              if (rowSample[m_SamplesModel.m_col_sample] == sample) {              if (rowSample[m_SamplesModel.m_col_sample] == sample) {
4115                  show_samples_tab();                  show_samples_tab();
4116                    m_TreeViewSamples.get_selection()->unselect_all();
4117    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4118                    auto iterSel = rowGroup.children()[s].get_iter();
4119                    m_TreeViewSamples.get_selection()->select(iterSel);
4120    #else
4121                  m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);                  m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);
4122                  Gtk::TreePath path(  #endif
4123                      m_TreeViewSamples.get_selection()->get_selected()                  std::vector<Gtk::TreeModel::Path> rows =
4124                  );                      m_TreeViewSamples.get_selection()->get_selected_rows();
4125                  m_TreeViewSamples.scroll_to_row(path);                  if (rows.empty()) return;
4126                    m_TreeViewSamples.scroll_to_row(rows[0]);
4127                  return;                  return;
4128              }              }
4129          }          }
4130      }      }
4131  }  }
4132    
4133    #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
4134    bool MainWindow::on_sample_treeview_button_release(Gdk::EventButton& _button) {
4135        GdkEventButton* button = _button.gobj();
4136    #else
4137  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
4138    #endif
4139      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
4140            // by default if Ctrl keys is pressed down, then a mouse right-click
4141            // does not select the respective row, so we must assure this
4142            // programmatically ...
4143            /*{
4144                Gtk::TreeModel::Path path;
4145                Gtk::TreeViewColumn* pColumn = NULL;
4146                int cellX, cellY;
4147                bool bSuccess = m_TreeViewSamples.get_path_at_pos(
4148                    (int)button->x, (int)button->y,
4149                    path, pColumn, cellX, cellY
4150                );
4151                if (bSuccess) {
4152                    if (m_TreeViewSamples.get_selection()->count_selected_rows() <= 0) {
4153                        printf("not selected !!!\n");
4154                        m_TreeViewSamples.get_selection()->select(path);
4155                    }
4156                }
4157            }*/
4158    
4159    #if !USE_GTKMM_BUILDER
4160          Gtk::Menu* sample_popup =          Gtk::Menu* sample_popup =
4161              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));
4162    #endif
4163    
4164          // update enabled/disabled state of sample popup items          // update enabled/disabled state of sample popup items
4165          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
4166          Gtk::TreeModel::iterator it = sel->get_selected();          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4167          bool group_selected  = false;          const int n = rows.size();
4168          bool sample_selected = false;          int nGroups  = 0;
4169          if (it) {          int nSamples = 0;
4170            for (int r = 0; r < n; ++r) {
4171                Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
4172                if (!it) continue;
4173              Gtk::TreeModel::Row row = *it;              Gtk::TreeModel::Row row = *it;
4174              group_selected  = row[m_SamplesModel.m_col_group];              if (row[m_SamplesModel.m_col_group]) nGroups++;
4175              sample_selected = row[m_SamplesModel.m_col_sample];              if (row[m_SamplesModel.m_col_sample]) nSamples++;
4176          }          }
4177            
4178                #if USE_GTKMM_BUILDER
4179            m_actionSampleProperties->property_enabled() = (n == 1);
4180            m_actionAddSample->property_enabled() = (n);
4181            m_actionAddSampleGroup->property_enabled() = (file);
4182            m_actionViewSampleRefs->property_enabled() = (nSamples == 1);
4183            m_actionRemoveSample->property_enabled() = (n);
4184            m_actionReplaceSample->property_enabled() = (nSamples == 1);
4185    #else
4186          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
4187              set_sensitive(group_selected || sample_selected);              set_sensitive(n == 1);
4188          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
4189              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
4190          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->
4191              set_sensitive(file);              set_sensitive(file);
4192          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/ShowSampleRefs"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/ShowSampleRefs"))->
4193              set_sensitive(sample_selected);              set_sensitive(nSamples == 1);
4194          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
4195              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
4196    #endif
4197          // show sample popup          // show sample popup
4198          sample_popup->popup(button->button, button->time);          sample_popup->popup(button->button, button->time);
4199    
4200    #if !USE_GTKMM_BUILDER
4201          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->
4202              set_sensitive(group_selected || sample_selected);              set_sensitive(n == 1);
4203          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->
4204              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
4205          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddGroup"))->
4206              set_sensitive(file);              set_sensitive(file);
4207          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/ShowSampleRefs"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/ShowSampleRefs"))->
4208              set_sensitive(sample_selected);              set_sensitive(nSamples == 1);
4209          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->
4210              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
4211    #endif
4212      }      }
4213        
4214    #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
4215        return false;
4216    #endif
4217  }  }
4218    
4219    #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
4220    bool MainWindow::on_script_treeview_button_release(Gdk::EventButton& _button) {
4221        GdkEventButton* button = _button.gobj();
4222    #else
4223  void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {
4224    #endif
4225      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
4226    #if !USE_GTKMM_BUILDER
4227          Gtk::Menu* script_popup =          Gtk::Menu* script_popup =
4228              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));
4229    #endif
4230          // update enabled/disabled state of sample popup items          // update enabled/disabled state of sample popup items
4231          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
4232          Gtk::TreeModel::iterator it = sel->get_selected();          Gtk::TreeModel::iterator it = sel->get_selected();
# Line 2109  void MainWindow::on_script_treeview_butt Line 4237  void MainWindow::on_script_treeview_butt
4237              group_selected  = row[m_ScriptsModel.m_col_group];              group_selected  = row[m_ScriptsModel.m_col_group];
4238              script_selected = row[m_ScriptsModel.m_col_script];              script_selected = row[m_ScriptsModel.m_col_script];
4239          }          }
4240    #if USE_GTKMM_BUILDER
4241            m_actionAddScript->property_enabled() = (group_selected || script_selected);
4242            m_actionAddScriptGroup->property_enabled() = (file);
4243            m_actionEditScript->property_enabled() = (script_selected);
4244            m_actionRemoveScript->property_enabled() = (group_selected || script_selected);
4245    #else
4246          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->
4247              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
4248          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->
# Line 2117  void MainWindow::on_script_treeview_butt Line 4251  void MainWindow::on_script_treeview_butt
4251              set_sensitive(script_selected);                  set_sensitive(script_selected);    
4252          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->
4253              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
4254    #endif
4255          // show sample popup          // show sample popup
4256          script_popup->popup(button->button, button->time);          script_popup->popup(button->button, button->time);
4257    
4258    #if !USE_GTKMM_BUILDER
4259          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->
4260              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
4261          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->
# Line 2128  void MainWindow::on_script_treeview_butt Line 4264  void MainWindow::on_script_treeview_butt
4264              set_sensitive(script_selected);                  set_sensitive(script_selected);    
4265          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->
4266              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
4267    #endif
4268      }      }
4269    #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
4270        return false;
4271    #endif
4272  }  }
4273    
4274    void MainWindow::updateScriptListOfMenu() {
4275        // remove all entries from "Assign Script" menu
4276        {
4277            const std::vector<Gtk::Widget*> children = assign_scripts_menu->get_children();
4278            for (int i = 0; i < children.size(); ++i) {
4279                Gtk::Widget* child = children[i];
4280                assign_scripts_menu->remove(*child);
4281                delete child;
4282            }
4283        }
4284    
4285        int iTotalScripts = 0;
4286    
4287        if (!file) goto noScripts;
4288    
4289        // add all configured macros as menu items to the "Macro" menu
4290        for (int iGroup = 0; file->GetScriptGroup(iGroup); ++iGroup) {
4291            gig::ScriptGroup* pGroup = file->GetScriptGroup(iGroup);
4292            for (int iScript = 0; pGroup->GetScript(iScript); ++iScript, ++iTotalScripts) {
4293                gig::Script* pScript = pGroup->GetScript(iScript);
4294                std::string name = pScript->Name;
4295    
4296                Gtk::MenuItem* item = new Gtk::MenuItem(name);
4297                item->signal_activate().connect(
4298                    sigc::bind(
4299                        sigc::mem_fun(*this, &MainWindow::assignScript), pScript
4300                    )
4301                );
4302                assign_scripts_menu->append(*item);
4303                item->set_accel_path("<Scripts>/script_" + ToString(iTotalScripts));
4304                //item->set_tooltip_text(comment);
4305            }
4306        }
4307    
4308        noScripts:
4309    
4310        // if there are no macros configured at all, then show a dummy entry instead
4311        if (!iTotalScripts) {
4312            Gtk::MenuItem* item = new Gtk::MenuItem(_("No Scripts"));
4313            item->set_sensitive(false);
4314            assign_scripts_menu->append(*item);
4315        }
4316    
4317        // add separator line to menu
4318        assign_scripts_menu->append(*new Gtk::SeparatorMenuItem);
4319    
4320        {
4321            Gtk::MenuItem* item = new Gtk::MenuItem(_("Unassign All Scripts"));
4322            item->signal_activate().connect(
4323                sigc::mem_fun(*this, &MainWindow::dropAllScriptSlots)
4324            );
4325            assign_scripts_menu->append(*item);
4326            item->set_accel_path("<Scripts>/DropAllScriptSlots");
4327        }
4328    
4329    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4330        assign_scripts_menu->show_all_children();
4331    #endif
4332    }
4333    
4334    #if !USE_GTKMM_BUILDER
4335  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
4336      const Glib::ustring& name, int position) {      const Glib::ustring& name, int position) {
4337    
# Line 2154  Gtk::RadioMenuItem* MainWindow::add_inst Line 4355  Gtk::RadioMenuItem* MainWindow::add_inst
4355              item));              item));
4356      return item;      return item;
4357  }  }
4358    #endif
4359    
4360    #if !USE_GTKMM_BUILDER
4361  void MainWindow::remove_instrument_from_menu(int index) {  void MainWindow::remove_instrument_from_menu(int index) {
4362      const std::vector<Gtk::Widget*> children =      const std::vector<Gtk::Widget*> children =
4363          instrument_menu->get_children();          instrument_menu->get_children();
# Line 2162  void MainWindow::remove_instrument_from_ Line 4365  void MainWindow::remove_instrument_from_
4365      instrument_menu->remove(*child);      instrument_menu->remove(*child);
4366      delete child;      delete child;
4367  }  }
4368    #endif
4369    
4370  void MainWindow::add_instrument(gig::Instrument* instrument) {  void MainWindow::add_instrument(gig::Instrument* instrument) {
4371      const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));      const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
4372    
4373      // update instrument tree view      // update instrument tree view
4374      instrument_name_connection.block();      instrument_name_connection.block();
4375      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refInstrumentsTreeModel->append();
4376      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
4377      rowInstr[m_Columns.m_col_name] = name;      const int index = m_refInstrumentsTreeModel->children().size() - 1;
4378      rowInstr[m_Columns.m_col_instr] = instrument;      const int iScriptSlots = instrument->ScriptSlotCount();
4379        rowInstr[m_InstrumentsModel.m_col_nr] = index;
4380        rowInstr[m_InstrumentsModel.m_col_name] = name;
4381        rowInstr[m_InstrumentsModel.m_col_instr] = instrument;
4382        rowInstr[m_InstrumentsModel.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
4383        rowInstr[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
4384      instrument_name_connection.unblock();      instrument_name_connection.unblock();
4385    
4386    #if !USE_GTKMM_BUILDER
4387      add_instrument_to_menu(name);      add_instrument_to_menu(name);
4388    #endif
4389      m_TreeView.get_selection()->select(iterInstr);      select_instrument(instrument);
   
4390      file_changed();      file_changed();
4391  }  }
4392    
# Line 2197  void MainWindow::on_action_duplicate_ins Line 4406  void MainWindow::on_action_duplicate_ins
4406    
4407      // retrieve the currently selected instrument      // retrieve the currently selected instrument
4408      // (being the original instrument to be duplicated)      // (being the original instrument to be duplicated)
4409      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
4410      Gtk::TreeModel::iterator itSelection = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4411      if (!itSelection) return;      for (int r = 0; r < rows.size(); ++r) {
4412      Gtk::TreeModel::Row row = *itSelection;          Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[r]);
4413      gig::Instrument* instrOrig = row[m_Columns.m_col_instr];          if (it) {
4414      if (!instrOrig) return;              Gtk::TreeModel::Row row = *it;
4415                gig::Instrument* instrOrig = row[m_InstrumentsModel.m_col_instr];
4416      // duplicate the orginal instrument              if (instrOrig) {
4417      gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);                  // duplicate the orginal instrument
4418      instrNew->pInfo->Name =                  gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
4419          instrOrig->pInfo->Name +                  instrNew->pInfo->Name =
4420          gig_from_utf8(Glib::ustring(" (") + _("Copy") + ")");                      instrOrig->pInfo->Name +
4421                        gig_from_utf8(Glib::ustring(" (") + _("Copy") + ")");
4422    
4423      add_instrument(instrNew);                  add_instrument(instrNew);
4424                }
4425            }
4426        }
4427  }  }
4428    
4429  void MainWindow::on_action_remove_instrument() {  void MainWindow::on_action_remove_instrument() {
# Line 2226  void MainWindow::on_action_remove_instru Line 4439  void MainWindow::on_action_remove_instru
4439          return;          return;
4440      }      }
4441    
4442      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
4443      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4444      if (it) {      for (int r = rows.size() - 1; r >= 0; --r) {
4445            Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[r]);
4446            if (!it) continue;
4447          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
4448          gig::Instrument* instr = row[m_Columns.m_col_instr];          gig::Instrument* instr = row[m_InstrumentsModel.m_col_instr];
4449          try {          try {
4450              Gtk::TreePath path(it);              Gtk::TreePath path(it);
4451              int index = path[0];              int index = path[0];
# Line 2239  void MainWindow::on_action_remove_instru Line 4454  void MainWindow::on_action_remove_instru
4454              if (instr) file->DeleteInstrument(instr);              if (instr) file->DeleteInstrument(instr);
4455              file_changed();              file_changed();
4456    
4457    #if !USE_GTKMM_BUILDER
4458              remove_instrument_from_menu(index);              remove_instrument_from_menu(index);
4459    #endif
4460    
4461              // remove row from instruments tree view              // remove row from instruments tree view
4462              m_refTreeModel->erase(it);              m_refInstrumentsTreeModel->erase(it);
4463                // update "Nr" column of all instrument rows
4464                {
4465                    int index = 0;
4466                    for (Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->children().begin();
4467                         it != m_refInstrumentsTreeModel->children().end(); ++it, ++index)
4468                    {
4469                        Gtk::TreeModel::Row row = *it;
4470                        gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
4471                        row[m_InstrumentsModel.m_col_nr] = index;
4472                        row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
4473                    }
4474                }
4475    
4476  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
4477              // select another instrument (in gtk3 this is done              // select another instrument (in gtk3 this is done
4478              // automatically)              // automatically)
4479              if (!m_refTreeModel->children().empty()) {              if (!m_refInstrumentsTreeModel->children().empty()) {
4480                  if (index == m_refTreeModel->children().size()) {                  if (index == m_refInstrumentsTreeModel->children().size()) {
4481                      index--;                      index--;
4482                  }                  }
4483                  m_TreeView.get_selection()->select(                  m_TreeViewInstruments.get_selection()->select(
4484                      Gtk::TreePath(ToString(index)));                      Gtk::TreePath(ToString(index)));
4485              }              }
4486  #endif  #endif
# Line 2270  void MainWindow::on_action_remove_instru Line 4499  void MainWindow::on_action_remove_instru
4499  }  }
4500    
4501  void MainWindow::on_action_sample_properties() {  void MainWindow::on_action_sample_properties() {
4502      //TODO: show a dialog where the selected sample's properties can be edited      show_sample_props();
     Gtk::MessageDialog msg(  
         *this, _("Sorry, yet to be implemented!"), false, Gtk::MESSAGE_INFO  
     );  
     msg.run();  
4503  }  }
4504    
4505  void MainWindow::on_action_add_script_group() {  void MainWindow::on_action_add_script_group() {
# Line 2337  void MainWindow::on_action_edit_script() Line 4562  void MainWindow::on_action_edit_script()
4562      if (!it) return;      if (!it) return;
4563      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
4564      gig::Script* script = row[m_ScriptsModel.m_col_script];      gig::Script* script = row[m_ScriptsModel.m_col_script];
4565      if (!script) return;      editScript(script);
4566    }
4567    
4568    void MainWindow::editScript(gig::Script* script) {
4569        if (!script) return;
4570      ScriptEditor* editor = new ScriptEditor;      ScriptEditor* editor = new ScriptEditor;
4571        editor->signal_script_to_be_changed.connect(
4572            signal_script_to_be_changed.make_slot()
4573        );
4574        editor->signal_script_changed.connect([this](gig::Script* script) {
4575            // signal to sampler (which will reload the script due to this)
4576            signal_script_changed.emit(script);
4577            // force script 'patch' variables editor ("Script" tab) to be refreshed
4578            gig::Instrument* instr = get_instrument();
4579            dimreg_edit.scriptVars.setInstrument(instr, true/*force update*/);
4580        });
4581      editor->setScript(script);      editor->setScript(script);
4582      //editor->reparent(*this);      //editor->reparent(*this);
4583      editor->show();      editor->show();
# Line 2418  void MainWindow::add_or_replace_sample(b Line 4656  void MainWindow::add_or_replace_sample(b
4656    
4657      // get selected group (and probably selected sample)      // get selected group (and probably selected sample)
4658      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
4659      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4660        if (rows.empty()) return;
4661        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
4662      if (!it) return;      if (!it) return;
4663      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
4664      gig::Sample* sample = NULL;      gig::Sample* sample = NULL;
# Line 2436  void MainWindow::add_or_replace_sample(b Line 4676  void MainWindow::add_or_replace_sample(b
4676    
4677      // show 'browse for file' dialog      // show 'browse for file' dialog
4678      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));
4679    #if HAS_GTKMM_STOCK
4680        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4681        dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
4682    #else
4683      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4684      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
4685    #endif
4686      dialog.set_select_multiple(!replace); // allow multi audio file selection only when adding new samples, does not make sense when replacing a specific sample      dialog.set_select_multiple(!replace); // allow multi audio file selection only when adding new samples, does not make sense when replacing a specific sample
4687    
4688      // matches all file types supported by libsndfile      // matches all file types supported by libsndfile
# Line 2480  void MainWindow::add_or_replace_sample(b Line 4725  void MainWindow::add_or_replace_sample(b
4725          dialog.set_current_folder(current_sample_dir);          dialog.set_current_folder(current_sample_dir);
4726      }      }
4727      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
4728            dialog.hide();
4729          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
4730          Glib::ustring error_files;          Glib::ustring error_files;
4731          std::vector<std::string> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
4732          for (std::vector<std::string>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
4733               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
4734              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
4735              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file information
4736              SF_INFO info;              SF_INFO info;
4737              info.format = 0;              info.format = 0;
4738              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
# Line 2567  void MainWindow::add_or_replace_sample(b Line 4813  void MainWindow::add_or_replace_sample(b
4813                  SampleImportItem sched_item;                  SampleImportItem sched_item;
4814                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
4815                  sched_item.sample_path = *iter;                  sched_item.sample_path = *iter;
4816                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue[sample] = sched_item;
4817                  // add sample to the tree view                  // add sample to the tree view
4818                  if (replace) {                  if (replace) {
4819                      row[m_SamplesModel.m_col_name] = gig_to_utf8(sample->pInfo->Name);                      row[m_SamplesModel.m_col_name] = gig_to_utf8(sample->pInfo->Name);
# Line 2627  void MainWindow::on_action_replace_all_s Line 4873  void MainWindow::on_action_replace_all_s
4873      Gtk::Label description(str);      Gtk::Label description(str);
4874      description.set_line_wrap();      description.set_line_wrap();
4875  #endif  #endif
4876      Gtk::HBox entryArea;      HBox entryArea;
4877      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
4878      Gtk::Entry postfixEntryBox;      Gtk::Entry postfixEntryBox;
4879      postfixEntryBox.set_text(".wav");      postfixEntryBox.set_text(".wav");
4880      entryArea.pack_start(entryLabel);      entryArea.pack_start(entryLabel);
4881      entryArea.pack_start(postfixEntryBox);      entryArea.pack_start(postfixEntryBox);
4882    #if USE_GTKMM_BOX
4883        dialog.get_content_area()->pack_start(description, Gtk::PACK_SHRINK);
4884        dialog.get_content_area()->pack_start(entryArea, Gtk::PACK_SHRINK);
4885    #else
4886      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);
4887      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
4888    #endif
4889      description.show();      description.show();
4890    
4891    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4892      entryArea.show_all();      entryArea.show_all();
4893    #else
4894        entryArea.show();
4895    #endif
4896    
4897    #if HAS_GTKMM_STOCK
4898        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4899    #else
4900      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4901    #endif
4902      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
4903      dialog.set_select_multiple(false);      dialog.set_select_multiple(false);
4904      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 2645  void MainWindow::on_action_replace_all_s Line 4906  void MainWindow::on_action_replace_all_s
4906      }      }
4907      if (dialog.run() == Gtk::RESPONSE_OK)      if (dialog.run() == Gtk::RESPONSE_OK)
4908      {      {
4909            dialog.hide();
4910          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
4911          Glib::ustring error_files;          Glib::ustring error_files;
4912          std::string folder = dialog.get_filename();          std::string folder = dialog.get_filename();
# Line 2677  void MainWindow::on_action_replace_all_s Line 4939  void MainWindow::on_action_replace_all_s
4939                  SampleImportItem sched_item;                  SampleImportItem sched_item;
4940                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
4941                  sched_item.sample_path = filename;                  sched_item.sample_path = filename;
4942                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue[sample] = sched_item;
4943                  sf_close(hFile);                  sf_close(hFile);
4944                  file_changed();                  file_changed();
4945              }              }
# Line 2701  void MainWindow::on_action_replace_all_s Line 4963  void MainWindow::on_action_replace_all_s
4963  void MainWindow::on_action_remove_sample() {  void MainWindow::on_action_remove_sample() {
4964      if (!file) return;      if (!file) return;
4965      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
4966      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4967      if (it) {      for (int r = rows.size() - 1; r >= 0; --r) {
4968            Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
4969            if (!it) continue;
4970          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
4971          gig::Group* group   = row[m_SamplesModel.m_col_group];          gig::Group* group   = row[m_SamplesModel.m_col_group];
4972          gig::Sample* sample = row[m_SamplesModel.m_col_sample];          gig::Sample* sample = row[m_SamplesModel.m_col_sample];
# Line 2727  void MainWindow::on_action_remove_sample Line 4991  void MainWindow::on_action_remove_sample
4991                  // if sample(s) were just previously added, remove                  // if sample(s) were just previously added, remove
4992                  // them from the import queue                  // them from the import queue
4993                  for (std::list<gig::Sample*>::iterator member = members.begin();                  for (std::list<gig::Sample*>::iterator member = members.begin();
4994                       member != members.end(); ++member) {                       member != members.end(); ++member)
4995                      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();                  {
4996                           iter != m_SampleImportQueue.end(); ++iter) {                      if (m_SampleImportQueue.count(*member)) {
4997                          if ((*iter).gig_sample == *member) {                          printf("Removing previously added sample '%s' from group '%s'\n",
4998                              printf("Removing previously added sample '%s' from group '%s'\n",                                 m_SampleImportQueue[sample].sample_path.c_str(), name.c_str());
4999                                     (*iter).sample_path.c_str(), name.c_str());                          m_SampleImportQueue.erase(*member);
                             m_SampleImportQueue.erase(iter);  
                             break;  
                         }  
5000                      }                      }
5001                  }                  }
5002                  file_changed();                  file_changed();
# Line 2750  void MainWindow::on_action_remove_sample Line 5011  void MainWindow::on_action_remove_sample
5011                  samples_removed_signal.emit();                  samples_removed_signal.emit();
5012                  // if sample was just previously added, remove it from                  // if sample was just previously added, remove it from
5013                  // the import queue                  // the import queue
5014                  for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();                  if (m_SampleImportQueue.count(sample)) {
5015                       iter != m_SampleImportQueue.end(); ++iter) {                      printf("Removing previously added sample '%s'\n",
5016                      if ((*iter).gig_sample == sample) {                             m_SampleImportQueue[sample].sample_path.c_str());
5017                          printf("Removing previously added sample '%s'\n",                      m_SampleImportQueue.erase(sample);
                                (*iter).sample_path.c_str());  
                         m_SampleImportQueue.erase(iter);  
                         break;  
                     }  
5018                  }                  }
5019                  dimreg_changed();                  dimreg_changed();
5020                  file_changed();                  file_changed();
# Line 2813  void MainWindow::on_action_remove_unused Line 5070  void MainWindow::on_action_remove_unused
5070              gig::Sample* sample = *itSample;              gig::Sample* sample = *itSample;
5071              // remove sample from the .gig file              // remove sample from the .gig file
5072              file->DeleteSample(sample);              file->DeleteSample(sample);
5073              // if sample was just previously added, remove it fro the import queue              // if sample was just previously added, remove it from the import queue
5074              for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();              if (m_SampleImportQueue.count(sample)) {
5075                   iter != m_SampleImportQueue.end(); ++iter)                  printf("Removing previously added sample '%s'\n",
5076              {                         m_SampleImportQueue[sample].sample_path.c_str());
5077                  if ((*iter).gig_sample == sample) {                  m_SampleImportQueue.erase(sample);
                     printf("Removing previously added sample '%s'\n",  
                            (*iter).sample_path.c_str());  
                     m_SampleImportQueue.erase(iter);  
                     break;  
                 }  
5078              }              }
5079          }          }
5080      } catch (RIFF::Exception e) {      } catch (RIFF::Exception e) {
# Line 2880  void MainWindow::on_instruments_treeview Line 5132  void MainWindow::on_instruments_treeview
5132      // get selected source instrument      // get selected source instrument
5133      gig::Instrument* src = NULL;      gig::Instrument* src = NULL;
5134      {      {
5135          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
5136          Gtk::TreeModel::iterator it = sel->get_selected();          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5137          if (it) {          if (!rows.empty()) {
5138              Gtk::TreeModel::Row row = *it;              Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[0]);
5139              src = row[m_Columns.m_col_instr];              if (it) {
5140                    Gtk::TreeModel::Row row = *it;
5141                    src = row[m_InstrumentsModel.m_col_instr];
5142                }
5143          }          }
5144      }      }
5145      if (!src) return;      if (!src) return;
# Line 2905  void MainWindow::on_instruments_treeview Line 5160  void MainWindow::on_instruments_treeview
5160      gig::Instrument* dst = NULL;      gig::Instrument* dst = NULL;
5161      {      {
5162          Gtk::TreeModel::Path path;          Gtk::TreeModel::Path path;
5163          const bool found = m_TreeView.get_path_at_pos(x, y, path);          const bool found = m_TreeViewInstruments.get_path_at_pos(x, y, path);
5164          if (!found) return;          if (!found) return;
5165    
5166          Gtk::TreeModel::iterator iter = m_refTreeModel->get_iter(path);          Gtk::TreeModel::iterator iter = m_refInstrumentsTreeModel->get_iter(path);
5167          if (!iter) return;          if (!iter) return;
5168          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
5169          dst = row[m_Columns.m_col_instr];          dst = row[m_InstrumentsModel.m_col_instr];
5170      }      }
5171      if (!dst) return;      if (!dst) return;
5172    
# Line 2939  void MainWindow::on_sample_treeview_drag Line 5194  void MainWindow::on_sample_treeview_drag
5194      // get selected sample      // get selected sample
5195      gig::Sample* sample = NULL;      gig::Sample* sample = NULL;
5196      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
5197      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5198      if (it) {      if (!rows.empty()) {
5199          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
5200          sample = row[m_SamplesModel.m_col_sample];          if (it) {
5201                Gtk::TreeModel::Row row = *it;
5202                sample = row[m_SamplesModel.m_col_sample];
5203            }
5204      }      }
5205      // pass the gig::Sample as pointer      // pass the gig::Sample as pointer
5206      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 3047  void MainWindow::sample_name_changed(con Line 5305  void MainWindow::sample_name_changed(con
5305              file_changed();              file_changed();
5306          }          }
5307      }      }
5308        // change name in the sample properties window
5309        if (sampleProps.get_sample() == sample && sample) {
5310            sampleProps.set_sample(sample);
5311        }
5312  }  }
5313    
5314  void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,
# Line 3079  void MainWindow::script_double_clicked(c Line 5341  void MainWindow::script_double_clicked(c
5341      if (!iter) return;      if (!iter) return;
5342      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
5343      gig::Script* script = row[m_ScriptsModel.m_col_script];      gig::Script* script = row[m_ScriptsModel.m_col_script];
5344      if (!script) return;      editScript(script);
   
     ScriptEditor* editor = new ScriptEditor;  
     editor->setScript(script);  
     //editor->reparent(*this);  
     editor->show();  
5345  }  }
5346    
5347  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,
5348                                           const Gtk::TreeModel::iterator& iter) {                                           const Gtk::TreeModel::iterator& iter) {
5349      if (!iter) return;      if (!iter) return;
5350      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
5351      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_InstrumentsModel.m_col_name];
5352    
5353    #if !USE_GTKMM_BUILDER
5354      // change name in instrument menu      // change name in instrument menu
5355      int index = path[0];      int index = path[0];
5356      const std::vector<Gtk::Widget*> children = instrument_menu->get_children();      const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
# Line 3105  void MainWindow::instrument_name_changed Line 5363  void MainWindow::instrument_name_changed
5363          item->set_active();          item->set_active();
5364  #endif  #endif
5365      }      }
5366    #endif
5367    
5368      // change name in gig      // change name in gig
5369      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
5370      gig::String gigname(gig_from_utf8(name));      gig::String gigname(gig_from_utf8(name));
5371      if (instrument && instrument->pInfo->Name != gigname) {      if (instrument && instrument->pInfo->Name != gigname) {
5372          instrument->pInfo->Name = gigname;          instrument->pInfo->Name = gigname;
# Line 3121  void MainWindow::instrument_name_changed Line 5380  void MainWindow::instrument_name_changed
5380      }      }
5381  }  }
5382    
5383    bool MainWindow::instrument_row_visible(const Gtk::TreeModel::const_iterator& iter) {
5384        if (!iter)
5385            return true;
5386    
5387        Glib::ustring pattern = m_searchText.get_text().lowercase();
5388        trim(pattern);
5389        if (pattern.empty()) return true;
5390    
5391    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
5392        //HACK: on GTKMM4 development branch const_iterator cannot be easily converted to iterator, probably going to be fixed before final GTKMM4 release though.
5393        Gtk::TreeModel::Row row = **(Gtk::TreeModel::iterator*)(&iter);
5394    #else
5395        Gtk::TreeModel::Row row = *iter;
5396    #endif
5397        Glib::ustring name = row[m_InstrumentsModel.m_col_name];
5398        name = name.lowercase();
5399    
5400        std::vector<Glib::ustring> tokens = Glib::Regex::split_simple(" ", pattern);
5401        for (int t = 0; t < tokens.size(); ++t)
5402            if (name.find(tokens[t]) == Glib::ustring::npos)
5403                return false;
5404    
5405        return true;
5406    }
5407    
5408  void MainWindow::on_action_combine_instruments() {  void MainWindow::on_action_combine_instruments() {
5409      CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);      CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);
5410    
5411        // take over selection from instruments list view for the combine dialog's
5412        // list view as pre-selection
5413        std::set<int> indeces;
5414        {
5415            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
5416            std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5417            for (int r = 0; r < rows.size(); ++r) {
5418                Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[r]);
5419                if (it) {
5420                    Gtk::TreeModel::Row row = *it;
5421                    int index = row[m_InstrumentsModel.m_col_nr];
5422                    indeces.insert(index);
5423                }
5424            }
5425        }
5426        d->setSelectedInstruments(indeces);
5427    
5428    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5429      d->show_all();      d->show_all();
5430      d->resize(500, 400);  #else
5431        d->show();
5432    #endif
5433      d->run();      d->run();
5434      if (d->fileWasChanged()) {      if (d->fileWasChanged()) {
5435          // update GUI with new instrument just created          // update GUI with new instrument just created
# Line 3135  void MainWindow::on_action_combine_instr Line 5440  void MainWindow::on_action_combine_instr
5440    
5441  void MainWindow::on_action_view_references() {  void MainWindow::on_action_view_references() {
5442      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
5443      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5444        if (rows.empty()) return;
5445        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
5446      if (!it) return;      if (!it) return;
5447      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
5448      gig::Sample* sample = row[m_SamplesModel.m_col_sample];      gig::Sample* sample = row[m_SamplesModel.m_col_sample];
# Line 3146  void MainWindow::on_action_view_referenc Line 5453  void MainWindow::on_action_view_referenc
5453      d->dimension_region_selected.connect(      d->dimension_region_selected.connect(
5454          sigc::mem_fun(*this, &MainWindow::select_dimension_region)          sigc::mem_fun(*this, &MainWindow::select_dimension_region)
5455      );      );
5456    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5457      d->show_all();      d->show_all();
5458    #else
5459        d->show();
5460    #endif
5461      d->resize(500, 400);      d->resize(500, 400);
5462      d->run();      d->run();
5463      delete d;      delete d;
# Line 3230  void MainWindow::mergeFiles(const std::v Line 5541  void MainWindow::mergeFiles(const std::v
5541              Glib::filename_display_basename(this->filename) + "' ...",              Glib::filename_display_basename(this->filename) + "' ...",
5542              *this              *this
5543          );          );
5544    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5545          progress_dialog->show_all();          progress_dialog->show_all();
5546    #else
5547            progress_dialog->show();
5548    #endif
5549          saver = new Saver(this->file); //FIXME: memory leak!          saver = new Saver(this->file); //FIXME: memory leak!
5550          saver->signal_progress().connect(          saver->signal_progress().connect(
5551              sigc::mem_fun(*this, &MainWindow::on_saver_progress));              sigc::mem_fun(*this, &MainWindow::on_saver_progress));
# Line 3257  void MainWindow::on_action_merge_files() Line 5572  void MainWindow::on_action_merge_files()
5572      }      }
5573    
5574      Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));      Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
5575    #if HAS_GTKMM_STOCK
5576        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
5577    #else
5578      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
5579    #endif
5580      dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);      dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
5581      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
5582  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
# Line 3274  void MainWindow::on_action_merge_files() Line 5593  void MainWindow::on_action_merge_files()
5593      dialog.set_select_multiple(true);      dialog.set_select_multiple(true);
5594    
5595      // show warning in the file picker dialog      // show warning in the file picker dialog
5596      Gtk::HBox descriptionArea;      HBox descriptionArea;
5597      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
5598      Gtk::Image warningIcon;      Gtk::Image warningIcon;
5599      warningIcon.set_from_icon_name("dialog-warning",      warningIcon.set_from_icon_name("dialog-warning",
# Line 3297  void MainWindow::on_action_merge_files() Line 5616  void MainWindow::on_action_merge_files()
5616          "will accordingly be stored separately in the target .gig file!"          "will accordingly be stored separately in the target .gig file!"
5617      ));      ));
5618      descriptionArea.pack_start(description);      descriptionArea.pack_start(description);
5619    #if USE_GTKMM_BOX
5620    # warning No description area implemented for dialog on GTKMM 3
5621    #else
5622      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
5623    #endif
5624    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5625      descriptionArea.show_all();      descriptionArea.show_all();
5626    #else
5627        descriptionArea.show();
5628    #endif
5629    
5630      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
5631            dialog.hide();
5632    #ifdef GLIB_THREADS
5633          printf("on_action_merge_files self=%p\n",          printf("on_action_merge_files self=%p\n",
5634                 static_cast<void*>(Glib::Threads::Thread::self()));                 static_cast<void*>(Glib::Threads::Thread::self()));
5635    #else
5636            std::cout << "on_action_merge_files self=" <<
5637                std::this_thread::get_id() << "\n";
5638    #endif
5639          std::vector<std::string> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
5640    
5641          // merge the selected files to the currently open .gig file          // merge the selected files to the currently open .gig file
# Line 3334  void MainWindow::set_file_is_shared(bool Line 5667  void MainWindow::set_file_is_shared(bool
5667      }      }
5668    
5669      {      {
5670    #if USE_GTKMM_BUILDER
5671            m_actionToggleSyncSamplerSelection->property_enabled() = b;
5672    #else
5673          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
5674              uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));              uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
5675          if (item) item->set_sensitive(b);          if (item) item->set_sensitive(b);
5676    #endif
5677      }      }
5678  }  }
5679    
# Line 3384  void MainWindow::show_scripts_tab() { Line 5721  void MainWindow::show_scripts_tab() {
5721      m_TreeViewNotebook.set_current_page(2);      m_TreeViewNotebook.set_current_page(2);
5722  }  }
5723    
5724    void MainWindow::select_instrument_by_dir(int dir) {
5725        if (!file) return;
5726        gig::Instrument* pInstrument = get_instrument();
5727        if (!pInstrument) {
5728            select_instrument( file->GetInstrument(0) );
5729            return;
5730        }
5731        for (int i = 0; file->GetInstrument(i); ++i) {
5732            if (file->GetInstrument(i) == pInstrument) {
5733                select_instrument( file->GetInstrument(i + dir) );
5734                return;
5735            }
5736        }
5737    }
5738    
5739    void MainWindow::select_prev_instrument() {
5740        select_instrument_by_dir(-1);
5741    }
5742    
5743    void MainWindow::select_next_instrument() {
5744        select_instrument_by_dir(1);
5745    }
5746    
5747    void MainWindow::select_prev_region() {
5748        m_RegionChooser.select_prev_region();
5749    }
5750    
5751    void MainWindow::select_next_region() {
5752        m_RegionChooser.select_next_region();
5753    }
5754    
5755    void MainWindow::select_next_dim_rgn_zone() {
5756        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5757        m_DimRegionChooser.select_next_dimzone();
5758    }
5759    
5760    void MainWindow::select_prev_dim_rgn_zone() {
5761        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5762        m_DimRegionChooser.select_prev_dimzone();
5763    }
5764    
5765    void MainWindow::select_add_next_dim_rgn_zone() {
5766        m_DimRegionChooser.select_next_dimzone(true);
5767    }
5768    
5769    void MainWindow::select_add_prev_dim_rgn_zone() {
5770        m_DimRegionChooser.select_prev_dimzone(true);
5771    }
5772    
5773    void MainWindow::select_prev_dimension() {
5774        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5775        m_DimRegionChooser.select_prev_dimension();
5776    }
5777    
5778    void MainWindow::select_next_dimension() {
5779        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5780        m_DimRegionChooser.select_next_dimension();
5781    }
5782    
5783    #define CLIPBOARD_DIMENSIONREGION_TARGET \
5784        ("libgig.DimensionRegion." + m_serializationArchive.rawDataFormat())
5785    
5786    void MainWindow::copy_selected_dimrgn() {
5787        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
5788        if (!pDimRgn) {
5789            updateClipboardPasteAvailable();
5790            updateClipboardCopyAvailable();
5791            return;
5792        }
5793    
5794        std::vector<Gtk::TargetEntry> targets;
5795        targets.push_back( Gtk::TargetEntry(CLIPBOARD_DIMENSIONREGION_TARGET) );
5796    
5797        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5798        clipboard->set(
5799            targets,
5800            sigc::mem_fun(*this, &MainWindow::on_clipboard_get),
5801            sigc::mem_fun(*this, &MainWindow::on_clipboard_clear)
5802        );
5803    
5804        m_serializationArchive.serialize(pDimRgn);
5805    
5806        updateClipboardPasteAvailable();
5807    }
5808    
5809    void MainWindow::paste_copied_dimrgn() {
5810        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5811        clipboard->request_contents(
5812            CLIPBOARD_DIMENSIONREGION_TARGET,
5813            sigc::mem_fun(*this, &MainWindow::on_clipboard_received)
5814        );
5815        updateClipboardPasteAvailable();
5816    }
5817    
5818    void MainWindow::adjust_clipboard_content() {
5819        MacroEditor* editor = new MacroEditor();
5820        editor->setMacro(&m_serializationArchive, true);
5821        editor->show();
5822    }
5823    
5824    void MainWindow::updateClipboardPasteAvailable() {
5825        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5826        clipboard->request_targets(
5827            sigc::mem_fun(*this, &MainWindow::on_clipboard_received_targets)
5828        );
5829    }
5830    
5831    void MainWindow::updateClipboardCopyAvailable() {
5832        bool bDimensionRegionCopyIsPossible = m_DimRegionChooser.get_main_dimregion();
5833    #if USE_GTKMM_BUILDER
5834        m_actionCopyDimRgn->property_enabled() = bDimensionRegionCopyIsPossible;
5835    #else
5836        static_cast<Gtk::MenuItem*>(
5837            uiManager->get_widget("/MenuBar/MenuEdit/CopyDimRgn")
5838        )->set_sensitive(bDimensionRegionCopyIsPossible);
5839    #endif
5840    }
5841    
5842    #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
5843    void MainWindow::on_clipboard_owner_change(Gdk::EventOwnerChange& event) {
5844    #else
5845    void MainWindow::on_clipboard_owner_change(GdkEventOwnerChange* event) {
5846    #endif
5847        updateClipboardPasteAvailable();
5848    }
5849    
5850    void MainWindow::on_clipboard_get(Gtk::SelectionData& selection_data, guint /*info*/) {
5851        const std::string target = selection_data.get_target();
5852        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
5853            selection_data.set(
5854                CLIPBOARD_DIMENSIONREGION_TARGET, 8 /* "format": probably unused*/,
5855                &m_serializationArchive.rawData()[0],
5856                m_serializationArchive.rawData().size()
5857            );
5858        } else {
5859            std::cerr << "Clipboard: content for unknown target '" << target << "' requested\n";
5860        }
5861    }
5862    
5863    void MainWindow::on_clipboard_clear() {
5864        m_serializationArchive.clear();
5865        updateClipboardPasteAvailable();
5866        updateClipboardCopyAvailable();
5867    }
5868    
5869    //NOTE: Might throw exception !!!
5870    void MainWindow::applyMacro(Serialization::Archive& macro) {
5871        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
5872        if (!pDimRgn) return;
5873    
5874        for (std::set<gig::DimensionRegion*>::iterator itDimReg = dimreg_edit.dimregs.begin();
5875             itDimReg != dimreg_edit.dimregs.end(); ++itDimReg)
5876        {
5877            gig::DimensionRegion* pDimRgn = *itDimReg;
5878            DimRegionChangeGuard(this, pDimRgn);
5879            macro.deserialize(pDimRgn);
5880        }
5881        //region_changed()
5882        file_changed();
5883        dimreg_changed();
5884    }
5885    
5886    void MainWindow::on_clipboard_received(const Gtk::SelectionData& selection_data) {
5887        const std::string target = selection_data.get_target();
5888        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
5889            Glib::ustring errorText;
5890            try {
5891                m_serializationArchive.decode(
5892                    selection_data.get_data(), selection_data.get_length()
5893                );
5894                applyMacro(m_serializationArchive);
5895            } catch (Serialization::Exception e) {
5896                errorText = e.Message;
5897            } catch (...) {
5898                errorText = _("Unknown exception while pasting DimensionRegion");
5899            }
5900            if (!errorText.empty()) {
5901                Glib::ustring txt = _("Pasting DimensionRegion failed:\n") + errorText;
5902                Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
5903                msg.run();
5904            }
5905        }
5906    }
5907    
5908    void MainWindow::on_clipboard_received_targets(const std::vector<Glib::ustring>& targets) {
5909        const bool bDimensionRegionPasteIsPossible =
5910            std::find(targets.begin(), targets.end(),
5911                      CLIPBOARD_DIMENSIONREGION_TARGET) != targets.end();
5912    
5913    #if USE_GTKMM_BUILDER
5914        m_actionPasteDimRgn->property_enabled() = bDimensionRegionPasteIsPossible;
5915        m_actionAdjustClipboard->property_enabled() = bDimensionRegionPasteIsPossible;
5916    #else
5917        static_cast<Gtk::MenuItem*>(
5918            uiManager->get_widget("/MenuBar/MenuEdit/PasteDimRgn")
5919        )->set_sensitive(bDimensionRegionPasteIsPossible);
5920    
5921        static_cast<Gtk::MenuItem*>(
5922            uiManager->get_widget("/MenuBar/MenuEdit/AdjustClipboard")
5923        )->set_sensitive(bDimensionRegionPasteIsPossible);
5924    #endif
5925    }
5926    
5927  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {
5928      return file_structure_to_be_changed_signal;      return file_structure_to_be_changed_signal;
5929  }  }

Legend:
Removed from v.2845  
changed lines
  Added in v.3806

  ViewVC Help
Powered by ViewVC