/[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 3162 by schoenebeck, Tue May 9 14:35:23 2017 UTC revision 3712 by schoenebeck, Fri Jan 10 15:22:34 2020 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2017 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  #include <gtkmm/stock.h>  #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>  #include <gtkmm/accelmap.h>
42  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
43  #include "wrapLabel.hh"  #include "wrapLabel.hh"
# Line 48  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 62  Line 65 
65  #include "gfx/builtinpix.h"  #include "gfx/builtinpix.h"
66  #include "MacroEditor.h"  #include "MacroEditor.h"
67  #include "MacrosSetup.h"  #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),
# Line 77  MainWindow::MainWindow() : Line 90  MainWindow::MainWindow() :
90  {  {
91      loadBuiltInPix();      loadBuiltInPix();
92    
93        this->file = NULL;
94    
95  //    set_border_width(5);  //    set_border_width(5);
96  //    set_default_size(400, 200);  
97        if (!Settings::singleton()->autoRestoreWindowDimension) {
98    #if GTKMM_MAJOR_VERSION >= 3
99            set_default_size(960, 600);
100    #else
101            set_default_size(865, 600);
102    #endif
103            set_position(Gtk::WIN_POS_CENTER);
104        }
105    
106      add(m_VBox);      add(m_VBox);
107    
# Line 88  MainWindow::MainWindow() : Line 111  MainWindow::MainWindow() :
111    
112      // m_TreeView.set_reorderable();      // m_TreeView.set_reorderable();
113    
114    #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_TreeView.signal_button_press_event().connect(
116            sigc::mem_fun(*this, &MainWindow::on_button_release));
117    #else
118      m_TreeView.signal_button_press_event().connect_notify(      m_TreeView.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_TreeView);
# Line 102  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 117  MainWindow::MainWindow() : Line 155  MainWindow::MainWindow() :
155          legend_hbox.add(labelLegend);          legend_hbox.add(labelLegend);
156    
157          imageNoSample.set(redDot);          imageNoSample.set(redDot);
158    #if HAS_GTKMM_ALIGNMENT
159          imageNoSample.set_alignment(Gtk::ALIGN_END);          imageNoSample.set_alignment(Gtk::ALIGN_END);
160          labelNoSample.set_alignment(Gtk::ALIGN_START);          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);          legend_hbox.add(imageNoSample);
166          legend_hbox.add(labelNoSample);          legend_hbox.add(labelNoSample);
167    
168          imageMissingSample.set(yellowDot);          imageMissingSample.set(yellowDot);
169    #if HAS_GTKMM_ALIGNMENT
170          imageMissingSample.set_alignment(Gtk::ALIGN_END);          imageMissingSample.set_alignment(Gtk::ALIGN_END);
171          labelMissingSample.set_alignment(Gtk::ALIGN_START);          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);          legend_hbox.add(imageMissingSample);
177          legend_hbox.add(labelMissingSample);          legend_hbox.add(labelMissingSample);
178    
179          imageLooped.set(blackLoop);          imageLooped.set(blackLoop);
180    #if HAS_GTKMM_ALIGNMENT
181          imageLooped.set_alignment(Gtk::ALIGN_END);          imageLooped.set_alignment(Gtk::ALIGN_END);
182          labelLooped.set_alignment(Gtk::ALIGN_START);          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);          legend_hbox.add(imageLooped);
188          legend_hbox.add(labelLooped);          legend_hbox.add(labelLooped);
189    
190          imageSomeLoops.set(grayLoop);          imageSomeLoops.set(grayLoop);
191    #if HAS_GTKMM_ALIGNMENT
192          imageSomeLoops.set_alignment(Gtk::ALIGN_END);          imageSomeLoops.set_alignment(Gtk::ALIGN_END);
193          labelSomeLoops.set_alignment(Gtk::ALIGN_START);          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);          legend_hbox.add(imageSomeLoops);
199          legend_hbox.add(labelSomeLoops);          legend_hbox.add(labelSomeLoops);
200    
201    #if HAS_GTKMM_SHOW_ALL_CHILDREN
202          legend_hbox.show_all_children();          legend_hbox.show_all_children();
203    #endif
204      }      }
205      dimreg_vbox.pack_start(legend_hbox, Gtk::PACK_SHRINK);      dimreg_vbox.pack_start(legend_hbox, Gtk::PACK_SHRINK);
206      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
# Line 154  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")));
# Line 207  MainWindow::MainWindow() : Line 306  MainWindow::MainWindow() :
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 =      const Gdk::ModifierType primaryModifierKey =
315  #if defined(__APPLE__)  #if defined(__APPLE__)
# Line 217  MainWindow::MainWindow() : Line 318  MainWindow::MainWindow() :
318      Gdk::CONTROL_MASK; // Ctrl key on all other OSs      Gdk::CONTROL_MASK; // Ctrl key on all other OSs
319  #endif  #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",      actionGroup->add(Gtk::Action::create("CopyDimRgn",
363                                           _("Copy selected dimension region")),                                           _("Copy selected dimension region")),
364                       Gtk::AccelKey(GDK_KEY_c, Gdk::MOD1_MASK),                       Gtk::AccelKey(GDK_KEY_c, Gdk::MOD1_MASK),
# Line 232  MainWindow::MainWindow() : Line 374  MainWindow::MainWindow() :
374                       Gtk::AccelKey(GDK_KEY_x, Gdk::MOD1_MASK),                       Gtk::AccelKey(GDK_KEY_x, Gdk::MOD1_MASK),
375                       sigc::mem_fun(*this, &MainWindow::adjust_clipboard_content));                       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",      actionGroup->add(Gtk::Action::create("SelectPrevRegion",
388                                           _("Select Previous Region")),                                           _("Select Previous Region")),
389                       Gtk::AccelKey(GDK_KEY_Left, primaryModifierKey),                       Gtk::AccelKey(GDK_KEY_Left, primaryModifierKey),
# Line 271  MainWindow::MainWindow() : Line 423  MainWindow::MainWindow() :
423                                           _("Add Next Dimension Region Zone to Selection")),                                           _("Add Next Dimension Region Zone to Selection")),
424                       Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),                       Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
425                       sigc::mem_fun(*this, &MainWindow::select_add_next_dim_rgn_zone));                       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 286  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")));      actionGroup->add(Gtk::Action::create("MenuMacro", _("_Macro")));
469    
470    
# Line 307  MainWindow::MainWindow() : Line 484  MainWindow::MainWindow() :
484                           *this, &MainWindow::on_auto_restore_win_dim));                           *this, &MainWindow::on_auto_restore_win_dim));
485    
486      toggle_action =      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"));          Gtk::ToggleAction::create("SaveWithTemporaryFile", _("Save with _temporary file"));
503      toggle_action->set_active(Settings::singleton()->saveWithTemporaryFile);      toggle_action->set_active(Settings::singleton()->saveWithTemporaryFile);
504      actionGroup->add(toggle_action,      actionGroup->add(toggle_action,
# Line 317  MainWindow::MainWindow() : Line 509  MainWindow::MainWindow() :
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    #if USE_GLIB_ACTION
515        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);      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
535      actionGroup->add(Gtk::Action::create("MenuHelp",      actionGroup->add(Gtk::Action::create("MenuHelp",
536                                           action->property_label()));                                           action->property_label()));
# Line 333  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("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),          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 363  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 376  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", Gtk::Stock::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)
# Line 413  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 431  MainWindow::MainWindow() : Line 717  MainWindow::MainWindow() :
717          Gtk::Action::create("RemoveScript", Gtk::Stock::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 455  MainWindow::MainWindow() : Line 1141  MainWindow::MainWindow() :
1141          "      <menuitem action='AdjustClipboard'/>"          "      <menuitem action='AdjustClipboard'/>"
1142          "      <menuitem action='PasteDimRgn'/>"          "      <menuitem action='PasteDimRgn'/>"
1143          "      <separator/>"          "      <separator/>"
1144            "      <menuitem action='SelectPrevInstr'/>"
1145            "      <menuitem action='SelectNextInstr'/>"
1146            "      <separator/>"
1147          "      <menuitem action='SelectPrevRegion'/>"          "      <menuitem action='SelectPrevRegion'/>"
1148          "      <menuitem action='SelectNextRegion'/>"          "      <menuitem action='SelectNextRegion'/>"
1149          "      <separator/>"          "      <separator/>"
# Line 489  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 503  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'/>"          "      <menuitem action='AutoRestoreWinDim'/>"
1200            "      <menuitem action='OpenInstrPropsByDoubleClick'/>"
1201          "      <separator/>"          "      <separator/>"
1202          "      <menuitem action='RefreshAll'/>"          "      <menuitem action='RefreshAll'/>"
1203          "    </menu>"          "    </menu>"
# Line 527  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 550  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 570  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 585  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 608  MainWindow::MainWindow() : Line 1322  MainWindow::MainWindow() :
1322      }      }
1323      {      {
1324          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          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 616  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 632  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 644  MainWindow::MainWindow() : Line 1384  MainWindow::MainWindow() :
1384    
1385      // Create the Tree model:      // Create the Tree model:
1386      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refTreeModel = Gtk::ListStore::create(m_Columns);
1387      m_TreeView.set_model(m_refTreeModel);      m_refTreeModelFilter = Gtk::TreeModelFilter::create(m_refTreeModel);
1388        m_refTreeModelFilter->set_visible_func(
1389            sigc::mem_fun(*this, &MainWindow::instrument_row_visible)
1390        );
1391        m_TreeView.set_model(m_refTreeModelFilter);
1392    
1393      m_TreeView.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);      m_TreeView.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
1394      m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules. Drag & drop to change the order of instruments."));      m_TreeView.set_has_tooltip(true);
1395        m_TreeView.signal_query_tooltip().connect(
1396            sigc::mem_fun(*this, &MainWindow::onQueryTreeViewTooltip)
1397        );
1398      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(
1399          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
1400      );      );
# Line 654  MainWindow::MainWindow() : Line 1402  MainWindow::MainWindow() :
1402      // Add the TreeView's view columns:      // Add the TreeView's view columns:
1403      m_TreeView.append_column(_("Nr"), m_Columns.m_col_nr);      m_TreeView.append_column(_("Nr"), m_Columns.m_col_nr);
1404      m_TreeView.append_column_editable(_("Instrument"), m_Columns.m_col_name);      m_TreeView.append_column_editable(_("Instrument"), m_Columns.m_col_name);
1405        m_TreeView.append_column(_("Scripts"), m_Columns.m_col_scripts);
1406      m_TreeView.set_headers_visible(true);      m_TreeView.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
# Line 699  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 718  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 764  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 790  MainWindow::MainWindow() : Line 1553  MainWindow::MainWindow() :
1553          sigc::hide(          sigc::hide(
1554              sigc::bind(              sigc::bind(
1555                  file_structure_to_be_changed_signal.make_slot(),                  file_structure_to_be_changed_signal.make_slot(),
1556    #if SIGCXX_MAJOR_VERSION > 2 || (SIGCXX_MAJOR_VERSION == 2 && SIGCXX_MINOR_VERSION >= 8)
1557                    std::ref(this->file)
1558    #else
1559                  sigc::ref(this->file)                  sigc::ref(this->file)
1560    #endif
1561              )              )
1562          )          )
1563      );      );
# Line 798  MainWindow::MainWindow() : Line 1565  MainWindow::MainWindow() :
1565          sigc::hide(          sigc::hide(
1566              sigc::bind(              sigc::bind(
1567                  file_structure_changed_signal.make_slot(),                  file_structure_changed_signal.make_slot(),
1568    #if SIGCXX_MAJOR_VERSION > 2 || (SIGCXX_MAJOR_VERSION == 2 && SIGCXX_MINOR_VERSION >= 8)
1569                    std::ref(this->file)
1570    #else
1571                  sigc::ref(this->file)                  sigc::ref(this->file)
1572    #endif
1573              )              )
1574          )          )
1575      );      );
# Line 819  MainWindow::MainWindow() : Line 1590  MainWindow::MainWindow() :
1590      dimreg_stereo.signal_toggled().connect(      dimreg_stereo.signal_toggled().connect(
1591          sigc::mem_fun(*this, &MainWindow::update_dimregs));          sigc::mem_fun(*this, &MainWindow::update_dimregs));
1592    
1593        m_searchText.signal_changed().connect(
1594            sigc::mem_fun(*m_refTreeModelFilter.operator->(), &Gtk::TreeModelFilter::refilter)
1595        );
1596    
1597      file = 0;      file = 0;
1598      file_is_changed = false;      file_is_changed = false;
1599    
1600    #if HAS_GTKMM_SHOW_ALL_CHILDREN
1601      show_all_children();      show_all_children();
1602    #endif
1603    
1604      // start with a new gig file by default      // start with a new gig file by default
1605      on_action_file_new();      on_action_file_new();
1606    
1607        m_TreeViewNotebook.signal_switch_page().connect(
1608            sigc::mem_fun(*this, &MainWindow::on_notebook_tab_switched)
1609        );
1610    
1611      // select 'Instruments' tab by default      // select 'Instruments' tab by default
1612      // (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)
1613      m_TreeViewNotebook.set_current_page(1);      m_TreeViewNotebook.set_current_page(1);
# Line 839  MainWindow::MainWindow() : Line 1620  MainWindow::MainWindow() :
1620    
1621      // setup macros and their keyboard accelerators      // setup macros and their keyboard accelerators
1622      {      {
1623    #if USE_GTKMM_BUILDER
1624            menuMacro = new Gtk::Menu(
1625                Glib::RefPtr<Gio::Menu>::cast_dynamic(
1626                    m_uiManager->get_object("MenuMacro")
1627                )
1628            );
1629    #else
1630          Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(          Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
1631              uiManager->get_widget("/MenuBar/MenuMacro")              uiManager->get_widget("/MenuBar/MenuMacro")
1632          )->get_submenu();          )->get_submenu();
   
         const Gdk::ModifierType primaryModifierKey =  
 #if defined(__APPLE__)  
             Gdk::META_MASK; // Cmd key on Mac  
 #else  
             Gdk::CONTROL_MASK; // Ctrl key on all other OSs  
1633  #endif  #endif
1634    
1635          const Gdk::ModifierType noModifier = (Gdk::ModifierType)0;          const Gdk::ModifierType noModifier = (Gdk::ModifierType)0;
# Line 863  MainWindow::MainWindow() : Line 1645  MainWindow::MainWindow() :
1645          Gtk::AccelMap::add_entry("<Macros>/macro_9", GDK_KEY_F10, noModifier);          Gtk::AccelMap::add_entry("<Macros>/macro_9", GDK_KEY_F10, noModifier);
1646          Gtk::AccelMap::add_entry("<Macros>/macro_10", GDK_KEY_F11, noModifier);          Gtk::AccelMap::add_entry("<Macros>/macro_10", GDK_KEY_F11, noModifier);
1647          Gtk::AccelMap::add_entry("<Macros>/macro_11", GDK_KEY_F12, noModifier);          Gtk::AccelMap::add_entry("<Macros>/macro_11", GDK_KEY_F12, noModifier);
1648            Gtk::AccelMap::add_entry("<Macros>/macro_12", GDK_KEY_F13, noModifier);
1649            Gtk::AccelMap::add_entry("<Macros>/macro_13", GDK_KEY_F14, noModifier);
1650            Gtk::AccelMap::add_entry("<Macros>/macro_14", GDK_KEY_F15, noModifier);
1651            Gtk::AccelMap::add_entry("<Macros>/macro_15", GDK_KEY_F16, noModifier);
1652            Gtk::AccelMap::add_entry("<Macros>/macro_16", GDK_KEY_F17, noModifier);
1653            Gtk::AccelMap::add_entry("<Macros>/macro_17", GDK_KEY_F18, noModifier);
1654            Gtk::AccelMap::add_entry("<Macros>/macro_18", GDK_KEY_F19, noModifier);
1655          Gtk::AccelMap::add_entry("<Macros>/SetupMacros", 'm', primaryModifierKey);          Gtk::AccelMap::add_entry("<Macros>/SetupMacros", 'm', primaryModifierKey);
1656    
1657          Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();          Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
# Line 870  MainWindow::MainWindow() : Line 1659  MainWindow::MainWindow() :
1659    
1660          updateMacroMenu();          updateMacroMenu();
1661      }      }
1662    
1663        // setup "Assign Scripts" keyboard accelerators
1664        {
1665            Gtk::AccelMap::add_entry("<Scripts>/script_0", GDK_KEY_F1, Gdk::SHIFT_MASK);
1666            Gtk::AccelMap::add_entry("<Scripts>/script_1", GDK_KEY_F2, Gdk::SHIFT_MASK);
1667            Gtk::AccelMap::add_entry("<Scripts>/script_2", GDK_KEY_F3, Gdk::SHIFT_MASK);
1668            Gtk::AccelMap::add_entry("<Scripts>/script_3", GDK_KEY_F4, Gdk::SHIFT_MASK);
1669            Gtk::AccelMap::add_entry("<Scripts>/script_4", GDK_KEY_F5, Gdk::SHIFT_MASK);
1670            Gtk::AccelMap::add_entry("<Scripts>/script_5", GDK_KEY_F6, Gdk::SHIFT_MASK);
1671            Gtk::AccelMap::add_entry("<Scripts>/script_6", GDK_KEY_F7, Gdk::SHIFT_MASK);
1672            Gtk::AccelMap::add_entry("<Scripts>/script_7", GDK_KEY_F8, Gdk::SHIFT_MASK);
1673            Gtk::AccelMap::add_entry("<Scripts>/script_8", GDK_KEY_F9, Gdk::SHIFT_MASK);
1674            Gtk::AccelMap::add_entry("<Scripts>/script_9", GDK_KEY_F10, Gdk::SHIFT_MASK);
1675            Gtk::AccelMap::add_entry("<Scripts>/script_10", GDK_KEY_F11, Gdk::SHIFT_MASK);
1676            Gtk::AccelMap::add_entry("<Scripts>/script_11", GDK_KEY_F12, Gdk::SHIFT_MASK);
1677            Gtk::AccelMap::add_entry("<Scripts>/script_12", GDK_KEY_F13, Gdk::SHIFT_MASK);
1678            Gtk::AccelMap::add_entry("<Scripts>/script_13", GDK_KEY_F14, Gdk::SHIFT_MASK);
1679            Gtk::AccelMap::add_entry("<Scripts>/script_14", GDK_KEY_F15, Gdk::SHIFT_MASK);
1680            Gtk::AccelMap::add_entry("<Scripts>/script_15", GDK_KEY_F16, Gdk::SHIFT_MASK);
1681            Gtk::AccelMap::add_entry("<Scripts>/script_16", GDK_KEY_F17, Gdk::SHIFT_MASK);
1682            Gtk::AccelMap::add_entry("<Scripts>/script_17", GDK_KEY_F18, Gdk::SHIFT_MASK);
1683            Gtk::AccelMap::add_entry("<Scripts>/script_18", GDK_KEY_F19, Gdk::SHIFT_MASK);
1684            Gtk::AccelMap::add_entry("<Scripts>/DropAllScriptSlots", GDK_KEY_BackSpace, Gdk::SHIFT_MASK);
1685    
1686            Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
1687            assign_scripts_menu->set_accel_group(accelGroup);
1688        }
1689    
1690        on_show_tooltips_changed();
1691    
1692        Glib::signal_idle().connect_once(
1693            sigc::mem_fun(*this, &MainWindow::bringToFront),
1694            200
1695        );
1696  }  }
1697    
1698  MainWindow::~MainWindow()  MainWindow::~MainWindow()
1699  {  {
1700  }  }
1701    
1702    void MainWindow::bringToFront() {
1703        #if defined(__APPLE__)
1704        macRaiseAppWindow();
1705        #endif
1706        raise();
1707        present();
1708    }
1709    
1710  void MainWindow::updateMacroMenu() {  void MainWindow::updateMacroMenu() {
1711    #if !USE_GTKMM_BUILDER
1712      Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(      Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
1713          uiManager->get_widget("/MenuBar/MenuMacro")          uiManager->get_widget("/MenuBar/MenuMacro")
1714      )->get_submenu();      )->get_submenu();
1715    #endif
1716    
1717      // remove all entries from "Macro" menu      // remove all entries from "Macro" menu
1718      {      {
# Line 914  void MainWindow::updateMacroMenu() { Line 1747  void MainWindow::updateMacroMenu() {
1747          );          );
1748          menuMacro->append(*item);          menuMacro->append(*item);
1749          item->set_accel_path("<Macros>/macro_" + ToString(iMacro));          item->set_accel_path("<Macros>/macro_" + ToString(iMacro));
1750            Glib::ustring comment = macro.comment();
1751            if (!comment.empty())
1752                item->set_tooltip_text(comment);
1753      }      }
1754      // if there are no macros configured at all, then show a dummy entry instead      // if there are no macros configured at all, then show a dummy entry instead
1755      if (m_macros.empty()) {      if (m_macros.empty()) {
# Line 934  void MainWindow::updateMacroMenu() { Line 1770  void MainWindow::updateMacroMenu() {
1770          item->set_accel_path("<Macros>/SetupMacros");          item->set_accel_path("<Macros>/SetupMacros");
1771      }      }
1772    
1773    #if HAS_GTKMM_SHOW_ALL_CHILDREN
1774      menuMacro->show_all_children();      menuMacro->show_all_children();
1775    #endif
1776  }  }
1777    
1778  void MainWindow::onMacroSelected(int iMacro) {  void MainWindow::onMacroSelected(int iMacro) {
# Line 971  void MainWindow::onMacrosSetupChanged(co Line 1809  void MainWindow::onMacrosSetupChanged(co
1809      updateMacroMenu();      updateMacroMenu();
1810  }  }
1811    
1812    //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.
1813    void MainWindow::on_notebook_tab_switched(void* page, guint page_num) {
1814        bool isInstrumentsPage = (page_num == 1);
1815        // so far we only support filtering for the instruments list, so hide the
1816        // filter text entry field if another tab is selected
1817        m_searchField.set_visible(isInstrumentsPage);
1818    }
1819    
1820  bool MainWindow::on_delete_event(GdkEventAny* event)  bool MainWindow::on_delete_event(GdkEventAny* event)
1821  {  {
1822      return !file_is_shared && file_is_changed && !close_confirmation_dialog();      return !file_is_shared && file_is_changed && !close_confirmation_dialog();
# Line 992  gig::Instrument* MainWindow::get_instrum Line 1838  gig::Instrument* MainWindow::get_instrum
1838      gig::Instrument* instrument = 0;      gig::Instrument* instrument = 0;
1839      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
1840      if (rows.empty()) return NULL;      if (rows.empty()) return NULL;
1841      Gtk::TreeModel::const_iterator it = m_refTreeModel->get_iter(rows[0]);      //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
1842        Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
1843      if (it) {      if (it) {
1844          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
1845          instrument = row[m_Columns.m_col_instr];          instrument = row[m_Columns.m_col_instr];
# Line 1058  void MainWindow::dimreg_changed() Line 1905  void MainWindow::dimreg_changed()
1905    
1906  void MainWindow::on_sel_change()  void MainWindow::on_sel_change()
1907  {  {
1908    #if !USE_GTKMM_BUILDER
1909      // select item in instrument menu      // select item in instrument menu
1910      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
1911      if (!rows.empty()) {      if (!rows.empty()) {
# Line 1070  void MainWindow::on_sel_change() Line 1918  void MainWindow::on_sel_change()
1918              static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();              static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();
1919          }          }
1920      }      }
1921    #endif
1922    
1923        updateScriptListOfMenu();
1924    
1925      m_RegionChooser.set_instrument(get_instrument());      m_RegionChooser.set_instrument(get_instrument());
1926    
# Line 1078  void MainWindow::on_sel_change() Line 1929  void MainWindow::on_sel_change()
1929      }      }
1930  }  }
1931    
1932    
1933    LoaderSaverBase::LoaderSaverBase(const Glib::ustring filename, gig::File* gig) :
1934        filename(filename), gig(gig),
1935    #ifdef GLIB_THREADS
1936        thread(0),
1937    #endif
1938        progress(0.f)
1939    {
1940    }
1941    
1942  void loader_progress_callback(gig::progress_t* progress)  void loader_progress_callback(gig::progress_t* progress)
1943  {  {
1944      Loader* loader = static_cast<Loader*>(progress->custom);      LoaderSaverBase* loader = static_cast<LoaderSaverBase*>(progress->custom);
1945      loader->progress_callback(progress->factor);      loader->progress_callback(progress->factor);
1946  }  }
1947    
1948  void Loader::progress_callback(float fraction)  void LoaderSaverBase::progress_callback(float fraction)
1949  {  {
1950      {      {
1951    #ifdef GLIB_THREADS
1952          Glib::Threads::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
1953    #else
1954            std::lock_guard<std::mutex> lock(progressMutex);
1955    #endif
1956          progress = fraction;          progress = fraction;
1957      }      }
1958      progress_dispatcher();      progress_dispatcher();
# Line 1097  void Loader::progress_callback(float fra Line 1962  void Loader::progress_callback(float fra
1962  // make sure stack is 16-byte aligned for SSE instructions  // make sure stack is 16-byte aligned for SSE instructions
1963  __attribute__((force_align_arg_pointer))  __attribute__((force_align_arg_pointer))
1964  #endif  #endif
1965  void Loader::thread_function()  void LoaderSaverBase::thread_function()
1966  {  {
1967    #ifdef GLIB_THREADS
1968      printf("thread_function self=%p\n",      printf("thread_function self=%p\n",
1969             static_cast<void*>(Glib::Threads::Thread::self()));             static_cast<void*>(Glib::Threads::Thread::self()));
1970    #else
1971        std::cout << "thread_function self=" << std::this_thread::get_id() << "\n";
1972    #endif
1973      printf("Start %s\n", filename.c_str());      printf("Start %s\n", filename.c_str());
1974      try {      try {
         RIFF::File* riff = new RIFF::File(filename);  
         gig = new gig::File(riff);  
1975          gig::progress_t progress;          gig::progress_t progress;
1976          progress.callback = loader_progress_callback;          progress.callback = loader_progress_callback;
1977          progress.custom = this;          progress.custom = this;
1978    
1979          gig->GetInstrument(0, &progress);          thread_function_sub(progress);
1980          printf("End\n");          printf("End\n");
1981          finished_dispatcher();          finished_dispatcher();
1982      } catch (RIFF::Exception e) {      } catch (RIFF::Exception e) {
# Line 1121  void Loader::thread_function() Line 1988  void Loader::thread_function()
1988      }      }
1989  }  }
1990    
1991  Loader::Loader(const char* filename)  void LoaderSaverBase::launch()
     : filename(filename), gig(0), thread(0), progress(0.f)  
 {  
 }  
   
 void Loader::launch()  
1992  {  {
1993    #ifdef GLIB_THREADS
1994  #ifdef OLD_THREADS  #ifdef OLD_THREADS
1995      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);      thread = Glib::Thread::create(sigc::mem_fun(*this, &LoaderSaverBase::thread_function), true);
1996  #else  #else
1997      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &LoaderSaverBase::thread_function));
1998  #endif  #endif
1999      printf("launch thread=%p\n", static_cast<void*>(thread));      printf("launch thread=%p\n", static_cast<void*>(thread));
2000    #else
2001        thread = std::thread([this](){ thread_function(); });
2002        std::cout << "launch thread=" << thread.get_id() << "\n";
2003    #endif
2004  }  }
2005    
2006  float Loader::get_progress()  float LoaderSaverBase::get_progress()
2007  {  {
2008      float res;  #ifdef GLIB_THREADS
2009      {      Glib::Threads::Mutex::Lock lock(progressMutex);
2010          Glib::Threads::Mutex::Lock lock(progressMutex);  #else
2011          res = progress;      std::lock_guard<std::mutex> lock(progressMutex);
2012      }  #endif
2013      return res;      return progress;
2014  }  }
2015    
2016  Glib::Dispatcher& Loader::signal_progress()  Glib::Dispatcher& LoaderSaverBase::signal_progress()
2017  {  {
2018      return progress_dispatcher;      return progress_dispatcher;
2019  }  }
2020    
2021  Glib::Dispatcher& Loader::signal_finished()  Glib::Dispatcher& LoaderSaverBase::signal_finished()
2022  {  {
2023      return finished_dispatcher;      return finished_dispatcher;
2024  }  }
2025    
2026  Glib::Dispatcher& Loader::signal_error()  Glib::Dispatcher& LoaderSaverBase::signal_error()
2027  {  {
2028      return error_dispatcher;      return error_dispatcher;
2029  }  }
2030    
2031  void saver_progress_callback(gig::progress_t* progress)  void LoaderSaverBase::join() {
2032  {  #ifdef GLIB_THREADS
2033      Saver* saver = static_cast<Saver*>(progress->custom);      thread->join();
2034      saver->progress_callback(progress->factor);  #else
2035        thread.join();
2036    #endif
2037  }  }
2038    
2039  void Saver::progress_callback(float fraction)  
2040    Loader::Loader(const char* filename) :
2041        LoaderSaverBase(filename, 0)
2042  {  {
     {  
         Glib::Threads::Mutex::Lock lock(progressMutex);  
         progress = fraction;  
     }  
     progress_dispatcher.emit();  
2043  }  }
2044    
2045  #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))  void Loader::thread_function_sub(gig::progress_t& progress)
 // make sure stack is 16-byte aligned for SSE instructions  
 __attribute__((force_align_arg_pointer))  
 #endif  
 void Saver::thread_function()  
