/[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 3134 by schoenebeck, Fri Apr 28 12:41:12 2017 UTC revision 3809 by schoenebeck, Fri Aug 14 11:35:58 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    #if HAS_GTKMM_STOCK
34    # include <gtkmm/stock.h>
35    #endif
36  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
37  #include <gtkmm/main.h>  #include <gtkmm/main.h>
38  #include <gtkmm/toggleaction.h>  #if GTKMM_MAJOR_VERSION < 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION < 89)
39    # include <gtkmm/toggleaction.h>
40    #endif
41    #include <gtkmm/accelmap.h>
42  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
43  #include "wrapLabel.hh"  #include "wrapLabel.hh"
44  #endif  #endif
# Line 46  Line 47 
47  #include "compat.h"  #include "compat.h"
48    
49  #include <stdio.h>  #include <stdio.h>
50  #include <sndfile.h>  #ifdef LIBSNDFILE_HEADER_FILE
51    # include LIBSNDFILE_HEADER_FILE(sndfile.h)
52    #else
53    # include <sndfile.h>
54    #endif
55  #include <assert.h>  #include <assert.h>
56    
57  #include "mainwindow.h"  #include "mainwindow.h"
# Line 58  Line 63 
63  #include "../../gfx/status_attached.xpm"  #include "../../gfx/status_attached.xpm"
64  #include "../../gfx/status_detached.xpm"  #include "../../gfx/status_detached.xpm"
65  #include "gfx/builtinpix.h"  #include "gfx/builtinpix.h"
66    #include "MacroEditor.h"
67    #include "MacrosSetup.h"
68    #if defined(__APPLE__)
69    # include "MacHelper.h"
70    #endif
71    
72    static const Gdk::ModifierType primaryModifierKey =
73        #if defined(__APPLE__)
74        Gdk::META_MASK; // Cmd key on Mac
75        #else
76        Gdk::CONTROL_MASK; // Ctrl key on all other OSs
77        #endif
78    
79  MainWindow::MainWindow() :  MainWindow::MainWindow() :
80      m_DimRegionChooser(*this),      m_DimRegionChooser(*this),
# Line 73  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(1010, -1);
100    #else
101            set_default_size(915, -1);
102    #endif
103            set_position(Gtk::WIN_POS_CENTER);
104        }
105    
106      add(m_VBox);      add(m_VBox);
107    
108      // Handle selection      // Handle selection
109      m_TreeView.get_selection()->signal_changed().connect(      m_TreeViewInstruments.get_selection()->signal_changed().connect(
110          sigc::mem_fun(*this, &MainWindow::on_sel_change));          sigc::mem_fun(*this, &MainWindow::on_sel_change));
111    
112      // m_TreeView.set_reorderable();      // m_TreeViewInstruments.set_reorderable();
113    
114      m_TreeView.signal_button_press_event().connect_notify(  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
115        m_TreeViewInstruments.signal_button_press_event().connect(
116            sigc::mem_fun(*this, &MainWindow::on_button_release));
117    #else
118        m_TreeViewInstruments.signal_button_press_event().connect_notify(
119          sigc::mem_fun(*this, &MainWindow::on_button_release));          sigc::mem_fun(*this, &MainWindow::on_button_release));
120    #endif
121    
122      // Add the TreeView tab, inside a ScrolledWindow, with the button underneath:      // Add the TreeView tab, inside a ScrolledWindow, with the button underneath:
123      m_ScrolledWindow.add(m_TreeView);      m_ScrolledWindow.add(m_TreeViewInstruments);
124  //    m_ScrolledWindow.set_size_request(200, 600);  //    m_ScrolledWindow.set_size_request(200, 600);
125      m_ScrolledWindow.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);      m_ScrolledWindow.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
126    
# Line 98  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 113  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 150  MainWindow::MainWindow() : Line 214  MainWindow::MainWindow() :
214      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
215      m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));      m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));
216    
217    #if USE_GLIB_ACTION
218        m_actionGroup = Gio::SimpleActionGroup::create();
219        m_actionGroup->add_action(
220            "New", sigc::mem_fun(*this, &MainWindow::on_action_file_new)
221        );
222        m_actionGroup->add_action(
223            "Open", sigc::mem_fun(*this, &MainWindow::on_action_file_open)
224        );
225        m_actionGroup->add_action(
226            "Save", sigc::mem_fun(*this, &MainWindow::on_action_file_save)
227        );
228        m_actionGroup->add_action(
229            "SaveAs", sigc::mem_fun(*this, &MainWindow::on_action_file_save_as)
230        );
231        m_actionGroup->add_action(
232            "Properties", sigc::mem_fun(*this, &MainWindow::on_action_file_properties)
233        );
234        m_actionGroup->add_action(
235            "InstrProperties", sigc::mem_fun(*this, &MainWindow::show_instr_props)
236        );
237        m_actionMIDIRules = m_actionGroup->add_action(
238            "MidiRules", sigc::mem_fun(*this, &MainWindow::show_midi_rules)
239        );
240        m_actionGroup->add_action(
241            "ScriptSlots", sigc::mem_fun(*this, &MainWindow::show_script_slots)
242        );
243        m_actionGroup->add_action(
244            "Quit", sigc::mem_fun(*this, &MainWindow::on_action_quit)
245        );
246        m_actionGroup->add_action(
247            "MenuSample", sigc::mem_fun(*this, &MainWindow::show_samples_tab)
248        );
249        m_actionGroup->add_action(
250            "MenuInstrument", sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
251        );
252        m_actionGroup->add_action(
253            "MenuScript", sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
254        );
255    #else
256      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
257    
258      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));
259      actionGroup->add(Gtk::Action::create("New", _("_New")),      actionGroup->add(Gtk::Action::create("New", Gtk::Stock::NEW),
                      Gtk::AccelKey("<control>n"),  
260                       sigc::mem_fun(                       sigc::mem_fun(
261                           *this, &MainWindow::on_action_file_new));                           *this, &MainWindow::on_action_file_new));
262      actionGroup->add(Gtk::Action::create("Open", _("_Open...")),      Glib::RefPtr<Gtk::Action> action =
263                       Gtk::AccelKey("<control>o"),          Gtk::Action::create("Open", Gtk::Stock::OPEN);
264        action->property_label() = action->property_label() + "...";
265        actionGroup->add(action,
266                       sigc::mem_fun(                       sigc::mem_fun(
267                           *this, &MainWindow::on_action_file_open));                           *this, &MainWindow::on_action_file_open));
268      actionGroup->add(Gtk::Action::create("Save", _("_Save")),      actionGroup->add(Gtk::Action::create("Save", Gtk::Stock::SAVE),
                      Gtk::AccelKey("<control>s"),  
269                       sigc::mem_fun(                       sigc::mem_fun(
270                           *this, &MainWindow::on_action_file_save));                           *this, &MainWindow::on_action_file_save));
271      actionGroup->add(Gtk::Action::create("SaveAs", _("Save _As...")),      action = Gtk::Action::create("SaveAs", Gtk::Stock::SAVE_AS);
272        action->property_label() = action->property_label() + "...";
273        actionGroup->add(action,
274                       Gtk::AccelKey("<shift><control>s"),                       Gtk::AccelKey("<shift><control>s"),
275                       sigc::mem_fun(                       sigc::mem_fun(
276                           *this, &MainWindow::on_action_file_save_as));                           *this, &MainWindow::on_action_file_save_as));
277      actionGroup->add(Gtk::Action::create("Properties",      actionGroup->add(Gtk::Action::create("Properties",
278                                           _("_Properties")),                                           Gtk::Stock::PROPERTIES),
279                       sigc::mem_fun(                       sigc::mem_fun(
280                           *this, &MainWindow::on_action_file_properties));                           *this, &MainWindow::on_action_file_properties));
281      actionGroup->add(Gtk::Action::create("InstrProperties",      actionGroup->add(Gtk::Action::create("InstrProperties",
282                                           _("_Properties")),                                           Gtk::Stock::PROPERTIES),
283                       sigc::mem_fun(                       sigc::mem_fun(
284                           *this, &MainWindow::show_instr_props));                           *this, &MainWindow::show_instr_props));
285      actionGroup->add(Gtk::Action::create("MidiRules",      actionGroup->add(Gtk::Action::create("MidiRules",
# Line 185  MainWindow::MainWindow() : Line 290  MainWindow::MainWindow() :
290                                           _("_Script Slots...")),                                           _("_Script Slots...")),
291                       sigc::mem_fun(                       sigc::mem_fun(
292                           *this, &MainWindow::show_script_slots));                           *this, &MainWindow::show_script_slots));
293      actionGroup->add(Gtk::Action::create("Quit", _("_Quit")),      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),
                      Gtk::AccelKey("<control>q"),  
294                       sigc::mem_fun(                       sigc::mem_fun(
295                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
296      actionGroup->add(      actionGroup->add(
# Line 198  MainWindow::MainWindow() : Line 302  MainWindow::MainWindow() :
302          sigc::mem_fun(*this, &MainWindow::show_intruments_tab)          sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
303      );      );
304      actionGroup->add(      actionGroup->add(
305          Gtk::Action::create("MenuScript", _("S_cript")),          Gtk::Action::create("MenuScript", _("Scr_ipt")),
306          sigc::mem_fun(*this, &MainWindow::show_scripts_tab)          sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
307      );      );
308      actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));      actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));
309        actionGroup->add(Gtk::Action::create("AssignScripts", _("Assign Script")));
310    
311      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
312    #endif
313    
314      const Gdk::ModifierType primaryModifierKey =      const Gdk::ModifierType primaryModifierKey =
315  #if defined(__APPLE__)  #if defined(__APPLE__)
# Line 212  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",
363                                             _("Copy selected dimension region")),
364                         Gtk::AccelKey(GDK_KEY_c, Gdk::MOD1_MASK),
365                         sigc::mem_fun(*this, &MainWindow::copy_selected_dimrgn));
366    
367        actionGroup->add(Gtk::Action::create("PasteDimRgn",
368                                             _("Paste dimension region")),
369                         Gtk::AccelKey(GDK_KEY_v, Gdk::MOD1_MASK),
370                         sigc::mem_fun(*this, &MainWindow::paste_copied_dimrgn));
371    
372        actionGroup->add(Gtk::Action::create("AdjustClipboard",
373                                             _("Adjust Clipboard Content")),
374                         Gtk::AccelKey(GDK_KEY_x, Gdk::MOD1_MASK),
375                         sigc::mem_fun(*this, &MainWindow::adjust_clipboard_content));
376    
377        actionGroup->add(Gtk::Action::create("SelectPrevInstr",
378                                             _("Select Previous Instrument")),
379                         Gtk::AccelKey(GDK_KEY_Up, primaryModifierKey),
380                         sigc::mem_fun(*this, &MainWindow::select_prev_instrument));
381    
382        actionGroup->add(Gtk::Action::create("SelectNextInstr",
383                                             _("Select Next Instrument")),
384                         Gtk::AccelKey(GDK_KEY_Down, primaryModifierKey),
385                         sigc::mem_fun(*this, &MainWindow::select_next_instrument));
386    
387      actionGroup->add(Gtk::Action::create("SelectPrevRegion",      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 251  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 266  MainWindow::MainWindow() : Line 444  MainWindow::MainWindow() :
444          Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));          Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));
445      toggle_action->set_active(true);      toggle_action->set_active(true);
446      actionGroup->add(toggle_action);      actionGroup->add(toggle_action);
447    #endif
448    
449    #if USE_GLIB_ACTION
450        m_actionToggleStatusBar =
451            m_actionGroup->add_action_bool("Statusbar", sigc::mem_fun(*this, &MainWindow::on_action_view_status_bar), true);
452        m_actionToggleRestoreWinDim =
453            m_actionGroup->add_action_bool("AutoRestoreWinDim", sigc::mem_fun(*this, &MainWindow::on_auto_restore_win_dim), Settings::singleton()->autoRestoreWindowDimension);
454        m_actionInstrDoubleClickOpensProps =
455            m_actionGroup->add_action_bool(
456                "OpenInstrPropsByDoubleClick",
457                sigc::mem_fun(*this, &MainWindow::on_instr_double_click_opens_props),
458                Settings::singleton()->instrumentDoubleClickOpensProps
459            );
460        m_actionToggleShowTooltips = m_actionGroup->add_action_bool(
461            "ShowTooltips", sigc::mem_fun(*this, &MainWindow::on_action_show_tooltips),
462            Settings::singleton()->showTooltips
463        );
464        m_actionToggleSaveWithTempFile =
465            m_actionGroup->add_action_bool("SaveWithTemporaryFile", sigc::mem_fun(*this, &MainWindow::on_save_with_temporary_file), Settings::singleton()->saveWithTemporaryFile);
466        m_actionGroup->add_action("RefreshAll", sigc::mem_fun(*this, &MainWindow::on_action_refresh_all));
467    #else
468        actionGroup->add(Gtk::Action::create("MenuMacro", _("_Macro")));
469    
470    
471      actionGroup->add(Gtk::Action::create("MenuView", _("_View")));      actionGroup->add(Gtk::Action::create("MenuView", _("Vie_w")));
472      toggle_action =      toggle_action =
473          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));
474      toggle_action->set_active(true);      toggle_action->set_active(true);
# Line 284  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 294  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      actionGroup->add(Gtk::Action::create("MenuHelp", _("_Help")));  #if USE_GLIB_ACTION
515      actionGroup->add(Gtk::Action::create("About", _("_About")),      m_actionGroup->add_action(
516            "About", sigc::mem_fun(*this, &MainWindow::on_action_help_about)
517        );
518        m_actionGroup->add_action(
519            "AddInstrument", sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)
520        );
521        m_actionGroup->add_action(
522            "DupInstrument", sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
523        );
524        m_actionGroup->add_action(
525            "MoveInstrument", sigc::mem_fun(*this, &MainWindow::on_action_move_instr)
526        );
527        m_actionGroup->add_action(
528            "CombInstruments", sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
529        );
530        m_actionGroup->add_action(
531            "RemoveInstrument", sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
532        );
533    #else
534        action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
535        actionGroup->add(Gtk::Action::create("MenuHelp",
536                                             action->property_label()));
537        actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),
538                       sigc::mem_fun(                       sigc::mem_fun(
539                           *this, &MainWindow::on_action_help_about));                           *this, &MainWindow::on_action_help_about));
540      actionGroup->add(      actionGroup->add(
# Line 308  MainWindow::MainWindow() : Line 546  MainWindow::MainWindow() :
546          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
547      );      );
548      actionGroup->add(      actionGroup->add(
549          Gtk::Action::create("RemoveInstrument", _("_Remove")),          Gtk::Action::create("MoveInstrument", _("Move _Instrument To ...")),
550            Gtk::AccelKey(GDK_KEY_i, primaryModifierKey),
551            sigc::mem_fun(*this, &MainWindow::on_action_move_instr)
552        );
553        actionGroup->add(
554            Gtk::Action::create("CombInstruments", _("_Combine Instruments ...")),
555            Gtk::AccelKey(GDK_KEY_j, primaryModifierKey),
556            sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
557        );
558        actionGroup->add(
559            Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),
560          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
561      );      );
562    #endif
563    
564    #if USE_GLIB_ACTION
565        m_actionToggleWarnOnExtensions = m_actionGroup->add_action_bool(
566            "WarnUserOnExtensions", sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions),
567            Settings::singleton()->warnUserOnExtensions
568        );
569        m_actionToggleSyncSamplerSelection = m_actionGroup->add_action_bool(
570            "SyncSamplerInstrumentSelection", sigc::mem_fun(*this, &MainWindow::on_action_sync_sampler_instrument_selection),
571            Settings::singleton()->syncSamplerInstrumentSelection
572        );
573        m_actionToggleMoveRootNoteWithRegion = m_actionGroup->add_action_bool(
574            "MoveRootNoteWithRegionMoved", sigc::mem_fun(*this, &MainWindow::on_action_move_root_note_with_region_moved),
575            Settings::singleton()->moveRootNoteWithRegionMoved
576        );
577    #else
578      actionGroup->add(Gtk::Action::create("MenuSettings", _("_Settings")));      actionGroup->add(Gtk::Action::create("MenuSettings", _("_Settings")));
579            
580      toggle_action =      toggle_action =
# Line 338  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 351  MainWindow::MainWindow() : Line 621  MainWindow::MainWindow() :
621          Gtk::Action::create("MergeFiles", _("_Merge Files...")),          Gtk::Action::create("MergeFiles", _("_Merge Files...")),
622          sigc::mem_fun(*this, &MainWindow::on_action_merge_files)          sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
623      );      );
624    #endif
625    
626      // sample right-click popup actions      // sample right-click popup actions
627    #if USE_GLIB_ACTION
628        m_actionSampleProperties = m_actionGroup->add_action(
629            "SampleProperties", sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
630        );
631        m_actionAddSampleGroup = m_actionGroup->add_action(
632            "AddGroup", sigc::mem_fun(*this, &MainWindow::on_action_add_group)
633        );
634        m_actionAddSample = m_actionGroup->add_action(
635            "AddSample", sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
636        );
637        m_actionRemoveSample = m_actionGroup->add_action(
638            "RemoveSample", sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
639        );
640        m_actionGroup->add_action(
641            "RemoveUnusedSamples", sigc::mem_fun(*this, &MainWindow::on_action_remove_unused_samples)
642        );
643        m_actionViewSampleRefs = m_actionGroup->add_action(
644            "ShowSampleRefs", sigc::mem_fun(*this, &MainWindow::on_action_view_references)
645        );
646        m_actionReplaceSample = m_actionGroup->add_action(
647            "ReplaceSample", sigc::mem_fun(*this, &MainWindow::on_action_replace_sample)
648        );
649        m_actionGroup->add_action(
650            "ReplaceAllSamplesInAllGroups", sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
651        );
652    #else
653      actionGroup->add(      actionGroup->add(
654          Gtk::Action::create("SampleProperties", _("_Properties")),          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),
655          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
656      );      );
657      actionGroup->add(      actionGroup->add(
# Line 367  MainWindow::MainWindow() : Line 663  MainWindow::MainWindow() :
663          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
664      );      );
665      actionGroup->add(      actionGroup->add(
666          Gtk::Action::create("RemoveSample", _("_Remove")),          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),
667          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
668      );      );
669      actionGroup->add(      actionGroup->add(
# Line 388  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 403  MainWindow::MainWindow() : Line 714  MainWindow::MainWindow() :
714          sigc::mem_fun(*this, &MainWindow::on_action_edit_script)          sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
715      );      );
716      actionGroup->add(      actionGroup->add(
717          Gtk::Action::create("RemoveScript", _("_Remove")),          Gtk::Action::create("RemoveScript", Gtk::Stock::REMOVE),
718          sigc::mem_fun(*this, &MainWindow::on_action_remove_script)          sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
719      );      );
720    #endif
721    
722    #if USE_GTKMM_BUILDER
723        insert_action_group("AppMenu", m_actionGroup);
724        
725        m_uiManager = Gtk::Builder::create();
726        Glib::ustring ui_info =
727            "<interface>"
728            "  <menubar id='MenuBar'>"
729            "    <menu id='MenuFile'>"
730            "      <attribute name='label' translatable='yes'>_File</attribute>"
731            "      <section>"
732            "        <item id='New'>"
733            "          <attribute name='label' translatable='yes'>New</attribute>"
734            "          <attribute name='action'>AppMenu.New</attribute>"
735            "        </item>"
736            "        <item id='Open'>"
737            "          <attribute name='label' translatable='yes'>Open</attribute>"
738            "          <attribute name='action'>AppMenu.Open</attribute>"
739            "        </item>"
740            "      </section>"
741            "      <section>"
742            "        <item id='Save'>"
743            "          <attribute name='label' translatable='yes'>Save</attribute>"
744            "          <attribute name='action'>AppMenu.Save</attribute>"
745            "        </item>"
746            "        <item id='SaveAs'>"
747            "          <attribute name='label' translatable='yes'>Save As</attribute>"
748            "          <attribute name='action'>AppMenu.SaveAs</attribute>"
749            "        </item>"
750            "      </section>"
751            "      <section>"
752            "        <item id='Properties'>"
753            "          <attribute name='label' translatable='yes'>Properties</attribute>"
754            "          <attribute name='action'>AppMenu.Properties</attribute>"
755            "        </item>"
756            "      </section>"
757            "      <section>"
758            "        <item id='Quit'>"
759            "          <attribute name='label' translatable='yes'>Quit</attribute>"
760            "          <attribute name='action'>AppMenu.Quit</attribute>"
761            "        </item>"
762            "      </section>"
763            "    </menu>"
764            "    <menu id='MenuEdit'>"
765            "      <attribute name='label' translatable='yes'>Edit</attribute>"
766            "      <section>"
767            "        <item id='CopyDimRgn'>"
768            "          <attribute name='label' translatable='yes'>Copy Dimension Region</attribute>"
769            "          <attribute name='action'>AppMenu.CopyDimRgn</attribute>"
770            "        </item>"
771            "        <item id='AdjustClipboard'>"
772            "          <attribute name='label' translatable='yes'>Adjust Clipboard</attribute>"
773            "          <attribute name='action'>AppMenu.AdjustClipboard</attribute>"
774            "        </item>"
775            "        <item id='PasteDimRgn'>"
776            "          <attribute name='label' translatable='yes'>Paste Dimension Region</attribute>"
777            "          <attribute name='action'>AppMenu.PasteDimRgn</attribute>"
778            "        </item>"
779            "      </section>"
780            "        <item id='SelectPrevInstr'>"
781            "          <attribute name='label' translatable='yes'>Previous Instrument</attribute>"
782            "          <attribute name='action'>AppMenu.SelectPrevInstr</attribute>"
783            "        </item>"
784            "        <item id='SelectNextInstr'>"
785            "          <attribute name='label' translatable='yes'>Next Instrument</attribute>"
786            "          <attribute name='action'>AppMenu.SelectNextInstr</attribute>"
787            "        </item>"
788            "      <section>"
789            "        <item id='SelectPrevRegion'>"
790            "          <attribute name='label' translatable='yes'>Previous Region</attribute>"
791            "          <attribute name='action'>AppMenu.SelectPrevRegion</attribute>"
792            "        </item>"
793            "        <item id='SelectNextRegion'>"
794            "          <attribute name='label' translatable='yes'>Next Region</attribute>"
795            "          <attribute name='action'>AppMenu.SelectNextRegion</attribute>"
796            "        </item>"
797            "      </section>"
798            "        <item id='SelectPrevDimension'>"
799            "          <attribute name='label' translatable='yes'>Previous Dimension</attribute>"
800            "          <attribute name='action'>AppMenu.SelectPrevDimension</attribute>"
801            "        </item>"
802            "        <item id='SelectNextDimension'>"
803            "          <attribute name='label' translatable='yes'>Next Dimension</attribute>"
804            "          <attribute name='action'>AppMenu.SelectNextDimension</attribute>"
805            "        </item>"
806            "        <item id='SelectPrevDimRgnZone'>"
807            "          <attribute name='label' translatable='yes'>Previous Dimension Region Zone</attribute>"
808            "          <attribute name='action'>AppMenu.SelectPrevDimRgnZone</attribute>"
809            "        </item>"
810            "        <item id='SelectNextDimRgnZone'>"
811            "          <attribute name='label' translatable='yes'>Next Dimension Region Zone</attribute>"
812            "          <attribute name='action'>AppMenu.SelectNextDimRgnZone</attribute>"
813            "        </item>"
814            "        <item id='SelectAddPrevDimRgnZone'>"
815            "          <attribute name='label' translatable='yes'>Add Previous Dimension Region Zone</attribute>"
816            "          <attribute name='action'>AppMenu.SelectAddPrevDimRgnZone</attribute>"
817            "        </item>"
818            "        <item id='SelectAddNextDimRgnZone'>"
819            "          <attribute name='label' translatable='yes'>Add Next Dimension Region Zone</attribute>"
820            "          <attribute name='action'>AppMenu.SelectAddNextDimRgnZone</attribute>"
821            "        </item>"
822            "      <section>"
823            "        <item id='CopySampleUnity'>"
824            "          <attribute name='label' translatable='yes'>Copy Sample Unity</attribute>"
825            "          <attribute name='action'>AppMenu.CopySampleUnity</attribute>"
826            "        </item>"
827            "        <item id='CopySampleTune'>"
828            "          <attribute name='label' translatable='yes'>Copy Sample Tune</attribute>"
829            "          <attribute name='action'>AppMenu.CopySampleTune</attribute>"
830            "        </item>"
831            "        <item id='CopySampleLoop'>"
832            "          <attribute name='label' translatable='yes'>Copy Sample Loop</attribute>"
833            "          <attribute name='action'>AppMenu.CopySampleLoop</attribute>"
834            "        </item>"
835            "      </section>"
836            "    </menu>"
837            "    <menu id='MenuMacro'>"
838            "      <attribute name='label' translatable='yes'>Macro</attribute>"
839            "      <section>"
840            "      </section>"
841            "    </menu>"
842            "    <menu id='MenuSample'>"
843            "      <attribute name='label' translatable='yes'>Sample</attribute>"
844            "      <section>"
845            "        <item id='SampleProperties'>"
846            "          <attribute name='label' translatable='yes'>Properties</attribute>"
847            "          <attribute name='action'>AppMenu.SampleProperties</attribute>"
848            "        </item>"
849            "        <item id='AddGroup'>"
850            "          <attribute name='label' translatable='yes'>Add Group</attribute>"
851            "          <attribute name='action'>AppMenu.AddGroup</attribute>"
852            "        </item>"
853            "        <item id='AddSample'>"
854            "          <attribute name='label' translatable='yes'>Add Sample</attribute>"
855            "          <attribute name='action'>AppMenu.AddSample</attribute>"
856            "        </item>"
857            "        <item id='ShowSampleRefs'>"
858            "          <attribute name='label' translatable='yes'>Show Sample References</attribute>"
859            "          <attribute name='action'>AppMenu.ShowSampleRefs</attribute>"
860            "        </item>"
861            "        <item id='ReplaceSample'>"
862            "          <attribute name='label' translatable='yes'>Replace Sample</attribute>"
863            "          <attribute name='action'>AppMenu.ReplaceSample</attribute>"
864            "        </item>"
865            "        <item id='ReplaceAllSamplesInAllGroups'>"
866            "          <attribute name='label' translatable='yes'>Replace all Samples in all Groups</attribute>"
867            "          <attribute name='action'>AppMenu.ReplaceAllSamplesInAllGroups</attribute>"
868            "        </item>"
869            "      </section>"
870            "      <section>"
871            "        <item id='RemoveSample'>"
872            "          <attribute name='label' translatable='yes'>Remove Sample</attribute>"
873            "          <attribute name='action'>AppMenu.RemoveSample</attribute>"
874            "        </item>"
875            "        <item id='RemoveUnusedSamples'>"
876            "          <attribute name='label' translatable='yes'>Remove unused Samples</attribute>"
877            "          <attribute name='action'>AppMenu.RemoveUnusedSamples</attribute>"
878            "        </item>"
879            "      </section>"
880            "    </menu>"
881            "    <menu id='MenuInstrument'>"
882            "      <attribute name='label' translatable='yes'>Instrument</attribute>"
883            "      <section>"
884            "        <item id='InstrProperties'>"
885            "          <attribute name='label' translatable='yes'>Properties</attribute>"
886            "          <attribute name='action'>AppMenu.InstrProperties</attribute>"
887            "        </item>"
888            "        <item id='MidiRules'>"
889            "          <attribute name='label' translatable='yes'>MIDI Rules</attribute>"
890            "          <attribute name='action'>AppMenu.MidiRules</attribute>"
891            "        </item>"
892            "        <item id='ScriptSlots'>"
893            "          <attribute name='label' translatable='yes'>Script Slots</attribute>"
894            "          <attribute name='action'>AppMenu.ScriptSlots</attribute>"
895            "        </item>"
896            "      </section>"
897            "      <submenu id='AssignScripts'>"
898            "        <attribute name='label' translatable='yes'>Assign Scripts</attribute>"
899            "      </submenu>"
900            "      <section>"
901            "        <item id='AddInstrument'>"
902            "          <attribute name='label' translatable='yes'>Add Instrument</attribute>"
903            "          <attribute name='action'>AppMenu.AddInstrument</attribute>"
904            "        </item>"
905            "        <item id='DupInstrument'>"
906            "          <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"
907            "          <attribute name='action'>AppMenu.DupInstrument</attribute>"
908            "        </item>"
909            "        <item id='MoveInstrument'>"
910            "          <attribute name='label' translatable='yes'>Move Instrument To ...</attribute>"
911            "          <attribute name='action'>AppMenu.MoveInstrument</attribute>"
912            "        </item>"
913            "        <item id='CombInstruments'>"
914            "          <attribute name='label' translatable='yes'>Combine Instrument</attribute>"
915            "          <attribute name='action'>AppMenu.CombInstruments</attribute>"
916            "        </item>"
917            "      </section>"
918            "      <section>"
919            "        <item id='RemoveInstrument'>"
920            "          <attribute name='label' translatable='yes'>Remove Instrument</attribute>"
921            "          <attribute name='action'>AppMenu.RemoveInstrument</attribute>"
922            "        </item>"
923            "      </section>"
924            "    </menu>"
925            "    <menu id='MenuScript'>"
926            "      <attribute name='label' translatable='yes'>Script</attribute>"
927            "      <section>"
928            "        <item id='AddScriptGroup'>"
929            "          <attribute name='label' translatable='yes'>Add Script Group</attribute>"
930            "          <attribute name='action'>AppMenu.AddScriptGroup</attribute>"
931            "        </item>"
932            "        <item id='AddScript'>"
933            "          <attribute name='label' translatable='yes'>Add Script</attribute>"
934            "          <attribute name='action'>AppMenu.AddScript</attribute>"
935            "        </item>"
936            "        <item id='EditScript'>"
937            "          <attribute name='label' translatable='yes'>Edit Script</attribute>"
938            "          <attribute name='action'>AppMenu.EditScript</attribute>"
939            "        </item>"
940            "      </section>"
941            "      <section>"
942            "        <item id='RemoveScript'>"
943            "          <attribute name='label' translatable='yes'>Remove Script</attribute>"
944            "          <attribute name='action'>AppMenu.RemoveScript</attribute>"
945            "        </item>"
946            "      </section>"
947            "    </menu>"
948            "    <menu id='MenuView'>"
949            "      <attribute name='label' translatable='yes'>View</attribute>"
950            "      <section>"
951            "        <item id='Statusbar'>"
952            "          <attribute name='label' translatable='yes'>Statusbar</attribute>"
953            "          <attribute name='action'>AppMenu.Statusbar</attribute>"
954            "        </item>"
955            "        <item id='ShowTooltips'>"
956            "          <attribute name='label' translatable='yes'>Tooltips for Beginners</attribute>"
957            "          <attribute name='action'>AppMenu.ShowTooltips</attribute>"
958            "        </item>"
959            "        <item id='AutoRestoreWinDim'>"
960            "          <attribute name='label' translatable='yes'>Auto restore Window Dimensions</attribute>"
961            "          <attribute name='action'>AppMenu.AutoRestoreWinDim</attribute>"
962            "        </item>"
963            "        <item id='OpenInstrPropsByDoubleClick'>"
964            "          <attribute name='label' translatable='yes'>Instrument Properties by Double Click</attribute>"
965            "          <attribute name='action'>AppMenu.OpenInstrPropsByDoubleClick</attribute>"
966            "        </item>"
967            "      </section>"
968            "      <section>"
969            "        <item id='RefreshAll'>"
970            "          <attribute name='label' translatable='yes'>Refresh All</attribute>"
971            "          <attribute name='action'>AppMenu.RefreshAll</attribute>"
972            "        </item>"
973            "      </section>"
974            "    </menu>"
975            "    <menu id='MenuTools'>"
976            "      <attribute name='label' translatable='yes'>Tools</attribute>"
977            "      <section>"
978            "        <item id='CombineInstruments'>"
979            "          <attribute name='label' translatable='yes'>Combine Instruments ...</attribute>"
980            "          <attribute name='action'>AppMenu.CombineInstruments</attribute>"
981            "        </item>"
982            "        <item id='MergeFiles'>"
983            "          <attribute name='label' translatable='yes'>Merge Files ...</attribute>"
984            "          <attribute name='action'>AppMenu.MergeFiles</attribute>"
985            "        </item>"
986            "      </section>"
987            "    </menu>"
988            "    <menu id='MenuSettings'>"
989            "      <attribute name='label' translatable='yes'>Settings</attribute>"
990            "      <section>"
991            "        <item id='WarnUserOnExtensions'>"
992            "          <attribute name='label' translatable='yes'>Warning on Format Extensions</attribute>"
993            "          <attribute name='action'>AppMenu.WarnUserOnExtensions</attribute>"
994            "        </item>"
995            "        <item id='SyncSamplerInstrumentSelection'>"
996            "          <attribute name='label' translatable='yes'>Synchronize Sampler Selection</attribute>"
997            "          <attribute name='action'>AppMenu.SyncSamplerInstrumentSelection</attribute>"
998            "        </item>"
999            "        <item id='MoveRootNoteWithRegionMoved'>"
1000            "          <attribute name='label' translatable='yes'>Move Root Note with Region moved</attribute>"
1001            "          <attribute name='action'>AppMenu.MoveRootNoteWithRegionMoved</attribute>"
1002            "        </item>"
1003            "        <item id='SaveWithTemporaryFile'>"
1004            "          <attribute name='label' translatable='yes'>Save with temporary file</attribute>"
1005            "          <attribute name='action'>AppMenu.SaveWithTemporaryFile</attribute>"
1006            "        </item>"
1007            "      </section>"
1008            "    </menu>"
1009            "    <menu id='MenuHelp'>"
1010            "      <attribute name='label' translatable='yes'>Help</attribute>"
1011            "      <section>"
1012            "        <item id='About'>"
1013            "          <attribute name='label' translatable='yes'>About ...</attribute>"
1014            "          <attribute name='action'>AppMenu.About</attribute>"
1015            "        </item>"
1016            "      </section>"
1017            "    </menu>"
1018            "  </menubar>"
1019            // popups
1020            "  <menu id='PopupMenu'>"
1021            "    <section>"
1022            "      <item id='InstrProperties'>"
1023            "        <attribute name='label' translatable='yes'>Instrument Properties</attribute>"
1024            "        <attribute name='action'>AppMenu.InstrProperties</attribute>"
1025            "      </item>"
1026            "      <item id='MidiRules'>"
1027            "        <attribute name='label' translatable='yes'>MIDI Rules</attribute>"
1028            "        <attribute name='action'>AppMenu.MidiRules</attribute>"
1029            "      </item>"
1030            "      <item id='ScriptSlots'>"
1031            "        <attribute name='label' translatable='yes'>Script Slots</attribute>"
1032            "        <attribute name='action'>AppMenu.ScriptSlots</attribute>"
1033            "      </item>"
1034            "      <item id='AddInstrument'>"
1035            "        <attribute name='label' translatable='yes'>Add Instrument</attribute>"
1036            "        <attribute name='action'>AppMenu.AddInstrument</attribute>"
1037            "      </item>"
1038            "      <item id='DupInstrument'>"
1039            "        <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"
1040            "        <attribute name='action'>AppMenu.DupInstrument</attribute>"
1041            "      </item>"
1042            "      <item id='MoveInstrument'>"
1043            "        <attribute name='label' translatable='yes'>Move Instrument To ...</attribute>"
1044            "        <attribute name='action'>AppMenu.MoveInstrument</attribute>"
1045            "      </item>"
1046            "      <item id='CombInstruments'>"
1047            "        <attribute name='label' translatable='yes'>Combine Instruments</attribute>"
1048            "        <attribute name='action'>AppMenu.CombInstruments</attribute>"
1049            "      </item>"
1050            "    </section>"
1051            "    <section>"
1052            "      <item id='RemoveInstrument'>"
1053            "        <attribute name='label' translatable='yes'>Remove Instruments</attribute>"
1054            "        <attribute name='action'>AppMenu.RemoveInstrument</attribute>"
1055            "      </item>"
1056            "    </section>"
1057            "  </menu>"
1058            "  <menu id='SamplePopupMenu'>"
1059            "    <section>"
1060            "      <item id='SampleProperties'>"
1061            "        <attribute name='label' translatable='yes'>Sample Properties</attribute>"
1062            "        <attribute name='action'>AppMenu.SampleProperties</attribute>"
1063            "      </item>"
1064            "      <item id='AddGroup'>"
1065            "        <attribute name='label' translatable='yes'>Add Sample Group</attribute>"
1066            "        <attribute name='action'>AppMenu.AddGroup</attribute>"
1067            "      </item>"
1068            "      <item id='AddSample'>"
1069            "        <attribute name='label' translatable='yes'>Add Sample</attribute>"
1070            "        <attribute name='action'>AppMenu.AddSample</attribute>"
1071            "      </item>"
1072            "      <item id='ShowSampleRefs'>"
1073            "        <attribute name='label' translatable='yes'>Show Sample References ...</attribute>"
1074            "        <attribute name='action'>AppMenu.ShowSampleRefs</attribute>"
1075            "      </item>"
1076            "      <item id='ReplaceSample'>"
1077            "        <attribute name='label' translatable='yes'>Replace Sample</attribute>"
1078            "        <attribute name='action'>AppMenu.ReplaceSample</attribute>"
1079            "      </item>"
1080            "      <item id='ReplaceAllSamplesInAllGroups'>"
1081            "        <attribute name='label' translatable='yes'>Replace all Samples ...</attribute>"
1082            "        <attribute name='action'>AppMenu.ReplaceAllSamplesInAllGroups</attribute>"
1083            "      </item>"
1084            "    </section>"
1085            "    <section>"
1086            "      <item id='RemoveSample'>"
1087            "        <attribute name='label' translatable='yes'>Remove Sample</attribute>"
1088            "        <attribute name='action'>AppMenu.RemoveSample</attribute>"
1089            "      </item>"
1090            "      <item id='RemoveUnusedSamples'>"
1091            "        <attribute name='label' translatable='yes'>Remove unused Samples</attribute>"
1092            "        <attribute name='action'>AppMenu.RemoveUnusedSamples</attribute>"
1093            "      </item>"
1094            "    </section>"
1095            "  </menu>"
1096            "  <menu id='ScriptPopupMenu'>"
1097            "    <section>"
1098            "      <item id='AddScriptGroup'>"
1099            "        <attribute name='label' translatable='yes'>Add Script Group</attribute>"
1100            "        <attribute name='action'>AppMenu.AddScriptGroup</attribute>"
1101            "      </item>"
1102            "      <item id='AddScript'>"
1103            "        <attribute name='label' translatable='yes'>Add Script</attribute>"
1104            "        <attribute name='action'>AppMenu.AddScript</attribute>"
1105            "      </item>"
1106            "      <item id='EditScript'>"
1107            "        <attribute name='label' translatable='yes'>Edit Script</attribute>"
1108            "        <attribute name='action'>AppMenu.EditScript</attribute>"
1109            "      </item>"
1110            "    </section>"
1111            "    <section>"
1112            "      <item id='RemoveScript'>"
1113            "        <attribute name='label' translatable='yes'>Remove Script</attribute>"
1114            "        <attribute name='action'>AppMenu.RemoveScript</attribute>"
1115            "      </item>"
1116            "    </section>"
1117            "  </menu>"
1118            "</interface>";
1119        m_uiManager->add_from_string(ui_info);
1120    #else
1121      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
1122      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
1123      add_accel_group(uiManager->get_accel_group());      add_accel_group(uiManager->get_accel_group());
# Line 426  MainWindow::MainWindow() : Line 1137  MainWindow::MainWindow() :
1137          "      <menuitem action='Quit'/>"          "      <menuitem action='Quit'/>"
1138          "    </menu>"          "    </menu>"
1139          "    <menu action='MenuEdit'>"          "    <menu action='MenuEdit'>"
1140            "      <menuitem action='CopyDimRgn'/>"
1141            "      <menuitem action='AdjustClipboard'/>"
1142            "      <menuitem action='PasteDimRgn'/>"
1143            "      <separator/>"
1144            "      <menuitem action='SelectPrevInstr'/>"
1145            "      <menuitem action='SelectNextInstr'/>"
1146            "      <separator/>"
1147          "      <menuitem action='SelectPrevRegion'/>"          "      <menuitem action='SelectPrevRegion'/>"
1148          "      <menuitem action='SelectNextRegion'/>"          "      <menuitem action='SelectNextRegion'/>"
1149          "      <separator/>"          "      <separator/>"
# Line 440  MainWindow::MainWindow() : Line 1158  MainWindow::MainWindow() :
1158          "      <menuitem action='CopySampleTune'/>"          "      <menuitem action='CopySampleTune'/>"
1159          "      <menuitem action='CopySampleLoop'/>"          "      <menuitem action='CopySampleLoop'/>"
1160          "    </menu>"          "    </menu>"
1161            "    <menu action='MenuMacro'>"
1162            "    </menu>"
1163          "    <menu action='MenuSample'>"          "    <menu action='MenuSample'>"
1164          "      <menuitem action='SampleProperties'/>"          "      <menuitem action='SampleProperties'/>"
1165          "      <menuitem action='AddGroup'/>"          "      <menuitem action='AddGroup'/>"
# Line 458  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 472  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 496  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 519  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 539  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 554  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 577  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 585  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 601  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 612  MainWindow::MainWindow() : Line 1383  MainWindow::MainWindow() :
1383    
1384    
1385      // Create the Tree model:      // Create the Tree model:
1386      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refInstrumentsTreeModel = Gtk::ListStore::create(m_InstrumentsModel);
1387      m_TreeView.set_model(m_refTreeModel);      m_refInstrumentsModelFilter = Gtk::TreeModelFilter::create(m_refInstrumentsTreeModel);
1388      m_TreeView.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);      m_refInstrumentsModelFilter->set_visible_func(
1389      m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules. Drag & drop to change the order of instruments."));          sigc::mem_fun(*this, &MainWindow::instrument_row_visible)
1390      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(      );
1391        m_TreeViewInstruments.set_model(m_refInstrumentsModelFilter);
1392    
1393        m_TreeViewInstruments.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
1394        m_TreeViewInstruments.set_has_tooltip(true);
1395        m_TreeViewInstruments.signal_query_tooltip().connect(
1396            sigc::mem_fun(*this, &MainWindow::onQueryTreeViewTooltip)
1397        );
1398        instrument_name_connection = m_refInstrumentsTreeModel->signal_row_changed().connect(
1399          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
1400      );      );
1401    
1402      // Add the TreeView's view columns:      // Add the TreeView's view columns:
1403      m_TreeView.append_column(_("Nr"), m_Columns.m_col_nr);      m_TreeViewInstruments.append_column(_("Nr"), m_InstrumentsModel.m_col_nr);
1404      m_TreeView.append_column_editable(_("Instrument"), m_Columns.m_col_name);      m_TreeViewInstruments.append_column_editable(_("Instrument"), m_InstrumentsModel.m_col_name);
1405      m_TreeView.set_headers_visible(true);      m_TreeViewInstruments.append_column(_("Scripts"), m_InstrumentsModel.m_col_scripts);
1406        m_TreeViewInstruments.set_headers_visible(true);
1407            
1408      // establish drag&drop within the instrument tree view, allowing to reorder      // establish drag&drop within the instrument tree view, allowing to reorder
1409      // the sequence of instruments within the gig file      // the sequence of instruments within the gig file
1410      {      {
1411          std::vector<Gtk::TargetEntry> drag_target_instrument;          std::vector<Gtk::TargetEntry> drag_target_instrument;
1412          drag_target_instrument.push_back(Gtk::TargetEntry("gig::Instrument"));          drag_target_instrument.push_back(Gtk::TargetEntry("gig::Instrument"));
1413          m_TreeView.drag_source_set(drag_target_instrument);          m_TreeViewInstruments.drag_source_set(drag_target_instrument);
1414          m_TreeView.drag_dest_set(drag_target_instrument);          m_TreeViewInstruments.drag_dest_set(drag_target_instrument);
1415          m_TreeView.signal_drag_begin().connect(          m_TreeViewInstruments.signal_drag_begin().connect(
1416              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_begin)              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_begin)
1417          );          );
1418          m_TreeView.signal_drag_data_get().connect(          m_TreeViewInstruments.signal_drag_data_get().connect(
1419              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_data_get)              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_data_get)
1420          );          );
1421          m_TreeView.signal_drag_data_received().connect(          m_TreeViewInstruments.signal_drag_data_received().connect(
1422              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drop_drag_data_received)              sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drop_drag_data_received)
1423          );          );
1424      }      }
# Line 668  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 687  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 733  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 755  MainWindow::MainWindow() : Line 1549  MainWindow::MainWindow() :
1549          sigc::mem_fun(*this, &MainWindow::select_sample)          sigc::mem_fun(*this, &MainWindow::select_sample)
1550      );      );
1551    
1552        dimreg_edit.editScriptSlotsButton.signal_clicked().connect(
1553            sigc::mem_fun(*this, &MainWindow::show_script_slots)
1554        );
1555        // simply sending the same signal (pair) to the sampler on 'patch' variable
1556        // changes as the already existing signal (pair) when the user edits the
1557        // script's source code, because the sampler would reload the source code
1558        // and the 'patch' variables from the instrument on this signal anyway
1559        dimreg_edit.scriptVars.signal_vars_to_be_changed.connect(
1560            [this](gig::Instrument* instr) {
1561                for (int i = 0; i < instr->ScriptSlotCount(); ++i) {
1562                    gig::Script* script = instr->GetScriptOfSlot(i);
1563                    signal_script_to_be_changed.emit(script);
1564                }
1565            }
1566        );
1567        dimreg_edit.scriptVars.signal_vars_changed.connect(
1568            [this](gig::Instrument* instr) {
1569                for (int i = 0; i < instr->ScriptSlotCount(); ++i) {
1570                    gig::Script* script = instr->GetScriptOfSlot(i);
1571                    signal_script_changed.emit(script);
1572                }
1573            }
1574        );
1575        dimreg_edit.scriptVars.signal_edit_script.connect(
1576            [this](gig::Script* script) {
1577                editScript(script);
1578            }
1579        );
1580    
1581      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(
1582          sigc::hide(          sigc::hide(
1583              sigc::bind(              sigc::bind(
1584                  file_structure_to_be_changed_signal.make_slot(),                  file_structure_to_be_changed_signal.make_slot(),
1585    #if SIGCXX_MAJOR_VERSION > 2 || (SIGCXX_MAJOR_VERSION == 2 && SIGCXX_MINOR_VERSION >= 8)
1586                    std::ref(this->file)
1587    #else
1588                  sigc::ref(this->file)                  sigc::ref(this->file)
1589    #endif
1590              )              )
1591          )          )
1592      );      );
# Line 767  MainWindow::MainWindow() : Line 1594  MainWindow::MainWindow() :
1594          sigc::hide(          sigc::hide(
1595              sigc::bind(              sigc::bind(
1596                  file_structure_changed_signal.make_slot(),                  file_structure_changed_signal.make_slot(),
1597    #if SIGCXX_MAJOR_VERSION > 2 || (SIGCXX_MAJOR_VERSION == 2 && SIGCXX_MINOR_VERSION >= 8)
1598                    std::ref(this->file)
1599    #else
1600                  sigc::ref(this->file)                  sigc::ref(this->file)
1601    #endif
1602              )              )
1603          )          )
1604      );      );
# Line 788  MainWindow::MainWindow() : Line 1619  MainWindow::MainWindow() :
1619      dimreg_stereo.signal_toggled().connect(      dimreg_stereo.signal_toggled().connect(
1620          sigc::mem_fun(*this, &MainWindow::update_dimregs));          sigc::mem_fun(*this, &MainWindow::update_dimregs));
1621    
1622        m_searchText.signal_changed().connect(
1623            sigc::mem_fun(*m_refInstrumentsModelFilter.operator->(), &Gtk::TreeModelFilter::refilter)
1624        );
1625    
1626      file = 0;      file = 0;
1627      file_is_changed = false;      file_is_changed = false;
1628    
1629    #if HAS_GTKMM_SHOW_ALL_CHILDREN
1630      show_all_children();      show_all_children();
1631    #endif
1632    
1633      // start with a new gig file by default      // start with a new gig file by default
1634      on_action_file_new();      on_action_file_new();
1635    
1636        m_TreeViewNotebook.signal_switch_page().connect(
1637            sigc::mem_fun(*this, &MainWindow::on_notebook_tab_switched)
1638        );
1639    
1640      // select 'Instruments' tab by default      // select 'Instruments' tab by default
1641      // (gtk allows this only if the tab childs are visible, thats why it's here)      // (gtk allows this only if the tab childs are visible, thats why it's here)
1642      m_TreeViewNotebook.set_current_page(1);      m_TreeViewNotebook.set_current_page(1);
1643    
1644        Gtk::Clipboard::get()->signal_owner_change().connect(
1645            sigc::mem_fun(*this, &MainWindow::on_clipboard_owner_change)
1646        );
1647        updateClipboardPasteAvailable();
1648        updateClipboardCopyAvailable();
1649    
1650        // setup macros and their keyboard accelerators
1651        {
1652    #if USE_GTKMM_BUILDER
1653            menuMacro = new Gtk::Menu(
1654                Glib::RefPtr<Gio::Menu>::cast_dynamic(
1655                    m_uiManager->get_object("MenuMacro")
1656                )
1657            );
1658    #else
1659            Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
1660                uiManager->get_widget("/MenuBar/MenuMacro")
1661            )->get_submenu();
1662    #endif
1663    
1664            const Gdk::ModifierType noModifier = (Gdk::ModifierType)0;
1665            Gtk::AccelMap::add_entry("<Macros>/macro_0", GDK_KEY_F1, noModifier);
1666            Gtk::AccelMap::add_entry("<Macros>/macro_1", GDK_KEY_F2, noModifier);
1667            Gtk::AccelMap::add_entry("<Macros>/macro_2", GDK_KEY_F3, noModifier);
1668            Gtk::AccelMap::add_entry("<Macros>/macro_3", GDK_KEY_F4, noModifier);
1669            Gtk::AccelMap::add_entry("<Macros>/macro_4", GDK_KEY_F5, noModifier);
1670            Gtk::AccelMap::add_entry("<Macros>/macro_5", GDK_KEY_F6, noModifier);
1671            Gtk::AccelMap::add_entry("<Macros>/macro_6", GDK_KEY_F7, noModifier);
1672            Gtk::AccelMap::add_entry("<Macros>/macro_7", GDK_KEY_F8, noModifier);
1673            Gtk::AccelMap::add_entry("<Macros>/macro_8", GDK_KEY_F9, noModifier);
1674            Gtk::AccelMap::add_entry("<Macros>/macro_9", GDK_KEY_F10, noModifier);
1675            Gtk::AccelMap::add_entry("<Macros>/macro_10", GDK_KEY_F11, noModifier);
1676            Gtk::AccelMap::add_entry("<Macros>/macro_11", GDK_KEY_F12, noModifier);
1677            Gtk::AccelMap::add_entry("<Macros>/macro_12", GDK_KEY_F13, noModifier);
1678            Gtk::AccelMap::add_entry("<Macros>/macro_13", GDK_KEY_F14, noModifier);
1679            Gtk::AccelMap::add_entry("<Macros>/macro_14", GDK_KEY_F15, noModifier);
1680            Gtk::AccelMap::add_entry("<Macros>/macro_15", GDK_KEY_F16, noModifier);
1681            Gtk::AccelMap::add_entry("<Macros>/macro_16", GDK_KEY_F17, noModifier);
1682            Gtk::AccelMap::add_entry("<Macros>/macro_17", GDK_KEY_F18, noModifier);
1683            Gtk::AccelMap::add_entry("<Macros>/macro_18", GDK_KEY_F19, noModifier);
1684            Gtk::AccelMap::add_entry("<Macros>/SetupMacros", 'm', primaryModifierKey);
1685    
1686            Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
1687            menuMacro->set_accel_group(accelGroup);
1688    
1689            updateMacroMenu();
1690        }
1691    
1692        // setup "Assign Scripts" keyboard accelerators
1693        {
1694            Gtk::AccelMap::add_entry("<Scripts>/script_0", GDK_KEY_F1, Gdk::SHIFT_MASK);
1695            Gtk::AccelMap::add_entry("<Scripts>/script_1", GDK_KEY_F2, Gdk::SHIFT_MASK);
1696            Gtk::AccelMap::add_entry("<Scripts>/script_2", GDK_KEY_F3, Gdk::SHIFT_MASK);
1697            Gtk::AccelMap::add_entry("<Scripts>/script_3", GDK_KEY_F4, Gdk::SHIFT_MASK);
1698            Gtk::AccelMap::add_entry("<Scripts>/script_4", GDK_KEY_F5, Gdk::SHIFT_MASK);
1699            Gtk::AccelMap::add_entry("<Scripts>/script_5", GDK_KEY_F6, Gdk::SHIFT_MASK);
1700            Gtk::AccelMap::add_entry("<Scripts>/script_6", GDK_KEY_F7, Gdk::SHIFT_MASK);
1701            Gtk::AccelMap::add_entry("<Scripts>/script_7", GDK_KEY_F8, Gdk::SHIFT_MASK);
1702            Gtk::AccelMap::add_entry("<Scripts>/script_8", GDK_KEY_F9, Gdk::SHIFT_MASK);
1703            Gtk::AccelMap::add_entry("<Scripts>/script_9", GDK_KEY_F10, Gdk::SHIFT_MASK);
1704            Gtk::AccelMap::add_entry("<Scripts>/script_10", GDK_KEY_F11, Gdk::SHIFT_MASK);
1705            Gtk::AccelMap::add_entry("<Scripts>/script_11", GDK_KEY_F12, Gdk::SHIFT_MASK);
1706            Gtk::AccelMap::add_entry("<Scripts>/script_12", GDK_KEY_F13, Gdk::SHIFT_MASK);
1707            Gtk::AccelMap::add_entry("<Scripts>/script_13", GDK_KEY_F14, Gdk::SHIFT_MASK);
1708            Gtk::AccelMap::add_entry("<Scripts>/script_14", GDK_KEY_F15, Gdk::SHIFT_MASK);
1709            Gtk::AccelMap::add_entry("<Scripts>/script_15", GDK_KEY_F16, Gdk::SHIFT_MASK);
1710            Gtk::AccelMap::add_entry("<Scripts>/script_16", GDK_KEY_F17, Gdk::SHIFT_MASK);
1711            Gtk::AccelMap::add_entry("<Scripts>/script_17", GDK_KEY_F18, Gdk::SHIFT_MASK);
1712            Gtk::AccelMap::add_entry("<Scripts>/script_18", GDK_KEY_F19, Gdk::SHIFT_MASK);
1713            Gtk::AccelMap::add_entry("<Scripts>/DropAllScriptSlots", GDK_KEY_BackSpace, Gdk::SHIFT_MASK);
1714    
1715            Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
1716            assign_scripts_menu->set_accel_group(accelGroup);
1717        }
1718    
1719        on_show_tooltips_changed();
1720    
1721        Glib::signal_idle().connect_once(
1722            sigc::mem_fun(*this, &MainWindow::bringToFront),
1723            200
1724        );
1725  }  }
1726    
1727  MainWindow::~MainWindow()  MainWindow::~MainWindow()
1728  {  {
1729  }  }
1730    
1731    void MainWindow::bringToFront() {
1732        #if defined(__APPLE__)
1733        macRaiseAppWindow();
1734        #endif
1735        raise();
1736        present();
1737    }
1738    
1739    void MainWindow::updateMacroMenu() {
1740    #if !USE_GTKMM_BUILDER
1741        Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
1742            uiManager->get_widget("/MenuBar/MenuMacro")
1743        )->get_submenu();
1744    #endif
1745    
1746        // remove all entries from "Macro" menu
1747        {
1748            const std::vector<Gtk::Widget*> children = menuMacro->get_children();
1749            for (int i = 0; i < children.size(); ++i) {
1750                Gtk::Widget* child = children[i];
1751                menuMacro->remove(*child);
1752                delete child;
1753            }
1754        }
1755    
1756        // (re)load all macros from config file
1757        try {
1758            Settings::singleton()->loadMacros(m_macros);
1759        } catch (Serialization::Exception e) {
1760            std::cerr << "Exception while loading macros: " << e.Message << std::endl;
1761        } catch (...) {
1762            std::cerr << "Unknown exception while loading macros!" << std::endl;
1763        }
1764    
1765        // add all configured macros as menu items to the "Macro" menu
1766        for (int iMacro = 0; iMacro < m_macros.size(); ++iMacro) {
1767            const Serialization::Archive& macro = m_macros[iMacro];
1768            std::string name =
1769                macro.name().empty() ?
1770                    (std::string(_("Unnamed Macro")) + " " + ToString(iMacro+1)) : macro.name();
1771            Gtk::MenuItem* item = new Gtk::MenuItem(name);
1772            item->signal_activate().connect(
1773                sigc::bind(
1774                    sigc::mem_fun(*this, &MainWindow::onMacroSelected), iMacro
1775                )
1776            );
1777            menuMacro->append(*item);
1778            item->set_accel_path("<Macros>/macro_" + ToString(iMacro));
1779            Glib::ustring comment = macro.comment();
1780            if (!comment.empty())
1781                item->set_tooltip_text(comment);
1782        }
1783        // if there are no macros configured at all, then show a dummy entry instead
1784        if (m_macros.empty()) {
1785            Gtk::MenuItem* item = new Gtk::MenuItem(_("No Macros"));
1786            item->set_sensitive(false);
1787            menuMacro->append(*item);
1788        }
1789    
1790        // add separator line to menu
1791        menuMacro->append(*new Gtk::SeparatorMenuItem);
1792    
1793        {
1794            Gtk::MenuItem* item = new Gtk::MenuItem(_("Setup Macros ..."));
1795            item->signal_activate().connect(
1796                sigc::mem_fun(*this, &MainWindow::setupMacros)
1797            );
1798            menuMacro->append(*item);
1799            item->set_accel_path("<Macros>/SetupMacros");
1800        }
1801    
1802    #if HAS_GTKMM_SHOW_ALL_CHILDREN
1803        menuMacro->show_all_children();
1804    #endif
1805    }
1806    
1807    void MainWindow::onMacroSelected(int iMacro) {
1808        printf("onMacroSelected(%d)\n", iMacro);
1809        if (iMacro < 0 || iMacro >= m_macros.size()) return;
1810        Glib::ustring errorText;
1811        try {
1812            applyMacro(m_macros[iMacro]);
1813        } catch (Serialization::Exception e) {
1814            errorText = e.Message;
1815        } catch (...) {
1816            errorText = _("Unknown exception while applying macro");
1817        }
1818        if (!errorText.empty()) {
1819            Glib::ustring txt = _("Applying macro failed:\n") + errorText;
1820            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1821            msg.run();
1822        }
1823    }
1824    
1825    void MainWindow::setupMacros() {
1826        MacrosSetup* setup = new MacrosSetup();
1827        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
1828        setup->setMacros(m_macros, &m_serializationArchive, pDimRgn);
1829        setup->signal_macros_changed().connect(
1830            sigc::mem_fun(*this, &MainWindow::onMacrosSetupChanged)
1831        );
1832        setup->show();
1833    }
1834    
1835    void MainWindow::onMacrosSetupChanged(const std::vector<Serialization::Archive>& macros) {
1836        m_macros = macros;
1837        Settings::singleton()->saveMacros(m_macros);
1838        updateMacroMenu();
1839    }
1840    
1841    //NOTE: the actual signal's first argument for argument 'page' is on some gtkmm version GtkNotebookPage* and on some Gtk::Widget*. Since we don't need that argument, it is simply void* here for now.
1842    void MainWindow::on_notebook_tab_switched(void* page, guint page_num) {
1843        bool isInstrumentsPage = (page_num == 1);
1844        // so far we only support filtering for the instruments list, so hide the
1845        // filter text entry field if another tab is selected
1846        m_searchField.set_visible(isInstrumentsPage);
1847    }
1848    
1849  bool MainWindow::on_delete_event(GdkEventAny* event)  bool MainWindow::on_delete_event(GdkEventAny* event)
1850  {  {
1851      return !file_is_shared && file_is_changed && !close_confirmation_dialog();      return !file_is_shared && file_is_changed && !close_confirmation_dialog();
# Line 823  void MainWindow::region_changed() Line 1864  void MainWindow::region_changed()
1864    
1865  gig::Instrument* MainWindow::get_instrument()  gig::Instrument* MainWindow::get_instrument()
1866  {  {
1867      gig::Instrument* instrument = 0;      gig::Instrument* instrument = NULL;
1868      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();  
1869        // get indeces of visual selection
1870        std::vector<Gtk::TreeModel::Path> rows = m_TreeViewInstruments.get_selection()->get_selected_rows();
1871      if (rows.empty()) return NULL;      if (rows.empty()) return NULL;
1872      Gtk::TreeModel::const_iterator it = m_refTreeModel->get_iter(rows[0]);  
1873        // convert index of visual selection (i.e. if filtered) to index of model
1874        Gtk::TreeModel::Path path = m_refInstrumentsModelFilter->convert_path_to_child_path(rows[0]);
1875        if (!path) return NULL;
1876    
1877        //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
1878        Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(path);
1879      if (it) {      if (it) {
1880          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
1881          instrument = row[m_Columns.m_col_instr];          instrument = row[m_InstrumentsModel.m_col_instr];
1882      }      }
1883      return instrument;      return instrument;
1884  }  }
# Line 870  void MainWindow::update_dimregs() Line 1919  void MainWindow::update_dimregs()
1919          }          }
1920      }      }
1921    
1922        m_RegionChooser.setModifyAllRegions(all_regions);
1923      m_DimRegionChooser.setModifyAllRegions(all_regions);      m_DimRegionChooser.setModifyAllRegions(all_regions);
1924      m_DimRegionChooser.setModifyAllDimensionRegions(all_dimregs);      m_DimRegionChooser.setModifyAllDimensionRegions(all_dimregs);
1925      m_DimRegionChooser.setModifyBothChannels(stereo);      m_DimRegionChooser.setModifyBothChannels(stereo);
1926    
1927        updateClipboardCopyAvailable();
1928  }  }
1929    
1930  void MainWindow::dimreg_all_dimregs_toggled()  void MainWindow::dimreg_all_dimregs_toggled()
# Line 889  void MainWindow::dimreg_changed() Line 1941  void MainWindow::dimreg_changed()
1941    
1942  void MainWindow::on_sel_change()  void MainWindow::on_sel_change()
1943  {  {
1944    #if !USE_GTKMM_BUILDER
1945      // select item in instrument menu      // select item in instrument menu
1946      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();      std::vector<Gtk::TreeModel::Path> rows = m_TreeViewInstruments.get_selection()->get_selected_rows();
1947      if (!rows.empty()) {      if (!rows.empty()) {
1948          Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);          // convert index of visual selection (i.e. if filtered) to index of model
1949            Gtk::TreeModel::Path row = m_refInstrumentsModelFilter->convert_path_to_child_path(rows[0]);
1950            Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(row);
1951          if (it) {          if (it) {
1952              Gtk::TreePath path(it);              Gtk::TreePath path(it);
1953              int index = path[0];              int index = path[0];
# Line 901  void MainWindow::on_sel_change() Line 1956  void MainWindow::on_sel_change()
1956              static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();              static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();
1957          }          }
1958      }      }
1959    #endif
1960    
1961        updateScriptListOfMenu();
1962    
1963        gig::Instrument* instr = get_instrument();
1964    
1965      m_RegionChooser.set_instrument(get_instrument());      m_RegionChooser.set_instrument(instr);
1966        dimreg_edit.scriptVars.setInstrument(instr, true/*force update*/);
1967    
1968      if (Settings::singleton()->syncSamplerInstrumentSelection) {      if (Settings::singleton()->syncSamplerInstrumentSelection) {
1969          switch_sampler_instrument_signal.emit(get_instrument());          switch_sampler_instrument_signal.emit(get_instrument());
1970      }      }
1971  }  }
1972    
1973    
1974    LoaderSaverBase::LoaderSaverBase(const Glib::ustring filename, gig::File* gig) :
1975        filename(filename), gig(gig),
1976    #ifdef GLIB_THREADS
1977        thread(0),
1978    #endif
1979        progress(0.f)
1980    {
1981    }
1982    
1983  void loader_progress_callback(gig::progress_t* progress)  void loader_progress_callback(gig::progress_t* progress)
1984  {  {
1985      Loader* loader = static_cast<Loader*>(progress->custom);      LoaderSaverBase* loader = static_cast<LoaderSaverBase*>(progress->custom);
1986      loader->progress_callback(progress->factor);      loader->progress_callback(progress->factor);
1987  }  }
1988    
1989  void Loader::progress_callback(float fraction)  void LoaderSaverBase::progress_callback(float fraction)
1990  {  {
1991      {      {
1992    #ifdef GLIB_THREADS
1993          Glib::Threads::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
1994    #else
1995            std::lock_guard<std::mutex> lock(progressMutex);
1996    #endif
1997          progress = fraction;          progress = fraction;
1998      }      }
1999      progress_dispatcher();      progress_dispatcher();
# Line 928  void Loader::progress_callback(float fra Line 2003  void Loader::progress_callback(float fra
2003  // make sure stack is 16-byte aligned for SSE instructions  // make sure stack is 16-byte aligned for SSE instructions
2004  __attribute__((force_align_arg_pointer))  __attribute__((force_align_arg_pointer))
2005  #endif  #endif
2006  void Loader::thread_function()  void LoaderSaverBase::thread_function()
2007  {  {
2008    #ifdef GLIB_THREADS
2009      printf("thread_function self=%p\n",      printf("thread_function self=%p\n",
2010             static_cast<void*>(Glib::Threads::Thread::self()));             static_cast<void*>(Glib::Threads::Thread::self()));
2011    #else
2012        std::cout << "thread_function self=" << std::this_thread::get_id() << "\n";
2013    #endif
2014      printf("Start %s\n", filename.c_str());      printf("Start %s\n", filename.c_str());
2015      try {      try {
         RIFF::File* riff = new RIFF::File(filename);  
         gig = new gig::File(riff);  
2016          gig::progress_t progress;          gig::progress_t progress;
2017          progress.callback = loader_progress_callback;          progress.callback = loader_progress_callback;
2018          progress.custom = this;          progress.custom = this;
2019    
2020          gig->GetInstrument(0, &progress);          thread_function_sub(progress);
2021          printf("End\n");          printf("End\n");
2022          finished_dispatcher();          finished_dispatcher();
2023      } catch (RIFF::Exception e) {      } catch (RIFF::Exception e) {
# Line 952  void Loader::thread_function() Line 2029  void Loader::thread_function()
2029      }      }
2030  }  }
2031    
2032  Loader::Loader(const char* filename)  void LoaderSaverBase::launch()
     : filename(filename), gig(0), thread(0), progress(0.f)  
 {  
 }  
   
 void Loader::launch()  
2033  {  {
2034    #ifdef GLIB_THREADS
2035  #ifdef OLD_THREADS  #ifdef OLD_THREADS
2036      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);      thread = Glib::Thread::create(sigc::mem_fun(*this, &LoaderSaverBase::thread_function), true);
2037  #else  #else
2038      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &LoaderSaverBase::thread_function));
2039  #endif  #endif
2040      printf("launch thread=%p\n", static_cast<void*>(thread));      printf("launch thread=%p\n", static_cast<void*>(thread));
2041    #else
2042        thread = std::thread([this](){ thread_function(); });
2043        std::cout << "launch thread=" << thread.get_id() << "\n";
2044    #endif
2045  }  }
2046    
2047  float Loader::get_progress()  float LoaderSaverBase::get_progress()
2048  {  {
2049      float res;  #ifdef GLIB_THREADS
2050      {      Glib::Threads::Mutex::Lock lock(progressMutex);
2051          Glib::Threads::Mutex::Lock lock(progressMutex);  #else
2052          res = progress;      std::lock_guard<std::mutex> lock(progressMutex);
2053      }  #endif
2054      return res;      return progress;
2055  }  }
2056    
2057  Glib::Dispatcher& Loader::signal_progress()  Glib::Dispatcher& LoaderSaverBase::signal_progress()
2058  {  {
2059      return progress_dispatcher;      return progress_dispatcher;
2060  }  }
2061    
2062  Glib::Dispatcher& Loader::signal_finished()  Glib::Dispatcher& LoaderSaverBase::signal_finished()
2063  {  {
2064      return finished_dispatcher;      return finished_dispatcher;
2065  }  }
2066    
2067  Glib::Dispatcher& Loader::signal_error()  Glib::Dispatcher& LoaderSaverBase::signal_error()
2068  {  {
2069      return error_dispatcher;      return error_dispatcher;
2070  }  }
2071    
2072  void saver_progress_callback(gig::progress_t* progress)  void LoaderSaverBase::join() {
2073  {  #ifdef GLIB_THREADS
2074      Saver* saver = static_cast<Saver*>(progress->custom);      thread->join();
2075      saver->progress_callback(progress->factor);  #else
2076        thread.join();
2077    #endif
2078  }  }
2079    
2080  void Saver::progress_callback(float fraction)  
2081    Loader::Loader(const char* filename) :
2082        LoaderSaverBase(filename, 0)
2083  {  {
     {  
         Glib::Threads::Mutex::Lock lock(progressMutex);  
         progress = fraction;  
     }  
     progress_dispatcher.emit();  
2084  }  }
2085    
2086  #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()  
2087  {  {
2088      printf("thread_function self=%p\n",      RIFF::File* riff = new RIFF::File(filename);
2089             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;  
2090    
2091          // if no filename was provided, that means "save", if filename was provided means "save as"      gig->GetInstrument(0, &progress);
         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);  
         }  
   
         printf("End\n");  
         finished_dispatcher.emit();  
     } catch (RIFF::Exception e) {  
         error_message = e.Message;  
         error_dispatcher.emit();  
     } catch (...) {  
         error_message = _("Unknown exception occurred");  
         error_dispatcher.emit();  
     }  