2046  {  {
2047      printf("thread_function self=%p\n",      RIFF::File* riff = new RIFF::File(filename);
2048             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()) {  
             if (!Settings::singleton()->saveWithTemporaryFile) {  
                 // save directly over the existing .gig file  
                 // (requires less disk space than solution below  
                 // but may be slower)  
                 gig->Save(&progress);  
             } else {  
                 // save the file as separate temporary file first,  
                 // then move the saved file over the old file  
                 // (may result in performance speedup during save)  
                 String tmpname = filename + ".TMP";  
                 gig->Save(tmpname, &progress);  
                 #if defined(WIN32)  
                 if (!DeleteFile(filename.c_str())) {  
                     throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file).");  
                 }  
                 #else // POSIX ...  
                 if (unlink(filename.c_str())) {  
                     throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + String(strerror(errno)));  
                 }  
                 #endif  
                 if (rename(tmpname.c_str(), filename.c_str())) {  
                     #if defined(WIN32)  
                     throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");  
                     #else  
                     throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file): " + String(strerror(errno)));  
                     #endif  
                 }  
             }  
         } else {  
             gig->Save(filename, &progress);  
         }  
2049    
2050          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();  
     }  
2051  }  }
2052    
2053  Saver::Saver(gig::File* file, Glib::ustring filename)  
2054      : gig(file), filename(filename), thread(0), progress(0.f)  Saver::Saver(gig::File* file, Glib::ustring filename) :
2055        LoaderSaverBase(filename, file)
2056  {  {
2057  }  }
2058    
2059  void Saver::launch()  void Saver::thread_function_sub(gig::progress_t& progress)
2060  {  {
2061  #ifdef OLD_THREADS      // if no filename was provided, that means "save", if filename was provided means "save as"
2062      thread = Glib::Thread::create(sigc::mem_fun(*this, &Saver::thread_function), true);      if (filename.empty()) {
2063            if (!Settings::singleton()->saveWithTemporaryFile) {
2064                // save directly over the existing .gig file
2065                // (requires less disk space than solution below
2066                // but may be slower)
2067                gig->Save(&progress);
2068            } else {
2069                // save the file as separate temporary file first,
2070                // then move the saved file over the old file
2071                // (may result in performance speedup during save)
2072                gig::String tmpname = filename + ".TMP";
2073                gig->Save(tmpname, &progress);
2074    #if defined(WIN32)
2075                if (!DeleteFile(filename.c_str())) {
2076                    throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file).");
2077                }
2078    #else // POSIX ...
2079                if (unlink(filename.c_str())) {
2080                    throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + gig::String(strerror(errno)));
2081                }
2082    #endif
2083                if (rename(tmpname.c_str(), filename.c_str())) {
2084    #if defined(WIN32)
2085                    throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");
2086  #else  #else
2087      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)));
2088  #endif  #endif
2089      printf("launch thread=%p\n", static_cast<void*>(thread));              }
2090  }          }
2091        } else {
2092  float Saver::get_progress()          gig->Save(filename, &progress);
 {  
     float res;  
     {  
         Glib::Threads::Mutex::Lock lock(progressMutex);  
         res = progress;  
2093      }      }
     return res;  
 }  
   
 Glib::Dispatcher& Saver::signal_progress()  
 {  
     return progress_dispatcher;  
2094  }  }
2095    
 Glib::Dispatcher& Saver::signal_finished()  
 {  
     return finished_dispatcher;  
 }  
   
 Glib::Dispatcher& Saver::signal_error()  
 {  
     return error_dispatcher;  
 }  
2096    
2097  ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)  ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)
2098      : Gtk::Dialog(title, parent, true)      : Gtk::Dialog(title, parent, true)
2099  {  {
2100    #if USE_GTKMM_BOX
2101        get_content_area()->pack_start(progressBar);
2102    #else
2103      get_vbox()->pack_start(progressBar);      get_vbox()->pack_start(progressBar);
2104    #endif
2105    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2106      show_all_children();      show_all_children();
2107    #endif
2108      resize(600,50);      resize(600,50);
2109  }  }
2110    
# Line 1292  void MainWindow::__clear() { Line 2117  void MainWindow::__clear() {
2117      m_refTreeModel->clear();      m_refTreeModel->clear();
2118      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
2119      m_refScriptsTreeModel->clear();      m_refScriptsTreeModel->clear();
2120    #if !USE_GTKMM_BUILDER
2121      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
2122      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
2123          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
2124      }      }
2125    #endif
2126      // free libgig's gig::File instance      // free libgig's gig::File instance
2127      if (file && !file_is_shared) delete file;      if (file && !file_is_shared) delete file;
2128      file = NULL;      file = NULL;
# Line 1307  void MainWindow::__refreshEntireGUI() { Line 2134  void MainWindow::__refreshEntireGUI() {
2134      m_refTreeModel->clear();      m_refTreeModel->clear();
2135      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
2136      m_refScriptsTreeModel->clear();      m_refScriptsTreeModel->clear();
2137    #if !USE_GTKMM_BUILDER
2138      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
2139      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
2140          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
2141      }      }
2142    #endif
2143    
2144      if (!this->file) return;      if (!this->file) return;
2145    
# Line 1344  bool MainWindow::close_confirmation_dial Line 2173  bool MainWindow::close_confirmation_dial
2173      g_free(msg);      g_free(msg);
2174      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."));
2175      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
2176    #if HAS_GTKMM_STOCK
2177      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2178      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);
2179    #else
2180        dialog.add_button(_("_OK"), Gtk::RESPONSE_OK);
2181        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2182    #endif
2183      dialog.set_default_response(Gtk::RESPONSE_YES);      dialog.set_default_response(Gtk::RESPONSE_YES);
2184      int response = dialog.run();      int response = dialog.run();
2185      dialog.hide();      dialog.hide();
# Line 1376  bool MainWindow::leaving_shared_mode_dia Line 2210  bool MainWindow::leaving_shared_mode_dia
2210            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
2211            "load it."));            "load it."));
2212      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
2213    #if HAS_GTKMM_STOCK
2214      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2215    #else
2216        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2217    #endif
2218      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
2219      int response = dialog.run();      int response = dialog.run();
2220      dialog.hide();      dialog.hide();
# Line 1390  void MainWindow::on_action_file_open() Line 2228  void MainWindow::on_action_file_open()
2228      if (file_is_shared && !leaving_shared_mode_dialog()) return;      if (file_is_shared && !leaving_shared_mode_dialog()) return;
2229    
2230      Gtk::FileChooserDialog dialog(*this, _("Open file"));      Gtk::FileChooserDialog dialog(*this, _("Open file"));
2231    #if HAS_GTKMM_STOCK
2232      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2233      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
2234    #else
2235        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2236        dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
2237    #endif
2238      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
2239  #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
2240      Gtk::FileFilter filter;      Gtk::FileFilter filter;
# Line 1405  void MainWindow::on_action_file_open() Line 2248  void MainWindow::on_action_file_open()
2248          dialog.set_current_folder(current_gig_dir);          dialog.set_current_folder(current_gig_dir);
2249      }      }
2250      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2251            dialog.hide();
2252          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
2253          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
2254    #ifdef GLIB_THREADS
2255          printf("on_action_file_open self=%p\n",          printf("on_action_file_open self=%p\n",
2256                 static_cast<void*>(Glib::Threads::Thread::self()));                 static_cast<void*>(Glib::Threads::Thread::self()));
2257    #else
2258            std::cout << "on_action_file_open self=" <<
2259                std::this_thread::get_id() << "\n";
2260    #endif
2261          load_file(filename.c_str());          load_file(filename.c_str());
2262          current_gig_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
2263      }      }
# Line 1423  void MainWindow::load_file(const char* n Line 2272  void MainWindow::load_file(const char* n
2272          Glib::filename_display_basename(name) + "' ...",          Glib::filename_display_basename(name) + "' ...",
2273          *this          *this
2274      );      );
2275    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2276      progress_dialog->show_all();      progress_dialog->show_all();
2277    #endif
2278      loader = new Loader(name); //FIXME: memory leak!      loader = new Loader(name); //FIXME: memory leak!
2279      loader->signal_progress().connect(      loader->signal_progress().connect(
2280          sigc::mem_fun(*this, &MainWindow::on_loader_progress));          sigc::mem_fun(*this, &MainWindow::on_loader_progress));
# Line 1457  void MainWindow::load_instrument(gig::In Line 2308  void MainWindow::load_instrument(gig::In
2308              // make sure the selected item in the "instruments" tree view is              // make sure the selected item in the "instruments" tree view is
2309              // visible (scroll to it)              // visible (scroll to it)
2310              m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));              m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));
2311    #if !USE_GTKMM_BUILDER
2312              // select item in instrument menu              // select item in instrument menu
2313              {              {
2314                  const std::vector<Gtk::Widget*> children =                  const std::vector<Gtk::Widget*> children =
2315                      instrument_menu->get_children();                      instrument_menu->get_children();
2316                  static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();                  static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();
2317              }              }
2318    #endif
2319              // update region chooser and dimension region chooser              // update region chooser and dimension region chooser
2320              m_RegionChooser.set_instrument(instr);              m_RegionChooser.set_instrument(instr);
2321              break;              break;
# Line 1477  void MainWindow::on_loader_progress() Line 2330  void MainWindow::on_loader_progress()
2330    
2331  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
2332  {  {
2333        loader->join();
2334      printf("Loader finished!\n");      printf("Loader finished!\n");
2335    #ifdef GLIB_THREADS
2336      printf("on_loader_finished self=%p\n",      printf("on_loader_finished self=%p\n",
2337             static_cast<void*>(Glib::Threads::Thread::self()));             static_cast<void*>(Glib::Threads::Thread::self()));
2338    #else
2339        std::cout << "on_loader_finished self=" <<
2340            std::this_thread::get_id() << "\n";
2341    #endif
2342      load_gig(loader->gig, loader->filename.c_str());      load_gig(loader->gig, loader->filename.c_str());
2343      progress_dialog->hide();      progress_dialog->hide();
2344  }  }
2345    
2346  void MainWindow::on_loader_error()  void MainWindow::on_loader_error()
2347  {  {
2348        loader->join();
2349      Glib::ustring txt = _("Could not load file: ") + loader->error_message;      Glib::ustring txt = _("Could not load file: ") + loader->error_message;
2350      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2351      msg.run();      msg.run();
# Line 1534  bool MainWindow::file_save() Line 2394  bool MainWindow::file_save()
2394          Glib::filename_display_basename(this->filename) + "' ...",          Glib::filename_display_basename(this->filename) + "' ...",
2395          *this          *this
2396      );      );
2397    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2398      progress_dialog->show_all();      progress_dialog->show_all();
2399    #endif
2400      saver = new Saver(this->file); //FIXME: memory leak!      saver = new Saver(this->file); //FIXME: memory leak!
2401      saver->signal_progress().connect(      saver->signal_progress().connect(
2402          sigc::mem_fun(*this, &MainWindow::on_saver_progress));          sigc::mem_fun(*this, &MainWindow::on_saver_progress));
# Line 1554  void MainWindow::on_saver_progress() Line 2416  void MainWindow::on_saver_progress()
2416    
2417  void MainWindow::on_saver_error()  void MainWindow::on_saver_error()
2418  {  {
2419        saver->join();
2420      file_structure_changed_signal.emit(this->file);      file_structure_changed_signal.emit(this->file);
2421      Glib::ustring txt = _("Could not save file: ") + saver->error_message;      Glib::ustring txt = _("Could not save file: ") + saver->error_message;
2422      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
# Line 1562  void MainWindow::on_saver_error() Line 2425  void MainWindow::on_saver_error()
2425    
2426  void MainWindow::on_saver_finished()  void MainWindow::on_saver_finished()
2427  {  {
2428        saver->join();
2429      this->file = saver->gig;      this->file = saver->gig;
2430      this->filename = saver->filename;      this->filename = saver->filename;
2431      current_gig_dir = Glib::path_get_dirname(filename);      current_gig_dir = Glib::path_get_dirname(filename);
# Line 1587  void MainWindow::on_action_file_save_as( Line 2451  void MainWindow::on_action_file_save_as(
2451  bool MainWindow::file_save_as()  bool MainWindow::file_save_as()
2452  {  {
2453      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);
2454    #if HAS_GTKMM_STOCK
2455      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2456      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
2457    #else
2458        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2459        dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);
2460    #endif
2461      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
2462      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
2463    
# Line 1617  bool MainWindow::file_save_as() Line 2486  bool MainWindow::file_save_as()
2486      }      }
2487    
2488      // show warning in the dialog      // show warning in the dialog
2489      Gtk::HBox descriptionArea;      HBox descriptionArea;
2490      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
2491      Gtk::Image warningIcon;      Gtk::Image warningIcon;
2492      warningIcon.set_from_icon_name("dialog-warning",      warningIcon.set_from_icon_name("dialog-warning",
# Line 1638  bool MainWindow::file_save_as() Line 2507  bool MainWindow::file_save_as()
2507            "same .gig file will end up in corrupted sample wave data!\n")            "same .gig file will end up in corrupted sample wave data!\n")
2508      );      );
2509      descriptionArea.pack_start(description);      descriptionArea.pack_start(description);
2510    #if USE_GTKMM_BOX
2511        dialog.get_content_area()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2512    #else
2513      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2514    #endif
2515    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2516      descriptionArea.show_all();      descriptionArea.show_all();
2517    #endif
2518    
2519      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2520            dialog.hide();
2521          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
2522          if (!Glib::str_has_suffix(filename, ".gig")) {          if (!Glib::str_has_suffix(filename, ".gig")) {
2523              filename += ".gig";              filename += ".gig";
# Line 1653  bool MainWindow::file_save_as() Line 2529  bool MainWindow::file_save_as()
2529              Glib::filename_display_basename(filename) + "' ...",              Glib::filename_display_basename(filename) + "' ...",
2530              *this              *this
2531          );          );
2532    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2533          progress_dialog->show_all();          progress_dialog->show_all();
2534    #endif
2535    
2536          saver = new Saver(file, filename); //FIXME: memory leak!          saver = new Saver(file, filename); //FIXME: memory leak!
2537          saver->signal_progress().connect(          saver->signal_progress().connect(
# Line 1768  void MainWindow::__import_queued_samples Line 2646  void MainWindow::__import_queued_samples
2646    
2647  void MainWindow::on_action_file_properties()  void MainWindow::on_action_file_properties()
2648  {  {
2649      propDialog.show();      fileProps.show();
2650      propDialog.deiconify();      fileProps.deiconify();
2651  }  }
2652    
2653  void MainWindow::on_action_warn_user_on_extensions() {  void MainWindow::on_action_warn_user_on_extensions() {
# Line 1777  void MainWindow::on_action_warn_user_on_ Line 2655  void MainWindow::on_action_warn_user_on_
2655          !Settings::singleton()->warnUserOnExtensions;          !Settings::singleton()->warnUserOnExtensions;
2656  }  }
2657    
2658    void MainWindow::on_action_show_tooltips() {
2659        Settings::singleton()->showTooltips =
2660            !Settings::singleton()->showTooltips;
2661    
2662        on_show_tooltips_changed();
2663    }
2664    
2665    void MainWindow::on_show_tooltips_changed() {
2666        const bool b = Settings::singleton()->showTooltips;
2667    
2668        dimreg_label.set_has_tooltip(b);
2669        dimreg_all_regions.set_has_tooltip(b);
2670        dimreg_all_dimregs.set_has_tooltip(b);
2671        dimreg_stereo.set_has_tooltip(b);
2672    
2673        // Not doing this here, we let onQueryTreeViewTooltip() handle this per cell
2674        //m_TreeView.set_has_tooltip(b);
2675    
2676        m_TreeViewSamples.set_has_tooltip(b);
2677        m_TreeViewScripts.set_has_tooltip(b);
2678    
2679        set_has_tooltip(b);
2680    }
2681    
2682  void MainWindow::on_action_sync_sampler_instrument_selection() {  void MainWindow::on_action_sync_sampler_instrument_selection() {
2683      Settings::singleton()->syncSamplerInstrumentSelection =      Settings::singleton()->syncSamplerInstrumentSelection =
2684          !Settings::singleton()->syncSamplerInstrumentSelection;          !Settings::singleton()->syncSamplerInstrumentSelection;
# Line 1796  void MainWindow::on_action_help_about() Line 2698  void MainWindow::on_action_help_about()
2698      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
2699  #endif  #endif
2700      dialog.set_version(VERSION);      dialog.set_version(VERSION);
2701      dialog.set_copyright("Copyright (C) 2006-2017 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2019 Andreas Persson");
2702      const std::string sComment =      const std::string sComment =
2703          _("Built " __DATE__ "\nUsing ") +          _("Built " __DATE__ "\nUsing ") +
2704          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
# Line 1807  void MainWindow::on_action_help_about() Line 2709  void MainWindow::on_action_help_about()
2709              "backup your Gigasampler/GigaStudio files before editing them with "              "backup your Gigasampler/GigaStudio files before editing them with "
2710              "this application.\n"              "this application.\n"
2711              "\n"              "\n"
2712              "Please report bugs to: http://bugs.linuxsampler.org"              "Please report bugs to: https://bugs.linuxsampler.org"
2713          );          );
2714      dialog.set_comments(sComment.c_str());      dialog.set_comments(sComment.c_str());
2715      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("https://www.linuxsampler.org");
2716      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("https://www.linuxsampler.org");
2717        dialog.set_position(Gtk::WIN_POS_CENTER);
2718      dialog.run();      dialog.run();
2719  }  }
2720    
2721  PropDialog::PropDialog()  FilePropDialog::FilePropDialog()
2722      : eFileFormat(_("File Format")),      : eFileFormat(_("File Format")),
2723        eName(_("Name")),        eName(_("Name")),
2724        eCreationDate(_("Creation date")),        eCreationDate(_("Creation date")),
# Line 1833  PropDialog::PropDialog() Line 2736  PropDialog::PropDialog()
2736        eSourceForm(_("Source form")),        eSourceForm(_("Source form")),
2737        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
2738        eSubject(_("Subject")),        eSubject(_("Subject")),
2739    #if HAS_GTKMM_STOCK
2740        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
2741    #else
2742          quitButton(_("_Close")),
2743    #endif
2744        table(2, 1),        table(2, 1),
2745        m_file(NULL)        m_file(NULL)
2746  {  {
2747        if (!Settings::singleton()->autoRestoreWindowDimension) {
2748            set_default_size(470, 390);
2749            set_position(Gtk::WIN_POS_MOUSE);
2750        }
2751    
2752      set_title(_("File Properties"));      set_title(_("File Properties"));
2753      eName.set_width_chars(50);      eName.set_width_chars(50);
2754    
2755        connect(eFileFormat, &FilePropDialog::set_FileFormat);
2756      connect(eName, &DLS::Info::Name);      connect(eName, &DLS::Info::Name);
2757      connect(eCreationDate, &DLS::Info::CreationDate);      connect(eCreationDate, &DLS::Info::CreationDate);
2758      connect(eComments, &DLS::Info::Comments);      connect(eComments, &DLS::Info::Comments);
# Line 1875  PropDialog::PropDialog() Line 2788  PropDialog::PropDialog()
2788      table.add(eCommissioned);      table.add(eCommissioned);
2789      table.add(eSubject);      table.add(eSubject);
2790    
2791    #if USE_GTKMM_GRID
2792        table.set_column_spacing(5);
2793    #else
2794      table.set_col_spacings(5);      table.set_col_spacings(5);
2795    #endif
2796    
2797      add(vbox);      add(vbox);
2798    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2799        table.set_margin(5);
2800    #else
2801      table.set_border_width(5);      table.set_border_width(5);
2802    #endif
2803      vbox.add(table);      vbox.add(table);
2804      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
2805      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
2806    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2807        buttonBox.set_margin(5);
2808    #else
2809      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
2810    #endif
2811      buttonBox.show();      buttonBox.show();
2812      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
2813      quitButton.set_can_default();      quitButton.set_can_default();
2814      quitButton.grab_focus();      quitButton.grab_focus();
2815      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
2816          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &FilePropDialog::hide));
     eFileFormat.signal_value_changed().connect(  
         sigc::mem_fun(*this, &PropDialog::onFileFormatChanged));  