2092  }  }
2093    
2094  Saver::Saver(gig::File* file, Glib::ustring filename)  
2095      : gig(file), filename(filename), thread(0), progress(0.f)  Saver::Saver(gig::File* file, Glib::ustring filename) :
2096        LoaderSaverBase(filename, file)
2097  {  {
2098  }  }
2099    
2100  void Saver::launch()  void Saver::thread_function_sub(gig::progress_t& progress)
2101  {  {
2102  #ifdef OLD_THREADS      // if no filename was provided, that means "save", if filename was provided means "save as"
2103      thread = Glib::Thread::create(sigc::mem_fun(*this, &Saver::thread_function), true);      if (filename.empty()) {
2104            if (!Settings::singleton()->saveWithTemporaryFile) {
2105                // save directly over the existing .gig file
2106                // (requires less disk space than solution below
2107                // but may be slower)
2108                gig->Save(&progress);
2109            } else {
2110                // save the file as separate temporary file first,
2111                // then move the saved file over the old file
2112                // (may result in performance speedup during save)
2113                gig::String tmpname = filename + ".TMP";
2114                gig->Save(tmpname, &progress);
2115    #if defined(WIN32)
2116                if (!DeleteFile(filename.c_str())) {
2117                    throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file).");
2118                }
2119    #else // POSIX ...
2120                if (unlink(filename.c_str())) {
2121                    throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + gig::String(strerror(errno)));
2122                }
2123    #endif
2124                if (rename(tmpname.c_str(), filename.c_str())) {
2125    #if defined(WIN32)
2126                    throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");
2127  #else  #else
2128      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)));
2129  #endif  #endif
2130      printf("launch thread=%p\n", static_cast<void*>(thread));              }
2131  }          }
2132        } else {
2133  float Saver::get_progress()          gig->Save(filename, &progress);
 {  
     float res;  
     {  
         Glib::Threads::Mutex::Lock lock(progressMutex);  
         res = progress;  
2134      }      }
     return res;  
 }  
   
 Glib::Dispatcher& Saver::signal_progress()  
 {  
     return progress_dispatcher;  
2135  }  }
2136    
 Glib::Dispatcher& Saver::signal_finished()  
 {  
     return finished_dispatcher;  
 }  
   
 Glib::Dispatcher& Saver::signal_error()  
 {  
     return error_dispatcher;  
 }  