2817    
2818      quitButton.show();      quitButton.show();
2819      vbox.show();      vbox.show();
2820    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2821      show_all_children();      show_all_children();
2822    #endif
2823  }  }
2824    
2825  void PropDialog::set_file(gig::File* file)  void FilePropDialog::set_file(gig::File* file)
2826  {  {
2827      m_file = file;      m_file = file;
2828        update(file->pInfo);
2829    
2830      // update file format version combo box      // update file format version combo box
2831      const std::string sGiga = "Gigasampler/GigaStudio v";      const std::string sGiga = "Gigasampler/GigaStudio v";
# Line 1906  void PropDialog::set_file(gig::File* fil Line 2833  void PropDialog::set_file(gig::File* fil
2833      std::vector<std::string> txts;      std::vector<std::string> txts;
2834      std::vector<int> values;      std::vector<int> values;
2835      txts.push_back(sGiga + "2"); values.push_back(2);      txts.push_back(sGiga + "2"); values.push_back(2);
2836      txts.push_back(sGiga + "3/v4"); values.push_back(3);      txts.push_back(sGiga + "3"); values.push_back(3);
2837      if (major != 2 && major != 3) {      txts.push_back(sGiga + "4"); values.push_back(4);
2838        if (major < 2 || major > 4) {
2839          txts.push_back(sGiga + ToString(major)); values.push_back(major);          txts.push_back(sGiga + ToString(major)); values.push_back(major);
2840      }      }
2841      std::vector<const char*> texts;      std::vector<const char*> texts;
2842      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());
2843      texts.push_back(NULL); values.push_back(0);      texts.push_back(NULL); values.push_back(0);
2844    
2845        update_model++;
2846      eFileFormat.set_choices(&texts[0], &values[0]);      eFileFormat.set_choices(&texts[0], &values[0]);
2847      eFileFormat.set_value(major);      eFileFormat.set_value(major);
2848        update_model--;
2849  }  }
2850    
2851  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)  
2852  {  {
2853      update(info);      m_file->pVersion->major = value;
2854  }  }
2855    
2856    
# Line 1956  void InstrumentProps::set_MIDIProgram(ui Line 2882  void InstrumentProps::set_MIDIProgram(ui
2882  }  }
2883    
2884  InstrumentProps::InstrumentProps() :  InstrumentProps::InstrumentProps() :
2885    #if HAS_GTKMM_STOCK
2886      quitButton(Gtk::Stock::CLOSE),      quitButton(Gtk::Stock::CLOSE),
2887    #else
2888        quitButton(_("_Close")),
2889    #endif
2890      table(2,1),      table(2,1),
2891      eName(_("Name")),      eName(_("Name")),
2892      eIsDrum(_("Is drum")),      eIsDrum(_("Is drum")),
2893      eMIDIBank(_("MIDI bank"), 0, 16383),      eMIDIBank(_("MIDI bank"), 0, 16383),
2894      eMIDIProgram(_("MIDI program")),      eMIDIProgram(_("MIDI program")),
2895      eAttenuation(_("Attenuation"), 0, 96, 0, 1),      eAttenuation(_("Attenuation (dB)"), -96, +96, 0, 1),
     eGainPlus6(_("Gain +6dB"), eAttenuation, -6),  
2896      eEffectSend(_("Effect send"), 0, 65535),      eEffectSend(_("Effect send"), 0, 65535),
2897      eFineTune(_("Fine tune"), -8400, 8400),      eFineTune(_("Fine tune"), -8400, 8400),
2898      ePitchbendRange(_("Pitchbend range"), 0, 12),      ePitchbendRange(_("Pitchbend range (halftones)"), 0, 48),
2899      ePianoReleaseMode(_("Piano release mode")),      ePianoReleaseMode(_("Piano release mode")),
2900      eDimensionKeyRangeLow(_("Keyswitching range low")),      eDimensionKeyRangeLow(_("Keyswitching range low")),
2901      eDimensionKeyRangeHigh(_("Keyswitching range high"))      eDimensionKeyRangeHigh(_("Keyswitching range high")),
2902  {      table2(2,1),
2903        eName2(_("Name")),
2904        eCreationDate(_("Creation date")),
2905        eComments(_("Comments")),
2906        eProduct(_("Product")),
2907        eCopyright(_("Copyright")),
2908        eArtists(_("Artists")),
2909        eGenre(_("Genre")),
2910        eKeywords(_("Keywords")),
2911        eEngineer(_("Engineer")),
2912        eTechnician(_("Technician")),
2913        eSoftware(_("Software")),
2914        eMedium(_("Medium")),
2915        eSource(_("Source")),
2916        eSourceForm(_("Source form")),
2917        eCommissioned(_("Commissioned")),
2918        eSubject(_("Subject"))
2919    {
2920        if (!Settings::singleton()->autoRestoreWindowDimension) {
2921            //set_default_size(470, 390);
2922            set_position(Gtk::WIN_POS_MOUSE);
2923        }
2924    
2925      set_title(_("Instrument Properties"));      set_title(_("Instrument Properties"));
2926    
2927        tabs.append_page(vbox[1], _("Settings"));
2928        tabs.append_page(vbox[2], _("Info"));
2929    
2930      eDimensionKeyRangeLow.set_tip(      eDimensionKeyRangeLow.set_tip(
2931          _("start of the keyboard area which should switch the "          _("start of the keyboard area which should switch the "
2932            "\"keyswitching\" dimension")            "\"keyswitching\" dimension")
# Line 1987  InstrumentProps::InstrumentProps() : Line 2941  InstrumentProps::InstrumentProps() :
2941      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);
2942      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);
2943      connect(eAttenuation, &gig::Instrument::Attenuation);      connect(eAttenuation, &gig::Instrument::Attenuation);
     connect(eGainPlus6, &gig::Instrument::Attenuation);  
2944      connect(eEffectSend, &gig::Instrument::EffectSend);      connect(eEffectSend, &gig::Instrument::EffectSend);
2945      connect(eFineTune, &gig::Instrument::FineTune);      connect(eFineTune, &gig::Instrument::FineTune);
2946      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);
# Line 1997  InstrumentProps::InstrumentProps() : Line 2950  InstrumentProps::InstrumentProps() :
2950    
2951      eName.signal_value_changed().connect(sig_name_changed.make_slot());      eName.signal_value_changed().connect(sig_name_changed.make_slot());
2952    
2953        connect(eName2, &InstrumentProps::set_Name);
2954        connectLambda(eCreationDate, [this](gig::String s) {
2955            m->pInfo->CreationDate = s;
2956        });
2957        connectLambda(eComments, [this](gig::String s) {
2958            m->pInfo->Comments = s;
2959        });
2960        connectLambda(eProduct, [this](gig::String s) {
2961            m->pInfo->Product = s;
2962        });
2963        connectLambda(eCopyright, [this](gig::String s) {
2964            m->pInfo->Copyright = s;
2965        });
2966        connectLambda(eArtists, [this](gig::String s) {
2967            m->pInfo->Artists = s;
2968        });
2969        connectLambda(eGenre, [this](gig::String s) {
2970            m->pInfo->Genre = s;
2971        });
2972        connectLambda(eKeywords, [this](gig::String s) {
2973            m->pInfo->Keywords = s;
2974        });
2975        connectLambda(eEngineer, [this](gig::String s) {
2976            m->pInfo->Engineer = s;
2977        });
2978        connectLambda(eTechnician, [this](gig::String s) {
2979            m->pInfo->Technician = s;
2980        });
2981        connectLambda(eSoftware, [this](gig::String s) {
2982            m->pInfo->Software = s;
2983        });
2984        connectLambda(eMedium, [this](gig::String s) {
2985            m->pInfo->Medium = s;
2986        });
2987        connectLambda(eSource, [this](gig::String s) {
2988            m->pInfo->Source = s;
2989        });
2990        connectLambda(eSourceForm, [this](gig::String s) {
2991            m->pInfo->SourceForm = s;
2992        });
2993        connectLambda(eCommissioned, [this](gig::String s) {
2994            m->pInfo->Commissioned = s;
2995        });
2996        connectLambda(eSubject, [this](gig::String s) {
2997            m->pInfo->Subject = s;
2998        });
2999    
3000        // tab 1
3001    #if USE_GTKMM_GRID
3002        table.set_column_spacing(5);
3003    #else
3004      table.set_col_spacings(5);      table.set_col_spacings(5);
3005    #endif
3006      table.add(eName);      table.add(eName);
3007      table.add(eIsDrum);      table.add(eIsDrum);
3008      table.add(eMIDIBank);      table.add(eMIDIBank);
3009      table.add(eMIDIProgram);      table.add(eMIDIProgram);
3010      table.add(eAttenuation);      table.add(eAttenuation);
     table.add(eGainPlus6);  
3011      table.add(eEffectSend);      table.add(eEffectSend);
3012      table.add(eFineTune);      table.add(eFineTune);
3013      table.add(ePitchbendRange);      table.add(ePitchbendRange);
# Line 2012  InstrumentProps::InstrumentProps() : Line 3015  InstrumentProps::InstrumentProps() :
3015      table.add(eDimensionKeyRangeLow);      table.add(eDimensionKeyRangeLow);
3016      table.add(eDimensionKeyRangeHigh);      table.add(eDimensionKeyRangeHigh);
3017    
3018      add(vbox);      // tab 2
3019    #if USE_GTKMM_GRID
3020        table2.set_column_spacing(5);
3021    #else
3022        table2.set_col_spacings(5);
3023    #endif
3024        table2.add(eName2);
3025        table2.add(eCreationDate);
3026        table2.add(eComments);
3027        table2.add(eProduct);
3028        table2.add(eCopyright);
3029        table2.add(eArtists);
3030        table2.add(eGenre);
3031        table2.add(eKeywords);
3032        table2.add(eEngineer);
3033        table2.add(eTechnician);
3034        table2.add(eSoftware);
3035        table2.add(eMedium);
3036        table2.add(eSource);
3037        table2.add(eSourceForm);
3038        table2.add(eCommissioned);
3039        table2.add(eSubject);
3040    
3041        add(vbox[0]);
3042    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3043        table.set_margin(5);
3044    #else
3045      table.set_border_width(5);      table.set_border_width(5);
3046      vbox.pack_start(table);  #endif
3047        vbox[1].pack_start(table);
3048        vbox[2].pack_start(table2);
3049      table.show();      table.show();
3050      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      table2.show();
3051        vbox[0].pack_start(tabs);
3052        vbox[0].pack_start(buttonBox, Gtk::PACK_SHRINK);
3053      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
3054    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3055        buttonBox.set_margin(5);
3056    #else
3057      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
3058    #endif
3059      buttonBox.show();      buttonBox.show();
3060      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
3061      quitButton.set_can_default();      quitButton.set_can_default();
# Line 2028  InstrumentProps::InstrumentProps() : Line 3065  InstrumentProps::InstrumentProps() :
3065          sigc::mem_fun(*this, &InstrumentProps::hide));          sigc::mem_fun(*this, &InstrumentProps::hide));
3066    
3067      quitButton.show();      quitButton.show();
3068      vbox.show();      vbox[0].show();
3069    #if HAS_GTKMM_SHOW_ALL_CHILDREN
3070      show_all_children();      show_all_children();
3071    #endif
3072  }  }
3073    
3074  void InstrumentProps::set_instrument(gig::Instrument* instrument)  void InstrumentProps::set_instrument(gig::Instrument* instrument)
# Line 2037  void InstrumentProps::set_instrument(gig Line 3076  void InstrumentProps::set_instrument(gig
3076      update(instrument);      update(instrument);
3077    
3078      update_model++;      update_model++;
3079    
3080        // tab 1
3081      eName.set_value(instrument->pInfo->Name);      eName.set_value(instrument->pInfo->Name);
3082      eIsDrum.set_value(instrument->IsDrum);      eIsDrum.set_value(instrument->IsDrum);
3083      eMIDIBank.set_value(instrument->MIDIBank);      eMIDIBank.set_value(instrument->MIDIBank);
3084      eMIDIProgram.set_value(instrument->MIDIProgram);      eMIDIProgram.set_value(instrument->MIDIProgram);
3085        // tab 2
3086        eName2.set_value(instrument->pInfo->Name);
3087        eCreationDate.set_value(instrument->pInfo->CreationDate);
3088        eComments.set_value(instrument->pInfo->Comments);
3089        eProduct.set_value(instrument->pInfo->Product);
3090        eCopyright.set_value(instrument->pInfo->Copyright);
3091        eArtists.set_value(instrument->pInfo->Artists);
3092        eGenre.set_value(instrument->pInfo->Genre);
3093        eKeywords.set_value(instrument->pInfo->Keywords);
3094        eEngineer.set_value(instrument->pInfo->Engineer);
3095        eTechnician.set_value(instrument->pInfo->Technician);
3096        eSoftware.set_value(instrument->pInfo->Software);
3097        eMedium.set_value(instrument->pInfo->Medium);
3098        eSource.set_value(instrument->pInfo->Source);
3099        eSourceForm.set_value(instrument->pInfo->SourceForm);
3100        eCommissioned.set_value(instrument->pInfo->Commissioned);
3101        eSubject.set_value(instrument->pInfo->Subject);
3102    
3103        update_model--;
3104    }
3105    
3106    
3107    SampleProps::SampleProps() :
3108    #if HAS_GTKMM_STOCK
3109        quitButton(Gtk::Stock::CLOSE),
3110    #else
3111        quitButton(_("_Close")),
3112    #endif
3113        table(2,1),
3114        eName(_("Name")),
3115        eUnityNote(_("Unity Note")),
3116        eSampleGroup(_("Sample Group")),
3117        eSampleFormatInfo(_("Sample Format")),
3118        eSampleID("Sample ID"),
3119        eChecksum("Wave Data CRC-32"),
3120        eLoopsCount(_("Loops"), 0, 1), // we might support more than 1 loop in future
3121        eLoopStart(_("Loop start position"), 0, 9999999),
3122        eLoopLength(_("Loop size"), 0, 9999999),
3123        eLoopType(_("Loop type")),
3124        eLoopPlayCount(_("Playback count")),
3125        table2(2,1),
3126        eName2(_("Name")),
3127        eCreationDate(_("Creation date")),
3128        eComments(_("Comments")),
3129        eProduct(_("Product")),
3130        eCopyright(_("Copyright")),
3131        eArtists(_("Artists")),
3132        eGenre(_("Genre")),
3133        eKeywords(_("Keywords")),
3134        eEngineer(_("Engineer")),
3135        eTechnician(_("Technician")),
3136        eSoftware(_("Software")),
3137        eMedium(_("Medium")),
3138        eSource(_("Source")),
3139        eSourceForm(_("Source form")),
3140        eCommissioned(_("Commissioned")),
3141        eSubject(_("Subject"))
3142    {
3143        if (!Settings::singleton()->autoRestoreWindowDimension) {
3144            //set_default_size(470, 390);
3145            set_position(Gtk::WIN_POS_MOUSE);
3146        }
3147    
3148        set_title(_("Sample Properties"));
3149    
3150        tabs.append_page(vbox[1], _("Settings"));
3151        tabs.append_page(vbox[2], _("Info"));
3152    
3153        connect(eName, &SampleProps::set_Name);
3154        connect(eUnityNote, &gig::Sample::MIDIUnityNote);
3155        connect(eLoopsCount, &gig::Sample::Loops);
3156        connectLambda(eLoopStart, [this](uint32_t start){
3157            m->LoopStart = start;
3158            m->LoopEnd = start + m->LoopSize;
3159        });
3160        connectLambda(eLoopLength, [this](uint32_t length){
3161            m->LoopSize = length;
3162            m->LoopEnd = m->LoopStart + length;
3163        });
3164        {
3165            const char* choices[] = { _("normal"), _("bidirectional"), _("backward"), 0 };
3166            static const gig::loop_type_t values[] = {
3167                gig::loop_type_normal,
3168                gig::loop_type_bidirectional,
3169                gig::loop_type_backward
3170            };
3171            eLoopType.set_choices(choices, values);
3172        }
3173        connect(eLoopType, &gig::Sample::LoopType);
3174        connect(eLoopPlayCount, &gig::Sample::LoopPlayCount);
3175    
3176        eName.signal_value_changed().connect(sig_name_changed.make_slot());
3177    
3178        connect(eName2, &SampleProps::set_Name);
3179        connectLambda(eCreationDate, [this](gig::String s) {
3180            m->pInfo->CreationDate = s;
3181        });
3182        connectLambda(eComments, [this](gig::String s) {
3183            m->pInfo->Comments = s;
3184        });
3185        connectLambda(eProduct, [this](gig::String s) {
3186            m->pInfo->Product = s;
3187        });
3188        connectLambda(eCopyright, [this](gig::String s) {
3189            m->pInfo->Copyright = s;
3190        });
3191        connectLambda(eArtists, [this](gig::String s) {
3192            m->pInfo->Artists = s;
3193        });
3194        connectLambda(eGenre, [this](gig::String s) {
3195            m->pInfo->Genre = s;
3196        });
3197        connectLambda(eKeywords, [this](gig::String s) {
3198            m->pInfo->Keywords = s;
3199        });
3200        connectLambda(eEngineer, [this](gig::String s) {
3201            m->pInfo->Engineer = s;
3202        });
3203        connectLambda(eTechnician, [this](gig::String s) {
3204            m->pInfo->Technician = s;
3205        });
3206        connectLambda(eSoftware, [this](gig::String s) {
3207            m->pInfo->Software = s;
3208        });
3209        connectLambda(eMedium, [this](gig::String s) {
3210            m->pInfo->Medium = s;
3211        });
3212        connectLambda(eSource, [this](gig::String s) {
3213            m->pInfo->Source = s;
3214        });
3215        connectLambda(eSourceForm, [this](gig::String s) {
3216            m->pInfo->SourceForm = s;
3217        });
3218        connectLambda(eCommissioned, [this](gig::String s) {
3219            m->pInfo->Commissioned = s;
3220        });
3221        connectLambda(eSubject, [this](gig::String s) {
3222            m->pInfo->Subject = s;
3223        });
3224    
3225        // tab 1
3226    #if USE_GTKMM_GRID
3227        table.set_column_spacing(5);
3228    #else
3229        table.set_col_spacings(5);
3230    #endif
3231        table.add(eName);
3232        table.add(eUnityNote);
3233        table.add(eSampleGroup);
3234        table.add(eSampleFormatInfo);
3235        table.add(eSampleID);
3236        table.add(eChecksum);
3237        table.add(eLoopsCount);
3238        table.add(eLoopStart);
3239        table.add(eLoopLength);
3240        table.add(eLoopType);
3241        table.add(eLoopPlayCount);
3242    
3243        // tab 2
3244    #if USE_GTKMM_GRID
3245        table2.set_column_spacing(5);
3246    #else
3247        table2.set_col_spacings(5);
3248    #endif
3249        table2.add(eName2);
3250        table2.add(eCreationDate);
3251        table2.add(eComments);
3252        table2.add(eProduct);
3253        table2.add(eCopyright);
3254        table2.add(eArtists);
3255        table2.add(eGenre);
3256        table2.add(eKeywords);
3257        table2.add(eEngineer);
3258        table2.add(eTechnician);
3259        table2.add(eSoftware);
3260        table2.add(eMedium);
3261        table2.add(eSource);
3262        table2.add(eSourceForm);
3263        table2.add(eCommissioned);
3264        table2.add(eSubject);
3265    
3266        add(vbox[0]);
3267    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3268        table.set_margin(5);
3269    #else
3270        table.set_border_width(5);
3271    #endif
3272        vbox[1].pack_start(table);
3273        vbox[2].pack_start(table2);
3274        table.show();
3275        table2.show();
3276        vbox[0].pack_start(tabs);
3277        vbox[0].pack_start(buttonBox, Gtk::PACK_SHRINK);
3278        buttonBox.set_layout(Gtk::BUTTONBOX_END);
3279    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3280        buttonBox.set_margin(5);
3281    #else
3282        buttonBox.set_border_width(5);
3283    #endif
3284        buttonBox.show();
3285        buttonBox.pack_start(quitButton);
3286        quitButton.set_can_default();
3287        quitButton.grab_focus();
3288    
3289        quitButton.signal_clicked().connect(
3290            sigc::mem_fun(*this, &SampleProps::hide));
3291    
3292        quitButton.show();
3293        vbox[0].show();
3294    #if HAS_GTKMM_SHOW_ALL_CHILDREN
3295        show_all_children();
3296    #endif
3297    }
3298    
3299    void SampleProps::set_sample(gig::Sample* sample)
3300    {
3301        update(sample);
3302    
3303        update_model++;
3304    
3305        // tab 1
3306        eName.set_value(sample->pInfo->Name);
3307        eUnityNote.set_value(sample->MIDIUnityNote);
3308        // show sample group name
3309        {
3310            Glib::ustring s = "---";
3311            if (sample && sample->GetGroup())
3312                s = sample->GetGroup()->Name;
3313            eSampleGroup.text.set_text(s);
3314        }
3315        // assemble sample format info string
3316        {
3317            Glib::ustring s;
3318            if (sample) {
3319                switch (sample->Channels) {
3320                    case 1: s = _("Mono"); break;
3321                    case 2: s = _("Stereo"); break;
3322                    default:
3323                        s = ToString(sample->Channels) + _(" audio channels");
3324                        break;
3325                }
3326                s += " " + ToString(sample->BitDepth) + " Bits";
3327                s += " " + ToString(sample->SamplesPerSecond/1000) + "."
3328                         + ToString((sample->SamplesPerSecond%1000)/100) + " kHz";
3329            } else {
3330                s = _("No sample assigned to this dimension region.");
3331            }
3332            eSampleFormatInfo.text.set_text(s);
3333        }
3334        // generate sample's memory address pointer string
3335        {
3336            Glib::ustring s;
3337            if (sample) {
3338                char buf[64] = {};
3339                snprintf(buf, sizeof(buf), "%p", sample);
3340                s = buf;
3341            } else {
3342                s = "---";
3343            }
3344            eSampleID.text.set_text(s);
3345        }
3346        // generate raw wave form data CRC-32 checksum string
3347        {
3348            Glib::ustring s = "---";
3349            if (sample) {
3350                char buf[64] = {};
3351                snprintf(buf, sizeof(buf), "%x", sample->GetWaveDataCRC32Checksum());
3352                s = buf;
3353            }
3354            eChecksum.text.set_text(s);
3355        }
3356        eLoopsCount.set_value(sample->Loops);
3357        eLoopStart.set_value(sample->LoopStart);
3358        eLoopLength.set_value(sample->LoopSize);
3359        eLoopType.set_value(sample->LoopType);
3360        eLoopPlayCount.set_value(sample->LoopPlayCount);
3361        // tab 2
3362        eName2.set_value(sample->pInfo->Name);
3363        eCreationDate.set_value(sample->pInfo->CreationDate);
3364        eComments.set_value(sample->pInfo->Comments);
3365        eProduct.set_value(sample->pInfo->Product);
3366        eCopyright.set_value(sample->pInfo->Copyright);
3367        eArtists.set_value(sample->pInfo->Artists);
3368        eGenre.set_value(sample->pInfo->Genre);
3369        eKeywords.set_value(sample->pInfo->Keywords);
3370        eEngineer.set_value(sample->pInfo->Engineer);
3371        eTechnician.set_value(sample->pInfo->Technician);
3372        eSoftware.set_value(sample->pInfo->Software);
3373        eMedium.set_value(sample->pInfo->Medium);
3374        eSource.set_value(sample->pInfo->Source);
3375        eSourceForm.set_value(sample->pInfo->SourceForm);
3376        eCommissioned.set_value(sample->pInfo->Commissioned);
3377        eSubject.set_value(sample->pInfo->Subject);
3378    
3379        update_model--;
3380    }
3381    
3382    void SampleProps::set_Name(const gig::String& name)
3383    {
3384        m->pInfo->Name = name;
3385    }
3386    
3387    void SampleProps::update_name()
3388    {
3389        update_model++;
3390        eName.set_value(m->pInfo->Name);
3391      update_model--;      update_model--;
3392  }  }
3393    
# Line 2074  void MainWindow::updateSampleRefCountMap Line 3421  void MainWindow::updateSampleRefCountMap
3421      }      }
3422  }  }
3423    
3424    bool MainWindow::onQueryTreeViewTooltip(int x, int y, bool keyboardTip, const Glib::RefPtr<Gtk::Tooltip>& tooltip) {
3425        Gtk::TreeModel::iterator iter;
3426        if (!m_TreeView.get_tooltip_context_iter(x, y, keyboardTip, iter)) {
3427            return false;
3428        }
3429        Gtk::TreeModel::Path path(iter);
3430        Gtk::TreeModel::Row row = *iter;
3431        Gtk::TreeViewColumn* pointedColumn = NULL;
3432        // resolve the precise table column the mouse points to
3433        {
3434            Gtk::TreeModel::Path path; // unused
3435            int cellX, cellY; // unused
3436            m_TreeView.get_path_at_pos(x, y, path, pointedColumn, cellX, cellY);
3437        }
3438        Gtk::TreeViewColumn* scriptsColumn = m_TreeView.get_column(2);
3439        if (pointedColumn == scriptsColumn) { // mouse hovers scripts column ...
3440            // show the script(s) assigned to the hovered instrument as tooltip
3441            tooltip->set_markup( row[m_Columns.m_col_tooltip] );
3442            m_TreeView.set_tooltip_cell(tooltip, &path, scriptsColumn, NULL);
3443        } else {
3444            // if beginners' tooltips is disabled then don't show the following one
3445            if (!Settings::singleton()->showTooltips)
3446                return false;
3447            // yeah, a beginners tooltip
3448            tooltip->set_text(_(
3449                "Right click here for actions on instruments & MIDI Rules. "
3450                "Drag & drop to change the order of instruments."
3451            ));
3452            m_TreeView.set_tooltip_cell(tooltip, &path, pointedColumn, NULL);
3453        }
3454        return true;
3455    }
3456    
3457    static Glib::ustring scriptTooltipFor(gig::Instrument* instrument, int index) {
3458        Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3459        const int iScriptSlots = instrument->ScriptSlotCount();
3460        Glib::ustring tooltip = "<u>(" + ToString(index) + ") “"  + name + "”</u>\n\n";
3461        if (!iScriptSlots)
3462            tooltip += "<span foreground='red'><i>No script assigned</i></span>";
3463        else {
3464            for (int i = 0; i < iScriptSlots; ++i) {
3465                tooltip += "• " + ToString(i+1) + ". Script: “<span foreground='#46DEFF'><b>" +
3466                           instrument->GetScriptOfSlot(i)->Name + "</b></span>”";
3467                if (i + 1 < iScriptSlots) tooltip += "\n\n";
3468            }
3469        }
3470        return tooltip;
3471    }
3472    
3473  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
3474  {  {
3475      file = 0;      file = 0;
# Line 2087  void MainWindow::load_gig(gig::File* gig Line 3483  void MainWindow::load_gig(gig::File* gig
3483      file_has_name = filename;      file_has_name = filename;
3484      file_is_changed = false;      file_is_changed = false;
3485    
3486      propDialog.set_file(gig);      fileProps.set_file(gig);
     propDialog.set_info(gig->pInfo);  
3487    
3488      instrument_name_connection.block();      instrument_name_connection.block();
3489      int index = 0;      int index = 0;
3490      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
3491           instrument = gig->GetNextInstrument(), ++index) {           instrument = gig->GetNextInstrument(), ++index) {
3492          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3493            const int iScriptSlots = instrument->ScriptSlotCount();
3494    
3495          Gtk::TreeModel::iterator iter = m_refTreeModel->append();          Gtk::TreeModel::iterator iter = m_refTreeModel->append();
3496          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
3497          row[m_Columns.m_col_nr] = index;          row[m_Columns.m_col_nr] = index;
3498          row[m_Columns.m_col_name] = name;          row[m_Columns.m_col_name] = name;
3499          row[m_Columns.m_col_instr] = instrument;          row[m_Columns.m_col_instr] = instrument;
3500            row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3501            row[m_Columns.m_col_tooltip] = scriptTooltipFor(instrument, index);
3502    
3503    #if !USE_GTKMM_BUILDER
3504          add_instrument_to_menu(name);          add_instrument_to_menu(name);
3505    #endif
3506      }      }
3507      instrument_name_connection.unblock();      instrument_name_connection.unblock();
3508    #if !USE_GTKMM_BUILDER
3509      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();
3510    #endif
3511    
3512      updateSampleRefCountMap(gig);      updateSampleRefCountMap(gig);
3513    
# Line 2176  bool MainWindow::instr_props_set_instrum Line 3578  bool MainWindow::instr_props_set_instrum
3578          instrumentProps.hide();          instrumentProps.hide();
3579          return false;          return false;
3580      }      }
3581      Gtk::TreeModel::const_iterator it = m_refTreeModel->get_iter(rows[0]);      //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
3582        Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
3583      if (it) {      if (it) {
3584          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
3585          gig::Instrument* instrument = row[m_Columns.m_col_instr];          gig::Instrument* instrument = row[m_Columns.m_col_instr];
# Line 2193  bool MainWindow::instr_props_set_instrum Line 3596  bool MainWindow::instr_props_set_instrum
3596      } else {      } else {
3597          instrumentProps.hide();          instrumentProps.hide();
3598      }      }
3599      return it;      //NOTE: explicit boolean cast required for GTKMM4 development branch here
3600        return it ? true : false;
3601  }  }
3602    
3603  void MainWindow::show_instr_props()  void MainWindow::show_instr_props()
# Line 2212  void MainWindow::instr_name_changed_by_i Line 3616  void MainWindow::instr_name_changed_by_i
3616      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_Columns.m_col_instr];
3617      Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));      Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
3618      if (gigname != name) {      if (gigname != name) {
3619            Gtk::TreeModel::Path path(*it);
3620            const int index = path[0];
3621          row[m_Columns.m_col_name] = gigname;          row[m_Columns.m_col_name] = gigname;
3622            row[m_Columns.m_col_tooltip] = scriptTooltipFor(instrument, index);
3623        }
3624    }
3625    
3626    bool MainWindow::sample_props_set_sample()
3627    {
3628        sampleProps.signal_name_changed().clear();
3629    
3630        std::vector<Gtk::TreeModel::Path> rows = m_TreeViewSamples.get_selection()->get_selected_rows();
3631        if (rows.empty()) {
3632            sampleProps.hide();
3633            return false;
3634        }
3635        //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
3636        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
3637        if (it) {
3638            Gtk::TreeModel::Row row = *it;
3639            gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3640    
3641            sampleProps.set_sample(sample);
3642    
3643            // make sure sample tree is updated when user changes the
3644            // sample name in sample properties window
3645            sampleProps.signal_name_changed().connect(
3646                sigc::bind(
3647                    sigc::mem_fun(*this,
3648                        &MainWindow::sample_name_changed_by_sample_props
3649                    ), it
3650                )
3651            );
3652        } else {
3653            sampleProps.hide();
3654        }
3655        //NOTE: explicit boolean cast required for GTKMM4 development branch here
3656        return it ? true : false;
3657    }
3658    
3659    void MainWindow::show_sample_props()
3660    {
3661        if (sample_props_set_sample()) {
3662            sampleProps.show();
3663            sampleProps.deiconify();
3664        }
3665    }
3666    
3667    void MainWindow::sample_name_changed_by_sample_props(Gtk::TreeModel::iterator& it)
3668    {
3669        Gtk::TreeModel::Row row = *it;
3670        Glib::ustring name = row[m_SamplesModel.m_col_name];
3671    
3672        gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3673        Glib::ustring gigname(gig_to_utf8(sample->pInfo->Name));
3674        if (gigname != name) {
3675            Gtk::TreeModel::Path path(*it);
3676            row[m_SamplesModel.m_col_name] = gigname;
3677      }      }
3678  }  }
3679    
# Line 2239  void MainWindow::show_script_slots() { Line 3700  void MainWindow::show_script_slots() {
3700    
3701      ScriptSlots* window = new ScriptSlots;      ScriptSlots* window = new ScriptSlots;
3702      window->setInstrument(instrument);      window->setInstrument(instrument);
3703        window->signal_script_slots_changed().connect(
3704            sigc::mem_fun(*this, &MainWindow::onScriptSlotsModified)
3705        );
3706      //window->reparent(*this);      //window->reparent(*this);
3707      window->show();      window->show();
3708  }  }
3709    
3710    void MainWindow::onScriptSlotsModified(gig::Instrument* pInstrument) {
3711        if (!pInstrument) return;
3712        const int iScriptSlots = pInstrument->ScriptSlotCount();
3713    
3714        //NOTE: This is a big mess! Sometimes GTK requires m_TreeView.get_model(), here we need m_refTreeModelFilter->get_model(), otherwise accessing children below causes an error!
3715        //Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
3716        Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();
3717    
3718        for (int i = 0; i < model->children().size(); ++i) {
3719            Gtk::TreeModel::Row row = model->children()[i];
3720            if (row[m_Columns.m_col_instr] != pInstrument) continue;
3721            row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3722            row[m_Columns.m_col_tooltip] = scriptTooltipFor(pInstrument, i);
3723            break;
3724        }
3725    
3726        // causes the sampler to reload the instrument with the new script
3727        on_sel_change();
3728    }
3729    
3730    void MainWindow::assignScript(gig::Script* pScript) {
3731        if (!pScript) {
3732            printf("assignScript() : !script\n");
3733            return;
3734        }
3735        printf("assignScript('%s')\n", pScript->Name.c_str());
3736    
3737        gig::Instrument* pInstrument = get_instrument();
3738        if (!pInstrument) {
3739            printf("!instrument\n");
3740            return;
3741        }
3742    
3743        pInstrument->AddScriptSlot(pScript);
3744    
3745        onScriptSlotsModified(pInstrument);
3746    }
3747    
3748    void MainWindow::dropAllScriptSlots() {
3749        gig::Instrument* pInstrument = get_instrument();
3750        if (!pInstrument) {
3751            printf("!instrument\n");
3752            return;
3753        }
3754    
3755        const int iScriptSlots = pInstrument->ScriptSlotCount();
3756        for (int i = iScriptSlots - 1; i >= 0; --i)
3757            pInstrument->RemoveScriptSlot(i);
3758    
3759        onScriptSlotsModified(pInstrument);
3760    }
3761    
3762  void MainWindow::on_action_refresh_all() {  void MainWindow::on_action_refresh_all() {
3763      __refreshEntireGUI();      __refreshEntireGUI();
3764  }  }
3765    
3766  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
3767    #if USE_GLIB_ACTION
3768        bool active = false;
3769        m_actionToggleStatusBar->get_state(active);
3770        // for some reason toggle state does not change automatically
3771        active = !active;
3772        m_actionToggleStatusBar->change_state(active);
3773        if (active)
3774            m_StatusBar.show();
3775        else
3776            m_StatusBar.hide();
3777    #else
3778      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3779          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
3780      if (!item) {      if (!item) {
# Line 2256  void MainWindow::on_action_view_status_b Line 3783  void MainWindow::on_action_view_status_b
3783      }      }
3784      if (item->get_active()) m_StatusBar.show();      if (item->get_active()) m_StatusBar.show();
3785      else                    m_StatusBar.hide();      else                    m_StatusBar.hide();
3786    #endif
3787  }  }
3788    
3789  void MainWindow::on_auto_restore_win_dim() {  void MainWindow::on_auto_restore_win_dim() {
3790    #if USE_GLIB_ACTION
3791        bool active = false;
3792        m_actionToggleRestoreWinDim->get_state(active);
3793        // for some reason toggle state does not change automatically
3794        active = !active;
3795        m_actionToggleRestoreWinDim->change_state(active);
3796        Settings::singleton()->autoRestoreWindowDimension = active;
3797    #else
3798      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3799          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
3800      if (!item) {      if (!item) {
# Line 2266  void MainWindow::on_auto_restore_win_dim Line 3802  void MainWindow::on_auto_restore_win_dim
3802          return;          return;
3803      }      }
3804      Settings::singleton()->autoRestoreWindowDimension = item->get_active();      Settings::singleton()->autoRestoreWindowDimension = item->get_active();
3805    #endif
3806    }
3807    
3808    void MainWindow::on_instr_double_click_opens_props() {
3809    #if USE_GLIB_ACTION
3810        bool active = false;
3811        m_actionInstrDoubleClickOpensProps->get_state(active);
3812        // for some reason toggle state does not change automatically
3813        active = !active;
3814        m_actionInstrDoubleClickOpensProps->change_state(active);
3815        Settings::singleton()->instrumentDoubleClickOpensProps = active;
3816    #else
3817        Gtk::CheckMenuItem* item =
3818            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/OpenInstrPropsByDoubleClick"));
3819        if (!item) {
3820            std::cerr << "/MenuBar/MenuView/OpenInstrPropsByDoubleClick == NULL\n";
3821            return;
3822        }
3823        Settings::singleton()->instrumentDoubleClickOpensProps = item->get_active();
3824    #endif
3825  }  }
3826    
3827  void MainWindow::on_save_with_temporary_file() {  void MainWindow::on_save_with_temporary_file() {
3828    #if USE_GLIB_ACTION
3829        bool active = false;
3830        m_actionToggleSaveWithTempFile->get_state(active);
3831        // for some reason toggle state does not change automatically
3832        active = !active;
3833        m_actionToggleSaveWithTempFile->change_state(active);
3834        Settings::singleton()->saveWithTemporaryFile = active;
3835    #else
3836      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3837          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));
3838      if (!item) {      if (!item) {
# Line 2276  void MainWindow::on_save_with_temporary_ Line 3840  void MainWindow::on_save_with_temporary_
3840          return;          return;
3841      }      }
3842      Settings::singleton()->saveWithTemporaryFile = item->get_active();      Settings::singleton()->saveWithTemporaryFile = item->get_active();
3843    #endif
3844  }  }
3845    
3846  bool MainWindow::is_copy_samples_unity_note_enabled() const {  bool MainWindow::is_copy_samples_unity_note_enabled() const {
3847    #if USE_GLIB_ACTION
3848        bool active = false;
3849        m_actionToggleCopySampleUnity->get_state(active);
3850        return active;
3851    #else
3852      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3853          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
3854      if (!item) {      if (!item) {
# Line 2286  bool MainWindow::is_copy_samples_unity_n Line 3856  bool MainWindow::is_copy_samples_unity_n
3856          return true;          return true;
3857      }      }
3858      return item->get_active();      return item->get_active();
3859    #endif
3860  }  }
3861    
3862  bool MainWindow::is_copy_samples_fine_tune_enabled() const {  bool MainWindow::is_copy_samples_fine_tune_enabled() const {
3863    #if USE_GLIB_ACTION
3864        bool active = false;
3865        m_actionToggleCopySampleTune->get_state(active);
3866        return active;
3867    #else
3868      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3869          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
3870      if (!item) {      if (!item) {
# Line 2296  bool MainWindow::is_copy_samples_fine_tu Line 3872  bool MainWindow::is_copy_samples_fine_tu
3872          return true;          return true;
3873      }      }
3874      return item->get_active();      return item->get_active();
3875    #endif
3876  }  }
3877    
3878  bool MainWindow::is_copy_samples_loop_enabled() const {  bool MainWindow::is_copy_samples_loop_enabled() const {
3879    #if USE_GLIB_ACTION
3880        bool active = false;
3881        m_actionToggleCopySampleLoop->get_state(active);
3882        return active;
3883    #else
3884      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3885          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
3886      if (!item) {      if (!item) {
# Line 2306  bool MainWindow::is_copy_samples_loop_en Line 3888  bool MainWindow::is_copy_samples_loop_en
3888          return true;          return true;
3889      }      }
3890      return item->get_active();      return item->get_active();
3891    #endif
3892  }  }
3893    
3894  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
3895  {  bool MainWindow::on_button_release(Gdk::EventButton& _button) {
3896        GdkEventButton* button = _button.gobj();
3897    #else
3898    void MainWindow::on_button_release(GdkEventButton* button) {
3899    #endif
3900      if (button->type == GDK_2BUTTON_PRESS) {      if (button->type == GDK_2BUTTON_PRESS) {
3901          show_instr_props();          if (Settings::singleton()->instrumentDoubleClickOpensProps)
3902                show_instr_props();
3903      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
3904          // gig v2 files have no midi rules          // gig v2 files have no midi rules
3905          const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);          const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
3906    #if USE_GTKMM_BUILDER
3907            m_actionMIDIRules->property_enabled() = bEnabled;
3908    #else
3909          static_cast<Gtk::MenuItem*>(          static_cast<Gtk::MenuItem*>(
3910              uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(              uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(
3911                  bEnabled                  bEnabled
# Line 2323  void MainWindow::on_button_release(GdkEv Line 3914  void MainWindow::on_button_release(GdkEv
3914              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
3915                  bEnabled                  bEnabled
3916              );              );
3917    #endif
3918          popup_menu->popup(button->button, button->time);          popup_menu->popup(button->button, button->time);
3919      }      }
3920    #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
3921        return false;
3922    #endif
3923  }  }
3924    
3925    #if !USE_GTKMM_BUILDER
3926  void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {  void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {
3927      if (item->get_active()) {      if (item->get_active()) {
3928          const std::vector<Gtk::Widget*> children =          const std::vector<Gtk::Widget*> children =
# Line 2341  void MainWindow::on_instrument_selection Line 3937  void MainWindow::on_instrument_selection
3937          }          }
3938      }      }
3939  }  }
3940    #endif
3941    
3942    void MainWindow::on_action_move_instr() {
3943        gig::Instrument* instr = get_instrument();
3944        if (!instr) return;
3945    
3946        int currentIndex = getIndexOf(instr);
3947    
3948        Gtk::Dialog dialog(_("Move Instrument"), true /*modal*/);
3949    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
3950        Gtk::Adjustment adjustment(
3951            currentIndex,
3952            0 /*min*/, file->CountInstruments() - 1 /*max*/
3953        );
3954        Gtk::SpinButton spinBox(adjustment);
3955    #else
3956        Gtk::SpinButton spinBox(
3957            Gtk::Adjustment::create(
3958                currentIndex,
3959                0 /*min*/, file->CountInstruments() - 1 /*max*/
3960            )
3961        );
3962    #endif
3963    #if USE_GTKMM_BOX
3964        dialog.get_content_area()->pack_start(spinBox);
3965    #else
3966        dialog.get_vbox()->pack_start(spinBox);
3967    #endif
3968    #if HAS_GTKMM_STOCK
3969        Gtk::Button* okButton = dialog.add_button(Gtk::Stock::OK, 0);
3970        dialog.add_button(Gtk::Stock::CANCEL, 1);
3971    #else
3972        Gtk::Button* okButton = dialog.add_button(_("_OK"), 0);
3973        dialog.add_button(_("_Cancel"), 1);
3974    #endif
3975        okButton->set_sensitive(false);
3976        // show the dialog at a reasonable screen position
3977        dialog.set_position(Gtk::WIN_POS_MOUSE);
3978        // only enable the 'OK' button if entered new index is not instrument's
3979        // current index already
3980        spinBox.signal_value_changed().connect([&]{
3981            okButton->set_sensitive( spinBox.get_value_as_int() != currentIndex );
3982        });
3983        // usability acceleration: if user hits enter key on the text entry field
3984        // then auto trigger the 'OK' button
3985        spinBox.signal_activate().connect([&]{
3986            if (okButton->get_sensitive())
3987                okButton->clicked();
3988        });
3989    #if HAS_GTKMM_SHOW_ALL_CHILDREN
3990        dialog.show_all_children();
3991    #endif
3992        if (!dialog.run()) { // 'OK' selected ...
3993            int newIndex = spinBox.get_value_as_int();
3994            printf("MOVE TO %d\n", newIndex);
3995            gig::Instrument* dst = file->GetInstrument(newIndex);
3996            instr->MoveTo(dst);
3997            __refreshEntireGUI();
3998            select_instrument(instr);
3999        }
4000    }
4001    
4002  void MainWindow::select_instrument(gig::Instrument* instrument) {  void MainWindow::select_instrument(gig::Instrument* instrument) {
4003      if (!instrument) return;      if (!instrument) return;
4004    
4005        //NOTE: This is a big mess! Sometimes GTK requires m_refTreeModelFilter->get_model(), here we need m_TreeView.get_model(), otherwise treeview selection below causes an error!
4006      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
4007        //Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();
4008    
4009      for (int i = 0; i < model->children().size(); ++i) {      for (int i = 0; i < model->children().size(); ++i) {
4010          Gtk::TreeModel::Row row = model->children()[i];          Gtk::TreeModel::Row row = model->children()[i];
4011          if (row[m_Columns.m_col_instr] == instrument) {          if (row[m_Columns.m_col_instr] == instrument) {
4012              // select and show the respective instrument in the list view              // select and show the respective instrument in the list view
4013              show_intruments_tab();              show_intruments_tab();
4014              m_TreeView.get_selection()->unselect_all();              m_TreeView.get_selection()->unselect_all();
4015                
4016    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4017                auto iterSel = model->children()[i].get_iter();
4018                m_TreeView.get_selection()->select(iterSel);
4019    #else
4020              m_TreeView.get_selection()->select(model->children()[i]);              m_TreeView.get_selection()->select(model->children()[i]);
4021    #endif
4022              std::vector<Gtk::TreeModel::Path> rows =              std::vector<Gtk::TreeModel::Path> rows =
4023                  m_TreeView.get_selection()->get_selected_rows();                  m_TreeView.get_selection()->get_selected_rows();
4024              if (!rows.empty())              if (!rows.empty())
# Line 2367  bool MainWindow::select_dimension_region Line 4033  bool MainWindow::select_dimension_region
4033      gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();      gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();
4034      gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();      gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();
4035    
4036        //NOTE: This is a big mess! Sometimes GTK requires m_refTreeModelFilter->get_model(), here we need m_TreeView.get_model(), otherwise treeview selection below causes an error!
4037      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
4038        //Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();
4039    
4040      for (int i = 0; i < model->children().size(); ++i) {      for (int i = 0; i < model->children().size(); ++i) {
4041          Gtk::TreeModel::Row row = model->children()[i];          Gtk::TreeModel::Row row = model->children()[i];
4042          if (row[m_Columns.m_col_instr] == pInstrument) {          if (row[m_Columns.m_col_instr] == pInstrument) {
4043              // select and show the respective instrument in the list view              // select and show the respective instrument in the list view
4044              show_intruments_tab();              show_intruments_tab();
4045              m_TreeView.get_selection()->unselect_all();              m_TreeView.get_selection()->unselect_all();
4046    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4047                auto iterSel = model->children()[i].get_iter();
4048                m_TreeView.get_selection()->select(iterSel);
4049    #else
4050              m_TreeView.get_selection()->select(model->children()[i]);              m_TreeView.get_selection()->select(model->children()[i]);
4051    #endif
4052              std::vector<Gtk::TreeModel::Path> rows =              std::vector<Gtk::TreeModel::Path> rows =
4053                  m_TreeView.get_selection()->get_selected_rows();                  m_TreeView.get_selection()->get_selected_rows();
4054              if (!rows.empty())              if (!rows.empty())
# Line 2405  void MainWindow::select_sample(gig::Samp Line 4079  void MainWindow::select_sample(gig::Samp
4079              if (rowSample[m_SamplesModel.m_col_sample] == sample) {              if (rowSample[m_SamplesModel.m_col_sample] == sample) {
4080                  show_samples_tab();                  show_samples_tab();
4081                  m_TreeViewSamples.get_selection()->unselect_all();                  m_TreeViewSamples.get_selection()->unselect_all();
4082    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4083                    auto iterSel = rowGroup.children()[s].get_iter();
4084                    m_TreeViewSamples.get_selection()->select(iterSel);
4085    #else
4086                  m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);                  m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);
4087    #endif
4088                  std::vector<Gtk::TreeModel::Path> rows =                  std::vector<Gtk::TreeModel::Path> rows =
4089                      m_TreeViewSamples.get_selection()->get_selected_rows();                      m_TreeViewSamples.get_selection()->get_selected_rows();
4090                  if (rows.empty()) return;                  if (rows.empty()) return;
# Line 2416  void MainWindow::select_sample(gig::Samp Line 4095  void MainWindow::select_sample(gig::Samp
4095      }      }
4096  }  }
4097    
4098    #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
4099    bool MainWindow::on_sample_treeview_button_release(Gdk::EventButton& _button) {
4100        GdkEventButton* button = _button.gobj();
4101    #else
4102  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
4103    #endif
4104      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
4105          // by default if Ctrl keys is pressed down, then a mouse right-click          // by default if Ctrl keys is pressed down, then a mouse right-click
4106          // does not select the respective row, so we must assure this          // does not select the respective row, so we must assure this
# Line 2437  void MainWindow::on_sample_treeview_butt Line 4121  void MainWindow::on_sample_treeview_butt
4121              }              }
4122          }*/          }*/
4123    
4124    #if !USE_GTKMM_BUILDER
4125          Gtk::Menu* sample_popup =          Gtk::Menu* sample_popup =
4126              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));
4127    #endif
4128    
4129          // update enabled/disabled state of sample popup items          // update enabled/disabled state of sample popup items
4130          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
4131          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
# Line 2453  void MainWindow::on_sample_treeview_butt Line 4140  void MainWindow::on_sample_treeview_butt
4140              if (row[m_SamplesModel.m_col_sample]) nSamples++;              if (row[m_SamplesModel.m_col_sample]) nSamples++;
4141          }          }
4142    
4143    #if USE_GTKMM_BUILDER
4144            m_actionSampleProperties->property_enabled() = (n == 1);
4145            m_actionAddSample->property_enabled() = (n);
4146            m_actionAddSampleGroup->property_enabled() = (file);
4147            m_actionViewSampleRefs->property_enabled() = (nSamples == 1);
4148            m_actionRemoveSample->property_enabled() = (n);
4149            m_actionReplaceSample->property_enabled() = (nSamples == 1);
4150    #else
4151          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
4152              set_sensitive(n == 1);              set_sensitive(n == 1);
4153          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
# Line 2463  void MainWindow::on_sample_treeview_butt Line 4158  void MainWindow::on_sample_treeview_butt
4158              set_sensitive(nSamples == 1);              set_sensitive(nSamples == 1);
4159          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
4160              set_sensitive(n);              set_sensitive(n);
4161    #endif
4162          // show sample popup          // show sample popup
4163          sample_popup->popup(button->button, button->time);          sample_popup->popup(button->button, button->time);
4164    
4165    #if !USE_GTKMM_BUILDER
4166          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->
4167              set_sensitive(n == 1);              set_sensitive(n == 1);
4168          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->
# Line 2476  void MainWindow::on_sample_treeview_butt Line 4173  void MainWindow::on_sample_treeview_butt
4173              set_sensitive(nSamples == 1);              set_sensitive(nSamples == 1);
4174          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->
4175              set_sensitive(n);              set_sensitive(n);
4176    #endif
4177      }      }
4178        
4179    #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
4180        return false;
4181    #endif
4182  }  }
4183    
4184    #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
4185    bool MainWindow::on_script_treeview_button_release(Gdk::EventButton& _button) {
4186        GdkEventButton* button = _button.gobj();
4187    #else
4188  void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {
4189    #endif
4190      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
4191    #if !USE_GTKMM_BUILDER
4192          Gtk::Menu* script_popup =          Gtk::Menu* script_popup =
4193              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));
4194    #endif
4195          // update enabled/disabled state of sample popup items          // update enabled/disabled state of sample popup items
4196          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
4197          Gtk::TreeModel::iterator it = sel->get_selected();          Gtk::TreeModel::iterator it = sel->get_selected();
# Line 2493  void MainWindow::on_script_treeview_butt Line 4202  void MainWindow::on_script_treeview_butt
4202              group_selected  = row[m_ScriptsModel.m_col_group];              group_selected  = row[m_ScriptsModel.m_col_group];
4203              script_selected = row[m_ScriptsModel.m_col_script];              script_selected = row[m_ScriptsModel.m_col_script];
4204          }          }
4205    #if USE_GTKMM_BUILDER
4206            m_actionAddScript->property_enabled() = (group_selected || script_selected);
4207            m_actionAddScriptGroup->property_enabled() = (file);
4208            m_actionEditScript->property_enabled() = (script_selected);
4209            m_actionRemoveScript->property_enabled() = (group_selected || script_selected);
4210    #else
4211          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->
4212              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
4213          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->
# Line 2501  void MainWindow::on_script_treeview_butt Line 4216  void MainWindow::on_script_treeview_butt
4216              set_sensitive(script_selected);                  set_sensitive(script_selected);    
4217          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->
4218              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
4219    #endif
4220          // show sample popup          // show sample popup
4221          script_popup->popup(button->button, button->time);          script_popup->popup(button->button, button->time);
4222    
4223    #if !USE_GTKMM_BUILDER
4224          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->
4225              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
4226          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->
# Line 2512  void MainWindow::on_script_treeview_butt Line 4229  void MainWindow::on_script_treeview_butt
4229              set_sensitive(script_selected);                  set_sensitive(script_selected);    
4230          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->
4231              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
4232    #endif
4233        }
4234    #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
4235        return false;
4236    #endif
4237    }
4238    
4239    void MainWindow::updateScriptListOfMenu() {
4240        // remove all entries from "Assign Script" menu
4241        {
4242            const std::vector<Gtk::Widget*> children = assign_scripts_menu->get_children();
4243            for (int i = 0; i < children.size(); ++i) {
4244                Gtk::Widget* child = children[i];
4245                assign_scripts_menu->remove(*child);
4246                delete child;
4247            }
4248        }
4249    
4250        int iTotalScripts = 0;
4251    
4252        if (!file) goto noScripts;
4253    
4254        // add all configured macros as menu items to the "Macro" menu
4255        for (int iGroup = 0; file->GetScriptGroup(iGroup); ++iGroup) {
4256            gig::ScriptGroup* pGroup = file->GetScriptGroup(iGroup);
4257            for (int iScript = 0; pGroup->GetScript(iScript); ++iScript, ++iTotalScripts) {
4258                gig::Script* pScript = pGroup->GetScript(iScript);
4259                std::string name = pScript->Name;
4260    
4261                Gtk::MenuItem* item = new Gtk::MenuItem(name);
4262                item->signal_activate().connect(
4263                    sigc::bind(
4264                        sigc::mem_fun(*this, &MainWindow::assignScript), pScript
4265                    )
4266                );
4267                assign_scripts_menu->append(*item);
4268                item->set_accel_path("<Scripts>/script_" + ToString(iTotalScripts));
4269                //item->set_tooltip_text(comment);
4270            }
4271        }
4272    
4273        noScripts:
4274    
4275        // if there are no macros configured at all, then show a dummy entry instead
4276        if (!iTotalScripts) {
4277            Gtk::MenuItem* item = new Gtk::MenuItem(_("No Scripts"));
4278            item->set_sensitive(false);
4279            assign_scripts_menu->append(*item);
4280        }
4281    
4282        // add separator line to menu
4283        assign_scripts_menu->append(*new Gtk::SeparatorMenuItem);
4284    
4285        {
4286            Gtk::MenuItem* item = new Gtk::MenuItem(_("Unassign All Scripts"));
4287            item->signal_activate().connect(
4288                sigc::mem_fun(*this, &MainWindow::dropAllScriptSlots)
4289            );
4290            assign_scripts_menu->append(*item);
4291            item->set_accel_path("<Scripts>/DropAllScriptSlots");
4292      }      }
4293    
4294    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4295        assign_scripts_menu->show_all_children();
4296    #endif
4297  }  }
4298    
4299    #if !USE_GTKMM_BUILDER
4300  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
4301      const Glib::ustring& name, int position) {      const Glib::ustring& name, int position) {
4302    
# Line 2538  Gtk::RadioMenuItem* MainWindow::add_inst Line 4320  Gtk::RadioMenuItem* MainWindow::add_inst
4320              item));              item));
4321      return item;      return item;
4322  }  }
4323    #endif
4324    
4325    #if !USE_GTKMM_BUILDER
4326  void MainWindow::remove_instrument_from_menu(int index) {  void MainWindow::remove_instrument_from_menu(int index) {
4327      const std::vector<Gtk::Widget*> children =      const std::vector<Gtk::Widget*> children =
4328          instrument_menu->get_children();          instrument_menu->get_children();
# Line 2546  void MainWindow::remove_instrument_from_ Line 4330  void MainWindow::remove_instrument_from_
4330      instrument_menu->remove(*child);      instrument_menu->remove(*child);
4331      delete child;      delete child;
4332  }  }
4333    #endif
4334    
4335  void MainWindow::add_instrument(gig::Instrument* instrument) {  void MainWindow::add_instrument(gig::Instrument* instrument) {
4336      const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));      const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
# Line 2554  void MainWindow::add_instrument(gig::Ins Line 4339  void MainWindow::add_instrument(gig::Ins
4339      instrument_name_connection.block();      instrument_name_connection.block();
4340      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
4341      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
4342      rowInstr[m_Columns.m_col_nr] = m_refTreeModel->children().size() - 1;      const int index = m_refTreeModel->children().size() - 1;
4343        rowInstr[m_Columns.m_col_nr] = index;
4344      rowInstr[m_Columns.m_col_name] = name;      rowInstr[m_Columns.m_col_name] = name;
4345      rowInstr[m_Columns.m_col_instr] = instrument;      rowInstr[m_Columns.m_col_instr] = instrument;
4346        rowInstr[m_Columns.m_col_scripts] = "";
4347        rowInstr[m_Columns.m_col_tooltip] = scriptTooltipFor(instrument, index);
4348      instrument_name_connection.unblock();      instrument_name_connection.unblock();
4349    
4350    #if !USE_GTKMM_BUILDER
4351      add_instrument_to_menu(name);      add_instrument_to_menu(name);
4352    #endif
4353      m_TreeView.get_selection()->select(iterInstr);      select_instrument(instrument);
   