2137    
2138  ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)  ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)
2139      : Gtk::Dialog(title, parent, true)      : Gtk::Dialog(title, parent, true)
2140  {  {
2141    #if USE_GTKMM_BOX
2142        get_content_area()->pack_start(progressBar);
2143    #else
2144      get_vbox()->pack_start(progressBar);      get_vbox()->pack_start(progressBar);
2145    #endif
2146    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2147      show_all_children();      show_all_children();
2148    #endif
2149      resize(600,50);      resize(600,50);
2150  }  }
2151    
# Line 1120  void MainWindow::__clear() { Line 2155  void MainWindow::__clear() {
2155      // forget all samples that ought to be imported      // forget all samples that ought to be imported
2156      m_SampleImportQueue.clear();      m_SampleImportQueue.clear();
2157      // clear the samples and instruments tree views      // clear the samples and instruments tree views
2158      m_refTreeModel->clear();      m_refInstrumentsTreeModel->clear();
2159      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
2160      m_refScriptsTreeModel->clear();      m_refScriptsTreeModel->clear();
2161    #if !USE_GTKMM_BUILDER
2162      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
2163      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
2164          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
2165      }      }
2166    #endif
2167      // free libgig's gig::File instance      // free libgig's gig::File instance
2168      if (file && !file_is_shared) delete file;      if (file && !file_is_shared) delete file;
2169      file = NULL;      file = NULL;
# Line 1135  void MainWindow::__clear() { Line 2172  void MainWindow::__clear() {
2172    
2173  void MainWindow::__refreshEntireGUI() {  void MainWindow::__refreshEntireGUI() {
2174      // clear the samples and instruments tree views      // clear the samples and instruments tree views
2175      m_refTreeModel->clear();      m_refInstrumentsTreeModel->clear();
2176      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
2177      m_refScriptsTreeModel->clear();      m_refScriptsTreeModel->clear();
2178    #if !USE_GTKMM_BUILDER
2179      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
2180      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
2181          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
2182      }      }
2183    #endif
2184    
2185      if (!this->file) return;      if (!this->file) return;
2186    
# Line 1175  bool MainWindow::close_confirmation_dial Line 2214  bool MainWindow::close_confirmation_dial
2214      g_free(msg);      g_free(msg);
2215      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."));
2216      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
2217    #if HAS_GTKMM_STOCK
2218        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2219        dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);
2220    #else
2221        dialog.add_button(_("_OK"), Gtk::RESPONSE_OK);
2222      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2223      dialog.add_button(file_has_name ? _("_Save") : _("Save _As"), Gtk::RESPONSE_YES);  #endif
2224      dialog.set_default_response(Gtk::RESPONSE_YES);      dialog.set_default_response(Gtk::RESPONSE_YES);
2225      int response = dialog.run();      int response = dialog.run();
2226      dialog.hide();      dialog.hide();
# Line 1207  bool MainWindow::leaving_shared_mode_dia Line 2251  bool MainWindow::leaving_shared_mode_dia
2251            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
2252            "load it."));            "load it."));
2253      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
2254    #if HAS_GTKMM_STOCK
2255        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2256    #else
2257      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2258    #endif
2259      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
2260      int response = dialog.run();      int response = dialog.run();
2261      dialog.hide();      dialog.hide();
# Line 1221  void MainWindow::on_action_file_open() Line 2269  void MainWindow::on_action_file_open()
2269      if (file_is_shared && !leaving_shared_mode_dialog()) return;      if (file_is_shared && !leaving_shared_mode_dialog()) return;
2270    
2271      Gtk::FileChooserDialog dialog(*this, _("Open file"));      Gtk::FileChooserDialog dialog(*this, _("Open file"));
2272    #if HAS_GTKMM_STOCK
2273        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2274        dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
2275    #else
2276      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2277      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
2278    #endif
2279      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
2280  #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
2281      Gtk::FileFilter filter;      Gtk::FileFilter filter;
# Line 1236  void MainWindow::on_action_file_open() Line 2289  void MainWindow::on_action_file_open()
2289          dialog.set_current_folder(current_gig_dir);          dialog.set_current_folder(current_gig_dir);
2290      }      }
2291      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2292            dialog.hide();
2293          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
2294          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
2295    #ifdef GLIB_THREADS
2296          printf("on_action_file_open self=%p\n",          printf("on_action_file_open self=%p\n",
2297                 static_cast<void*>(Glib::Threads::Thread::self()));                 static_cast<void*>(Glib::Threads::Thread::self()));
2298    #else
2299            std::cout << "on_action_file_open self=" <<
2300                std::this_thread::get_id() << "\n";
2301    #endif
2302          load_file(filename.c_str());          load_file(filename.c_str());
2303          current_gig_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
2304      }      }
# Line 1254  void MainWindow::load_file(const char* n Line 2313  void MainWindow::load_file(const char* n
2313          Glib::filename_display_basename(name) + "' ...",          Glib::filename_display_basename(name) + "' ...",
2314          *this          *this
2315      );      );
2316    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2317      progress_dialog->show_all();      progress_dialog->show_all();
2318    #endif
2319      loader = new Loader(name); //FIXME: memory leak!      loader = new Loader(name); //FIXME: memory leak!
2320      loader->signal_progress().connect(      loader->signal_progress().connect(
2321          sigc::mem_fun(*this, &MainWindow::on_loader_progress));          sigc::mem_fun(*this, &MainWindow::on_loader_progress));
# Line 1284  void MainWindow::load_instrument(gig::In Line 2345  void MainWindow::load_instrument(gig::In
2345      {      {
2346          if (instrument == instr) {          if (instrument == instr) {
2347              // select item in "instruments" tree view              // select item in "instruments" tree view
2348              m_TreeView.get_selection()->select(Gtk::TreePath(ToString(i)));              m_TreeViewInstruments.get_selection()->select(Gtk::TreePath(ToString(i)));
2349              // make sure the selected item in the "instruments" tree view is              // make sure the selected item in the "instruments" tree view is
2350              // visible (scroll to it)              // visible (scroll to it)
2351              m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));              m_TreeViewInstruments.scroll_to_row(Gtk::TreePath(ToString(i)));
2352    #if !USE_GTKMM_BUILDER
2353              // select item in instrument menu              // select item in instrument menu
2354              {              {
2355                  const std::vector<Gtk::Widget*> children =                  const std::vector<Gtk::Widget*> children =
2356                      instrument_menu->get_children();                      instrument_menu->get_children();
2357                  static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();                  static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();
2358              }              }
2359    #endif
2360              // update region chooser and dimension region chooser              // update region chooser and dimension region chooser
2361              m_RegionChooser.set_instrument(instr);              m_RegionChooser.set_instrument(instr);
2362              break;              break;
# Line 1308  void MainWindow::on_loader_progress() Line 2371  void MainWindow::on_loader_progress()
2371    
2372  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
2373  {  {
2374        loader->join();
2375      printf("Loader finished!\n");      printf("Loader finished!\n");
2376    #ifdef GLIB_THREADS
2377      printf("on_loader_finished self=%p\n",      printf("on_loader_finished self=%p\n",
2378             static_cast<void*>(Glib::Threads::Thread::self()));             static_cast<void*>(Glib::Threads::Thread::self()));
2379    #else
2380        std::cout << "on_loader_finished self=" <<
2381            std::this_thread::get_id() << "\n";
2382    #endif
2383      load_gig(loader->gig, loader->filename.c_str());      load_gig(loader->gig, loader->filename.c_str());
2384      progress_dialog->hide();      progress_dialog->hide();
2385  }  }
2386    
2387  void MainWindow::on_loader_error()  void MainWindow::on_loader_error()
2388  {  {
2389        loader->join();
2390      Glib::ustring txt = _("Could not load file: ") + loader->error_message;      Glib::ustring txt = _("Could not load file: ") + loader->error_message;
2391      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2392      msg.run();      msg.run();
# Line 1365  bool MainWindow::file_save() Line 2435  bool MainWindow::file_save()
2435          Glib::filename_display_basename(this->filename) + "' ...",          Glib::filename_display_basename(this->filename) + "' ...",
2436          *this          *this
2437      );      );
2438    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2439      progress_dialog->show_all();      progress_dialog->show_all();
2440    #endif
2441      saver = new Saver(this->file); //FIXME: memory leak!      saver = new Saver(this->file); //FIXME: memory leak!
2442      saver->signal_progress().connect(      saver->signal_progress().connect(
2443          sigc::mem_fun(*this, &MainWindow::on_saver_progress));          sigc::mem_fun(*this, &MainWindow::on_saver_progress));
# Line 1385  void MainWindow::on_saver_progress() Line 2457  void MainWindow::on_saver_progress()
2457    
2458  void MainWindow::on_saver_error()  void MainWindow::on_saver_error()
2459  {  {
2460        saver->join();
2461      file_structure_changed_signal.emit(this->file);      file_structure_changed_signal.emit(this->file);
2462      Glib::ustring txt = _("Could not save file: ") + saver->error_message;      Glib::ustring txt = _("Could not save file: ") + saver->error_message;
2463      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);      Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
# Line 1393  void MainWindow::on_saver_error() Line 2466  void MainWindow::on_saver_error()
2466    
2467  void MainWindow::on_saver_finished()  void MainWindow::on_saver_finished()
2468  {  {
2469        saver->join();
2470      this->file = saver->gig;      this->file = saver->gig;
2471      this->filename = saver->filename;      this->filename = saver->filename;
2472      current_gig_dir = Glib::path_get_dirname(filename);      current_gig_dir = Glib::path_get_dirname(filename);
# Line 1417  void MainWindow::on_action_file_save_as( Line 2491  void MainWindow::on_action_file_save_as(
2491    
2492  bool MainWindow::file_save_as()  bool MainWindow::file_save_as()
2493  {  {
2494      Gtk::FileChooserDialog dialog(*this, _("Save As"), Gtk::FILE_CHOOSER_ACTION_SAVE);      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);
2495    #if HAS_GTKMM_STOCK
2496        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2497        dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
2498    #else
2499      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2500      dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);      dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);
2501    #endif
2502      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
2503      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
2504    
# Line 1448  bool MainWindow::file_save_as() Line 2527  bool MainWindow::file_save_as()
2527      }      }
2528    
2529      // show warning in the dialog      // show warning in the dialog
2530      Gtk::HBox descriptionArea;      HBox descriptionArea;
2531      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
2532      Gtk::Image warningIcon;      Gtk::Image warningIcon;
2533      warningIcon.set_from_icon_name("dialog-warning",      warningIcon.set_from_icon_name("dialog-warning",
# Line 1469  bool MainWindow::file_save_as() Line 2548  bool MainWindow::file_save_as()
2548            "same .gig file will end up in corrupted sample wave data!\n")            "same .gig file will end up in corrupted sample wave data!\n")
2549      );      );
2550      descriptionArea.pack_start(description);      descriptionArea.pack_start(description);
2551    #if USE_GTKMM_BOX
2552        dialog.get_content_area()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2553    #else
2554      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2555    #endif
2556    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2557      descriptionArea.show_all();      descriptionArea.show_all();
2558    #endif
2559    
2560      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2561            dialog.hide();
2562          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
2563          if (!Glib::str_has_suffix(filename, ".gig")) {          if (!Glib::str_has_suffix(filename, ".gig")) {
2564              filename += ".gig";              filename += ".gig";
# Line 1484  bool MainWindow::file_save_as() Line 2570  bool MainWindow::file_save_as()
2570              Glib::filename_display_basename(filename) + "' ...",              Glib::filename_display_basename(filename) + "' ...",
2571              *this              *this
2572          );          );
2573    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2574          progress_dialog->show_all();          progress_dialog->show_all();
2575    #endif
2576    
2577          saver = new Saver(file, filename); //FIXME: memory leak!          saver = new Saver(file, filename); //FIXME: memory leak!
2578          saver->signal_progress().connect(          saver->signal_progress().connect(
# Line 1599  void MainWindow::__import_queued_samples Line 2687  void MainWindow::__import_queued_samples
2687    
2688  void MainWindow::on_action_file_properties()  void MainWindow::on_action_file_properties()
2689  {  {
2690      propDialog.show();      fileProps.show();
2691      propDialog.deiconify();      fileProps.deiconify();
2692  }  }
2693    
2694  void MainWindow::on_action_warn_user_on_extensions() {  void MainWindow::on_action_warn_user_on_extensions() {
# Line 1608  void MainWindow::on_action_warn_user_on_ Line 2696  void MainWindow::on_action_warn_user_on_
2696          !Settings::singleton()->warnUserOnExtensions;          !Settings::singleton()->warnUserOnExtensions;
2697  }  }
2698    
2699    void MainWindow::on_action_show_tooltips() {
2700        Settings::singleton()->showTooltips =
2701            !Settings::singleton()->showTooltips;
2702    
2703        on_show_tooltips_changed();
2704    }
2705    
2706    void MainWindow::on_show_tooltips_changed() {
2707        const bool b = Settings::singleton()->showTooltips;
2708    
2709        dimreg_label.set_has_tooltip(b);
2710        dimreg_all_regions.set_has_tooltip(b);
2711        dimreg_all_dimregs.set_has_tooltip(b);
2712        dimreg_stereo.set_has_tooltip(b);
2713    
2714        // Not doing this here, we let onQueryTreeViewTooltip() handle this per cell
2715        //m_TreeViewInstruments.set_has_tooltip(b);
2716    
2717        m_TreeViewSamples.set_has_tooltip(b);
2718        m_TreeViewScripts.set_has_tooltip(b);
2719    
2720        set_has_tooltip(b);
2721    }
2722    
2723  void MainWindow::on_action_sync_sampler_instrument_selection() {  void MainWindow::on_action_sync_sampler_instrument_selection() {
2724      Settings::singleton()->syncSamplerInstrumentSelection =      Settings::singleton()->syncSamplerInstrumentSelection =
2725          !Settings::singleton()->syncSamplerInstrumentSelection;          !Settings::singleton()->syncSamplerInstrumentSelection;
# Line 1627  void MainWindow::on_action_help_about() Line 2739  void MainWindow::on_action_help_about()
2739      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
2740  #endif  #endif
2741      dialog.set_version(VERSION);      dialog.set_version(VERSION);
2742      dialog.set_copyright("Copyright (C) 2006-2017 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2019 Andreas Persson");
2743      const std::string sComment =      const std::string sComment =
2744          _("Built " __DATE__ "\nUsing ") +          _("Built " __DATE__ "\nUsing ") +
2745          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
# Line 1638  void MainWindow::on_action_help_about() Line 2750  void MainWindow::on_action_help_about()
2750              "backup your Gigasampler/GigaStudio files before editing them with "              "backup your Gigasampler/GigaStudio files before editing them with "
2751              "this application.\n"              "this application.\n"
2752              "\n"              "\n"
2753              "Please report bugs to: http://bugs.linuxsampler.org"              "Please report bugs to: https://bugs.linuxsampler.org"
2754          );          );
2755      dialog.set_comments(sComment.c_str());      dialog.set_comments(sComment.c_str());
2756      dialog.set_website("http://www.linuxsampler.org");      dialog.set_website("https://www.linuxsampler.org");
2757      dialog.set_website_label("http://www.linuxsampler.org");      dialog.set_website_label("https://www.linuxsampler.org");
2758        dialog.set_position(Gtk::WIN_POS_CENTER);
2759      dialog.run();      dialog.run();
2760  }  }
2761    
2762  PropDialog::PropDialog()  FilePropDialog::FilePropDialog()
2763      : eFileFormat(_("File Format")),      : eFileFormat(_("File Format")),
2764        eName(_("Name")),        eName(_("Name")),
2765        eCreationDate(_("Creation date")),        eCreationDate(_("Creation date")),
# Line 1664  PropDialog::PropDialog() Line 2777  PropDialog::PropDialog()
2777        eSourceForm(_("Source form")),        eSourceForm(_("Source form")),
2778        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
2779        eSubject(_("Subject")),        eSubject(_("Subject")),
2780        quitButton(_("_Close"), true),  #if HAS_GTKMM_STOCK
2781          quitButton(Gtk::Stock::CLOSE),
2782    #else
2783          quitButton(_("_Close")),
2784    #endif
2785        table(2, 1),        table(2, 1),
2786        m_file(NULL)        m_file(NULL)
2787  {  {
2788        if (!Settings::singleton()->autoRestoreWindowDimension) {
2789            set_default_size(470, 390);
2790            set_position(Gtk::WIN_POS_MOUSE);
2791        }
2792    
2793      set_title(_("File Properties"));      set_title(_("File Properties"));
2794      eName.set_width_chars(50);      eName.set_width_chars(50);
2795    
2796        connect(eFileFormat, &FilePropDialog::set_FileFormat);
2797      connect(eName, &DLS::Info::Name);      connect(eName, &DLS::Info::Name);
2798      connect(eCreationDate, &DLS::Info::CreationDate);      connect(eCreationDate, &DLS::Info::CreationDate);
2799      connect(eComments, &DLS::Info::Comments);      connect(eComments, &DLS::Info::Comments);
# Line 1706  PropDialog::PropDialog() Line 2829  PropDialog::PropDialog()
2829      table.add(eCommissioned);      table.add(eCommissioned);
2830      table.add(eSubject);      table.add(eSubject);
2831    
2832    #if USE_GTKMM_GRID
2833        table.set_column_spacing(5);
2834    #else
2835      table.set_col_spacings(5);      table.set_col_spacings(5);
2836    #endif
2837    
2838      add(vbox);      add(vbox);
2839    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2840        table.set_margin(5);
2841    #else
2842      table.set_border_width(5);      table.set_border_width(5);
2843    #endif
2844      vbox.add(table);      vbox.add(table);
2845      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
2846      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
2847    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2848        buttonBox.set_margin(5);
2849    #else
2850      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
2851    #endif
2852      buttonBox.show();      buttonBox.show();
2853      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
2854      quitButton.set_can_default();      quitButton.set_can_default();
2855      quitButton.grab_focus();      quitButton.grab_focus();
2856      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
2857          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &FilePropDialog::hide));
     eFileFormat.signal_value_changed().connect(  
         sigc::mem_fun(*this, &PropDialog::onFileFormatChanged));  