4354      file_changed();      file_changed();
4355  }  }
4356    
# Line 2630  void MainWindow::on_action_remove_instru Line 4418  void MainWindow::on_action_remove_instru
4418              if (instr) file->DeleteInstrument(instr);              if (instr) file->DeleteInstrument(instr);
4419              file_changed();              file_changed();
4420    
4421    #if !USE_GTKMM_BUILDER
4422              remove_instrument_from_menu(index);              remove_instrument_from_menu(index);
4423    #endif
4424    
4425              // remove row from instruments tree view              // remove row from instruments tree view
4426              m_refTreeModel->erase(it);              m_refTreeModel->erase(it);
# Line 2641  void MainWindow::on_action_remove_instru Line 4431  void MainWindow::on_action_remove_instru
4431                       it != m_refTreeModel->children().end(); ++it, ++index)                       it != m_refTreeModel->children().end(); ++it, ++index)
4432                  {                  {
4433                      Gtk::TreeModel::Row row = *it;                      Gtk::TreeModel::Row row = *it;
4434                        gig::Instrument* instrument = row[m_Columns.m_col_instr];
4435                      row[m_Columns.m_col_nr] = index;                      row[m_Columns.m_col_nr] = index;
4436                        row[m_Columns.m_col_tooltip] = scriptTooltipFor(instrument, index);
4437                  }                  }
4438              }              }
4439    
# Line 2671  void MainWindow::on_action_remove_instru Line 4463  void MainWindow::on_action_remove_instru
4463  }  }
4464    
4465  void MainWindow::on_action_sample_properties() {  void MainWindow::on_action_sample_properties() {
4466      //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();  
4467  }  }
4468    
4469  void MainWindow::on_action_add_script_group() {  void MainWindow::on_action_add_script_group() {
# Line 2845  void MainWindow::add_or_replace_sample(b Line 4633  void MainWindow::add_or_replace_sample(b
4633    
4634      // show 'browse for file' dialog      // show 'browse for file' dialog
4635      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));
4636    #if HAS_GTKMM_STOCK
4637      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4638      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
4639    #else
4640        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4641        dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
4642    #endif
4643      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
4644    
4645      // matches all file types supported by libsndfile      // matches all file types supported by libsndfile
# Line 2889  void MainWindow::add_or_replace_sample(b Line 4682  void MainWindow::add_or_replace_sample(b
4682          dialog.set_current_folder(current_sample_dir);          dialog.set_current_folder(current_sample_dir);
4683      }      }
4684      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
4685            dialog.hide();
4686          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
4687          Glib::ustring error_files;          Glib::ustring error_files;
4688          std::vector<std::string> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
4689          for (std::vector<std::string>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
4690               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
4691              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
4692              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file information
4693              SF_INFO info;              SF_INFO info;
4694              info.format = 0;              info.format = 0;
4695              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
# Line 3036  void MainWindow::on_action_replace_all_s Line 4830  void MainWindow::on_action_replace_all_s
4830      Gtk::Label description(str);      Gtk::Label description(str);
4831      description.set_line_wrap();      description.set_line_wrap();
4832  #endif  #endif
4833      Gtk::HBox entryArea;      HBox entryArea;
4834      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
4835      Gtk::Entry postfixEntryBox;      Gtk::Entry postfixEntryBox;
4836      postfixEntryBox.set_text(".wav");      postfixEntryBox.set_text(".wav");
4837      entryArea.pack_start(entryLabel);      entryArea.pack_start(entryLabel);
4838      entryArea.pack_start(postfixEntryBox);      entryArea.pack_start(postfixEntryBox);
4839    #if USE_GTKMM_BOX
4840        dialog.get_content_area()->pack_start(description, Gtk::PACK_SHRINK);
4841        dialog.get_content_area()->pack_start(entryArea, Gtk::PACK_SHRINK);
4842    #else
4843      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);
4844      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
4845    #endif
4846      description.show();      description.show();
4847    
4848    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4849      entryArea.show_all();      entryArea.show_all();
4850    #else
4851        entryArea.show();
4852    #endif
4853    
4854    #if HAS_GTKMM_STOCK
4855      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4856    #else
4857        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4858    #endif
4859      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
4860      dialog.set_select_multiple(false);      dialog.set_select_multiple(false);
4861      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 3054  void MainWindow::on_action_replace_all_s Line 4863  void MainWindow::on_action_replace_all_s
4863      }      }
4864      if (dialog.run() == Gtk::RESPONSE_OK)      if (dialog.run() == Gtk::RESPONSE_OK)
4865      {      {
4866            dialog.hide();
4867          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
4868          Glib::ustring error_files;          Glib::ustring error_files;
4869          std::string folder = dialog.get_filename();          std::string folder = dialog.get_filename();
# Line 3452  void MainWindow::sample_name_changed(con Line 5262  void MainWindow::sample_name_changed(con
5262              file_changed();              file_changed();
5263          }          }
5264      }      }
5265        // change name in the sample properties window
5266        if (sampleProps.get_sample() == sample && sample) {
5267            sampleProps.set_sample(sample);
5268        }
5269  }  }
5270    
5271  void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,
# Line 3504  void MainWindow::instrument_name_changed Line 5318  void MainWindow::instrument_name_changed
5318      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
5319      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_Columns.m_col_name];
5320    
5321    #if !USE_GTKMM_BUILDER
5322      // change name in instrument menu      // change name in instrument menu
5323      int index = path[0];      int index = path[0];
5324      const std::vector<Gtk::Widget*> children = instrument_menu->get_children();      const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
# Line 3516  void MainWindow::instrument_name_changed Line 5331  void MainWindow::instrument_name_changed
5331          item->set_active();          item->set_active();
5332  #endif  #endif
5333      }      }
5334    #endif
5335    
5336      // change name in gig      // change name in gig
5337      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_Columns.m_col_instr];
# Line 3532  void MainWindow::instrument_name_changed Line 5348  void MainWindow::instrument_name_changed
5348      }      }
5349  }  }
5350    
5351    bool MainWindow::instrument_row_visible(const Gtk::TreeModel::const_iterator& iter) {
5352        if (!iter)
5353            return true;
5354    
5355        Glib::ustring pattern = m_searchText.get_text().lowercase();
5356        trim(pattern);
5357        if (pattern.empty()) return true;
5358    
5359    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
5360        //HACK: on GTKMM4 development branch const_iterator cannot be easily converted to iterator, probably going to be fixed before final GTKMM4 release though.
5361        Gtk::TreeModel::Row row = **(Gtk::TreeModel::iterator*)(&iter);
5362    #else
5363        Gtk::TreeModel::Row row = *iter;
5364    #endif
5365        Glib::ustring name = row[m_Columns.m_col_name];
5366        name = name.lowercase();
5367    
5368        std::vector<Glib::ustring> tokens = Glib::Regex::split_simple(" ", pattern);
5369        for (int t = 0; t < tokens.size(); ++t)
5370            if (name.find(tokens[t]) == Glib::ustring::npos)
5371                return false;
5372    
5373        return true;
5374    }
5375    
5376  void MainWindow::on_action_combine_instruments() {  void MainWindow::on_action_combine_instruments() {
5377      CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);      CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);
5378    
5379        // take over selection from instruments list view for the combine dialog's
5380        // list view as pre-selection
5381        std::set<int> indeces;
5382        {
5383            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
5384            std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5385            for (int r = 0; r < rows.size(); ++r) {
5386                Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
5387                if (it) {
5388                    Gtk::TreeModel::Row row = *it;
5389                    int index = row[m_Columns.m_col_nr];
5390                    indeces.insert(index);
5391                }
5392            }
5393        }
5394        d->setSelectedInstruments(indeces);
5395    
5396    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5397      d->show_all();      d->show_all();
5398      d->resize(500, 400);  #else
5399        d->show();
5400    #endif
5401      d->run();      d->run();
5402      if (d->fileWasChanged()) {      if (d->fileWasChanged()) {
5403          // update GUI with new instrument just created          // update GUI with new instrument just created
# Line 3559  void MainWindow::on_action_view_referenc Line 5421  void MainWindow::on_action_view_referenc
5421      d->dimension_region_selected.connect(      d->dimension_region_selected.connect(
5422          sigc::mem_fun(*this, &MainWindow::select_dimension_region)          sigc::mem_fun(*this, &MainWindow::select_dimension_region)
5423      );      );
5424    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5425      d->show_all();      d->show_all();
5426    #else
5427        d->show();
5428    #endif
5429      d->resize(500, 400);      d->resize(500, 400);
5430      d->run();      d->run();
5431      delete d;      delete d;
# Line 3643  void MainWindow::mergeFiles(const std::v Line 5509  void MainWindow::mergeFiles(const std::v
5509              Glib::filename_display_basename(this->filename) + "' ...",              Glib::filename_display_basename(this->filename) + "' ...",
5510              *this              *this
5511          );          );
5512    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5513          progress_dialog->show_all();          progress_dialog->show_all();
5514    #else
5515            progress_dialog->show();
5516    #endif
5517          saver = new Saver(this->file); //FIXME: memory leak!          saver = new Saver(this->file); //FIXME: memory leak!
5518          saver->signal_progress().connect(          saver->signal_progress().connect(
5519              sigc::mem_fun(*this, &MainWindow::on_saver_progress));              sigc::mem_fun(*this, &MainWindow::on_saver_progress));
# Line 3670  void MainWindow::on_action_merge_files() Line 5540  void MainWindow::on_action_merge_files()
5540      }      }
5541    
5542      Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));      Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
5543    #if HAS_GTKMM_STOCK
5544      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
5545    #else
5546        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
5547    #endif
5548      dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);      dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
5549      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
5550  #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 3687  void MainWindow::on_action_merge_files() Line 5561  void MainWindow::on_action_merge_files()
5561      dialog.set_select_multiple(true);      dialog.set_select_multiple(true);
5562    
5563      // show warning in the file picker dialog      // show warning in the file picker dialog
5564      Gtk::HBox descriptionArea;      HBox descriptionArea;
5565      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
5566      Gtk::Image warningIcon;      Gtk::Image warningIcon;
5567      warningIcon.set_from_icon_name("dialog-warning",      warningIcon.set_from_icon_name("dialog-warning",
# Line 3710  void MainWindow::on_action_merge_files() Line 5584  void MainWindow::on_action_merge_files()
5584          "will accordingly be stored separately in the target .gig file!"          "will accordingly be stored separately in the target .gig file!"
5585      ));      ));
5586      descriptionArea.pack_start(description);      descriptionArea.pack_start(description);
5587    #if USE_GTKMM_BOX
5588    # warning No description area implemented for dialog on GTKMM 3
5589    #else
5590      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
5591    #endif
5592    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5593      descriptionArea.show_all();      descriptionArea.show_all();
5594    #else
5595        descriptionArea.show();
5596    #endif
5597    
5598      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
5599            dialog.hide();
5600    #ifdef GLIB_THREADS
5601          printf("on_action_merge_files self=%p\n",          printf("on_action_merge_files self=%p\n",
5602                 static_cast<void*>(Glib::Threads::Thread::self()));                 static_cast<void*>(Glib::Threads::Thread::self()));
5603    #else
5604            std::cout << "on_action_merge_files self=" <<
5605                std::this_thread::get_id() << "\n";
5606    #endif
5607          std::vector<std::string> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
5608    
5609          // merge the selected files to the currently open .gig file          // merge the selected files to the currently open .gig file
# Line 3747  void MainWindow::set_file_is_shared(bool Line 5635  void MainWindow::set_file_is_shared(bool
5635      }      }
5636    
5637      {      {
5638    #if USE_GTKMM_BUILDER
5639            m_actionToggleSyncSamplerSelection->property_enabled() = b;
5640    #else
5641          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
5642              uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));              uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
5643          if (item) item->set_sensitive(b);          if (item) item->set_sensitive(b);
5644    #endif
5645      }      }
5646  }  }
5647    
# Line 3797  void MainWindow::show_scripts_tab() { Line 5689  void MainWindow::show_scripts_tab() {
5689      m_TreeViewNotebook.set_current_page(2);      m_TreeViewNotebook.set_current_page(2);
5690  }  }
5691    
5692    void MainWindow::select_instrument_by_dir(int dir) {
5693        if (!file) return;
5694        gig::Instrument* pInstrument = get_instrument();
5695        if (!pInstrument) {
5696            select_instrument( file->GetInstrument(0) );
5697            return;
5698        }
5699        for (int i = 0; file->GetInstrument(i); ++i) {
5700            if (file->GetInstrument(i) == pInstrument) {
5701                select_instrument( file->GetInstrument(i + dir) );
5702                return;
5703            }
5704        }
5705    }
5706    
5707    void MainWindow::select_prev_instrument() {
5708        select_instrument_by_dir(-1);
5709    }
5710    
5711    void MainWindow::select_next_instrument() {
5712        select_instrument_by_dir(1);
5713    }
5714    
5715  void MainWindow::select_prev_region() {  void MainWindow::select_prev_region() {
5716      m_RegionChooser.select_prev_region();      m_RegionChooser.select_prev_region();
5717  }  }
# Line 3883  void MainWindow::updateClipboardPasteAva Line 5798  void MainWindow::updateClipboardPasteAva
5798    
5799  void MainWindow::updateClipboardCopyAvailable() {  void MainWindow::updateClipboardCopyAvailable() {
5800      bool bDimensionRegionCopyIsPossible = m_DimRegionChooser.get_main_dimregion();      bool bDimensionRegionCopyIsPossible = m_DimRegionChooser.get_main_dimregion();
5801    #if USE_GTKMM_BUILDER
5802        m_actionCopyDimRgn->property_enabled() = bDimensionRegionCopyIsPossible;
5803    #else
5804      static_cast<Gtk::MenuItem*>(      static_cast<Gtk::MenuItem*>(
5805          uiManager->get_widget("/MenuBar/MenuEdit/CopyDimRgn")          uiManager->get_widget("/MenuBar/MenuEdit/CopyDimRgn")
5806      )->set_sensitive(bDimensionRegionCopyIsPossible);      )->set_sensitive(bDimensionRegionCopyIsPossible);
5807    #endif
5808  }  }
5809    
5810    #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
5811    void MainWindow::on_clipboard_owner_change(Gdk::EventOwnerChange& event) {
5812    #else
5813  void MainWindow::on_clipboard_owner_change(GdkEventOwnerChange* event) {  void MainWindow::on_clipboard_owner_change(GdkEventOwnerChange* event) {
5814    #endif
5815      updateClipboardPasteAvailable();      updateClipboardPasteAvailable();
5816  }  }
5817    
# Line 3920  void MainWindow::applyMacro(Serializatio Line 5843  void MainWindow::applyMacro(Serializatio
5843           itDimReg != dimreg_edit.dimregs.end(); ++itDimReg)           itDimReg != dimreg_edit.dimregs.end(); ++itDimReg)
5844      {      {
5845          gig::DimensionRegion* pDimRgn = *itDimReg;          gig::DimensionRegion* pDimRgn = *itDimReg;
5846          dimreg_to_be_changed_signal.emit(pDimRgn);          DimRegionChangeGuard(this, pDimRgn);
5847          macro.deserialize(pDimRgn);          macro.deserialize(pDimRgn);
         dimreg_changed_signal.emit(pDimRgn);  
5848      }      }
5849      //region_changed()      //region_changed()
5850      file_changed();      file_changed();
# Line 3956  void MainWindow::on_clipboard_received_t Line 5878  void MainWindow::on_clipboard_received_t
5878          std::find(targets.begin(), targets.end(),          std::find(targets.begin(), targets.end(),
5879                    CLIPBOARD_DIMENSIONREGION_TARGET) != targets.end();                    CLIPBOARD_DIMENSIONREGION_TARGET) != targets.end();
5880    
5881    #if USE_GTKMM_BUILDER
5882        m_actionPasteDimRgn->property_enabled() = bDimensionRegionPasteIsPossible;
5883        m_actionAdjustClipboard->property_enabled() = bDimensionRegionPasteIsPossible;
5884    #else
5885      static_cast<Gtk::MenuItem*>(      static_cast<Gtk::MenuItem*>(
5886          uiManager->get_widget("/MenuBar/MenuEdit/PasteDimRgn")          uiManager->get_widget("/MenuBar/MenuEdit/PasteDimRgn")
5887      )->set_sensitive(bDimensionRegionPasteIsPossible);      )->set_sensitive(bDimensionRegionPasteIsPossible);
# Line 3963  void MainWindow::on_clipboard_received_t Line 5889  void MainWindow::on_clipboard_received_t
5889      static_cast<Gtk::MenuItem*>(      static_cast<Gtk::MenuItem*>(
5890          uiManager->get_widget("/MenuBar/MenuEdit/AdjustClipboard")          uiManager->get_widget("/MenuBar/MenuEdit/AdjustClipboard")
5891      )->set_sensitive(bDimensionRegionPasteIsPossible);      )->set_sensitive(bDimensionRegionPasteIsPossible);
5892    #endif
5893  }  }
5894    
5895  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {

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

  ViewVC Help
Powered by ViewVC