2858    
2859      quitButton.show();      quitButton.show();
2860      vbox.show();      vbox.show();
2861    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2862      show_all_children();      show_all_children();
2863    #endif
2864  }  }
2865    
2866  void PropDialog::set_file(gig::File* file)  void FilePropDialog::set_file(gig::File* file)
2867  {  {
2868      m_file = file;      m_file = file;
2869        update(file->pInfo);
2870    
2871      // update file format version combo box      // update file format version combo box
2872      const std::string sGiga = "Gigasampler/GigaStudio v";      const std::string sGiga = "Gigasampler/GigaStudio v";
# Line 1737  void PropDialog::set_file(gig::File* fil Line 2874  void PropDialog::set_file(gig::File* fil
2874      std::vector<std::string> txts;      std::vector<std::string> txts;
2875      std::vector<int> values;      std::vector<int> values;
2876      txts.push_back(sGiga + "2"); values.push_back(2);      txts.push_back(sGiga + "2"); values.push_back(2);
2877      txts.push_back(sGiga + "3/v4"); values.push_back(3);      txts.push_back(sGiga + "3"); values.push_back(3);
2878      if (major != 2 && major != 3) {      txts.push_back(sGiga + "4"); values.push_back(4);
2879        if (major < 2 || major > 4) {
2880          txts.push_back(sGiga + ToString(major)); values.push_back(major);          txts.push_back(sGiga + ToString(major)); values.push_back(major);
2881      }      }
2882      std::vector<const char*> texts;      std::vector<const char*> texts;
2883      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());
2884      texts.push_back(NULL); values.push_back(0);      texts.push_back(NULL); values.push_back(0);
2885    
2886        update_model++;
2887      eFileFormat.set_choices(&texts[0], &values[0]);      eFileFormat.set_choices(&texts[0], &values[0]);
2888      eFileFormat.set_value(major);      eFileFormat.set_value(major);
2889        update_model--;
2890  }  }
2891    
2892  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)  
2893  {  {
2894      update(info);      m_file->pVersion->major = value;
2895  }  }
2896    
2897    
# Line 1787  void InstrumentProps::set_MIDIProgram(ui Line 2923  void InstrumentProps::set_MIDIProgram(ui
2923  }  }
2924    
2925  InstrumentProps::InstrumentProps() :  InstrumentProps::InstrumentProps() :
2926      quitButton(_("_Close"), true),  #if HAS_GTKMM_STOCK
2927        quitButton(Gtk::Stock::CLOSE),
2928    #else
2929        quitButton(_("_Close")),
2930    #endif
2931      table(2,1),      table(2,1),
2932      eName(_("Name")),      eName(_("Name")),
2933      eIsDrum(_("Is drum")),      eIsDrum(_("Is drum")),
2934      eMIDIBank(_("MIDI bank"), 0, 16383),      eMIDIBank(_("MIDI bank"), 0, 16383),
2935      eMIDIProgram(_("MIDI program")),      eMIDIProgram(_("MIDI program")),
2936      eAttenuation(_("Attenuation"), 0, 96, 0, 1),      eAttenuation(_("Attenuation (dB)"), -96, +96, 0, 1),
     eGainPlus6(_("Gain +6dB"), eAttenuation, -6),  
2937      eEffectSend(_("Effect send"), 0, 65535),      eEffectSend(_("Effect send"), 0, 65535),
2938      eFineTune(_("Fine tune"), -8400, 8400),      eFineTune(_("Fine tune"), -8400, 8400),
2939      ePitchbendRange(_("Pitchbend range"), 0, 12),      ePitchbendRange(_("Pitchbend range (halftones)"), 0, 48),
2940      ePianoReleaseMode(_("Piano release mode")),      ePianoReleaseMode(_("Piano release mode")),
2941      eDimensionKeyRangeLow(_("Keyswitching range low")),      eDimensionKeyRangeLow(_("Keyswitching range low")),
2942      eDimensionKeyRangeHigh(_("Keyswitching range high"))      eDimensionKeyRangeHigh(_("Keyswitching range high")),
2943  {      table2(2,1),
2944        eName2(_("Name")),
2945        eCreationDate(_("Creation date")),
2946        eComments(_("Comments")),
2947        eProduct(_("Product")),
2948        eCopyright(_("Copyright")),
2949        eArtists(_("Artists")),
2950        eGenre(_("Genre")),
2951        eKeywords(_("Keywords")),
2952        eEngineer(_("Engineer")),
2953        eTechnician(_("Technician")),
2954        eSoftware(_("Software")),
2955        eMedium(_("Medium")),
2956        eSource(_("Source")),
2957        eSourceForm(_("Source form")),
2958        eCommissioned(_("Commissioned")),
2959        eSubject(_("Subject"))
2960    {
2961        if (!Settings::singleton()->autoRestoreWindowDimension) {
2962            //set_default_size(470, 390);
2963            set_position(Gtk::WIN_POS_MOUSE);
2964        }
2965    
2966      set_title(_("Instrument Properties"));      set_title(_("Instrument Properties"));
2967    
2968        tabs.append_page(vbox[1], _("Settings"));
2969        tabs.append_page(vbox[2], _("Info"));
2970    
2971      eDimensionKeyRangeLow.set_tip(      eDimensionKeyRangeLow.set_tip(
2972          _("start of the keyboard area which should switch the "          _("start of the keyboard area which should switch the "
2973            "\"keyswitching\" dimension")            "\"keyswitching\" dimension")
# Line 1818  InstrumentProps::InstrumentProps() : Line 2982  InstrumentProps::InstrumentProps() :
2982      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);
2983      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);
2984      connect(eAttenuation, &gig::Instrument::Attenuation);      connect(eAttenuation, &gig::Instrument::Attenuation);
     connect(eGainPlus6, &gig::Instrument::Attenuation);  
2985      connect(eEffectSend, &gig::Instrument::EffectSend);      connect(eEffectSend, &gig::Instrument::EffectSend);
2986      connect(eFineTune, &gig::Instrument::FineTune);      connect(eFineTune, &gig::Instrument::FineTune);
2987      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);
# Line 1828  InstrumentProps::InstrumentProps() : Line 2991  InstrumentProps::InstrumentProps() :
2991    
2992      eName.signal_value_changed().connect(sig_name_changed.make_slot());      eName.signal_value_changed().connect(sig_name_changed.make_slot());
2993    
2994        connect(eName2, &InstrumentProps::set_Name);
2995        connectLambda(eCreationDate, [this](gig::String s) {
2996            m->pInfo->CreationDate = s;
2997        });
2998        connectLambda(eComments, [this](gig::String s) {
2999            m->pInfo->Comments = s;
3000        });
3001        connectLambda(eProduct, [this](gig::String s) {
3002            m->pInfo->Product = s;
3003        });
3004        connectLambda(eCopyright, [this](gig::String s) {
3005            m->pInfo->Copyright = s;
3006        });
3007        connectLambda(eArtists, [this](gig::String s) {
3008            m->pInfo->Artists = s;
3009        });
3010        connectLambda(eGenre, [this](gig::String s) {
3011            m->pInfo->Genre = s;
3012        });
3013        connectLambda(eKeywords, [this](gig::String s) {
3014            m->pInfo->Keywords = s;
3015        });
3016        connectLambda(eEngineer, [this](gig::String s) {
3017            m->pInfo->Engineer = s;
3018        });
3019        connectLambda(eTechnician, [this](gig::String s) {
3020            m->pInfo->Technician = s;
3021        });
3022        connectLambda(eSoftware, [this](gig::String s) {
3023            m->pInfo->Software = s;
3024        });
3025        connectLambda(eMedium, [this](gig::String s) {
3026            m->pInfo->Medium = s;
3027        });
3028        connectLambda(eSource, [this](gig::String s) {
3029            m->pInfo->Source = s;
3030        });
3031        connectLambda(eSourceForm, [this](gig::String s) {
3032            m->pInfo->SourceForm = s;
3033        });
3034        connectLambda(eCommissioned, [this](gig::String s) {
3035            m->pInfo->Commissioned = s;
3036        });
3037        connectLambda(eSubject, [this](gig::String s) {
3038            m->pInfo->Subject = s;
3039        });
3040    
3041        // tab 1
3042    #if USE_GTKMM_GRID
3043        table.set_column_spacing(5);
3044    #else
3045      table.set_col_spacings(5);      table.set_col_spacings(5);
3046    #endif
3047      table.add(eName);      table.add(eName);
3048      table.add(eIsDrum);      table.add(eIsDrum);
3049      table.add(eMIDIBank);      table.add(eMIDIBank);
3050      table.add(eMIDIProgram);      table.add(eMIDIProgram);
3051      table.add(eAttenuation);      table.add(eAttenuation);
     table.add(eGainPlus6);  
3052      table.add(eEffectSend);      table.add(eEffectSend);
3053      table.add(eFineTune);      table.add(eFineTune);
3054      table.add(ePitchbendRange);      table.add(ePitchbendRange);
# Line 1843  InstrumentProps::InstrumentProps() : Line 3056  InstrumentProps::InstrumentProps() :
3056      table.add(eDimensionKeyRangeLow);      table.add(eDimensionKeyRangeLow);
3057      table.add(eDimensionKeyRangeHigh);      table.add(eDimensionKeyRangeHigh);
3058    
3059      add(vbox);      // tab 2
3060    #if USE_GTKMM_GRID
3061        table2.set_column_spacing(5);
3062    #else
3063        table2.set_col_spacings(5);
3064    #endif
3065        table2.add(eName2);
3066        table2.add(eCreationDate);
3067        table2.add(eComments);
3068        table2.add(eProduct);
3069        table2.add(eCopyright);
3070        table2.add(eArtists);
3071        table2.add(eGenre);
3072        table2.add(eKeywords);
3073        table2.add(eEngineer);
3074        table2.add(eTechnician);
3075        table2.add(eSoftware);
3076        table2.add(eMedium);
3077        table2.add(eSource);
3078        table2.add(eSourceForm);
3079        table2.add(eCommissioned);
3080        table2.add(eSubject);
3081    
3082        add(vbox[0]);
3083    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3084        table.set_margin(5);
3085    #else
3086      table.set_border_width(5);      table.set_border_width(5);
3087      vbox.pack_start(table);  #endif
3088        vbox[1].pack_start(table);
3089        vbox[2].pack_start(table2);
3090      table.show();      table.show();
3091      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      table2.show();
3092        vbox[0].pack_start(tabs);
3093        vbox[0].pack_start(buttonBox, Gtk::PACK_SHRINK);
3094      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
3095    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3096        buttonBox.set_margin(5);
3097    #else
3098      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
3099    #endif
3100      buttonBox.show();      buttonBox.show();
3101      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
3102      quitButton.set_can_default();      quitButton.set_can_default();
# Line 1859  InstrumentProps::InstrumentProps() : Line 3106  InstrumentProps::InstrumentProps() :
3106          sigc::mem_fun(*this, &InstrumentProps::hide));          sigc::mem_fun(*this, &InstrumentProps::hide));
3107    
3108      quitButton.show();      quitButton.show();
3109      vbox.show();      vbox[0].show();
3110    #if HAS_GTKMM_SHOW_ALL_CHILDREN
3111      show_all_children();      show_all_children();
3112    #endif
3113  }  }
3114    
3115  void InstrumentProps::set_instrument(gig::Instrument* instrument)  void InstrumentProps::set_instrument(gig::Instrument* instrument)
# Line 1868  void InstrumentProps::set_instrument(gig Line 3117  void InstrumentProps::set_instrument(gig
3117      update(instrument);      update(instrument);
3118    
3119      update_model++;      update_model++;
3120    
3121        // tab 1
3122      eName.set_value(instrument->pInfo->Name);      eName.set_value(instrument->pInfo->Name);
3123      eIsDrum.set_value(instrument->IsDrum);      eIsDrum.set_value(instrument->IsDrum);
3124      eMIDIBank.set_value(instrument->MIDIBank);      eMIDIBank.set_value(instrument->MIDIBank);
3125      eMIDIProgram.set_value(instrument->MIDIProgram);      eMIDIProgram.set_value(instrument->MIDIProgram);
3126        // tab 2
3127        eName2.set_value(instrument->pInfo->Name);
3128        eCreationDate.set_value(instrument->pInfo->CreationDate);
3129        eComments.set_value(instrument->pInfo->Comments);
3130        eProduct.set_value(instrument->pInfo->Product);
3131        eCopyright.set_value(instrument->pInfo->Copyright);
3132        eArtists.set_value(instrument->pInfo->Artists);
3133        eGenre.set_value(instrument->pInfo->Genre);
3134        eKeywords.set_value(instrument->pInfo->Keywords);
3135        eEngineer.set_value(instrument->pInfo->Engineer);
3136        eTechnician.set_value(instrument->pInfo->Technician);
3137        eSoftware.set_value(instrument->pInfo->Software);
3138        eMedium.set_value(instrument->pInfo->Medium);
3139        eSource.set_value(instrument->pInfo->Source);
3140        eSourceForm.set_value(instrument->pInfo->SourceForm);
3141        eCommissioned.set_value(instrument->pInfo->Commissioned);
3142        eSubject.set_value(instrument->pInfo->Subject);
3143    
3144        update_model--;
3145    }
3146    
3147    
3148    SampleProps::SampleProps() :
3149    #if HAS_GTKMM_STOCK
3150        quitButton(Gtk::Stock::CLOSE),
3151    #else
3152        quitButton(_("_Close")),
3153    #endif
3154        table(2,1),
3155        eName(_("Name")),
3156        eUnityNote(_("Unity Note")),
3157        eSampleGroup(_("Sample Group")),
3158        eSampleFormatInfo(_("Sample Format")),
3159        eSampleID("Sample ID"),
3160        eChecksum("Wave Data CRC-32"),
3161        eLoopsCount(_("Loops"), 0, 1), // we might support more than 1 loop in future
3162        eLoopStart(_("Loop start position"), 0, 9999999),
3163        eLoopLength(_("Loop size"), 0, 9999999),
3164        eLoopType(_("Loop type")),
3165        eLoopPlayCount(_("Playback count")),
3166        table2(2,1),
3167        eName2(_("Name")),
3168        eCreationDate(_("Creation date")),
3169        eComments(_("Comments")),
3170        eProduct(_("Product")),
3171        eCopyright(_("Copyright")),
3172        eArtists(_("Artists")),
3173        eGenre(_("Genre")),
3174        eKeywords(_("Keywords")),
3175        eEngineer(_("Engineer")),
3176        eTechnician(_("Technician")),
3177        eSoftware(_("Software")),
3178        eMedium(_("Medium")),
3179        eSource(_("Source")),
3180        eSourceForm(_("Source form")),
3181        eCommissioned(_("Commissioned")),
3182        eSubject(_("Subject"))
3183    {
3184        if (!Settings::singleton()->autoRestoreWindowDimension) {
3185            //set_default_size(470, 390);
3186            set_position(Gtk::WIN_POS_MOUSE);
3187        }
3188    
3189        set_title(_("Sample Properties"));
3190    
3191        tabs.append_page(vbox[1], _("Settings"));
3192        tabs.append_page(vbox[2], _("Info"));
3193    
3194        connect(eName, &SampleProps::set_Name);
3195        connect(eUnityNote, &gig::Sample::MIDIUnityNote);
3196        connect(eLoopsCount, &gig::Sample::Loops);
3197        connectLambda(eLoopStart, [this](uint32_t start){
3198            m->LoopStart = start;
3199            m->LoopEnd = start + m->LoopSize;
3200        });
3201        connectLambda(eLoopLength, [this](uint32_t length){
3202            m->LoopSize = length;
3203            m->LoopEnd = m->LoopStart + length;
3204        });
3205        {
3206            const char* choices[] = { _("normal"), _("bidirectional"), _("backward"), 0 };
3207            static const gig::loop_type_t values[] = {
3208                gig::loop_type_normal,
3209                gig::loop_type_bidirectional,
3210                gig::loop_type_backward
3211            };
3212            eLoopType.set_choices(choices, values);
3213        }
3214        connect(eLoopType, &gig::Sample::LoopType);
3215        connect(eLoopPlayCount, &gig::Sample::LoopPlayCount);
3216    
3217        eName.signal_value_changed().connect(sig_name_changed.make_slot());
3218    
3219        connect(eName2, &SampleProps::set_Name);
3220        connectLambda(eCreationDate, [this](gig::String s) {
3221            m->pInfo->CreationDate = s;
3222        });
3223        connectLambda(eComments, [this](gig::String s) {
3224            m->pInfo->Comments = s;
3225        });
3226        connectLambda(eProduct, [this](gig::String s) {
3227            m->pInfo->Product = s;
3228        });
3229        connectLambda(eCopyright, [this](gig::String s) {
3230            m->pInfo->Copyright = s;
3231        });
3232        connectLambda(eArtists, [this](gig::String s) {
3233            m->pInfo->Artists = s;
3234        });
3235        connectLambda(eGenre, [this](gig::String s) {
3236            m->pInfo->Genre = s;
3237        });
3238        connectLambda(eKeywords, [this](gig::String s) {
3239            m->pInfo->Keywords = s;
3240        });
3241        connectLambda(eEngineer, [this](gig::String s) {
3242            m->pInfo->Engineer = s;
3243        });
3244        connectLambda(eTechnician, [this](gig::String s) {
3245            m->pInfo->Technician = s;
3246        });
3247        connectLambda(eSoftware, [this](gig::String s) {
3248            m->pInfo->Software = s;
3249        });
3250        connectLambda(eMedium, [this](gig::String s) {
3251            m->pInfo->Medium = s;
3252        });
3253        connectLambda(eSource, [this](gig::String s) {
3254            m->pInfo->Source = s;
3255        });
3256        connectLambda(eSourceForm, [this](gig::String s) {
3257            m->pInfo->SourceForm = s;
3258        });
3259        connectLambda(eCommissioned, [this](gig::String s) {
3260            m->pInfo->Commissioned = s;
3261        });
3262        connectLambda(eSubject, [this](gig::String s) {
3263            m->pInfo->Subject = s;
3264        });
3265    
3266        // tab 1
3267    #if USE_GTKMM_GRID
3268        table.set_column_spacing(5);
3269    #else
3270        table.set_col_spacings(5);
3271    #endif
3272        table.add(eName);
3273        table.add(eUnityNote);
3274        table.add(eSampleGroup);
3275        table.add(eSampleFormatInfo);
3276        table.add(eSampleID);
3277        table.add(eChecksum);
3278        table.add(eLoopsCount);
3279        table.add(eLoopStart);
3280        table.add(eLoopLength);
3281        table.add(eLoopType);
3282        table.add(eLoopPlayCount);
3283    
3284        // tab 2
3285    #if USE_GTKMM_GRID
3286        table2.set_column_spacing(5);
3287    #else
3288        table2.set_col_spacings(5);
3289    #endif
3290        table2.add(eName2);
3291        table2.add(eCreationDate);
3292        table2.add(eComments);
3293        table2.add(eProduct);
3294        table2.add(eCopyright);
3295        table2.add(eArtists);
3296        table2.add(eGenre);
3297        table2.add(eKeywords);
3298        table2.add(eEngineer);
3299        table2.add(eTechnician);
3300        table2.add(eSoftware);
3301        table2.add(eMedium);
3302        table2.add(eSource);
3303        table2.add(eSourceForm);
3304        table2.add(eCommissioned);
3305        table2.add(eSubject);
3306    
3307        add(vbox[0]);
3308    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3309        table.set_margin(5);
3310    #else
3311        table.set_border_width(5);
3312    #endif
3313        vbox[1].pack_start(table);
3314        vbox[2].pack_start(table2);
3315        table.show();
3316        table2.show();
3317        vbox[0].pack_start(tabs);
3318        vbox[0].pack_start(buttonBox, Gtk::PACK_SHRINK);
3319        buttonBox.set_layout(Gtk::BUTTONBOX_END);
3320    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3321        buttonBox.set_margin(5);
3322    #else
3323        buttonBox.set_border_width(5);
3324    #endif
3325        buttonBox.show();
3326        buttonBox.pack_start(quitButton);
3327        quitButton.set_can_default();
3328        quitButton.grab_focus();
3329    
3330        quitButton.signal_clicked().connect(
3331            sigc::mem_fun(*this, &SampleProps::hide));
3332    
3333        quitButton.show();
3334        vbox[0].show();
3335    #if HAS_GTKMM_SHOW_ALL_CHILDREN
3336        show_all_children();
3337    #endif
3338    }
3339    
3340    void SampleProps::set_sample(gig::Sample* sample)
3341    {
3342        update(sample);
3343    
3344        update_model++;
3345    
3346        // tab 1
3347        eName.set_value(sample->pInfo->Name);
3348        eUnityNote.set_value(sample->MIDIUnityNote);
3349        // show sample group name
3350        {
3351            Glib::ustring s = "---";
3352            if (sample && sample->GetGroup())
3353                s = sample->GetGroup()->Name;
3354            eSampleGroup.text.set_text(s);
3355        }
3356        // assemble sample format info string
3357        {
3358            Glib::ustring s;
3359            if (sample) {
3360                switch (sample->Channels) {
3361                    case 1: s = _("Mono"); break;
3362                    case 2: s = _("Stereo"); break;
3363                    default:
3364                        s = ToString(sample->Channels) + _(" audio channels");
3365                        break;
3366                }
3367                s += " " + ToString(sample->BitDepth) + " Bits";
3368                s += " " + ToString(sample->SamplesPerSecond/1000) + "."
3369                         + ToString((sample->SamplesPerSecond%1000)/100) + " kHz";
3370            } else {
3371                s = _("No sample assigned to this dimension region.");
3372            }
3373            eSampleFormatInfo.text.set_text(s);
3374        }
3375        // generate sample's memory address pointer string
3376        {
3377            Glib::ustring s;
3378            if (sample) {
3379                char buf[64] = {};
3380                snprintf(buf, sizeof(buf), "%p", sample);
3381                s = buf;
3382            } else {
3383                s = "---";
3384            }
3385            eSampleID.text.set_text(s);
3386        }
3387        // generate raw wave form data CRC-32 checksum string
3388        {
3389            Glib::ustring s = "---";
3390            if (sample) {
3391                char buf[64] = {};
3392                snprintf(buf, sizeof(buf), "%x", sample->GetWaveDataCRC32Checksum());
3393                s = buf;
3394            }
3395            eChecksum.text.set_text(s);
3396        }
3397        eLoopsCount.set_value(sample->Loops);
3398        eLoopStart.set_value(sample->LoopStart);
3399        eLoopLength.set_value(sample->LoopSize);
3400        eLoopType.set_value(sample->LoopType);
3401        eLoopPlayCount.set_value(sample->LoopPlayCount);
3402        // tab 2
3403        eName2.set_value(sample->pInfo->Name);
3404        eCreationDate.set_value(sample->pInfo->CreationDate);
3405        eComments.set_value(sample->pInfo->Comments);
3406        eProduct.set_value(sample->pInfo->Product);
3407        eCopyright.set_value(sample->pInfo->Copyright);
3408        eArtists.set_value(sample->pInfo->Artists);
3409        eGenre.set_value(sample->pInfo->Genre);
3410        eKeywords.set_value(sample->pInfo->Keywords);
3411        eEngineer.set_value(sample->pInfo->Engineer);
3412        eTechnician.set_value(sample->pInfo->Technician);
3413        eSoftware.set_value(sample->pInfo->Software);
3414        eMedium.set_value(sample->pInfo->Medium);
3415        eSource.set_value(sample->pInfo->Source);
3416        eSourceForm.set_value(sample->pInfo->SourceForm);
3417        eCommissioned.set_value(sample->pInfo->Commissioned);
3418        eSubject.set_value(sample->pInfo->Subject);
3419    
3420        update_model--;
3421    }
3422    
3423    void SampleProps::set_Name(const gig::String& name)
3424    {
3425        m->pInfo->Name = name;
3426    }
3427    
3428    void SampleProps::update_name()
3429    {
3430        update_model++;
3431        eName.set_value(m->pInfo->Name);
3432      update_model--;      update_model--;
3433  }  }
3434    
# Line 1905  void MainWindow::updateSampleRefCountMap Line 3462  void MainWindow::updateSampleRefCountMap
3462      }      }
3463  }  }
3464    
3465    bool MainWindow::onQueryTreeViewTooltip(int x, int y, bool keyboardTip, const Glib::RefPtr<Gtk::Tooltip>& tooltip) {
3466        Gtk::TreeModel::iterator iter;
3467        if (!m_TreeViewInstruments.get_tooltip_context_iter(x, y, keyboardTip, iter)) {
3468            return false;
3469        }
3470        Gtk::TreeModel::Path path(iter);
3471        Gtk::TreeModel::Row row = *iter;
3472        Gtk::TreeViewColumn* pointedColumn = NULL;
3473        // resolve the precise table column the mouse points to
3474        {
3475            Gtk::TreeModel::Path path; // unused
3476            int cellX, cellY; // unused
3477            m_TreeViewInstruments.get_path_at_pos(x, y, path, pointedColumn, cellX, cellY);
3478        }
3479        Gtk::TreeViewColumn* scriptsColumn = m_TreeViewInstruments.get_column(2);
3480        if (pointedColumn == scriptsColumn) { // mouse hovers scripts column ...
3481            // show the script(s) assigned to the hovered instrument as tooltip
3482            tooltip->set_markup( row[m_InstrumentsModel.m_col_tooltip] );
3483            m_TreeViewInstruments.set_tooltip_cell(tooltip, &path, scriptsColumn, NULL);
3484        } else {
3485            // if beginners' tooltips is disabled then don't show the following one
3486            if (!Settings::singleton()->showTooltips)
3487                return false;
3488            // yeah, a beginners tooltip
3489            tooltip->set_text(_(
3490                "Right click here for actions on instruments & MIDI Rules. "
3491                "Drag & drop to change the order of instruments."
3492            ));
3493            m_TreeViewInstruments.set_tooltip_cell(tooltip, &path, pointedColumn, NULL);
3494        }
3495        return true;
3496    }
3497    
3498    static Glib::ustring scriptTooltipFor(gig::Instrument* instrument, int index) {
3499        Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3500        const int iScriptSlots = instrument->ScriptSlotCount();
3501        Glib::ustring tooltip = "<u>(" + ToString(index) + ") “"  + name + "”</u>\n\n";
3502        if (!iScriptSlots)
3503            tooltip += "<span foreground='red'><i>No script assigned</i></span>";
3504        else {
3505            for (int i = 0; i < iScriptSlots; ++i) {
3506                tooltip += "• " + ToString(i+1) + ". Script: “<span foreground='#46DEFF'><b>" +
3507                           instrument->GetScriptOfSlot(i)->Name + "</b></span>”";
3508                if (i + 1 < iScriptSlots) tooltip += "\n\n";
3509            }
3510        }
3511        return tooltip;
3512    }
3513    
3514  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
3515  {  {
3516      file = 0;      file = 0;
# Line 1918  void MainWindow::load_gig(gig::File* gig Line 3524  void MainWindow::load_gig(gig::File* gig
3524      file_has_name = filename;      file_has_name = filename;
3525      file_is_changed = false;      file_is_changed = false;
3526    
3527      propDialog.set_file(gig);      fileProps.set_file(gig);
     propDialog.set_info(gig->pInfo);  
3528    
3529      instrument_name_connection.block();      instrument_name_connection.block();
3530      int index = 0;      int index = 0;
3531      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
3532           instrument = gig->GetNextInstrument(), ++index) {           instrument = gig->GetNextInstrument(), ++index) {
3533          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));          Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3534            const int iScriptSlots = instrument->ScriptSlotCount();
3535    
3536          Gtk::TreeModel::iterator iter = m_refTreeModel->append();          Gtk::TreeModel::iterator iter = m_refInstrumentsTreeModel->append();
3537          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
3538          row[m_Columns.m_col_nr] = index;          row[m_InstrumentsModel.m_col_nr] = index;
3539          row[m_Columns.m_col_name] = name;          row[m_InstrumentsModel.m_col_name] = name;
3540          row[m_Columns.m_col_instr] = instrument;          row[m_InstrumentsModel.m_col_instr] = instrument;
3541            row[m_InstrumentsModel.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3542            row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
3543    
3544    #if !USE_GTKMM_BUILDER
3545          add_instrument_to_menu(name);          add_instrument_to_menu(name);
3546    #endif
3547      }      }
3548      instrument_name_connection.unblock();      instrument_name_connection.unblock();
3549    #if !USE_GTKMM_BUILDER
3550      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();
3551    #endif
3552    
3553      updateSampleRefCountMap(gig);      updateSampleRefCountMap(gig);
3554    
# Line 1989  void MainWindow::load_gig(gig::File* gig Line 3601  void MainWindow::load_gig(gig::File* gig
3601      file = gig;      file = gig;
3602    
3603      // select the first instrument      // select the first instrument
3604      m_TreeView.get_selection()->select(Gtk::TreePath("0"));      m_TreeViewInstruments.get_selection()->select(Gtk::TreePath("0"));
3605    
3606      instr_props_set_instrument();      instr_props_set_instrument();
3607      gig::Instrument* instrument = get_instrument();      gig::Instrument* instrument = get_instrument();
# Line 2002  bool MainWindow::instr_props_set_instrum Line 3614  bool MainWindow::instr_props_set_instrum
3614  {  {
3615      instrumentProps.signal_name_changed().clear();      instrumentProps.signal_name_changed().clear();
3616    
3617      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();      std::vector<Gtk::TreeModel::Path> rows = m_TreeViewInstruments.get_selection()->get_selected_rows();
3618      if (rows.empty()) {      if (rows.empty()) {
3619          instrumentProps.hide();          instrumentProps.hide();
3620          return false;          return false;
3621      }      }
3622      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.
3623        Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[0]);
3624      if (it) {      if (it) {
3625          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
3626          gig::Instrument* instrument = row[m_Columns.m_col_instr];          gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
3627    
3628          instrumentProps.set_instrument(instrument);          instrumentProps.set_instrument(instrument);
3629    
# Line 2024  bool MainWindow::instr_props_set_instrum Line 3637  bool MainWindow::instr_props_set_instrum
3637      } else {      } else {
3638          instrumentProps.hide();          instrumentProps.hide();
3639      }      }
3640      return it;      //NOTE: explicit boolean cast required for GTKMM4 development branch here
3641        return it ? true : false;
3642  }  }
3643    
3644  void MainWindow::show_instr_props()  void MainWindow::show_instr_props()
# Line 2038  void MainWindow::show_instr_props() Line 3652  void MainWindow::show_instr_props()
3652  void MainWindow::instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it)  void MainWindow::instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it)
3653  {  {
3654      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
3655      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_InstrumentsModel.m_col_name];
3656    
3657      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
3658      Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));      Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
3659      if (gigname != name) {      if (gigname != name) {
3660          row[m_Columns.m_col_name] = gigname;          Gtk::TreeModel::Path path(*it);
3661            const int index = path[0];
3662            row[m_InstrumentsModel.m_col_name] = gigname;
3663            row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
3664        }
3665    }
3666    
3667    bool MainWindow::sample_props_set_sample()
3668    {
3669        sampleProps.signal_name_changed().clear();
3670    
3671        std::vector<Gtk::TreeModel::Path> rows = m_TreeViewSamples.get_selection()->get_selected_rows();
3672        if (rows.empty()) {
3673            sampleProps.hide();
3674            return false;
3675        }
3676        //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
3677        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
3678        if (it) {
3679            Gtk::TreeModel::Row row = *it;
3680            gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3681    
3682            sampleProps.set_sample(sample);
3683    
3684            // make sure sample tree is updated when user changes the
3685            // sample name in sample properties window
3686            sampleProps.signal_name_changed().connect(
3687                sigc::bind(
3688                    sigc::mem_fun(*this,
3689                        &MainWindow::sample_name_changed_by_sample_props
3690                    ), it
3691                )
3692            );
3693        } else {
3694            sampleProps.hide();
3695        }
3696        //NOTE: explicit boolean cast required for GTKMM4 development branch here
3697        return it ? true : false;
3698    }
3699    
3700    void MainWindow::show_sample_props()
3701    {
3702        if (sample_props_set_sample()) {
3703            sampleProps.show();
3704            sampleProps.deiconify();
3705        }
3706    }
3707    
3708    void MainWindow::sample_name_changed_by_sample_props(Gtk::TreeModel::iterator& it)
3709    {
3710        Gtk::TreeModel::Row row = *it;
3711        Glib::ustring name = row[m_SamplesModel.m_col_name];
3712    
3713        gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3714        Glib::ustring gigname(gig_to_utf8(sample->pInfo->Name));
3715        if (gigname != name) {
3716            Gtk::TreeModel::Path path(*it);
3717            row[m_SamplesModel.m_col_name] = gigname;
3718      }      }
3719  }  }
3720    
# Line 2059  void MainWindow::show_midi_rules() Line 3730  void MainWindow::show_midi_rules()
3730    
3731  void MainWindow::show_script_slots() {  void MainWindow::show_script_slots() {
3732      if (!file) return;      if (!file) return;
3733    
3734      // get selected instrument      // get selected instrument
3735      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();      gig::Instrument* instrument = get_instrument();
     if (rows.empty()) return;  
     Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);  
     if (!it) return;  
     Gtk::TreeModel::Row row = *it;  
     gig::Instrument* instrument = row[m_Columns.m_col_instr];  
3736      if (!instrument) return;      if (!instrument) return;
3737    
3738      ScriptSlots* window = new ScriptSlots;      ScriptSlots* window = new ScriptSlots;
3739      window->setInstrument(instrument);      window->setInstrument(instrument);
3740        window->signal_script_slots_changed().connect(
3741            sigc::mem_fun(*this, &MainWindow::onScriptSlotsModified)
3742        );
3743      //window->reparent(*this);      //window->reparent(*this);
3744      window->show();      window->show();
3745  }  }
3746    
3747    void MainWindow::onScriptSlotsModified(gig::Instrument* pInstrument) {
3748        if (!pInstrument) return;
3749        const int iScriptSlots = pInstrument->ScriptSlotCount();
3750    
3751        //NOTE: This is a big mess! Sometimes GTK requires m_TreeViewInstruments.get_model(), here we need m_refInstrumentsModelFilter->get_model(), otherwise accessing children below causes an error!
3752        //Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewInstruments.get_model();
3753        Glib::RefPtr<Gtk::TreeModel> model = m_refInstrumentsModelFilter->get_model();
3754    
3755        for (int i = 0; i < model->children().size(); ++i) {
3756            Gtk::TreeModel::Row row = model->children()[i];
3757            if (row[m_InstrumentsModel.m_col_instr] != pInstrument) continue;
3758            row[m_InstrumentsModel.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3759            row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(pInstrument, i);
3760            break;
3761        }
3762    
3763        // causes the sampler to reload the instrument with the new script
3764        on_sel_change();
3765    
3766        // force script 'patch' variables editor ("Script" tab) to be refreshed
3767        dimreg_edit.scriptVars.setInstrument(pInstrument, true/*force update*/);
3768    }
3769    
3770    void MainWindow::assignScript(gig::Script* pScript) {
3771        if (!pScript) {
3772            printf("assignScript() : !script\n");
3773            return;
3774        }
3775        printf("assignScript('%s')\n", pScript->Name.c_str());
3776    
3777        gig::Instrument* pInstrument = get_instrument();
3778        if (!pInstrument) {
3779            printf("!instrument\n");
3780            return;
3781        }
3782    
3783        pInstrument->AddScriptSlot(pScript);
3784    
3785        onScriptSlotsModified(pInstrument);
3786    }
3787    
3788    void MainWindow::dropAllScriptSlots() {
3789        gig::Instrument* pInstrument = get_instrument();
3790        if (!pInstrument) {
3791            printf("!instrument\n");
3792            return;
3793        }
3794    
3795        const int iScriptSlots = pInstrument->ScriptSlotCount();
3796        for (int i = iScriptSlots - 1; i >= 0; --i)
3797            pInstrument->RemoveScriptSlot(i);
3798    
3799        onScriptSlotsModified(pInstrument);
3800    }
3801    
3802  void MainWindow::on_action_refresh_all() {  void MainWindow::on_action_refresh_all() {
3803      __refreshEntireGUI();      __refreshEntireGUI();
3804  }  }
3805    
3806  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
3807    #if USE_GLIB_ACTION
3808        bool active = false;
3809        m_actionToggleStatusBar->get_state(active);
3810        // for some reason toggle state does not change automatically
3811        active = !active;
3812        m_actionToggleStatusBar->change_state(active);
3813        if (active)
3814            m_StatusBar.show();
3815        else
3816            m_StatusBar.hide();
3817    #else
3818      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3819          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
3820      if (!item) {      if (!item) {
# Line 2087  void MainWindow::on_action_view_status_b Line 3823  void MainWindow::on_action_view_status_b
3823      }      }
3824      if (item->get_active()) m_StatusBar.show();      if (item->get_active()) m_StatusBar.show();
3825      else                    m_StatusBar.hide();      else                    m_StatusBar.hide();
3826    #endif
3827  }  }
3828    
3829  void MainWindow::on_auto_restore_win_dim() {  void MainWindow::on_auto_restore_win_dim() {
3830    #if USE_GLIB_ACTION
3831        bool active = false;
3832        m_actionToggleRestoreWinDim->get_state(active);
3833        // for some reason toggle state does not change automatically
3834        active = !active;
3835        m_actionToggleRestoreWinDim->change_state(active);
3836        Settings::singleton()->autoRestoreWindowDimension = active;
3837    #else
3838      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3839          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
3840      if (!item) {      if (!item) {
# Line 2097  void MainWindow::on_auto_restore_win_dim Line 3842  void MainWindow::on_auto_restore_win_dim
3842          return;          return;
3843      }      }
3844      Settings::singleton()->autoRestoreWindowDimension = item->get_active();      Settings::singleton()->autoRestoreWindowDimension = item->get_active();
3845    #endif
3846    }
3847    
3848    void MainWindow::on_instr_double_click_opens_props() {
3849    #if USE_GLIB_ACTION
3850        bool active = false;
3851        m_actionInstrDoubleClickOpensProps->get_state(active);
3852        // for some reason toggle state does not change automatically
3853        active = !active;
3854        m_actionInstrDoubleClickOpensProps->change_state(active);
3855        Settings::singleton()->instrumentDoubleClickOpensProps = active;
3856    #else
3857        Gtk::CheckMenuItem* item =
3858            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/OpenInstrPropsByDoubleClick"));
3859        if (!item) {
3860            std::cerr << "/MenuBar/MenuView/OpenInstrPropsByDoubleClick == NULL\n";
3861            return;
3862        }
3863        Settings::singleton()->instrumentDoubleClickOpensProps = item->get_active();
3864    #endif
3865  }  }
3866    
3867  void MainWindow::on_save_with_temporary_file() {  void MainWindow::on_save_with_temporary_file() {
3868    #if USE_GLIB_ACTION
3869        bool active = false;
3870        m_actionToggleSaveWithTempFile->get_state(active);
3871        // for some reason toggle state does not change automatically
3872        active = !active;
3873        m_actionToggleSaveWithTempFile->change_state(active);
3874        Settings::singleton()->saveWithTemporaryFile = active;
3875    #else
3876      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3877          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));
3878      if (!item) {      if (!item) {
# Line 2107  void MainWindow::on_save_with_temporary_ Line 3880  void MainWindow::on_save_with_temporary_
3880          return;          return;
3881      }      }
3882      Settings::singleton()->saveWithTemporaryFile = item->get_active();      Settings::singleton()->saveWithTemporaryFile = item->get_active();
3883    #endif
3884  }  }
3885    
3886  bool MainWindow::is_copy_samples_unity_note_enabled() const {  bool MainWindow::is_copy_samples_unity_note_enabled() const {
3887    #if USE_GLIB_ACTION
3888        bool active = false;
3889        m_actionToggleCopySampleUnity->get_state(active);
3890        return active;
3891    #else
3892      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3893          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
3894      if (!item) {      if (!item) {
# Line 2117  bool MainWindow::is_copy_samples_unity_n Line 3896  bool MainWindow::is_copy_samples_unity_n
3896          return true;          return true;
3897      }      }
3898      return item->get_active();      return item->get_active();
3899    #endif
3900  }  }
3901    
3902  bool MainWindow::is_copy_samples_fine_tune_enabled() const {  bool MainWindow::is_copy_samples_fine_tune_enabled() const {
3903    #if USE_GLIB_ACTION
3904        bool active = false;
3905        m_actionToggleCopySampleTune->get_state(active);
3906        return active;
3907    #else
3908      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3909          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
3910      if (!item) {      if (!item) {
# Line 2127  bool MainWindow::is_copy_samples_fine_tu Line 3912  bool MainWindow::is_copy_samples_fine_tu
3912          return true;          return true;
3913      }      }
3914      return item->get_active();      return item->get_active();
3915    #endif
3916  }  }
3917    
3918  bool MainWindow::is_copy_samples_loop_enabled() const {  bool MainWindow::is_copy_samples_loop_enabled() const {
3919    #if USE_GLIB_ACTION
3920        bool active = false;
3921        m_actionToggleCopySampleLoop->get_state(active);
3922        return active;
3923    #else
3924      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3925          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
3926      if (!item) {      if (!item) {
# Line 2137  bool MainWindow::is_copy_samples_loop_en Line 3928  bool MainWindow::is_copy_samples_loop_en
3928          return true;          return true;
3929      }      }
3930      return item->get_active();      return item->get_active();
3931    #endif
3932  }  }
3933    
3934  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
3935  {  bool MainWindow::on_button_release(Gdk::EventButton& _button) {
3936        GdkEventButton* button = _button.gobj();
3937    #else
3938    void MainWindow::on_button_release(GdkEventButton* button) {
3939    #endif
3940      if (button->type == GDK_2BUTTON_PRESS) {      if (button->type == GDK_2BUTTON_PRESS) {
3941          show_instr_props();          if (Settings::singleton()->instrumentDoubleClickOpensProps)
3942                show_instr_props();
3943      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
3944          // gig v2 files have no midi rules          // gig v2 files have no midi rules
3945          const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);          const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
3946    #if USE_GTKMM_BUILDER
3947            m_actionMIDIRules->property_enabled() = bEnabled;
3948    #else
3949          static_cast<Gtk::MenuItem*>(          static_cast<Gtk::MenuItem*>(
3950              uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(              uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(
3951                  bEnabled                  bEnabled
# Line 2154  void MainWindow::on_button_release(GdkEv Line 3954  void MainWindow::on_button_release(GdkEv
3954              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
3955                  bEnabled                  bEnabled
3956              );              );
3957    #endif
3958          popup_menu->popup(button->button, button->time);          popup_menu->popup(button->button, button->time);
3959      }      }
3960    #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
3961        return false;
3962    #endif
3963  }  }
3964    
3965    #if !USE_GTKMM_BUILDER
3966  void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {  void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {
3967      if (item->get_active()) {      if (item->get_active()) {
3968          const std::vector<Gtk::Widget*> children =          const std::vector<Gtk::Widget*> children =
# Line 2166  void MainWindow::on_instrument_selection Line 3971  void MainWindow::on_instrument_selection
3971              find(children.begin(), children.end(), item);              find(children.begin(), children.end(), item);
3972          if (it != children.end()) {          if (it != children.end()) {
3973              int index = it - children.begin();              int index = it - children.begin();
3974              m_TreeView.get_selection()->select(Gtk::TreePath(ToString(index)));              m_TreeViewInstruments.get_selection()->select(Gtk::TreePath(ToString(index)));
3975    
3976              m_RegionChooser.set_instrument(file->GetInstrument(index));              m_RegionChooser.set_instrument(file->GetInstrument(index));
3977          }          }
3978      }      }
3979  }  }
3980    #endif
3981    
3982    void MainWindow::on_action_move_instr() {
3983        gig::Instrument* instr = get_instrument();
3984        if (!instr) return;
3985    
3986        int currentIndex = getIndexOf(instr);
3987    
3988        Gtk::Dialog dialog(_("Move Instrument"), true /*modal*/);
3989    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
3990        Gtk::Adjustment adjustment(
3991            currentIndex,
3992            0 /*min*/, file->CountInstruments() - 1 /*max*/
3993        );
3994        Gtk::SpinButton spinBox(adjustment);
3995    #else
3996        Gtk::SpinButton spinBox(
3997            Gtk::Adjustment::create(
3998                currentIndex,
3999                0 /*min*/, file->CountInstruments() - 1 /*max*/
4000            )
4001        );
4002    #endif
4003    #if USE_GTKMM_BOX
4004        dialog.get_content_area()->pack_start(spinBox);
4005    #else
4006        dialog.get_vbox()->pack_start(spinBox);
4007    #endif
4008    #if HAS_GTKMM_STOCK
4009        Gtk::Button* okButton = dialog.add_button(Gtk::Stock::OK, 0);
4010        dialog.add_button(Gtk::Stock::CANCEL, 1);
4011    #else
4012        Gtk::Button* okButton = dialog.add_button(_("_OK"), 0);
4013        dialog.add_button(_("_Cancel"), 1);
4014    #endif
4015        okButton->set_sensitive(false);
4016        // show the dialog at a reasonable screen position
4017        dialog.set_position(Gtk::WIN_POS_MOUSE);
4018        // only enable the 'OK' button if entered new index is not instrument's
4019        // current index already
4020        spinBox.signal_value_changed().connect([&]{
4021            okButton->set_sensitive( spinBox.get_value_as_int() != currentIndex );
4022        });
4023        // usability acceleration: if user hits enter key on the text entry field
4024        // then auto trigger the 'OK' button
4025        spinBox.signal_activate().connect([&]{
4026            if (okButton->get_sensitive())
4027                okButton->clicked();
4028        });
4029    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4030        dialog.show_all_children();
4031    #endif
4032        if (!dialog.run()) { // 'OK' selected ...
4033            int newIndex = spinBox.get_value_as_int();
4034            printf("MOVE TO %d\n", newIndex);
4035            gig::Instrument* dst = file->GetInstrument(newIndex);
4036            instr->MoveTo(dst);
4037            __refreshEntireGUI();
4038            select_instrument(instr);
4039        }
4040    }
4041    
4042  void MainWindow::select_instrument(gig::Instrument* instrument) {  void MainWindow::select_instrument(gig::Instrument* instrument) {
4043      if (!instrument) return;      if (!instrument) return;
4044    
4045      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();      //NOTE: This is a big mess! Sometimes GTK requires m_refInstrumentsModelFilter->get_model(), here we need m_TreeViewInstruments.get_model(), otherwise treeview selection below causes an error!
4046        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewInstruments.get_model();
4047        //Glib::RefPtr<Gtk::TreeModel> model = m_refInstrumentsModelFilter->get_model();
4048    
4049      for (int i = 0; i < model->children().size(); ++i) {      for (int i = 0; i < model->children().size(); ++i) {
4050          Gtk::TreeModel::Row row = model->children()[i];          Gtk::TreeModel::Row row = model->children()[i];
4051          if (row[m_Columns.m_col_instr] == instrument) {          if (row[m_InstrumentsModel.m_col_instr] == instrument) {
4052              // select and show the respective instrument in the list view              // select and show the respective instrument in the list view
4053              show_intruments_tab();              show_intruments_tab();
4054              m_TreeView.get_selection()->unselect_all();              m_TreeViewInstruments.get_selection()->unselect_all();
4055              m_TreeView.get_selection()->select(model->children()[i]);              
4056    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4057                auto iterSel = model->children()[i].get_iter();
4058                m_TreeViewInstruments.get_selection()->select(iterSel);
4059    #else
4060                m_TreeViewInstruments.get_selection()->select(model->children()[i]);
4061    #endif
4062              std::vector<Gtk::TreeModel::Path> rows =              std::vector<Gtk::TreeModel::Path> rows =
4063                  m_TreeView.get_selection()->get_selected_rows();                  m_TreeViewInstruments.get_selection()->get_selected_rows();
4064              if (!rows.empty())              if (!rows.empty())
4065                  m_TreeView.scroll_to_row(rows[0]);                  m_TreeViewInstruments.scroll_to_row(rows[0]);
4066              on_sel_change(); // the regular instrument selection change callback              on_sel_change(); // the regular instrument selection change callback
4067          }          }
4068      }      }
# Line 2198  bool MainWindow::select_dimension_region Line 4073  bool MainWindow::select_dimension_region
4073      gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();      gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();
4074      gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();      gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();
4075    
4076      Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();      //NOTE: This is a big mess! Sometimes GTK requires m_refInstrumentsModelFilter->get_model(), here we need m_TreeViewInstruments.get_model(), otherwise treeview selection below causes an error!
4077        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewInstruments.get_model();
4078        //Glib::RefPtr<Gtk::TreeModel> model = m_refInstrumentsModelFilter->get_model();
4079    
4080      for (int i = 0; i < model->children().size(); ++i) {      for (int i = 0; i < model->children().size(); ++i) {
4081          Gtk::TreeModel::Row row = model->children()[i];          Gtk::TreeModel::Row row = model->children()[i];
4082          if (row[m_Columns.m_col_instr] == pInstrument) {          if (row[m_InstrumentsModel.m_col_instr] == pInstrument) {
4083              // select and show the respective instrument in the list view              // select and show the respective instrument in the list view
4084              show_intruments_tab();              show_intruments_tab();
4085              m_TreeView.get_selection()->unselect_all();              m_TreeViewInstruments.get_selection()->unselect_all();
4086              m_TreeView.get_selection()->select(model->children()[i]);  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4087                auto iterSel = model->children()[i].get_iter();
4088                m_TreeViewInstruments.get_selection()->select(iterSel);
4089    #else
4090                m_TreeViewInstruments.get_selection()->select(model->children()[i]);
4091    #endif
4092              std::vector<Gtk::TreeModel::Path> rows =              std::vector<Gtk::TreeModel::Path> rows =
4093                  m_TreeView.get_selection()->get_selected_rows();                  m_TreeViewInstruments.get_selection()->get_selected_rows();
4094              if (!rows.empty())              if (!rows.empty())
4095                  m_TreeView.scroll_to_row(rows[0]);                  m_TreeViewInstruments.scroll_to_row(rows[0]);
4096              on_sel_change(); // the regular instrument selection change callback              on_sel_change(); // the regular instrument selection change callback
4097    
4098              // select respective region in the region selector              // select respective region in the region selector
# Line 2236  void MainWindow::select_sample(gig::Samp Line 4119  void MainWindow::select_sample(gig::Samp
4119              if (rowSample[m_SamplesModel.m_col_sample] == sample) {              if (rowSample[m_SamplesModel.m_col_sample] == sample) {
4120                  show_samples_tab();                  show_samples_tab();
4121                  m_TreeViewSamples.get_selection()->unselect_all();                  m_TreeViewSamples.get_selection()->unselect_all();
4122    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4123                    auto iterSel = rowGroup.children()[s].get_iter();
4124                    m_TreeViewSamples.get_selection()->select(iterSel);
4125    #else
4126                  m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);                  m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);
4127    #endif
4128                  std::vector<Gtk::TreeModel::Path> rows =                  std::vector<Gtk::TreeModel::Path> rows =
4129                      m_TreeViewSamples.get_selection()->get_selected_rows();                      m_TreeViewSamples.get_selection()->get_selected_rows();
4130                  if (rows.empty()) return;                  if (rows.empty()) return;
# Line 2247  void MainWindow::select_sample(gig::Samp Line 4135  void MainWindow::select_sample(gig::Samp
4135      }      }
4136  }  }
4137    
4138    #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
4139    bool MainWindow::on_sample_treeview_button_release(Gdk::EventButton& _button) {
4140        GdkEventButton* button = _button.gobj();
4141    #else
4142  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
4143    #endif
4144      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
4145          // 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
4146          // does not select the respective row, so we must assure this          // does not select the respective row, so we must assure this
# Line 2268  void MainWindow::on_sample_treeview_butt Line 4161  void MainWindow::on_sample_treeview_butt
4161              }              }
4162          }*/          }*/
4163    
4164    #if !USE_GTKMM_BUILDER
4165          Gtk::Menu* sample_popup =          Gtk::Menu* sample_popup =
4166              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));
4167    #endif
4168    
4169          // update enabled/disabled state of sample popup items          // update enabled/disabled state of sample popup items
4170          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
4171          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
# Line 2284  void MainWindow::on_sample_treeview_butt Line 4180  void MainWindow::on_sample_treeview_butt
4180              if (row[m_SamplesModel.m_col_sample]) nSamples++;              if (row[m_SamplesModel.m_col_sample]) nSamples++;
4181          }          }
4182    
4183    #if USE_GTKMM_BUILDER
4184            m_actionSampleProperties->property_enabled() = (n == 1);
4185            m_actionAddSample->property_enabled() = (n);
4186            m_actionAddSampleGroup->property_enabled() = (file);
4187            m_actionViewSampleRefs->property_enabled() = (nSamples == 1);
4188            m_actionRemoveSample->property_enabled() = (n);
4189            m_actionReplaceSample->property_enabled() = (nSamples == 1);
4190    #else
4191          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
4192              set_sensitive(n == 1);              set_sensitive(n == 1);
4193          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
# Line 2294  void MainWindow::on_sample_treeview_butt Line 4198  void MainWindow::on_sample_treeview_butt
4198              set_sensitive(nSamples == 1);              set_sensitive(nSamples == 1);
4199          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
4200              set_sensitive(n);              set_sensitive(n);
4201    #endif
4202          // show sample popup          // show sample popup
4203          sample_popup->popup(button->button, button->time);          sample_popup->popup(button->button, button->time);
4204    
4205    #if !USE_GTKMM_BUILDER
4206          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->
4207              set_sensitive(n == 1);              set_sensitive(n == 1);
4208          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->
# Line 2307  void MainWindow::on_sample_treeview_butt Line 4213  void MainWindow::on_sample_treeview_butt
4213              set_sensitive(nSamples == 1);              set_sensitive(nSamples == 1);
4214          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->
4215              set_sensitive(n);              set_sensitive(n);
4216    #endif
4217      }      }
4218        
4219    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
4220        return false;
4221    #endif
4222  }  }
4223    
4224    #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
4225    bool MainWindow::on_script_treeview_button_release(Gdk::EventButton& _button) {
4226        GdkEventButton* button = _button.gobj();
4227    #else
4228  void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {
4229    #endif
4230      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
4231    #if !USE_GTKMM_BUILDER
4232          Gtk::Menu* script_popup =          Gtk::Menu* script_popup =
4233              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));
4234    #endif
4235          // update enabled/disabled state of sample popup items          // update enabled/disabled state of sample popup items
4236          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
4237          Gtk::TreeModel::iterator it = sel->get_selected();          Gtk::TreeModel::iterator it = sel->get_selected();
# Line 2324  void MainWindow::on_script_treeview_butt Line 4242  void MainWindow::on_script_treeview_butt
4242              group_selected  = row[m_ScriptsModel.m_col_group];              group_selected  = row[m_ScriptsModel.m_col_group];
4243              script_selected = row[m_ScriptsModel.m_col_script];              script_selected = row[m_ScriptsModel.m_col_script];
4244          }          }
4245    #if USE_GTKMM_BUILDER
4246            m_actionAddScript->property_enabled() = (group_selected || script_selected);
4247            m_actionAddScriptGroup->property_enabled() = (file);
4248            m_actionEditScript->property_enabled() = (script_selected);
4249            m_actionRemoveScript->property_enabled() = (group_selected || script_selected);
4250    #else
4251          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->
4252              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
4253          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->
# Line 2332  void MainWindow::on_script_treeview_butt Line 4256  void MainWindow::on_script_treeview_butt
4256              set_sensitive(script_selected);                  set_sensitive(script_selected);    
4257          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->
4258              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
4259    #endif
4260          // show sample popup          // show sample popup
4261          script_popup->popup(button->button, button->time);          script_popup->popup(button->button, button->time);
4262    
4263    #if !USE_GTKMM_BUILDER
4264          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->
4265              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
4266          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->
# Line 2343  void MainWindow::on_script_treeview_butt Line 4269  void MainWindow::on_script_treeview_butt
4269              set_sensitive(script_selected);                  set_sensitive(script_selected);    
4270          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->
4271              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
4272    #endif
4273        }
4274    #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
4275        return false;
4276    #endif
4277    }
4278    
4279    void MainWindow::updateScriptListOfMenu() {
4280        // remove all entries from "Assign Script" menu
4281        {
4282            const std::vector<Gtk::Widget*> children = assign_scripts_menu->get_children();
4283            for (int i = 0; i < children.size(); ++i) {
4284                Gtk::Widget* child = children[i];
4285                assign_scripts_menu->remove(*child);
4286                delete child;
4287            }
4288        }
4289    
4290        int iTotalScripts = 0;
4291    
4292        if (!file) goto noScripts;
4293    
4294        // add all configured macros as menu items to the "Macro" menu
4295        for (int iGroup = 0; file->GetScriptGroup(iGroup); ++iGroup) {
4296            gig::ScriptGroup* pGroup = file->GetScriptGroup(iGroup);
4297            for (int iScript = 0; pGroup->GetScript(iScript); ++iScript, ++iTotalScripts) {
4298                gig::Script* pScript = pGroup->GetScript(iScript);
4299                std::string name = pScript->Name;
4300    
4301                Gtk::MenuItem* item = new Gtk::MenuItem(name);
4302                item->signal_activate().connect(
4303                    sigc::bind(
4304                        sigc::mem_fun(*this, &MainWindow::assignScript), pScript
4305                    )
4306                );
4307                assign_scripts_menu->append(*item);
4308                item->set_accel_path("<Scripts>/script_" + ToString(iTotalScripts));
4309                //item->set_tooltip_text(comment);
4310            }
4311        }
4312    
4313        noScripts:
4314    
4315        // if there are no macros configured at all, then show a dummy entry instead
4316        if (!iTotalScripts) {
4317            Gtk::MenuItem* item = new Gtk::MenuItem(_("No Scripts"));
4318            item->set_sensitive(false);
4319            assign_scripts_menu->append(*item);
4320      }      }
4321    
4322        // add separator line to menu
4323        assign_scripts_menu->append(*new Gtk::SeparatorMenuItem);
4324    
4325        {
4326            Gtk::MenuItem* item = new Gtk::MenuItem(_("Unassign All Scripts"));
4327            item->signal_activate().connect(
4328                sigc::mem_fun(*this, &MainWindow::dropAllScriptSlots)
4329            );
4330            assign_scripts_menu->append(*item);
4331            item->set_accel_path("<Scripts>/DropAllScriptSlots");
4332        }
4333    
4334    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4335        assign_scripts_menu->show_all_children();
4336    #endif
4337  }  }
4338    
4339    #if !USE_GTKMM_BUILDER
4340  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
4341      const Glib::ustring& name, int position) {      const Glib::ustring& name, int position) {
4342    
# Line 2369  Gtk::RadioMenuItem* MainWindow::add_inst Line 4360  Gtk::RadioMenuItem* MainWindow::add_inst
4360              item));              item));
4361      return item;      return item;
4362  }  }
4363    #endif
4364    
4365    #if !USE_GTKMM_BUILDER
4366  void MainWindow::remove_instrument_from_menu(int index) {  void MainWindow::remove_instrument_from_menu(int index) {
4367      const std::vector<Gtk::Widget*> children =      const std::vector<Gtk::Widget*> children =
4368          instrument_menu->get_children();          instrument_menu->get_children();
# Line 2377  void MainWindow::remove_instrument_from_ Line 4370  void MainWindow::remove_instrument_from_
4370      instrument_menu->remove(*child);      instrument_menu->remove(*child);
4371      delete child;      delete child;
4372  }  }
4373    #endif
4374    
4375  void MainWindow::add_instrument(gig::Instrument* instrument) {  void MainWindow::add_instrument(gig::Instrument* instrument) {
4376      const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));      const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
4377    
4378      // update instrument tree view      // update instrument tree view
4379      instrument_name_connection.block();      instrument_name_connection.block();
4380      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refInstrumentsTreeModel->append();
4381      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
4382      rowInstr[m_Columns.m_col_nr] = m_refTreeModel->children().size() - 1;      const int index = m_refInstrumentsTreeModel->children().size() - 1;
4383      rowInstr[m_Columns.m_col_name] = name;      const int iScriptSlots = instrument->ScriptSlotCount();
4384      rowInstr[m_Columns.m_col_instr] = instrument;      rowInstr[m_InstrumentsModel.m_col_nr] = index;
4385        rowInstr[m_InstrumentsModel.m_col_name] = name;
4386        rowInstr[m_InstrumentsModel.m_col_instr] = instrument;
4387        rowInstr[m_InstrumentsModel.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
4388        rowInstr[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
4389      instrument_name_connection.unblock();      instrument_name_connection.unblock();
4390    
4391    #if !USE_GTKMM_BUILDER
4392      add_instrument_to_menu(name);      add_instrument_to_menu(name);
4393    #endif
4394      m_TreeView.get_selection()->select(iterInstr);      select_instrument(instrument);
   
4395      file_changed();      file_changed();
4396  }  }
4397    
# Line 2413  void MainWindow::on_action_duplicate_ins Line 4411  void MainWindow::on_action_duplicate_ins
4411    
4412      // retrieve the currently selected instrument      // retrieve the currently selected instrument
4413      // (being the original instrument to be duplicated)      // (being the original instrument to be duplicated)
4414      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
4415      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4416      for (int r = 0; r < rows.size(); ++r) {      for (int r = 0; r < rows.size(); ++r) {
4417          Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);          Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[r]);
4418          if (it) {          if (it) {
4419              Gtk::TreeModel::Row row = *it;              Gtk::TreeModel::Row row = *it;
4420              gig::Instrument* instrOrig = row[m_Columns.m_col_instr];              gig::Instrument* instrOrig = row[m_InstrumentsModel.m_col_instr];
4421              if (instrOrig) {              if (instrOrig) {
4422                  // duplicate the orginal instrument                  // duplicate the orginal instrument
4423                  gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);                  gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
# Line 2446  void MainWindow::on_action_remove_instru Line 4444  void MainWindow::on_action_remove_instru
4444          return;          return;
4445      }      }
4446    
4447      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
4448      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4449      for (int r = rows.size() - 1; r >= 0; --r) {      for (int r = rows.size() - 1; r >= 0; --r) {
4450          Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);          Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[r]);
4451          if (!it) continue;          if (!it) continue;
4452          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
4453          gig::Instrument* instr = row[m_Columns.m_col_instr];          gig::Instrument* instr = row[m_InstrumentsModel.m_col_instr];
4454          try {          try {
4455              Gtk::TreePath path(it);              Gtk::TreePath path(it);
4456              int index = path[0];              int index = path[0];
# Line 2461  void MainWindow::on_action_remove_instru Line 4459  void MainWindow::on_action_remove_instru
4459              if (instr) file->DeleteInstrument(instr);              if (instr) file->DeleteInstrument(instr);
4460              file_changed();              file_changed();
4461    
4462    #if !USE_GTKMM_BUILDER
4463              remove_instrument_from_menu(index);              remove_instrument_from_menu(index);
4464    #endif
4465    
4466              // remove row from instruments tree view              // remove row from instruments tree view
4467              m_refTreeModel->erase(it);              m_refInstrumentsTreeModel->erase(it);
4468              // update "Nr" column of all instrument rows              // update "Nr" column of all instrument rows
4469              {              {
4470                  int index = 0;                  int index = 0;
4471                  for (Gtk::TreeModel::iterator it = m_refTreeModel->children().begin();                  for (Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->children().begin();
4472                       it != m_refTreeModel->children().end(); ++it, ++index)                       it != m_refInstrumentsTreeModel->children().end(); ++it, ++index)
4473                  {                  {
4474                      Gtk::TreeModel::Row row = *it;                      Gtk::TreeModel::Row row = *it;
4475                      row[m_Columns.m_col_nr] = index;                      gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
4476                        row[m_InstrumentsModel.m_col_nr] = index;
4477                        row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
4478                  }                  }
4479              }              }
4480    
4481  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
4482              // select another instrument (in gtk3 this is done              // select another instrument (in gtk3 this is done
4483              // automatically)              // automatically)
4484              if (!m_refTreeModel->children().empty()) {              if (!m_refInstrumentsTreeModel->children().empty()) {
4485                  if (index == m_refTreeModel->children().size()) {                  if (index == m_refInstrumentsTreeModel->children().size()) {
4486                      index--;                      index--;
4487                  }                  }
4488                  m_TreeView.get_selection()->select(                  m_TreeViewInstruments.get_selection()->select(
4489                      Gtk::TreePath(ToString(index)));                      Gtk::TreePath(ToString(index)));
4490              }              }
4491  #endif  #endif
# Line 2502  void MainWindow::on_action_remove_instru Line 4504  void MainWindow::on_action_remove_instru
4504  }  }
4505    
4506  void MainWindow::on_action_sample_properties() {  void MainWindow::on_action_sample_properties() {
4507      //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();  
4508  }  }
4509    
4510  void MainWindow::on_action_add_script_group() {  void MainWindow::on_action_add_script_group() {
# Line 2569  void MainWindow::on_action_edit_script() Line 4567  void MainWindow::on_action_edit_script()
4567      if (!it) return;      if (!it) return;
4568      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
4569      gig::Script* script = row[m_ScriptsModel.m_col_script];      gig::Script* script = row[m_ScriptsModel.m_col_script];
4570      if (!script) return;      editScript(script);
4571    }
4572    
4573    void MainWindow::editScript(gig::Script* script) {
4574        if (!script) return;
4575      ScriptEditor* editor = new ScriptEditor;      ScriptEditor* editor = new ScriptEditor;
4576      editor->signal_script_to_be_changed.connect(      editor->signal_script_to_be_changed.connect(
4577          signal_script_to_be_changed.make_slot()          signal_script_to_be_changed.make_slot()
4578      );      );
4579      editor->signal_script_changed.connect(      editor->signal_script_changed.connect([this](gig::Script* script) {
4580          signal_script_changed.make_slot()          // signal to sampler (which will reload the script due to this)
4581      );          signal_script_changed.emit(script);
4582            // force script 'patch' variables editor ("Script" tab) to be refreshed
4583            gig::Instrument* instr = get_instrument();
4584            dimreg_edit.scriptVars.setInstrument(instr, true/*force update*/);
4585        });
4586      editor->setScript(script);      editor->setScript(script);
4587      //editor->reparent(*this);      //editor->reparent(*this);
4588      editor->show();      editor->show();
# Line 2676  void MainWindow::add_or_replace_sample(b Line 4681  void MainWindow::add_or_replace_sample(b
4681    
4682      // show 'browse for file' dialog      // show 'browse for file' dialog
4683      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));
4684    #if HAS_GTKMM_STOCK
4685        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4686        dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
4687    #else
4688      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4689      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
4690    #endif
4691      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
4692    
4693      // matches all file types supported by libsndfile      // matches all file types supported by libsndfile
# Line 2720  void MainWindow::add_or_replace_sample(b Line 4730  void MainWindow::add_or_replace_sample(b
4730          dialog.set_current_folder(current_sample_dir);          dialog.set_current_folder(current_sample_dir);
4731      }      }
4732      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
4733            dialog.hide();
4734          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
4735          Glib::ustring error_files;          Glib::ustring error_files;
4736          std::vector<std::string> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
4737          for (std::vector<std::string>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
4738               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
4739              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
4740              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file information
4741              SF_INFO info;              SF_INFO info;
4742              info.format = 0;              info.format = 0;
4743              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
# Line 2867  void MainWindow::on_action_replace_all_s Line 4878  void MainWindow::on_action_replace_all_s
4878      Gtk::Label description(str);      Gtk::Label description(str);
4879      description.set_line_wrap();      description.set_line_wrap();
4880  #endif  #endif
4881      Gtk::HBox entryArea;      HBox entryArea;
4882      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
4883      Gtk::Entry postfixEntryBox;      Gtk::Entry postfixEntryBox;
4884      postfixEntryBox.set_text(".wav");      postfixEntryBox.set_text(".wav");
4885      entryArea.pack_start(entryLabel);      entryArea.pack_start(entryLabel);
4886      entryArea.pack_start(postfixEntryBox);      entryArea.pack_start(postfixEntryBox);
4887    #if USE_GTKMM_BOX
4888        dialog.get_content_area()->pack_start(description, Gtk::PACK_SHRINK);
4889        dialog.get_content_area()->pack_start(entryArea, Gtk::PACK_SHRINK);
4890    #else
4891      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);
4892      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
4893    #endif
4894      description.show();      description.show();
4895    
4896    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4897      entryArea.show_all();      entryArea.show_all();
4898    #else
4899        entryArea.show();
4900    #endif
4901    
4902    #if HAS_GTKMM_STOCK
4903        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4904    #else
4905      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4906    #endif
4907      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
4908      dialog.set_select_multiple(false);      dialog.set_select_multiple(false);
4909      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 2885  void MainWindow::on_action_replace_all_s Line 4911  void MainWindow::on_action_replace_all_s
4911      }      }
4912      if (dialog.run() == Gtk::RESPONSE_OK)      if (dialog.run() == Gtk::RESPONSE_OK)
4913      {      {
4914            dialog.hide();
4915          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
4916          Glib::ustring error_files;          Glib::ustring error_files;
4917          std::string folder = dialog.get_filename();          std::string folder = dialog.get_filename();
# Line 3110  void MainWindow::on_instruments_treeview Line 5137  void MainWindow::on_instruments_treeview
5137      // get selected source instrument      // get selected source instrument
5138      gig::Instrument* src = NULL;      gig::Instrument* src = NULL;
5139      {      {
5140          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
5141          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5142          if (!rows.empty()) {          if (!rows.empty()) {
5143              Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);              Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[0]);
5144              if (it) {              if (it) {
5145                  Gtk::TreeModel::Row row = *it;                  Gtk::TreeModel::Row row = *it;
5146                  src = row[m_Columns.m_col_instr];                  src = row[m_InstrumentsModel.m_col_instr];
5147              }              }
5148          }          }
5149      }      }
# Line 3138  void MainWindow::on_instruments_treeview Line 5165  void MainWindow::on_instruments_treeview
5165      gig::Instrument* dst = NULL;      gig::Instrument* dst = NULL;
5166      {      {
5167          Gtk::TreeModel::Path path;          Gtk::TreeModel::Path path;
5168          const bool found = m_TreeView.get_path_at_pos(x, y, path);          const bool found = m_TreeViewInstruments.get_path_at_pos(x, y, path);
5169          if (!found) return;          if (!found) return;
5170    
5171          Gtk::TreeModel::iterator iter = m_refTreeModel->get_iter(path);          Gtk::TreeModel::iterator iter = m_refInstrumentsTreeModel->get_iter(path);
5172          if (!iter) return;          if (!iter) return;
5173          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
5174          dst = row[m_Columns.m_col_instr];          dst = row[m_InstrumentsModel.m_col_instr];
5175      }      }
5176      if (!dst) return;      if (!dst) return;
5177    
# Line 3283  void MainWindow::sample_name_changed(con Line 5310  void MainWindow::sample_name_changed(con
5310              file_changed();              file_changed();
5311          }          }
5312      }      }
5313        // change name in the sample properties window
5314        if (sampleProps.get_sample() == sample && sample) {
5315            sampleProps.set_sample(sample);
5316        }
5317  }  }
5318    
5319  void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,
# Line 3315  void MainWindow::script_double_clicked(c Line 5346  void MainWindow::script_double_clicked(c
5346      if (!iter) return;      if (!iter) return;
5347      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
5348      gig::Script* script = row[m_ScriptsModel.m_col_script];      gig::Script* script = row[m_ScriptsModel.m_col_script];
5349      if (!script) return;      editScript(script);
   
     ScriptEditor* editor = new ScriptEditor;  
     editor->signal_script_to_be_changed.connect(  
         signal_script_to_be_changed.make_slot()  
     );  
     editor->signal_script_changed.connect(  
         signal_script_changed.make_slot()  
     );  
     editor->setScript(script);  
     //editor->reparent(*this);  
     editor->show();  
5350  }  }
5351    
5352  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,
5353                                           const Gtk::TreeModel::iterator& iter) {                                           const Gtk::TreeModel::iterator& iter) {
5354      if (!iter) return;      if (!iter) return;
5355      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
5356      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_InstrumentsModel.m_col_name];
5357    
5358    #if !USE_GTKMM_BUILDER
5359      // change name in instrument menu      // change name in instrument menu
5360      int index = path[0];      int index = path[0];
5361      const std::vector<Gtk::Widget*> children = instrument_menu->get_children();      const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
# Line 3347  void MainWindow::instrument_name_changed Line 5368  void MainWindow::instrument_name_changed
5368          item->set_active();          item->set_active();
5369  #endif  #endif
5370      }      }
5371    #endif
5372    
5373      // change name in gig      // change name in gig
5374      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
5375      gig::String gigname(gig_from_utf8(name));      gig::String gigname(gig_from_utf8(name));
5376      if (instrument && instrument->pInfo->Name != gigname) {      if (instrument && instrument->pInfo->Name != gigname) {
5377          instrument->pInfo->Name = gigname;          instrument->pInfo->Name = gigname;
# Line 3363  void MainWindow::instrument_name_changed Line 5385  void MainWindow::instrument_name_changed
5385      }      }
5386  }  }
5387    
5388    bool MainWindow::instrument_row_visible(const Gtk::TreeModel::const_iterator& iter) {
5389        if (!iter)
5390            return true;
5391    
5392        Glib::ustring pattern = m_searchText.get_text().lowercase();
5393        trim(pattern);
5394        if (pattern.empty()) return true;
5395    
5396    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
5397        //HACK: on GTKMM4 development branch const_iterator cannot be easily converted to iterator, probably going to be fixed before final GTKMM4 release though.
5398        Gtk::TreeModel::Row row = **(Gtk::TreeModel::iterator*)(&iter);
5399    #else
5400        Gtk::TreeModel::Row row = *iter;
5401    #endif
5402        Glib::ustring name = row[m_InstrumentsModel.m_col_name];
5403        name = name.lowercase();
5404    
5405        std::vector<Glib::ustring> tokens = Glib::Regex::split_simple(" ", pattern);
5406        for (int t = 0; t < tokens.size(); ++t)
5407            if (name.find(tokens[t]) == Glib::ustring::npos)
5408                return false;
5409    
5410        return true;
5411    }
5412    
5413  void MainWindow::on_action_combine_instruments() {  void MainWindow::on_action_combine_instruments() {
5414      CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);      CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);
5415    
5416        // take over selection from instruments list view for the combine dialog's
5417        // list view as pre-selection
5418        std::set<int> indeces;
5419        {
5420            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
5421            std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5422            for (int r = 0; r < rows.size(); ++r) {
5423                Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[r]);
5424                if (it) {
5425                    Gtk::TreeModel::Row row = *it;
5426                    int index = row[m_InstrumentsModel.m_col_nr];
5427                    indeces.insert(index);
5428                }
5429            }
5430        }
5431        d->setSelectedInstruments(indeces);
5432    
5433    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5434      d->show_all();      d->show_all();
5435      d->resize(500, 400);  #else
5436        d->show();
5437    #endif
5438      d->run();      d->run();
5439      if (d->fileWasChanged()) {      if (d->fileWasChanged()) {
5440          // update GUI with new instrument just created          // update GUI with new instrument just created
# Line 3390  void MainWindow::on_action_view_referenc Line 5458  void MainWindow::on_action_view_referenc
5458      d->dimension_region_selected.connect(      d->dimension_region_selected.connect(
5459          sigc::mem_fun(*this, &MainWindow::select_dimension_region)          sigc::mem_fun(*this, &MainWindow::select_dimension_region)
5460      );      );
5461    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5462      d->show_all();      d->show_all();
5463    #else
5464        d->show();
5465    #endif
5466      d->resize(500, 400);      d->resize(500, 400);
5467      d->run();      d->run();
5468      delete d;      delete d;
# Line 3474  void MainWindow::mergeFiles(const std::v Line 5546  void MainWindow::mergeFiles(const std::v
5546              Glib::filename_display_basename(this->filename) + "' ...",              Glib::filename_display_basename(this->filename) + "' ...",
5547              *this              *this
5548          );          );
5549    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5550          progress_dialog->show_all();          progress_dialog->show_all();
5551    #else
5552            progress_dialog->show();
5553    #endif
5554          saver = new Saver(this->file); //FIXME: memory leak!          saver = new Saver(this->file); //FIXME: memory leak!
5555          saver->signal_progress().connect(          saver->signal_progress().connect(
5556              sigc::mem_fun(*this, &MainWindow::on_saver_progress));              sigc::mem_fun(*this, &MainWindow::on_saver_progress));
# Line 3501  void MainWindow::on_action_merge_files() Line 5577  void MainWindow::on_action_merge_files()
5577      }      }
5578    
5579      Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));      Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
5580    #if HAS_GTKMM_STOCK
5581        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
5582    #else
5583      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
5584    #endif
5585      dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);      dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
5586      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
5587  #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 3518  void MainWindow::on_action_merge_files() Line 5598  void MainWindow::on_action_merge_files()
5598      dialog.set_select_multiple(true);      dialog.set_select_multiple(true);
5599    
5600      // show warning in the file picker dialog      // show warning in the file picker dialog
5601      Gtk::HBox descriptionArea;      HBox descriptionArea;
5602      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
5603      Gtk::Image warningIcon;      Gtk::Image warningIcon;
5604      warningIcon.set_from_icon_name("dialog-warning",      warningIcon.set_from_icon_name("dialog-warning",
# Line 3541  void MainWindow::on_action_merge_files() Line 5621  void MainWindow::on_action_merge_files()
5621          "will accordingly be stored separately in the target .gig file!"          "will accordingly be stored separately in the target .gig file!"
5622      ));      ));
5623      descriptionArea.pack_start(description);      descriptionArea.pack_start(description);
5624    #if USE_GTKMM_BOX
5625    # warning No description area implemented for dialog on GTKMM 3
5626    #else
5627      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
5628    #endif
5629    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5630      descriptionArea.show_all();      descriptionArea.show_all();
5631    #else
5632        descriptionArea.show();
5633    #endif
5634    
5635      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
5636            dialog.hide();
5637    #ifdef GLIB_THREADS
5638          printf("on_action_merge_files self=%p\n",          printf("on_action_merge_files self=%p\n",
5639                 static_cast<void*>(Glib::Threads::Thread::self()));                 static_cast<void*>(Glib::Threads::Thread::self()));
5640    #else
5641            std::cout << "on_action_merge_files self=" <<
5642                std::this_thread::get_id() << "\n";
5643    #endif
5644          std::vector<std::string> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
5645    
5646          // merge the selected files to the currently open .gig file          // merge the selected files to the currently open .gig file
# Line 3578  void MainWindow::set_file_is_shared(bool Line 5672  void MainWindow::set_file_is_shared(bool
5672      }      }
5673    
5674      {      {
5675    #if USE_GTKMM_BUILDER
5676            m_actionToggleSyncSamplerSelection->property_enabled() = b;
5677    #else
5678          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
5679              uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));              uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
5680          if (item) item->set_sensitive(b);          if (item) item->set_sensitive(b);
5681    #endif
5682      }      }
5683  }  }
5684    
# Line 3628  void MainWindow::show_scripts_tab() { Line 5726  void MainWindow::show_scripts_tab() {
5726      m_TreeViewNotebook.set_current_page(2);      m_TreeViewNotebook.set_current_page(2);
5727  }  }
5728    
5729    void MainWindow::select_instrument_by_dir(int dir) {
5730        if (!file) return;
5731        gig::Instrument* pInstrument = get_instrument();
5732        if (!pInstrument) {
5733            select_instrument( file->GetInstrument(0) );
5734            return;
5735        }
5736        for (int i = 0; file->GetInstrument(i); ++i) {
5737            if (file->GetInstrument(i) == pInstrument) {
5738                select_instrument( file->GetInstrument(i + dir) );
5739                return;
5740            }
5741        }
5742    }
5743    
5744    void MainWindow::select_prev_instrument() {
5745        select_instrument_by_dir(-1);
5746    }
5747    
5748    void MainWindow::select_next_instrument() {
5749        select_instrument_by_dir(1);
5750    }
5751    
5752  void MainWindow::select_prev_region() {  void MainWindow::select_prev_region() {
5753      m_RegionChooser.select_prev_region();      m_RegionChooser.select_prev_region();
5754  }  }
# Line 3664  void MainWindow::select_next_dimension() Line 5785  void MainWindow::select_next_dimension()
5785      m_DimRegionChooser.select_next_dimension();      m_DimRegionChooser.select_next_dimension();
5786  }  }
5787    
5788    #define CLIPBOARD_DIMENSIONREGION_TARGET \
5789        ("libgig.DimensionRegion." + m_serializationArchive.rawDataFormat())
5790    
5791    void MainWindow::copy_selected_dimrgn() {
5792        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
5793        if (!pDimRgn) {
5794            updateClipboardPasteAvailable();
5795            updateClipboardCopyAvailable();
5796            return;
5797        }
5798    
5799        std::vector<Gtk::TargetEntry> targets;
5800        targets.push_back( Gtk::TargetEntry(CLIPBOARD_DIMENSIONREGION_TARGET) );
5801    
5802        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5803        clipboard->set(
5804            targets,
5805            sigc::mem_fun(*this, &MainWindow::on_clipboard_get),
5806            sigc::mem_fun(*this, &MainWindow::on_clipboard_clear)
5807        );
5808    
5809        m_serializationArchive.serialize(pDimRgn);
5810    
5811        updateClipboardPasteAvailable();
5812    }
5813    
5814    void MainWindow::paste_copied_dimrgn() {
5815        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5816        clipboard->request_contents(
5817            CLIPBOARD_DIMENSIONREGION_TARGET,
5818            sigc::mem_fun(*this, &MainWindow::on_clipboard_received)
5819        );
5820        updateClipboardPasteAvailable();
5821    }
5822    
5823    void MainWindow::adjust_clipboard_content() {
5824        MacroEditor* editor = new MacroEditor();
5825        editor->setMacro(&m_serializationArchive, true);
5826        editor->show();
5827    }
5828    
5829    void MainWindow::updateClipboardPasteAvailable() {
5830        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5831        clipboard->request_targets(
5832            sigc::mem_fun(*this, &MainWindow::on_clipboard_received_targets)
5833        );
5834    }
5835    
5836    void MainWindow::updateClipboardCopyAvailable() {
5837        bool bDimensionRegionCopyIsPossible = m_DimRegionChooser.get_main_dimregion();
5838    #if USE_GTKMM_BUILDER
5839        m_actionCopyDimRgn->property_enabled() = bDimensionRegionCopyIsPossible;
5840    #else
5841        static_cast<Gtk::MenuItem*>(
5842            uiManager->get_widget("/MenuBar/MenuEdit/CopyDimRgn")
5843        )->set_sensitive(bDimensionRegionCopyIsPossible);
5844    #endif
5845    }
5846    
5847    #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
5848    void MainWindow::on_clipboard_owner_change(Gdk::EventOwnerChange& event) {
5849    #else
5850    void MainWindow::on_clipboard_owner_change(GdkEventOwnerChange* event) {
5851    #endif
5852        updateClipboardPasteAvailable();
5853    }
5854    
5855    void MainWindow::on_clipboard_get(Gtk::SelectionData& selection_data, guint /*info*/) {
5856        const std::string target = selection_data.get_target();
5857        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
5858            selection_data.set(
5859                CLIPBOARD_DIMENSIONREGION_TARGET, 8 /* "format": probably unused*/,
5860                &m_serializationArchive.rawData()[0],
5861                m_serializationArchive.rawData().size()
5862            );
5863        } else {
5864            std::cerr << "Clipboard: content for unknown target '" << target << "' requested\n";
5865        }
5866    }
5867    
5868    void MainWindow::on_clipboard_clear() {
5869        m_serializationArchive.clear();
5870        updateClipboardPasteAvailable();
5871        updateClipboardCopyAvailable();
5872    }
5873    
5874    //NOTE: Might throw exception !!!
5875    void MainWindow::applyMacro(Serialization::Archive& macro) {
5876        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
5877        if (!pDimRgn) return;
5878    
5879        for (std::set<gig::DimensionRegion*>::iterator itDimReg = dimreg_edit.dimregs.begin();
5880             itDimReg != dimreg_edit.dimregs.end(); ++itDimReg)
5881        {
5882            gig::DimensionRegion* pDimRgn = *itDimReg;
5883            DimRegionChangeGuard(this, pDimRgn);
5884            macro.deserialize(pDimRgn);
5885        }
5886        //region_changed()
5887        file_changed();
5888        dimreg_changed();
5889    }
5890    
5891    void MainWindow::on_clipboard_received(const Gtk::SelectionData& selection_data) {
5892        const std::string target = selection_data.get_target();
5893        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
5894            Glib::ustring errorText;
5895            try {
5896                m_serializationArchive.decode(
5897                    selection_data.get_data(), selection_data.get_length()
5898                );
5899                applyMacro(m_serializationArchive);
5900            } catch (Serialization::Exception e) {
5901                errorText = e.Message;
5902            } catch (...) {
5903                errorText = _("Unknown exception while pasting DimensionRegion");
5904            }
5905            if (!errorText.empty()) {
5906                Glib::ustring txt = _("Pasting DimensionRegion failed:\n") + errorText;
5907                Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
5908                msg.run();
5909            }
5910        }
5911    }
5912    
5913    void MainWindow::on_clipboard_received_targets(const std::vector<Glib::ustring>& targets) {
5914        const bool bDimensionRegionPasteIsPossible =
5915            std::find(targets.begin(), targets.end(),
5916                      CLIPBOARD_DIMENSIONREGION_TARGET) != targets.end();
5917    
5918    #if USE_GTKMM_BUILDER
5919        m_actionPasteDimRgn->property_enabled() = bDimensionRegionPasteIsPossible;
5920        m_actionAdjustClipboard->property_enabled() = bDimensionRegionPasteIsPossible;
5921    #else
5922        static_cast<Gtk::MenuItem*>(
5923            uiManager->get_widget("/MenuBar/MenuEdit/PasteDimRgn")
5924        )->set_sensitive(bDimensionRegionPasteIsPossible);
5925    
5926        static_cast<Gtk::MenuItem*>(
5927            uiManager->get_widget("/MenuBar/MenuEdit/AdjustClipboard")
5928        )->set_sensitive(bDimensionRegionPasteIsPossible);
5929    #endif
5930    }
5931    
5932  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {
5933      return file_structure_to_be_changed_signal;      return file_structure_to_be_changed_signal;
5934  }  }

Legend:
Removed from v.3134  
changed lines
  Added in v.3809

  ViewVC Help
Powered by ViewVC