/[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 3344 by schoenebeck, Wed Aug 2 10:39:46 2017 UTC revision 3456 by persson, Sun Jan 27 10:07:56 2019 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2017 Andreas Persson   * Copyright (C) 2006-2019 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"
24  // threads.h must be included first to be able to build with  // threads.h must be included first to be able to build with
25  // G_DISABLE_DEPRECATED  // G_DISABLE_DEPRECATED
26  #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION == 31 && GLIBMM_MICRO_VERSION >= 2) || \  #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION == 31 && GLIBMM_MICRO_VERSION >= 2) || \
# Line 36  Line 36 
36  #include <gtkmm/aboutdialog.h>  #include <gtkmm/aboutdialog.h>
37  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
38  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
39  #include <gtkmm/stock.h>  #if HAS_GTKMM_STOCK
40    # include <gtkmm/stock.h>
41    #endif
42  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
43  #include <gtkmm/main.h>  #include <gtkmm/main.h>
44  #include <gtkmm/toggleaction.h>  #if GTKMM_MAJOR_VERSION < 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION < 89)
45    # include <gtkmm/toggleaction.h>
46    #endif
47  #include <gtkmm/accelmap.h>  #include <gtkmm/accelmap.h>
48  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
49  #include "wrapLabel.hh"  #include "wrapLabel.hh"
# Line 49  Line 53 
53  #include "compat.h"  #include "compat.h"
54    
55  #include <stdio.h>  #include <stdio.h>
56  #include <sndfile.h>  #ifdef LIBSNDFILE_HEADER_FILE
57    # include LIBSNDFILE_HEADER_FILE(sndfile.h)
58    #else
59    # include <sndfile.h>
60    #endif
61  #include <assert.h>  #include <assert.h>
62    
63  #include "mainwindow.h"  #include "mainwindow.h"
# Line 93  MainWindow::MainWindow() : Line 101  MainWindow::MainWindow() :
101  //    set_border_width(5);  //    set_border_width(5);
102    
103      if (!Settings::singleton()->autoRestoreWindowDimension) {      if (!Settings::singleton()->autoRestoreWindowDimension) {
104    #if GTKMM_MAJOR_VERSION >= 3
105            set_default_size(895, 600);
106    #else
107          set_default_size(800, 600);          set_default_size(800, 600);
108    #endif
109          set_position(Gtk::WIN_POS_CENTER);          set_position(Gtk::WIN_POS_CENTER);
110      }      }
111    
# Line 105  MainWindow::MainWindow() : Line 117  MainWindow::MainWindow() :
117    
118      // m_TreeView.set_reorderable();      // m_TreeView.set_reorderable();
119    
120    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
121        m_TreeView.signal_button_press_event().connect(
122            sigc::mem_fun(*this, &MainWindow::on_button_release));
123    #else
124      m_TreeView.signal_button_press_event().connect_notify(      m_TreeView.signal_button_press_event().connect_notify(
125          sigc::mem_fun(*this, &MainWindow::on_button_release));          sigc::mem_fun(*this, &MainWindow::on_button_release));
126    #endif
127    
128      // Add the TreeView tab, inside a ScrolledWindow, with the button underneath:      // Add the TreeView tab, inside a ScrolledWindow, with the button underneath:
129      m_ScrolledWindow.add(m_TreeView);      m_ScrolledWindow.add(m_TreeView);
# Line 119  MainWindow::MainWindow() : Line 136  MainWindow::MainWindow() :
136      m_ScrolledWindowScripts.add(m_TreeViewScripts);      m_ScrolledWindowScripts.add(m_TreeViewScripts);
137      m_ScrolledWindowScripts.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);      m_ScrolledWindowScripts.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
138    
139    #if GTKMM_MAJOR_VERSION < 3
140      m_TreeViewNotebook.set_size_request(300);      m_TreeViewNotebook.set_size_request(300);
141    #endif
142    
143      m_searchLabel.set_text(Glib::ustring(" ") + _("Filter:"));      m_searchLabel.set_text(Glib::ustring(" ") + _("Filter:"));
144      m_searchField.pack_start(m_searchLabel, Gtk::PACK_SHRINK);      m_searchField.pack_start(m_searchLabel, Gtk::PACK_SHRINK);
# Line 143  MainWindow::MainWindow() : Line 161  MainWindow::MainWindow() :
161          legend_hbox.add(labelLegend);          legend_hbox.add(labelLegend);
162    
163          imageNoSample.set(redDot);          imageNoSample.set(redDot);
164    #if HAS_GTKMM_ALIGNMENT
165          imageNoSample.set_alignment(Gtk::ALIGN_END);          imageNoSample.set_alignment(Gtk::ALIGN_END);
166          labelNoSample.set_alignment(Gtk::ALIGN_START);          labelNoSample.set_alignment(Gtk::ALIGN_START);
167    #else
168            imageNoSample.set_halign(Gtk::ALIGN_END);
169            labelNoSample.set_halign(Gtk::ALIGN_START);
170    #endif
171          legend_hbox.add(imageNoSample);          legend_hbox.add(imageNoSample);
172          legend_hbox.add(labelNoSample);          legend_hbox.add(labelNoSample);
173    
174          imageMissingSample.set(yellowDot);          imageMissingSample.set(yellowDot);
175    #if HAS_GTKMM_ALIGNMENT
176          imageMissingSample.set_alignment(Gtk::ALIGN_END);          imageMissingSample.set_alignment(Gtk::ALIGN_END);
177          labelMissingSample.set_alignment(Gtk::ALIGN_START);          labelMissingSample.set_alignment(Gtk::ALIGN_START);
178    #else
179            imageMissingSample.set_halign(Gtk::ALIGN_END);
180            labelMissingSample.set_halign(Gtk::ALIGN_START);
181    #endif
182          legend_hbox.add(imageMissingSample);          legend_hbox.add(imageMissingSample);
183          legend_hbox.add(labelMissingSample);          legend_hbox.add(labelMissingSample);
184    
185          imageLooped.set(blackLoop);          imageLooped.set(blackLoop);
186    #if HAS_GTKMM_ALIGNMENT
187          imageLooped.set_alignment(Gtk::ALIGN_END);          imageLooped.set_alignment(Gtk::ALIGN_END);
188          labelLooped.set_alignment(Gtk::ALIGN_START);          labelLooped.set_alignment(Gtk::ALIGN_START);
189    #else
190            imageLooped.set_halign(Gtk::ALIGN_END);
191            labelLooped.set_halign(Gtk::ALIGN_START);
192    #endif
193          legend_hbox.add(imageLooped);          legend_hbox.add(imageLooped);
194          legend_hbox.add(labelLooped);          legend_hbox.add(labelLooped);
195    
196          imageSomeLoops.set(grayLoop);          imageSomeLoops.set(grayLoop);
197    #if HAS_GTKMM_ALIGNMENT
198          imageSomeLoops.set_alignment(Gtk::ALIGN_END);          imageSomeLoops.set_alignment(Gtk::ALIGN_END);
199          labelSomeLoops.set_alignment(Gtk::ALIGN_START);          labelSomeLoops.set_alignment(Gtk::ALIGN_START);
200    #else
201            imageSomeLoops.set_halign(Gtk::ALIGN_END);
202            labelSomeLoops.set_halign(Gtk::ALIGN_START);
203    #endif
204          legend_hbox.add(imageSomeLoops);          legend_hbox.add(imageSomeLoops);
205          legend_hbox.add(labelSomeLoops);          legend_hbox.add(labelSomeLoops);
206    
207    #if HAS_GTKMM_SHOW_ALL_CHILDREN
208          legend_hbox.show_all_children();          legend_hbox.show_all_children();
209    #endif
210      }      }
211      dimreg_vbox.pack_start(legend_hbox, Gtk::PACK_SHRINK);      dimreg_vbox.pack_start(legend_hbox, Gtk::PACK_SHRINK);
212      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
# Line 180  MainWindow::MainWindow() : Line 220  MainWindow::MainWindow() :
220      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
221      m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));      m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));
222    
223    #if USE_GLIB_ACTION
224        m_actionGroup = Gio::SimpleActionGroup::create();
225        m_actionGroup->add_action(
226            "New", sigc::mem_fun(*this, &MainWindow::on_action_file_new)
227        );
228        m_actionGroup->add_action(
229            "Open", sigc::mem_fun(*this, &MainWindow::on_action_file_open)
230        );
231        m_actionGroup->add_action(
232            "Save", sigc::mem_fun(*this, &MainWindow::on_action_file_save)
233        );
234        m_actionGroup->add_action(
235            "SaveAs", sigc::mem_fun(*this, &MainWindow::on_action_file_save_as)
236        );
237        m_actionGroup->add_action(
238            "Properties", sigc::mem_fun(*this, &MainWindow::on_action_file_properties)
239        );
240        m_actionGroup->add_action(
241            "InstrProperties", sigc::mem_fun(*this, &MainWindow::show_instr_props)
242        );
243        m_actionMIDIRules = m_actionGroup->add_action(
244            "MidiRules", sigc::mem_fun(*this, &MainWindow::show_midi_rules)
245        );
246        m_actionGroup->add_action(
247            "ScriptSlots", sigc::mem_fun(*this, &MainWindow::show_script_slots)
248        );
249        m_actionGroup->add_action(
250            "Quit", sigc::mem_fun(*this, &MainWindow::on_action_quit)
251        );
252        m_actionGroup->add_action(
253            "MenuSample", sigc::mem_fun(*this, &MainWindow::show_samples_tab)
254        );
255        m_actionGroup->add_action(
256            "MenuInstrument", sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
257        );
258        m_actionGroup->add_action(
259            "MenuScript", sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
260        );
261    #else
262      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
263    
264      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));
# Line 236  MainWindow::MainWindow() : Line 315  MainWindow::MainWindow() :
315      actionGroup->add(Gtk::Action::create("AssignScripts", _("Assign Script")));      actionGroup->add(Gtk::Action::create("AssignScripts", _("Assign Script")));
316    
317      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
318    #endif
319    
320      const Gdk::ModifierType primaryModifierKey =      const Gdk::ModifierType primaryModifierKey =
321  #if defined(__APPLE__)  #if defined(__APPLE__)
# Line 244  MainWindow::MainWindow() : Line 324  MainWindow::MainWindow() :
324      Gdk::CONTROL_MASK; // Ctrl key on all other OSs      Gdk::CONTROL_MASK; // Ctrl key on all other OSs
325  #endif  #endif
326    
327    #if USE_GLIB_ACTION
328        m_actionCopyDimRgn = m_actionGroup->add_action(
329            "CopyDimRgn", sigc::mem_fun(*this, &MainWindow::copy_selected_dimrgn)
330        );
331        m_actionPasteDimRgn = m_actionGroup->add_action(
332            "PasteDimRgn", sigc::mem_fun(*this, &MainWindow::paste_copied_dimrgn)
333        );
334        m_actionAdjustClipboard = m_actionGroup->add_action(
335            "AdjustClipboard", sigc::mem_fun(*this, &MainWindow::adjust_clipboard_content)
336        );
337        m_actionGroup->add_action(
338            "SelectPrevInstr", sigc::mem_fun(*this, &MainWindow::select_prev_instrument)
339        );
340        m_actionGroup->add_action(
341            "SelectNextInstr", sigc::mem_fun(*this, &MainWindow::select_next_instrument)
342        );
343        m_actionGroup->add_action(
344            "SelectPrevRegion", sigc::mem_fun(*this, &MainWindow::select_prev_region)
345        );
346        m_actionGroup->add_action(
347            "SelectNextRegion", sigc::mem_fun(*this, &MainWindow::select_next_region)
348        );
349        m_actionGroup->add_action(
350            "SelectPrevDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_prev_dim_rgn_zone)
351        );
352        m_actionGroup->add_action(
353            "SelectNextDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_next_dim_rgn_zone)
354        );
355        m_actionGroup->add_action(
356            "SelectPrevDimension", sigc::mem_fun(*this, &MainWindow::select_prev_dimension)
357        );
358        m_actionGroup->add_action(
359            "SelectNextDimension", sigc::mem_fun(*this, &MainWindow::select_next_dimension)
360        );
361        m_actionGroup->add_action(
362            "SelectAddPrevDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_add_prev_dim_rgn_zone)
363        );
364        m_actionGroup->add_action(
365            "SelectAddNextDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_add_next_dim_rgn_zone)
366        );
367    #else
368      actionGroup->add(Gtk::Action::create("CopyDimRgn",      actionGroup->add(Gtk::Action::create("CopyDimRgn",
369                                           _("Copy selected dimension region")),                                           _("Copy selected dimension region")),
370                       Gtk::AccelKey(GDK_KEY_c, Gdk::MOD1_MASK),                       Gtk::AccelKey(GDK_KEY_c, Gdk::MOD1_MASK),
# Line 308  MainWindow::MainWindow() : Line 429  MainWindow::MainWindow() :
429                                           _("Add Next Dimension Region Zone to Selection")),                                           _("Add Next Dimension Region Zone to Selection")),
430                       Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),                       Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
431                       sigc::mem_fun(*this, &MainWindow::select_add_next_dim_rgn_zone));                       sigc::mem_fun(*this, &MainWindow::select_add_next_dim_rgn_zone));
432    #endif
433    
434    #if USE_GLIB_ACTION
435        m_actionToggleCopySampleUnity = m_actionGroup->add_action_bool("CopySampleUnity", true);
436        m_actionToggleCopySampleTune  = m_actionGroup->add_action_bool("CopySampleTune", true);
437        m_actionToggleCopySampleLoop  = m_actionGroup->add_action_bool("CopySampleLoop", true);
438    #else
439      Glib::RefPtr<Gtk::ToggleAction> toggle_action =      Glib::RefPtr<Gtk::ToggleAction> toggle_action =
440          Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"));          Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"));
441      toggle_action->set_active(true);      toggle_action->set_active(true);
# Line 323  MainWindow::MainWindow() : Line 450  MainWindow::MainWindow() :
450          Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));          Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));
451      toggle_action->set_active(true);      toggle_action->set_active(true);
452      actionGroup->add(toggle_action);      actionGroup->add(toggle_action);
453    #endif
454    
455    #if USE_GLIB_ACTION
456        m_actionToggleStatusBar =
457            m_actionGroup->add_action_bool("Statusbar", sigc::mem_fun(*this, &MainWindow::on_action_view_status_bar), true);
458        m_actionToggleRestoreWinDim =
459            m_actionGroup->add_action_bool("AutoRestoreWinDim", sigc::mem_fun(*this, &MainWindow::on_auto_restore_win_dim), Settings::singleton()->autoRestoreWindowDimension);
460        m_actionToggleShowTooltips = m_actionGroup->add_action_bool(
461            "ShowTooltips", sigc::mem_fun(*this, &MainWindow::on_action_show_tooltips),
462            Settings::singleton()->showTooltips
463        );
464        m_actionToggleSaveWithTempFile =
465            m_actionGroup->add_action_bool("SaveWithTemporaryFile", sigc::mem_fun(*this, &MainWindow::on_save_with_temporary_file), Settings::singleton()->saveWithTemporaryFile);
466        m_actionGroup->add_action("RefreshAll", sigc::mem_fun(*this, &MainWindow::on_action_refresh_all));
467    #else
468      actionGroup->add(Gtk::Action::create("MenuMacro", _("_Macro")));      actionGroup->add(Gtk::Action::create("MenuMacro", _("_Macro")));
469    
470    
# Line 344  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("ShowTooltips", _("Tooltips for Beginners"));
488        toggle_action->set_active(Settings::singleton()->showTooltips);
489        actionGroup->add(
490            toggle_action,
491            sigc::mem_fun(*this, &MainWindow::on_action_show_tooltips)
492        );
493    
494        toggle_action =
495          Gtk::ToggleAction::create("SaveWithTemporaryFile", _("Save with _temporary file"));          Gtk::ToggleAction::create("SaveWithTemporaryFile", _("Save with _temporary file"));
496      toggle_action->set_active(Settings::singleton()->saveWithTemporaryFile);      toggle_action->set_active(Settings::singleton()->saveWithTemporaryFile);
497      actionGroup->add(toggle_action,      actionGroup->add(toggle_action,
# Line 354  MainWindow::MainWindow() : Line 502  MainWindow::MainWindow() :
502          Gtk::Action::create("RefreshAll", _("_Refresh All")),          Gtk::Action::create("RefreshAll", _("_Refresh All")),
503          sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)          sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)
504      );                      );                
505    #endif
506    
507    #if USE_GLIB_ACTION
508        m_actionGroup->add_action(
509            "About", sigc::mem_fun(*this, &MainWindow::on_action_help_about)
510        );
511        m_actionGroup->add_action(
512            "AddInstrument", sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)
513        );
514        m_actionGroup->add_action(
515            "DupInstrument", sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
516        );
517        m_actionGroup->add_action(
518            "CombInstruments", sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
519        );
520        m_actionGroup->add_action(
521            "RemoveInstrument", sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
522        );
523    #else
524      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
525      actionGroup->add(Gtk::Action::create("MenuHelp",      actionGroup->add(Gtk::Action::create("MenuHelp",
526                                           action->property_label()));                                           action->property_label()));
# Line 378  MainWindow::MainWindow() : Line 544  MainWindow::MainWindow() :
544          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),
545          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
546      );      );
547    #endif
548    
549    #if USE_GLIB_ACTION
550        m_actionToggleWarnOnExtensions = m_actionGroup->add_action_bool(
551            "WarnUserOnExtensions", sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions),
552            Settings::singleton()->warnUserOnExtensions
553        );
554        m_actionToggleSyncSamplerSelection = m_actionGroup->add_action_bool(
555            "SyncSamplerInstrumentSelection", sigc::mem_fun(*this, &MainWindow::on_action_sync_sampler_instrument_selection),
556            Settings::singleton()->syncSamplerInstrumentSelection
557        );
558        m_actionToggleMoveRootNoteWithRegion = m_actionGroup->add_action_bool(
559            "MoveRootNoteWithRegionMoved", sigc::mem_fun(*this, &MainWindow::on_action_move_root_note_with_region_moved),
560            Settings::singleton()->moveRootNoteWithRegionMoved
561        );
562    #else
563      actionGroup->add(Gtk::Action::create("MenuSettings", _("_Settings")));      actionGroup->add(Gtk::Action::create("MenuSettings", _("_Settings")));
564            
565      toggle_action =      toggle_action =
# Line 405  MainWindow::MainWindow() : Line 585  MainWindow::MainWindow() :
585          toggle_action,          toggle_action,
586          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)
587      );      );
588    #endif
589    
590    #if USE_GLIB_ACTION
591        m_actionGroup->add_action(
592            "CombineInstruments", sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
593        );
594        m_actionGroup->add_action(
595            "MergeFiles", sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
596        );
597    #else
598      actionGroup->add(Gtk::Action::create("MenuTools", _("_Tools")));      actionGroup->add(Gtk::Action::create("MenuTools", _("_Tools")));
599    
600      actionGroup->add(      actionGroup->add(
# Line 418  MainWindow::MainWindow() : Line 606  MainWindow::MainWindow() :
606          Gtk::Action::create("MergeFiles", _("_Merge Files...")),          Gtk::Action::create("MergeFiles", _("_Merge Files...")),
607          sigc::mem_fun(*this, &MainWindow::on_action_merge_files)          sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
608      );      );
609    #endif
610    
611      // sample right-click popup actions      // sample right-click popup actions
612    #if USE_GLIB_ACTION
613        m_actionSampleProperties = m_actionGroup->add_action(
614            "SampleProperties", sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
615        );
616        m_actionAddSampleGroup = m_actionGroup->add_action(
617            "AddGroup", sigc::mem_fun(*this, &MainWindow::on_action_add_group)
618        );
619        m_actionAddSample = m_actionGroup->add_action(
620            "AddSample", sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
621        );
622        m_actionRemoveSample = m_actionGroup->add_action(
623            "RemoveSample", sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
624        );
625        m_actionGroup->add_action(
626            "RemoveUnusedSamples", sigc::mem_fun(*this, &MainWindow::on_action_remove_unused_samples)
627        );
628        m_actionViewSampleRefs = m_actionGroup->add_action(
629            "ShowSampleRefs", sigc::mem_fun(*this, &MainWindow::on_action_view_references)
630        );
631        m_actionReplaceSample = m_actionGroup->add_action(
632            "ReplaceSample", sigc::mem_fun(*this, &MainWindow::on_action_replace_sample)
633        );
634        m_actionGroup->add_action(
635            "ReplaceAllSamplesInAllGroups", sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
636        );
637    #else
638      actionGroup->add(      actionGroup->add(
639          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),
640          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
# Line 455  MainWindow::MainWindow() : Line 669  MainWindow::MainWindow() :
669                              _("Replace All Samples in All Groups...")),                              _("Replace All Samples in All Groups...")),
670          sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)          sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
671      );      );
672    #endif
673            
674      // script right-click popup actions      // script right-click popup actions
675    #if USE_GLIB_ACTION
676        m_actionAddScriptGroup = m_actionGroup->add_action(
677            "AddScriptGroup", sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
678        );
679        m_actionAddScript = m_actionGroup->add_action(
680            "AddScript", sigc::mem_fun(*this, &MainWindow::on_action_add_script)
681        );
682        m_actionEditScript = m_actionGroup->add_action(
683            "EditScript", sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
684        );
685        m_actionRemoveScript = m_actionGroup->add_action(
686            "RemoveScript", sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
687        );
688    #else
689      actionGroup->add(      actionGroup->add(
690          Gtk::Action::create("AddScriptGroup", _("Add _Group")),          Gtk::Action::create("AddScriptGroup", _("Add _Group")),
691          sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)          sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
# Line 473  MainWindow::MainWindow() : Line 702  MainWindow::MainWindow() :
702          Gtk::Action::create("RemoveScript", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveScript", Gtk::Stock::REMOVE),
703          sigc::mem_fun(*this, &MainWindow::on_action_remove_script)          sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
704      );      );
705    #endif
706    
707    #if USE_GTKMM_BUILDER
708        insert_action_group("AppMenu", m_actionGroup);
709        
710        m_uiManager = Gtk::Builder::create();
711        Glib::ustring ui_info =
712            "<interface>"
713            "  <menubar id='MenuBar'>"
714            "    <menu id='MenuFile'>"
715            "      <attribute name='label' translatable='yes'>_File</attribute>"
716            "      <section>"
717            "        <item id='New'>"
718            "          <attribute name='label' translatable='yes'>New</attribute>"
719            "          <attribute name='action'>AppMenu.New</attribute>"
720            "        </item>"
721            "        <item id='Open'>"
722            "          <attribute name='label' translatable='yes'>Open</attribute>"
723            "          <attribute name='action'>AppMenu.Open</attribute>"
724            "        </item>"
725            "      </section>"
726            "      <section>"
727            "        <item id='Save'>"
728            "          <attribute name='label' translatable='yes'>Save</attribute>"
729            "          <attribute name='action'>AppMenu.Save</attribute>"
730            "        </item>"
731            "        <item id='SaveAs'>"
732            "          <attribute name='label' translatable='yes'>Save As</attribute>"
733            "          <attribute name='action'>AppMenu.SaveAs</attribute>"
734            "        </item>"
735            "      </section>"
736            "      <section>"
737            "        <item id='Properties'>"
738            "          <attribute name='label' translatable='yes'>Properties</attribute>"
739            "          <attribute name='action'>AppMenu.Properties</attribute>"
740            "        </item>"
741            "      </section>"
742            "      <section>"
743            "        <item id='Quit'>"
744            "          <attribute name='label' translatable='yes'>Quit</attribute>"
745            "          <attribute name='action'>AppMenu.Quit</attribute>"
746            "        </item>"
747            "      </section>"
748            "    </menu>"
749            "    <menu id='MenuEdit'>"
750            "      <attribute name='label' translatable='yes'>Edit</attribute>"
751            "      <section>"
752            "        <item id='CopyDimRgn'>"
753            "          <attribute name='label' translatable='yes'>Copy Dimension Region</attribute>"
754            "          <attribute name='action'>AppMenu.CopyDimRgn</attribute>"
755            "        </item>"
756            "        <item id='AdjustClipboard'>"
757            "          <attribute name='label' translatable='yes'>Adjust Clipboard</attribute>"
758            "          <attribute name='action'>AppMenu.AdjustClipboard</attribute>"
759            "        </item>"
760            "        <item id='PasteDimRgn'>"
761            "          <attribute name='label' translatable='yes'>Paste Dimension Region</attribute>"
762            "          <attribute name='action'>AppMenu.PasteDimRgn</attribute>"
763            "        </item>"
764            "      </section>"
765            "        <item id='SelectPrevInstr'>"
766            "          <attribute name='label' translatable='yes'>Previous Instrument</attribute>"
767            "          <attribute name='action'>AppMenu.SelectPrevInstr</attribute>"
768            "        </item>"
769            "        <item id='SelectNextInstr'>"
770            "          <attribute name='label' translatable='yes'>Next Instrument</attribute>"
771            "          <attribute name='action'>AppMenu.SelectNextInstr</attribute>"
772            "        </item>"
773            "      <section>"
774            "        <item id='SelectPrevRegion'>"
775            "          <attribute name='label' translatable='yes'>Previous Region</attribute>"
776            "          <attribute name='action'>AppMenu.SelectPrevRegion</attribute>"
777            "        </item>"
778            "        <item id='SelectNextRegion'>"
779            "          <attribute name='label' translatable='yes'>Next Region</attribute>"
780            "          <attribute name='action'>AppMenu.SelectNextRegion</attribute>"
781            "        </item>"
782            "      </section>"
783            "        <item id='SelectPrevDimension'>"
784            "          <attribute name='label' translatable='yes'>Previous Dimension</attribute>"
785            "          <attribute name='action'>AppMenu.SelectPrevDimension</attribute>"
786            "        </item>"
787            "        <item id='SelectNextDimension'>"
788            "          <attribute name='label' translatable='yes'>Next Dimension</attribute>"
789            "          <attribute name='action'>AppMenu.SelectNextDimension</attribute>"
790            "        </item>"
791            "        <item id='SelectPrevDimRgnZone'>"
792            "          <attribute name='label' translatable='yes'>Previous Dimension Region Zone</attribute>"
793            "          <attribute name='action'>AppMenu.SelectPrevDimRgnZone</attribute>"
794            "        </item>"
795            "        <item id='SelectNextDimRgnZone'>"
796            "          <attribute name='label' translatable='yes'>Next Dimension Region Zone</attribute>"
797            "          <attribute name='action'>AppMenu.SelectNextDimRgnZone</attribute>"
798            "        </item>"
799            "        <item id='SelectAddPrevDimRgnZone'>"
800            "          <attribute name='label' translatable='yes'>Add Previous Dimension Region Zone</attribute>"
801            "          <attribute name='action'>AppMenu.SelectAddPrevDimRgnZone</attribute>"
802            "        </item>"
803            "        <item id='SelectAddNextDimRgnZone'>"
804            "          <attribute name='label' translatable='yes'>Add Next Dimension Region Zone</attribute>"
805            "          <attribute name='action'>AppMenu.SelectAddNextDimRgnZone</attribute>"
806            "        </item>"
807            "      <section>"
808            "        <item id='CopySampleUnity'>"
809            "          <attribute name='label' translatable='yes'>Copy Sample Unity</attribute>"
810            "          <attribute name='action'>AppMenu.CopySampleUnity</attribute>"
811            "        </item>"
812            "        <item id='CopySampleTune'>"
813            "          <attribute name='label' translatable='yes'>Copy Sample Tune</attribute>"
814            "          <attribute name='action'>AppMenu.CopySampleTune</attribute>"
815            "        </item>"
816            "        <item id='CopySampleLoop'>"
817            "          <attribute name='label' translatable='yes'>Copy Sample Loop</attribute>"
818            "          <attribute name='action'>AppMenu.CopySampleLoop</attribute>"
819            "        </item>"
820            "      </section>"
821            "    </menu>"
822            "    <menu id='MenuMacro'>"
823            "      <attribute name='label' translatable='yes'>Macro</attribute>"
824            "      <section>"
825            "      </section>"
826            "    </menu>"
827            "    <menu id='MenuSample'>"
828            "      <attribute name='label' translatable='yes'>Sample</attribute>"
829            "      <section>"
830            "        <item id='SampleProperties'>"
831            "          <attribute name='label' translatable='yes'>Properties</attribute>"
832            "          <attribute name='action'>AppMenu.SampleProperties</attribute>"
833            "        </item>"
834            "        <item id='AddGroup'>"
835            "          <attribute name='label' translatable='yes'>Add Group</attribute>"
836            "          <attribute name='action'>AppMenu.AddGroup</attribute>"
837            "        </item>"
838            "        <item id='AddSample'>"
839            "          <attribute name='label' translatable='yes'>Add Sample</attribute>"
840            "          <attribute name='action'>AppMenu.AddSample</attribute>"
841            "        </item>"
842            "        <item id='ShowSampleRefs'>"
843            "          <attribute name='label' translatable='yes'>Show Sample References</attribute>"
844            "          <attribute name='action'>AppMenu.ShowSampleRefs</attribute>"
845            "        </item>"
846            "        <item id='ReplaceSample'>"
847            "          <attribute name='label' translatable='yes'>Replace Sample</attribute>"
848            "          <attribute name='action'>AppMenu.ReplaceSample</attribute>"
849            "        </item>"
850            "        <item id='ReplaceAllSamplesInAllGroups'>"
851            "          <attribute name='label' translatable='yes'>Replace all Samples in all Groups</attribute>"
852            "          <attribute name='action'>AppMenu.ReplaceAllSamplesInAllGroups</attribute>"
853            "        </item>"
854            "      </section>"
855            "      <section>"
856            "        <item id='RemoveSample'>"
857            "          <attribute name='label' translatable='yes'>Remove Sample</attribute>"
858            "          <attribute name='action'>AppMenu.RemoveSample</attribute>"
859            "        </item>"
860            "        <item id='RemoveUnusedSamples'>"
861            "          <attribute name='label' translatable='yes'>Remove unused Samples</attribute>"
862            "          <attribute name='action'>AppMenu.RemoveUnusedSamples</attribute>"
863            "        </item>"
864            "      </section>"
865            "    </menu>"
866            "    <menu id='MenuInstrument'>"
867            "      <attribute name='label' translatable='yes'>Instrument</attribute>"
868            "      <section>"
869            "        <item id='InstrProperties'>"
870            "          <attribute name='label' translatable='yes'>Properties</attribute>"
871            "          <attribute name='action'>AppMenu.InstrProperties</attribute>"
872            "        </item>"
873            "        <item id='MidiRules'>"
874            "          <attribute name='label' translatable='yes'>MIDI Rules</attribute>"
875            "          <attribute name='action'>AppMenu.MidiRules</attribute>"
876            "        </item>"
877            "        <item id='ScriptSlots'>"
878            "          <attribute name='label' translatable='yes'>Script Slots</attribute>"
879            "          <attribute name='action'>AppMenu.ScriptSlots</attribute>"
880            "        </item>"
881            "      </section>"
882            "      <submenu id='AssignScripts'>"
883            "        <attribute name='label' translatable='yes'>Assign Scripts</attribute>"
884            "      </submenu>"
885            "      <section>"
886            "        <item id='AddInstrument'>"
887            "          <attribute name='label' translatable='yes'>Add Instrument</attribute>"
888            "          <attribute name='action'>AppMenu.AddInstrument</attribute>"
889            "        </item>"
890            "        <item id='DupInstrument'>"
891            "          <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"
892            "          <attribute name='action'>AppMenu.DupInstrument</attribute>"
893            "        </item>"
894            "        <item id='CombInstruments'>"
895            "          <attribute name='label' translatable='yes'>Combine Instrument</attribute>"
896            "          <attribute name='action'>AppMenu.CombInstruments</attribute>"
897            "        </item>"
898            "      </section>"
899            "      <section>"
900            "        <item id='RemoveInstrument'>"
901            "          <attribute name='label' translatable='yes'>Remove Instrument</attribute>"
902            "          <attribute name='action'>AppMenu.RemoveInstrument</attribute>"
903            "        </item>"
904            "      </section>"
905            "    </menu>"
906            "    <menu id='MenuScript'>"
907            "      <attribute name='label' translatable='yes'>Script</attribute>"
908            "      <section>"
909            "        <item id='AddScriptGroup'>"
910            "          <attribute name='label' translatable='yes'>Add Script Group</attribute>"
911            "          <attribute name='action'>AppMenu.AddScriptGroup</attribute>"
912            "        </item>"
913            "        <item id='AddScript'>"
914            "          <attribute name='label' translatable='yes'>Add Script</attribute>"
915            "          <attribute name='action'>AppMenu.AddScript</attribute>"
916            "        </item>"
917            "        <item id='EditScript'>"
918            "          <attribute name='label' translatable='yes'>Edit Script</attribute>"
919            "          <attribute name='action'>AppMenu.EditScript</attribute>"
920            "        </item>"
921            "      </section>"
922            "      <section>"
923            "        <item id='RemoveScript'>"
924            "          <attribute name='label' translatable='yes'>Remove Script</attribute>"
925            "          <attribute name='action'>AppMenu.RemoveScript</attribute>"
926            "        </item>"
927            "      </section>"
928            "    </menu>"
929            "    <menu id='MenuView'>"
930            "      <attribute name='label' translatable='yes'>View</attribute>"
931            "      <section>"
932            "        <item id='Statusbar'>"
933            "          <attribute name='label' translatable='yes'>Statusbar</attribute>"
934            "          <attribute name='action'>AppMenu.Statusbar</attribute>"
935            "        </item>"
936            "        <item id='ShowTooltips'>"
937            "          <attribute name='label' translatable='yes'>Tooltips for Beginners</attribute>"
938            "          <attribute name='action'>AppMenu.ShowTooltips</attribute>"
939            "        </item>"
940            "        <item id='AutoRestoreWinDim'>"
941            "          <attribute name='label' translatable='yes'>Auto restore Window Dimensions</attribute>"
942            "          <attribute name='action'>AppMenu.AutoRestoreWinDim</attribute>"
943            "        </item>"
944            "      </section>"
945            "      <section>"
946            "        <item id='RefreshAll'>"
947            "          <attribute name='label' translatable='yes'>Refresh All</attribute>"
948            "          <attribute name='action'>AppMenu.RefreshAll</attribute>"
949            "        </item>"
950            "      </section>"
951            "    </menu>"
952            "    <menu id='MenuTools'>"
953            "      <attribute name='label' translatable='yes'>Tools</attribute>"
954            "      <section>"
955            "        <item id='CombineInstruments'>"
956            "          <attribute name='label' translatable='yes'>Combine Instruments ...</attribute>"
957            "          <attribute name='action'>AppMenu.CombineInstruments</attribute>"
958            "        </item>"
959            "        <item id='MergeFiles'>"
960            "          <attribute name='label' translatable='yes'>Merge Files ...</attribute>"
961            "          <attribute name='action'>AppMenu.MergeFiles</attribute>"
962            "        </item>"
963            "      </section>"
964            "    </menu>"
965            "    <menu id='MenuSettings'>"
966            "      <attribute name='label' translatable='yes'>Settings</attribute>"
967            "      <section>"
968            "        <item id='WarnUserOnExtensions'>"
969            "          <attribute name='label' translatable='yes'>Warning on Format Extensions</attribute>"
970            "          <attribute name='action'>AppMenu.WarnUserOnExtensions</attribute>"
971            "        </item>"
972            "        <item id='SyncSamplerInstrumentSelection'>"
973            "          <attribute name='label' translatable='yes'>Synchronize Sampler Selection</attribute>"
974            "          <attribute name='action'>AppMenu.SyncSamplerInstrumentSelection</attribute>"
975            "        </item>"
976            "        <item id='MoveRootNoteWithRegionMoved'>"
977            "          <attribute name='label' translatable='yes'>Move Root Note with Region moved</attribute>"
978            "          <attribute name='action'>AppMenu.MoveRootNoteWithRegionMoved</attribute>"
979            "        </item>"
980            "        <item id='SaveWithTemporaryFile'>"
981            "          <attribute name='label' translatable='yes'>Save with temporary file</attribute>"
982            "          <attribute name='action'>AppMenu.SaveWithTemporaryFile</attribute>"
983            "        </item>"
984            "      </section>"
985            "    </menu>"
986            "    <menu id='MenuHelp'>"
987            "      <attribute name='label' translatable='yes'>Help</attribute>"
988            "      <section>"
989            "        <item id='About'>"
990            "          <attribute name='label' translatable='yes'>About ...</attribute>"
991            "          <attribute name='action'>AppMenu.About</attribute>"
992            "        </item>"
993            "      </section>"
994            "    </menu>"
995            "  </menubar>"
996            // popups
997            "  <menu id='PopupMenu'>"
998            "    <section>"
999            "      <item id='InstrProperties'>"
1000            "        <attribute name='label' translatable='yes'>Instrument Properties</attribute>"
1001            "        <attribute name='action'>AppMenu.InstrProperties</attribute>"
1002            "      </item>"
1003            "      <item id='MidiRules'>"
1004            "        <attribute name='label' translatable='yes'>MIDI Rules</attribute>"
1005            "        <attribute name='action'>AppMenu.MidiRules</attribute>"
1006            "      </item>"
1007            "      <item id='ScriptSlots'>"
1008            "        <attribute name='label' translatable='yes'>Script Slots</attribute>"
1009            "        <attribute name='action'>AppMenu.ScriptSlots</attribute>"
1010            "      </item>"
1011            "      <item id='AddInstrument'>"
1012            "        <attribute name='label' translatable='yes'>Add Instrument</attribute>"
1013            "        <attribute name='action'>AppMenu.AddInstrument</attribute>"
1014            "      </item>"
1015            "      <item id='DupInstrument'>"
1016            "        <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"
1017            "        <attribute name='action'>AppMenu.DupInstrument</attribute>"
1018            "      </item>"
1019            "      <item id='CombInstruments'>"
1020            "        <attribute name='label' translatable='yes'>Combine Instruments</attribute>"
1021            "        <attribute name='action'>AppMenu.CombInstruments</attribute>"
1022            "      </item>"
1023            "    </section>"
1024            "    <section>"
1025            "      <item id='RemoveInstrument'>"
1026            "        <attribute name='label' translatable='yes'>Remove Instruments</attribute>"
1027            "        <attribute name='action'>AppMenu.RemoveInstrument</attribute>"
1028            "      </item>"
1029            "    </section>"
1030            "  </menu>"
1031            "  <menu id='SamplePopupMenu'>"
1032            "    <section>"
1033            "      <item id='SampleProperties'>"
1034            "        <attribute name='label' translatable='yes'>Sample Properties</attribute>"
1035            "        <attribute name='action'>AppMenu.SampleProperties</attribute>"
1036            "      </item>"
1037            "      <item id='AddGroup'>"
1038            "        <attribute name='label' translatable='yes'>Add Sample Group</attribute>"
1039            "        <attribute name='action'>AppMenu.AddGroup</attribute>"
1040            "      </item>"
1041            "      <item id='AddSample'>"
1042            "        <attribute name='label' translatable='yes'>Add Sample</attribute>"
1043            "        <attribute name='action'>AppMenu.AddSample</attribute>"
1044            "      </item>"
1045            "      <item id='ShowSampleRefs'>"
1046            "        <attribute name='label' translatable='yes'>Show Sample References ...</attribute>"
1047            "        <attribute name='action'>AppMenu.ShowSampleRefs</attribute>"
1048            "      </item>"
1049            "      <item id='ReplaceSample'>"
1050            "        <attribute name='label' translatable='yes'>Replace Sample</attribute>"
1051            "        <attribute name='action'>AppMenu.ReplaceSample</attribute>"
1052            "      </item>"
1053            "      <item id='ReplaceAllSamplesInAllGroups'>"
1054            "        <attribute name='label' translatable='yes'>Replace all Samples ...</attribute>"
1055            "        <attribute name='action'>AppMenu.ReplaceAllSamplesInAllGroups</attribute>"
1056            "      </item>"
1057            "    </section>"
1058            "    <section>"
1059            "      <item id='RemoveSample'>"
1060            "        <attribute name='label' translatable='yes'>Remove Sample</attribute>"
1061            "        <attribute name='action'>AppMenu.RemoveSample</attribute>"
1062            "      </item>"
1063            "      <item id='RemoveUnusedSamples'>"
1064            "        <attribute name='label' translatable='yes'>Remove unused Samples</attribute>"
1065            "        <attribute name='action'>AppMenu.RemoveUnusedSamples</attribute>"
1066            "      </item>"
1067            "    </section>"
1068            "  </menu>"
1069            "  <menu id='ScriptPopupMenu'>"
1070            "    <section>"
1071            "      <item id='AddScriptGroup'>"
1072            "        <attribute name='label' translatable='yes'>Add Script Group</attribute>"
1073            "        <attribute name='action'>AppMenu.AddScriptGroup</attribute>"
1074            "      </item>"
1075            "      <item id='AddScript'>"
1076            "        <attribute name='label' translatable='yes'>Add Script</attribute>"
1077            "        <attribute name='action'>AppMenu.AddScript</attribute>"
1078            "      </item>"
1079            "      <item id='EditScript'>"
1080            "        <attribute name='label' translatable='yes'>Edit Script</attribute>"
1081            "        <attribute name='action'>AppMenu.EditScript</attribute>"
1082            "      </item>"
1083            "    </section>"
1084            "    <section>"
1085            "      <item id='RemoveScript'>"
1086            "        <attribute name='label' translatable='yes'>Remove Script</attribute>"
1087            "        <attribute name='action'>AppMenu.RemoveScript</attribute>"
1088            "      </item>"
1089            "    </section>"
1090            "  </menu>"
1091            "</interface>";
1092        m_uiManager->add_from_string(ui_info);
1093    #else
1094      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
1095      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
1096      add_accel_group(uiManager->get_accel_group());      add_accel_group(uiManager->get_accel_group());
# Line 550  MainWindow::MainWindow() : Line 1167  MainWindow::MainWindow() :
1167          "    </menu>"          "    </menu>"
1168          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
1169          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
1170            "      <menuitem action='ShowTooltips'/>"
1171          "      <menuitem action='AutoRestoreWinDim'/>"          "      <menuitem action='AutoRestoreWinDim'/>"
1172          "      <separator/>"          "      <separator/>"
1173          "      <menuitem action='RefreshAll'/>"          "      <menuitem action='RefreshAll'/>"
# Line 598  MainWindow::MainWindow() : Line 1216  MainWindow::MainWindow() :
1216          "  </popup>"          "  </popup>"
1217          "</ui>";          "</ui>";
1218      uiManager->add_ui_from_string(ui_info);      uiManager->add_ui_from_string(ui_info);
1219    #endif
1220    
1221    #if USE_GTKMM_BUILDER
1222        popup_menu = new Gtk::Menu(
1223            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1224                m_uiManager->get_object("PopupMenu")
1225            )
1226        );
1227        sample_popup = new Gtk::Menu(
1228            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1229                m_uiManager->get_object("SamplePopupMenu")
1230            )
1231        );
1232        script_popup = new Gtk::Menu(
1233            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1234                m_uiManager->get_object("ScriptPopupMenu")
1235            )
1236        );
1237    #else
1238      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));
1239            
1240      // Set tooltips for menu items (for some reason, setting a tooltip on the      // Set tooltips for menu items (for some reason, setting a tooltip on the
# Line 618  MainWindow::MainWindow() : Line 1254  MainWindow::MainWindow() :
1254      {      {
1255          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1256              uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));              uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
1257          item->set_tooltip_text(_("Used when dragging a sample to a region's sample reference field. You may disable this for example if you want to replace an existing sample in a region with a new sample, but don't want that the region's current loop 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."));
1258      }      }
1259      {      {
1260          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
# Line 633  MainWindow::MainWindow() : Line 1269  MainWindow::MainWindow() :
1269      {      {
1270          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1271              uiManager->get_widget("/MenuBar/MenuSettings/MoveRootNoteWithRegionMoved"));              uiManager->get_widget("/MenuBar/MenuSettings/MoveRootNoteWithRegionMoved"));
1272          item->set_tooltip_text(_("If checked, and when a region is moved by dragging it around on the virtual keyboard, the 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."));
1273      }      }
1274      {      {
1275          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
# Line 664  MainWindow::MainWindow() : Line 1300  MainWindow::MainWindow() :
1300              uiManager->get_widget("/MenuBar/MenuTools/MergeFiles"));              uiManager->get_widget("/MenuBar/MenuTools/MergeFiles"));
1301          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."));
1302      }      }
1303    #endif
1304    
1305    #if USE_GTKMM_BUILDER
1306        assign_scripts_menu = new Gtk::Menu(
1307            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1308                m_uiManager->get_object("AssignScripts")
1309            )
1310        );
1311    #else
1312      instrument_menu = static_cast<Gtk::MenuItem*>(      instrument_menu = static_cast<Gtk::MenuItem*>(
1313          uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();          uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();
1314    
1315      assign_scripts_menu = static_cast<Gtk::MenuItem*>(      assign_scripts_menu = static_cast<Gtk::MenuItem*>(
1316          uiManager->get_widget("/MenuBar/MenuInstrument/AssignScripts"))->get_submenu();          uiManager->get_widget("/MenuBar/MenuInstrument/AssignScripts"))->get_submenu();
1317    #endif
1318    
1319    #if USE_GTKMM_BUILDER
1320        Gtk::Widget* menuBar = NULL;
1321        m_uiManager->get_widget("MenuBar", menuBar);
1322    #else
1323      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");
1324    #endif
1325    
1326      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
1327      m_VBox.pack_start(m_HPaned);      m_VBox.pack_start(m_HPaned);
1328      m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK);
# Line 683  MainWindow::MainWindow() : Line 1333  MainWindow::MainWindow() :
1333      set_file_is_shared(false);      set_file_is_shared(false);
1334    
1335      // Status Bar:      // Status Bar:
1336    #if USE_GTKMM_BOX
1337    # warning No status bar layout for GTKMM 4 yet
1338    #else
1339      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);
1340      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);
1341    #endif
1342      m_StatusBar.show();      m_StatusBar.show();
1343    
1344      m_RegionChooser.signal_region_selected().connect(      m_RegionChooser.signal_region_selected().connect(
# Line 702  MainWindow::MainWindow() : Line 1356  MainWindow::MainWindow() :
1356      m_TreeView.set_model(m_refTreeModelFilter);      m_TreeView.set_model(m_refTreeModelFilter);
1357    
1358      m_TreeView.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);      m_TreeView.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
1359      m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules. Drag & drop to change the order of instruments."));      m_TreeView.set_has_tooltip(true);
1360        m_TreeView.signal_query_tooltip().connect(
1361            sigc::mem_fun(*this, &MainWindow::onQueryTreeViewTooltip)
1362        );
1363      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(
1364          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
1365      );      );
# Line 756  MainWindow::MainWindow() : Line 1413  MainWindow::MainWindow() :
1413          );          );
1414      }      }
1415      m_TreeViewSamples.set_headers_visible(true);      m_TreeViewSamples.set_headers_visible(true);
1416    #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
1417        m_TreeViewSamples.signal_button_press_event().connect(
1418            sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
1419        );
1420    #else
1421      m_TreeViewSamples.signal_button_press_event().connect_notify(      m_TreeViewSamples.signal_button_press_event().connect_notify(
1422          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
1423      );      );
1424    #endif
1425      m_refSamplesTreeModel->signal_row_changed().connect(      m_refSamplesTreeModel->signal_row_changed().connect(
1426          sigc::mem_fun(*this, &MainWindow::sample_name_changed)          sigc::mem_fun(*this, &MainWindow::sample_name_changed)
1427      );      );
# Line 775  MainWindow::MainWindow() : Line 1438  MainWindow::MainWindow() :
1438      // m_TreeViewScripts.set_reorderable();      // m_TreeViewScripts.set_reorderable();
1439      m_TreeViewScripts.append_column_editable("Samples", m_ScriptsModel.m_col_name);      m_TreeViewScripts.append_column_editable("Samples", m_ScriptsModel.m_col_name);
1440      m_TreeViewScripts.set_headers_visible(false);      m_TreeViewScripts.set_headers_visible(false);
1441    #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
1442        m_TreeViewScripts.signal_button_press_event().connect(
1443            sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
1444        );
1445    #else
1446      m_TreeViewScripts.signal_button_press_event().connect_notify(      m_TreeViewScripts.signal_button_press_event().connect_notify(
1447          sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)          sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
1448      );      );
1449    #endif
1450      //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 ?
1451      m_TreeViewScripts.signal_row_activated().connect(      m_TreeViewScripts.signal_row_activated().connect(
1452          sigc::mem_fun(*this, &MainWindow::script_double_clicked)          sigc::mem_fun(*this, &MainWindow::script_double_clicked)
# Line 883  MainWindow::MainWindow() : Line 1552  MainWindow::MainWindow() :
1552      file = 0;      file = 0;
1553      file_is_changed = false;      file_is_changed = false;
1554    
1555    #if HAS_GTKMM_SHOW_ALL_CHILDREN
1556      show_all_children();      show_all_children();
1557    #endif
1558    
1559      // start with a new gig file by default      // start with a new gig file by default
1560      on_action_file_new();      on_action_file_new();
# Line 904  MainWindow::MainWindow() : Line 1575  MainWindow::MainWindow() :
1575    
1576      // setup macros and their keyboard accelerators      // setup macros and their keyboard accelerators
1577      {      {
1578    #if USE_GTKMM_BUILDER
1579            menuMacro = new Gtk::Menu(
1580                Glib::RefPtr<Gio::Menu>::cast_dynamic(
1581                    m_uiManager->get_object("MenuMacro")
1582                )
1583            );
1584    #else
1585          Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(          Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
1586              uiManager->get_widget("/MenuBar/MenuMacro")              uiManager->get_widget("/MenuBar/MenuMacro")
1587          )->get_submenu();          )->get_submenu();
1588    #endif
1589    
1590          const Gdk::ModifierType noModifier = (Gdk::ModifierType)0;          const Gdk::ModifierType noModifier = (Gdk::ModifierType)0;
1591          Gtk::AccelMap::add_entry("<Macros>/macro_0", GDK_KEY_F1, noModifier);          Gtk::AccelMap::add_entry("<Macros>/macro_0", GDK_KEY_F1, noModifier);
# Line 921  MainWindow::MainWindow() : Line 1600  MainWindow::MainWindow() :
1600          Gtk::AccelMap::add_entry("<Macros>/macro_9", GDK_KEY_F10, noModifier);          Gtk::AccelMap::add_entry("<Macros>/macro_9", GDK_KEY_F10, noModifier);
1601          Gtk::AccelMap::add_entry("<Macros>/macro_10", GDK_KEY_F11, noModifier);          Gtk::AccelMap::add_entry("<Macros>/macro_10", GDK_KEY_F11, noModifier);
1602          Gtk::AccelMap::add_entry("<Macros>/macro_11", GDK_KEY_F12, noModifier);          Gtk::AccelMap::add_entry("<Macros>/macro_11", GDK_KEY_F12, noModifier);
1603            Gtk::AccelMap::add_entry("<Macros>/macro_12", GDK_KEY_F13, noModifier);
1604            Gtk::AccelMap::add_entry("<Macros>/macro_13", GDK_KEY_F14, noModifier);
1605            Gtk::AccelMap::add_entry("<Macros>/macro_14", GDK_KEY_F15, noModifier);
1606            Gtk::AccelMap::add_entry("<Macros>/macro_15", GDK_KEY_F16, noModifier);
1607            Gtk::AccelMap::add_entry("<Macros>/macro_16", GDK_KEY_F17, noModifier);
1608            Gtk::AccelMap::add_entry("<Macros>/macro_17", GDK_KEY_F18, noModifier);
1609            Gtk::AccelMap::add_entry("<Macros>/macro_18", GDK_KEY_F19, noModifier);
1610          Gtk::AccelMap::add_entry("<Macros>/SetupMacros", 'm', primaryModifierKey);          Gtk::AccelMap::add_entry("<Macros>/SetupMacros", 'm', primaryModifierKey);
1611    
1612          Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();          Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
# Line 943  MainWindow::MainWindow() : Line 1629  MainWindow::MainWindow() :
1629          Gtk::AccelMap::add_entry("<Scripts>/script_9", GDK_KEY_F10, Gdk::SHIFT_MASK);          Gtk::AccelMap::add_entry("<Scripts>/script_9", GDK_KEY_F10, Gdk::SHIFT_MASK);
1630          Gtk::AccelMap::add_entry("<Scripts>/script_10", GDK_KEY_F11, Gdk::SHIFT_MASK);          Gtk::AccelMap::add_entry("<Scripts>/script_10", GDK_KEY_F11, Gdk::SHIFT_MASK);
1631          Gtk::AccelMap::add_entry("<Scripts>/script_11", GDK_KEY_F12, Gdk::SHIFT_MASK);          Gtk::AccelMap::add_entry("<Scripts>/script_11", GDK_KEY_F12, Gdk::SHIFT_MASK);
1632            Gtk::AccelMap::add_entry("<Scripts>/script_12", GDK_KEY_F13, Gdk::SHIFT_MASK);
1633            Gtk::AccelMap::add_entry("<Scripts>/script_13", GDK_KEY_F14, Gdk::SHIFT_MASK);
1634            Gtk::AccelMap::add_entry("<Scripts>/script_14", GDK_KEY_F15, Gdk::SHIFT_MASK);
1635            Gtk::AccelMap::add_entry("<Scripts>/script_15", GDK_KEY_F16, Gdk::SHIFT_MASK);
1636            Gtk::AccelMap::add_entry("<Scripts>/script_16", GDK_KEY_F17, Gdk::SHIFT_MASK);
1637            Gtk::AccelMap::add_entry("<Scripts>/script_17", GDK_KEY_F18, Gdk::SHIFT_MASK);
1638            Gtk::AccelMap::add_entry("<Scripts>/script_18", GDK_KEY_F19, Gdk::SHIFT_MASK);
1639            Gtk::AccelMap::add_entry("<Scripts>/DropAllScriptSlots", GDK_KEY_BackSpace, Gdk::SHIFT_MASK);
1640    
1641          Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();          Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
1642          assign_scripts_menu->set_accel_group(accelGroup);          assign_scripts_menu->set_accel_group(accelGroup);
1643      }      }
1644    
1645        on_show_tooltips_changed();
1646    
1647      Glib::signal_idle().connect_once(      Glib::signal_idle().connect_once(
1648          sigc::mem_fun(*this, &MainWindow::bringToFront),          sigc::mem_fun(*this, &MainWindow::bringToFront),
1649          200          200
# Line 967  void MainWindow::bringToFront() { Line 1663  void MainWindow::bringToFront() {
1663  }  }
1664    
1665  void MainWindow::updateMacroMenu() {  void MainWindow::updateMacroMenu() {
1666    #if !USE_GTKMM_BUILDER
1667      Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(      Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
1668          uiManager->get_widget("/MenuBar/MenuMacro")          uiManager->get_widget("/MenuBar/MenuMacro")
1669      )->get_submenu();      )->get_submenu();
1670    #endif
1671    
1672      // remove all entries from "Macro" menu      // remove all entries from "Macro" menu
1673      {      {
# Line 1027  void MainWindow::updateMacroMenu() { Line 1725  void MainWindow::updateMacroMenu() {
1725          item->set_accel_path("<Macros>/SetupMacros");          item->set_accel_path("<Macros>/SetupMacros");
1726      }      }
1727    
1728    #if HAS_GTKMM_SHOW_ALL_CHILDREN
1729      menuMacro->show_all_children();      menuMacro->show_all_children();
1730    #endif
1731  }  }
1732    
1733  void MainWindow::onMacroSelected(int iMacro) {  void MainWindow::onMacroSelected(int iMacro) {
# Line 1093  gig::Instrument* MainWindow::get_instrum Line 1793  gig::Instrument* MainWindow::get_instrum
1793      gig::Instrument* instrument = 0;      gig::Instrument* instrument = 0;
1794      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
1795      if (rows.empty()) return NULL;      if (rows.empty()) return NULL;
1796      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.
1797        Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
1798      if (it) {      if (it) {
1799          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
1800          instrument = row[m_Columns.m_col_instr];          instrument = row[m_Columns.m_col_instr];
# Line 1159  void MainWindow::dimreg_changed() Line 1860  void MainWindow::dimreg_changed()
1860    
1861  void MainWindow::on_sel_change()  void MainWindow::on_sel_change()
1862  {  {
1863    #if !USE_GTKMM_BUILDER
1864      // select item in instrument menu      // select item in instrument menu
1865      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
1866      if (!rows.empty()) {      if (!rows.empty()) {
# Line 1171  void MainWindow::on_sel_change() Line 1873  void MainWindow::on_sel_change()
1873              static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();              static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();
1874          }          }
1875      }      }
1876    #endif
1877    
1878      updateScriptListOfMenu();      updateScriptListOfMenu();
1879    
# Line 1381  Glib::Dispatcher& Saver::signal_error() Line 2084  Glib::Dispatcher& Saver::signal_error()
2084  ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)  ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)
2085      : Gtk::Dialog(title, parent, true)      : Gtk::Dialog(title, parent, true)
2086  {  {
2087    #if USE_GTKMM_BOX
2088        get_content_area()->pack_start(progressBar);
2089    #else
2090      get_vbox()->pack_start(progressBar);      get_vbox()->pack_start(progressBar);
2091    #endif
2092    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2093      show_all_children();      show_all_children();
2094    #endif
2095      resize(600,50);      resize(600,50);
2096  }  }
2097    
# Line 1395  void MainWindow::__clear() { Line 2104  void MainWindow::__clear() {
2104      m_refTreeModel->clear();      m_refTreeModel->clear();
2105      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
2106      m_refScriptsTreeModel->clear();      m_refScriptsTreeModel->clear();
2107    #if !USE_GTKMM_BUILDER
2108      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
2109      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
2110          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
2111      }      }
2112    #endif
2113      // free libgig's gig::File instance      // free libgig's gig::File instance
2114      if (file && !file_is_shared) delete file;      if (file && !file_is_shared) delete file;
2115      file = NULL;      file = NULL;
# Line 1410  void MainWindow::__refreshEntireGUI() { Line 2121  void MainWindow::__refreshEntireGUI() {
2121      m_refTreeModel->clear();      m_refTreeModel->clear();
2122      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
2123      m_refScriptsTreeModel->clear();      m_refScriptsTreeModel->clear();
2124    #if !USE_GTKMM_BUILDER
2125      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
2126      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
2127          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
2128      }      }
2129    #endif
2130    
2131      if (!this->file) return;      if (!this->file) return;
2132    
# Line 1447  bool MainWindow::close_confirmation_dial Line 2160  bool MainWindow::close_confirmation_dial
2160      g_free(msg);      g_free(msg);
2161      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."));
2162      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
2163    #if HAS_GTKMM_STOCK
2164      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2165      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);
2166    #else
2167        dialog.add_button(_("_OK"), Gtk::RESPONSE_OK);
2168        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2169    #endif
2170      dialog.set_default_response(Gtk::RESPONSE_YES);      dialog.set_default_response(Gtk::RESPONSE_YES);
2171      int response = dialog.run();      int response = dialog.run();
2172      dialog.hide();      dialog.hide();
# Line 1479  bool MainWindow::leaving_shared_mode_dia Line 2197  bool MainWindow::leaving_shared_mode_dia
2197            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
2198            "load it."));            "load it."));
2199      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
2200    #if HAS_GTKMM_STOCK
2201      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2202    #else
2203        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2204    #endif
2205      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
2206      int response = dialog.run();      int response = dialog.run();
2207      dialog.hide();      dialog.hide();
# Line 1493  void MainWindow::on_action_file_open() Line 2215  void MainWindow::on_action_file_open()
2215      if (file_is_shared && !leaving_shared_mode_dialog()) return;      if (file_is_shared && !leaving_shared_mode_dialog()) return;
2216    
2217      Gtk::FileChooserDialog dialog(*this, _("Open file"));      Gtk::FileChooserDialog dialog(*this, _("Open file"));
2218    #if HAS_GTKMM_STOCK
2219      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2220      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
2221    #else
2222        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2223        dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
2224    #endif
2225      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
2226  #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
2227      Gtk::FileFilter filter;      Gtk::FileFilter filter;
# Line 1526  void MainWindow::load_file(const char* n Line 2253  void MainWindow::load_file(const char* n
2253          Glib::filename_display_basename(name) + "' ...",          Glib::filename_display_basename(name) + "' ...",
2254          *this          *this
2255      );      );
2256    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2257      progress_dialog->show_all();      progress_dialog->show_all();
2258    #endif
2259      loader = new Loader(name); //FIXME: memory leak!      loader = new Loader(name); //FIXME: memory leak!
2260      loader->signal_progress().connect(      loader->signal_progress().connect(
2261          sigc::mem_fun(*this, &MainWindow::on_loader_progress));          sigc::mem_fun(*this, &MainWindow::on_loader_progress));
# Line 1560  void MainWindow::load_instrument(gig::In Line 2289  void MainWindow::load_instrument(gig::In
2289              // make sure the selected item in the "instruments" tree view is              // make sure the selected item in the "instruments" tree view is
2290              // visible (scroll to it)              // visible (scroll to it)
2291              m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));              m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));
2292    #if !USE_GTKMM_BUILDER
2293              // select item in instrument menu              // select item in instrument menu
2294              {              {
2295                  const std::vector<Gtk::Widget*> children =                  const std::vector<Gtk::Widget*> children =
2296                      instrument_menu->get_children();                      instrument_menu->get_children();
2297                  static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();                  static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();
2298              }              }
2299    #endif
2300              // update region chooser and dimension region chooser              // update region chooser and dimension region chooser
2301              m_RegionChooser.set_instrument(instr);              m_RegionChooser.set_instrument(instr);
2302              break;              break;
# Line 1637  bool MainWindow::file_save() Line 2368  bool MainWindow::file_save()
2368          Glib::filename_display_basename(this->filename) + "' ...",          Glib::filename_display_basename(this->filename) + "' ...",
2369          *this          *this
2370      );      );
2371    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2372      progress_dialog->show_all();      progress_dialog->show_all();
2373    #endif
2374      saver = new Saver(this->file); //FIXME: memory leak!      saver = new Saver(this->file); //FIXME: memory leak!
2375      saver->signal_progress().connect(      saver->signal_progress().connect(
2376          sigc::mem_fun(*this, &MainWindow::on_saver_progress));          sigc::mem_fun(*this, &MainWindow::on_saver_progress));
# Line 1690  void MainWindow::on_action_file_save_as( Line 2423  void MainWindow::on_action_file_save_as(
2423  bool MainWindow::file_save_as()  bool MainWindow::file_save_as()
2424  {  {
2425      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);
2426    #if HAS_GTKMM_STOCK
2427      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2428      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
2429    #else
2430        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2431        dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);
2432    #endif
2433      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
2434      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
2435    
# Line 1720  bool MainWindow::file_save_as() Line 2458  bool MainWindow::file_save_as()
2458      }      }
2459    
2460      // show warning in the dialog      // show warning in the dialog
2461      Gtk::HBox descriptionArea;      HBox descriptionArea;
2462      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
2463      Gtk::Image warningIcon;      Gtk::Image warningIcon;
2464      warningIcon.set_from_icon_name("dialog-warning",      warningIcon.set_from_icon_name("dialog-warning",
# Line 1741  bool MainWindow::file_save_as() Line 2479  bool MainWindow::file_save_as()
2479            "same .gig file will end up in corrupted sample wave data!\n")            "same .gig file will end up in corrupted sample wave data!\n")
2480      );      );
2481      descriptionArea.pack_start(description);      descriptionArea.pack_start(description);
2482    #if USE_GTKMM_BOX
2483        dialog.get_content_area()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2484    #else
2485      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2486    #endif
2487    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2488      descriptionArea.show_all();      descriptionArea.show_all();
2489    #endif
2490    
2491      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2492          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
# Line 1756  bool MainWindow::file_save_as() Line 2500  bool MainWindow::file_save_as()
2500              Glib::filename_display_basename(filename) + "' ...",              Glib::filename_display_basename(filename) + "' ...",
2501              *this              *this
2502          );          );
2503    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2504          progress_dialog->show_all();          progress_dialog->show_all();
2505    #endif
2506    
2507          saver = new Saver(file, filename); //FIXME: memory leak!          saver = new Saver(file, filename); //FIXME: memory leak!
2508          saver->signal_progress().connect(          saver->signal_progress().connect(
# Line 1880  void MainWindow::on_action_warn_user_on_ Line 2626  void MainWindow::on_action_warn_user_on_
2626          !Settings::singleton()->warnUserOnExtensions;          !Settings::singleton()->warnUserOnExtensions;
2627  }  }
2628    
2629    void MainWindow::on_action_show_tooltips() {
2630        Settings::singleton()->showTooltips =
2631            !Settings::singleton()->showTooltips;
2632    
2633        on_show_tooltips_changed();
2634    }
2635    
2636    void MainWindow::on_show_tooltips_changed() {
2637        const bool b = Settings::singleton()->showTooltips;
2638    
2639        dimreg_label.set_has_tooltip(b);
2640        dimreg_all_regions.set_has_tooltip(b);
2641        dimreg_all_dimregs.set_has_tooltip(b);
2642        dimreg_stereo.set_has_tooltip(b);
2643    
2644        // Not doing this here, we let onQueryTreeViewTooltip() handle this per cell
2645        //m_TreeView.set_has_tooltip(b);
2646    
2647        m_TreeViewSamples.set_has_tooltip(b);
2648        m_TreeViewScripts.set_has_tooltip(b);
2649    
2650        set_has_tooltip(b);
2651    }
2652    
2653  void MainWindow::on_action_sync_sampler_instrument_selection() {  void MainWindow::on_action_sync_sampler_instrument_selection() {
2654      Settings::singleton()->syncSamplerInstrumentSelection =      Settings::singleton()->syncSamplerInstrumentSelection =
2655          !Settings::singleton()->syncSamplerInstrumentSelection;          !Settings::singleton()->syncSamplerInstrumentSelection;
# Line 1899  void MainWindow::on_action_help_about() Line 2669  void MainWindow::on_action_help_about()
2669      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
2670  #endif  #endif
2671      dialog.set_version(VERSION);      dialog.set_version(VERSION);
2672      dialog.set_copyright("Copyright (C) 2006-2017 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2019 Andreas Persson");
2673      const std::string sComment =      const std::string sComment =
2674          _("Built " __DATE__ "\nUsing ") +          _("Built " __DATE__ "\nUsing ") +
2675          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
# Line 1937  PropDialog::PropDialog() Line 2707  PropDialog::PropDialog()
2707        eSourceForm(_("Source form")),        eSourceForm(_("Source form")),
2708        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
2709        eSubject(_("Subject")),        eSubject(_("Subject")),
2710    #if HAS_GTKMM_STOCK
2711        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
2712    #else
2713          quitButton(_("_Close")),
2714    #endif
2715        table(2, 1),        table(2, 1),
2716        m_file(NULL)        m_file(NULL)
2717  {  {
# Line 1984  PropDialog::PropDialog() Line 2758  PropDialog::PropDialog()
2758      table.add(eCommissioned);      table.add(eCommissioned);
2759      table.add(eSubject);      table.add(eSubject);
2760    
2761    #if USE_GTKMM_GRID
2762        table.set_column_spacing(5);
2763    #else
2764      table.set_col_spacings(5);      table.set_col_spacings(5);
2765    #endif
2766    
2767      add(vbox);      add(vbox);
2768    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2769        table.set_margin(5);
2770    #else
2771      table.set_border_width(5);      table.set_border_width(5);
2772    #endif
2773      vbox.add(table);      vbox.add(table);
2774      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
2775      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
2776    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2777        buttonBox.set_margin(5);
2778    #else
2779      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
2780    #endif
2781      buttonBox.show();      buttonBox.show();
2782      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
2783      quitButton.set_can_default();      quitButton.set_can_default();
# Line 2002  PropDialog::PropDialog() Line 2789  PropDialog::PropDialog()
2789    
2790      quitButton.show();      quitButton.show();
2791      vbox.show();      vbox.show();
2792    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2793      show_all_children();      show_all_children();
2794    #endif
2795  }  }
2796    
2797  void PropDialog::set_file(gig::File* file)  void PropDialog::set_file(gig::File* file)
# Line 2015  void PropDialog::set_file(gig::File* fil Line 2804  void PropDialog::set_file(gig::File* fil
2804      std::vector<std::string> txts;      std::vector<std::string> txts;
2805      std::vector<int> values;      std::vector<int> values;
2806      txts.push_back(sGiga + "2"); values.push_back(2);      txts.push_back(sGiga + "2"); values.push_back(2);
2807      txts.push_back(sGiga + "3/v4"); values.push_back(3);      txts.push_back(sGiga + "3"); values.push_back(3);
2808      if (major != 2 && major != 3) {      txts.push_back(sGiga + "4"); values.push_back(4);
2809        if (major < 2 || major > 4) {
2810          txts.push_back(sGiga + ToString(major)); values.push_back(major);          txts.push_back(sGiga + ToString(major)); values.push_back(major);
2811      }      }
2812      std::vector<const char*> texts;      std::vector<const char*> texts;
# Line 2065  void InstrumentProps::set_MIDIProgram(ui Line 2855  void InstrumentProps::set_MIDIProgram(ui
2855  }  }
2856    
2857  InstrumentProps::InstrumentProps() :  InstrumentProps::InstrumentProps() :
2858    #if HAS_GTKMM_STOCK
2859      quitButton(Gtk::Stock::CLOSE),      quitButton(Gtk::Stock::CLOSE),
2860    #else
2861        quitButton(_("_Close")),
2862    #endif
2863      table(2,1),      table(2,1),
2864      eName(_("Name")),      eName(_("Name")),
2865      eIsDrum(_("Is drum")),      eIsDrum(_("Is drum")),
# Line 2075  InstrumentProps::InstrumentProps() : Line 2869  InstrumentProps::InstrumentProps() :
2869      eGainPlus6(_("Gain +6dB"), eAttenuation, -6),      eGainPlus6(_("Gain +6dB"), eAttenuation, -6),
2870      eEffectSend(_("Effect send"), 0, 65535),      eEffectSend(_("Effect send"), 0, 65535),
2871      eFineTune(_("Fine tune"), -8400, 8400),      eFineTune(_("Fine tune"), -8400, 8400),
2872      ePitchbendRange(_("Pitchbend range"), 0, 12),      ePitchbendRange(_("Pitchbend range"), 0, 48),
2873      ePianoReleaseMode(_("Piano release mode")),      ePianoReleaseMode(_("Piano release mode")),
2874      eDimensionKeyRangeLow(_("Keyswitching range low")),      eDimensionKeyRangeLow(_("Keyswitching range low")),
2875      eDimensionKeyRangeHigh(_("Keyswitching range high"))      eDimensionKeyRangeHigh(_("Keyswitching range high"))
# Line 2111  InstrumentProps::InstrumentProps() : Line 2905  InstrumentProps::InstrumentProps() :
2905    
2906      eName.signal_value_changed().connect(sig_name_changed.make_slot());      eName.signal_value_changed().connect(sig_name_changed.make_slot());
2907    
2908    #if USE_GTKMM_GRID
2909        table.set_column_spacing(5);
2910    #else
2911      table.set_col_spacings(5);      table.set_col_spacings(5);
2912    #endif
2913    
2914      table.add(eName);      table.add(eName);
2915      table.add(eIsDrum);      table.add(eIsDrum);
# Line 2127  InstrumentProps::InstrumentProps() : Line 2925  InstrumentProps::InstrumentProps() :
2925      table.add(eDimensionKeyRangeHigh);      table.add(eDimensionKeyRangeHigh);
2926    
2927      add(vbox);      add(vbox);
2928    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2929        table.set_margin(5);
2930    #else
2931      table.set_border_width(5);      table.set_border_width(5);
2932    #endif
2933      vbox.pack_start(table);      vbox.pack_start(table);
2934      table.show();      table.show();
2935      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
2936      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
2937    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2938        buttonBox.set_margin(5);
2939    #else
2940      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
2941    #endif
2942      buttonBox.show();      buttonBox.show();
2943      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
2944      quitButton.set_can_default();      quitButton.set_can_default();
# Line 2143  InstrumentProps::InstrumentProps() : Line 2949  InstrumentProps::InstrumentProps() :
2949    
2950      quitButton.show();      quitButton.show();
2951      vbox.show();      vbox.show();
2952    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2953      show_all_children();      show_all_children();
2954    #endif
2955  }  }
2956    
2957  void InstrumentProps::set_instrument(gig::Instrument* instrument)  void InstrumentProps::set_instrument(gig::Instrument* instrument)
# Line 2188  void MainWindow::updateSampleRefCountMap Line 2996  void MainWindow::updateSampleRefCountMap
2996      }      }
2997  }  }
2998    
2999    bool MainWindow::onQueryTreeViewTooltip(int x, int y, bool keyboardTip, const Glib::RefPtr<Gtk::Tooltip>& tooltip) {
3000        Gtk::TreeModel::iterator iter;
3001        m_TreeView.get_tooltip_context_iter(x, y, keyboardTip, iter);
3002        Gtk::TreeModel::Path path(iter);
3003        Gtk::TreeModel::Row row = *iter;
3004        Gtk::TreeViewColumn* pointedColumn = NULL;
3005        // resolve the precise table column the mouse points to
3006        {
3007            Gtk::TreeModel::Path path; // unused
3008            int cellX, cellY; // unused
3009            m_TreeView.get_path_at_pos(x, y, path, pointedColumn, cellX, cellY);
3010        }
3011        Gtk::TreeViewColumn* scriptsColumn = m_TreeView.get_column(2);
3012        if (pointedColumn == scriptsColumn) { // mouse hovers scripts column ...
3013            // show the script(s) assigned to the hovered instrument as tooltip
3014            tooltip->set_markup( row[m_Columns.m_col_tooltip] );
3015            m_TreeView.set_tooltip_cell(tooltip, &path, scriptsColumn, NULL);
3016        } else {
3017            // if beginners' tooltips is disabled then don't show the following one
3018            if (!Settings::singleton()->showTooltips)
3019                return false;
3020            // yeah, a beginners tooltip
3021            tooltip->set_text(_(
3022                "Right click here for actions on instruments & MIDI Rules. "
3023                "Drag & drop to change the order of instruments."
3024            ));
3025            m_TreeView.set_tooltip_cell(tooltip, &path, pointedColumn, NULL);
3026        }
3027        return true;
3028    }
3029    
3030    static Glib::ustring scriptTooltipFor(gig::Instrument* instrument, int index) {
3031        Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3032        const int iScriptSlots = instrument->ScriptSlotCount();
3033        Glib::ustring tooltip = "<u>(" + ToString(index) + ") „"  + name + "”</u>\n\n";
3034        if (!iScriptSlots)
3035            tooltip += "<span foreground='red'><i>No script assigned</i></span>";
3036        else {
3037            for (int i = 0; i < iScriptSlots; ++i) {
3038                tooltip += "• " + ToString(i+1) + ". Script:  „<span foreground='#46DEFF'><b>" +
3039                           instrument->GetScriptOfSlot(i)->Name + "</b></span>”";
3040                if (i + 1 < iScriptSlots) tooltip += "\n\n";
3041            }
3042        }
3043        return tooltip;
3044    }
3045    
3046  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
3047  {  {
3048      file = 0;      file = 0;
# Line 2217  void MainWindow::load_gig(gig::File* gig Line 3072  void MainWindow::load_gig(gig::File* gig
3072          row[m_Columns.m_col_name] = name;          row[m_Columns.m_col_name] = name;
3073          row[m_Columns.m_col_instr] = instrument;          row[m_Columns.m_col_instr] = instrument;
3074          row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";          row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3075            row[m_Columns.m_col_tooltip] = scriptTooltipFor(instrument, index);
3076    
3077    #if !USE_GTKMM_BUILDER
3078          add_instrument_to_menu(name);          add_instrument_to_menu(name);
3079    #endif
3080      }      }
3081      instrument_name_connection.unblock();      instrument_name_connection.unblock();
3082    #if !USE_GTKMM_BUILDER
3083      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();
3084    #endif
3085    
3086      updateSampleRefCountMap(gig);      updateSampleRefCountMap(gig);
3087    
# Line 2292  bool MainWindow::instr_props_set_instrum Line 3152  bool MainWindow::instr_props_set_instrum
3152          instrumentProps.hide();          instrumentProps.hide();
3153          return false;          return false;
3154      }      }
3155      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.
3156        Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
3157      if (it) {      if (it) {
3158          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
3159          gig::Instrument* instrument = row[m_Columns.m_col_instr];          gig::Instrument* instrument = row[m_Columns.m_col_instr];
# Line 2309  bool MainWindow::instr_props_set_instrum Line 3170  bool MainWindow::instr_props_set_instrum
3170      } else {      } else {
3171          instrumentProps.hide();          instrumentProps.hide();
3172      }      }
3173      return it;      //NOTE: explicit boolean cast required for GTKMM4 development branch here
3174        return it ? true : false;
3175  }  }
3176    
3177  void MainWindow::show_instr_props()  void MainWindow::show_instr_props()
# Line 2328  void MainWindow::instr_name_changed_by_i Line 3190  void MainWindow::instr_name_changed_by_i
3190      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_Columns.m_col_instr];
3191      Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));      Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
3192      if (gigname != name) {      if (gigname != name) {
3193            Gtk::TreeModel::Path path(*it);
3194            const int index = path[0];
3195          row[m_Columns.m_col_name] = gigname;          row[m_Columns.m_col_name] = gigname;
3196            row[m_Columns.m_col_tooltip] = scriptTooltipFor(instrument, index);
3197      }      }
3198  }  }
3199    
# Line 2374  void MainWindow::onScriptSlotsModified(g Line 3239  void MainWindow::onScriptSlotsModified(g
3239          Gtk::TreeModel::Row row = model->children()[i];          Gtk::TreeModel::Row row = model->children()[i];
3240          if (row[m_Columns.m_col_instr] != pInstrument) continue;          if (row[m_Columns.m_col_instr] != pInstrument) continue;
3241          row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";          row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3242            row[m_Columns.m_col_tooltip] = scriptTooltipFor(pInstrument, i);
3243          break;          break;
3244      }      }
3245    
# Line 2399  void MainWindow::assignScript(gig::Scrip Line 3265  void MainWindow::assignScript(gig::Scrip
3265      onScriptSlotsModified(pInstrument);      onScriptSlotsModified(pInstrument);
3266  }  }
3267    
3268    void MainWindow::dropAllScriptSlots() {
3269        gig::Instrument* pInstrument = get_instrument();
3270        if (!pInstrument) {
3271            printf("!instrument\n");
3272            return;
3273        }
3274    
3275        const int iScriptSlots = pInstrument->ScriptSlotCount();
3276        for (int i = iScriptSlots - 1; i >= 0; --i)
3277            pInstrument->RemoveScriptSlot(i);
3278    
3279        onScriptSlotsModified(pInstrument);
3280    }
3281    
3282  void MainWindow::on_action_refresh_all() {  void MainWindow::on_action_refresh_all() {
3283      __refreshEntireGUI();      __refreshEntireGUI();
3284  }  }
3285    
3286  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
3287    #if USE_GLIB_ACTION
3288        bool active = false;
3289        m_actionToggleStatusBar->get_state(active);
3290        // for some reason toggle state does not change automatically
3291        active = !active;
3292        m_actionToggleStatusBar->change_state(active);
3293        if (active)
3294            m_StatusBar.show();
3295        else
3296            m_StatusBar.hide();
3297    #else
3298      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3299          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
3300      if (!item) {      if (!item) {
# Line 2412  void MainWindow::on_action_view_status_b Line 3303  void MainWindow::on_action_view_status_b
3303      }      }
3304      if (item->get_active()) m_StatusBar.show();      if (item->get_active()) m_StatusBar.show();
3305      else                    m_StatusBar.hide();      else                    m_StatusBar.hide();
3306    #endif
3307  }  }
3308    
3309  void MainWindow::on_auto_restore_win_dim() {  void MainWindow::on_auto_restore_win_dim() {
3310    #if USE_GLIB_ACTION
3311        bool active = false;
3312        m_actionToggleRestoreWinDim->get_state(active);
3313        // for some reason toggle state does not change automatically
3314        active = !active;
3315        m_actionToggleRestoreWinDim->change_state(active);
3316        Settings::singleton()->autoRestoreWindowDimension = active;
3317    #else
3318      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3319          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
3320      if (!item) {      if (!item) {
# Line 2422  void MainWindow::on_auto_restore_win_dim Line 3322  void MainWindow::on_auto_restore_win_dim
3322          return;          return;
3323      }      }
3324      Settings::singleton()->autoRestoreWindowDimension = item->get_active();      Settings::singleton()->autoRestoreWindowDimension = item->get_active();
3325    #endif
3326  }  }
3327    
3328  void MainWindow::on_save_with_temporary_file() {  void MainWindow::on_save_with_temporary_file() {
3329    #if USE_GLIB_ACTION
3330        bool active = false;
3331        m_actionToggleSaveWithTempFile->get_state(active);
3332        // for some reason toggle state does not change automatically
3333        active = !active;
3334        m_actionToggleSaveWithTempFile->change_state(active);
3335        Settings::singleton()->saveWithTemporaryFile = active;
3336    #else
3337      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3338          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));
3339      if (!item) {      if (!item) {
# Line 2432  void MainWindow::on_save_with_temporary_ Line 3341  void MainWindow::on_save_with_temporary_
3341          return;          return;
3342      }      }
3343      Settings::singleton()->saveWithTemporaryFile = item->get_active();      Settings::singleton()->saveWithTemporaryFile = item->get_active();
3344    #endif
3345  }  }
3346    
3347  bool MainWindow::is_copy_samples_unity_note_enabled() const {  bool MainWindow::is_copy_samples_unity_note_enabled() const {
3348    #if USE_GLIB_ACTION
3349        bool active = false;
3350        m_actionToggleCopySampleUnity->get_state(active);
3351        return active;
3352    #else
3353      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3354          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
3355      if (!item) {      if (!item) {
# Line 2442  bool MainWindow::is_copy_samples_unity_n Line 3357  bool MainWindow::is_copy_samples_unity_n
3357          return true;          return true;
3358      }      }
3359      return item->get_active();      return item->get_active();
3360    #endif
3361  }  }
3362    
3363  bool MainWindow::is_copy_samples_fine_tune_enabled() const {  bool MainWindow::is_copy_samples_fine_tune_enabled() const {
3364    #if USE_GLIB_ACTION
3365        bool active = false;
3366        m_actionToggleCopySampleTune->get_state(active);
3367        return active;
3368    #else
3369      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3370          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
3371      if (!item) {      if (!item) {
# Line 2452  bool MainWindow::is_copy_samples_fine_tu Line 3373  bool MainWindow::is_copy_samples_fine_tu
3373          return true;          return true;
3374      }      }
3375      return item->get_active();      return item->get_active();
3376    #endif
3377  }  }
3378    
3379  bool MainWindow::is_copy_samples_loop_enabled() const {  bool MainWindow::is_copy_samples_loop_enabled() const {
3380    #if USE_GLIB_ACTION
3381        bool active = false;
3382        m_actionToggleCopySampleLoop->get_state(active);
3383        return active;
3384    #else
3385      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3386          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
3387      if (!item) {      if (!item) {
# Line 2462  bool MainWindow::is_copy_samples_loop_en Line 3389  bool MainWindow::is_copy_samples_loop_en
3389          return true;          return true;
3390      }      }
3391      return item->get_active();      return item->get_active();
3392    #endif
3393  }  }
3394    
3395  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
3396  {  bool MainWindow::on_button_release(Gdk::EventButton& _button) {
3397        GdkEventButton* button = _button.gobj();
3398    #else
3399    void MainWindow::on_button_release(GdkEventButton* button) {
3400    #endif
3401      if (button->type == GDK_2BUTTON_PRESS) {      if (button->type == GDK_2BUTTON_PRESS) {
3402          show_instr_props();          show_instr_props();
3403      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
3404          // gig v2 files have no midi rules          // gig v2 files have no midi rules
3405          const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);          const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
3406    #if USE_GTKMM_BUILDER
3407            m_actionMIDIRules->property_enabled() = bEnabled;
3408    #else
3409          static_cast<Gtk::MenuItem*>(          static_cast<Gtk::MenuItem*>(
3410              uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(              uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(
3411                  bEnabled                  bEnabled
# Line 2479  void MainWindow::on_button_release(GdkEv Line 3414  void MainWindow::on_button_release(GdkEv
3414              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
3415                  bEnabled                  bEnabled
3416              );              );
3417    #endif
3418          popup_menu->popup(button->button, button->time);          popup_menu->popup(button->button, button->time);
3419      }      }
3420    #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
3421        return false;
3422    #endif
3423  }  }
3424    
3425    #if !USE_GTKMM_BUILDER
3426  void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {  void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {
3427      if (item->get_active()) {      if (item->get_active()) {
3428          const std::vector<Gtk::Widget*> children =          const std::vector<Gtk::Widget*> children =
# Line 2497  void MainWindow::on_instrument_selection Line 3437  void MainWindow::on_instrument_selection
3437          }          }
3438      }      }
3439  }  }
3440    #endif
3441    
3442  void MainWindow::select_instrument(gig::Instrument* instrument) {  void MainWindow::select_instrument(gig::Instrument* instrument) {
3443      if (!instrument) return;      if (!instrument) return;
# Line 2511  void MainWindow::select_instrument(gig:: Line 3452  void MainWindow::select_instrument(gig::
3452              // select and show the respective instrument in the list view              // select and show the respective instrument in the list view
3453              show_intruments_tab();              show_intruments_tab();
3454              m_TreeView.get_selection()->unselect_all();              m_TreeView.get_selection()->unselect_all();
3455                
3456    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3457                auto iterSel = model->children()[i].get_iter();
3458                m_TreeView.get_selection()->select(iterSel);
3459    #else
3460              m_TreeView.get_selection()->select(model->children()[i]);              m_TreeView.get_selection()->select(model->children()[i]);
3461    #endif
3462              std::vector<Gtk::TreeModel::Path> rows =              std::vector<Gtk::TreeModel::Path> rows =
3463                  m_TreeView.get_selection()->get_selected_rows();                  m_TreeView.get_selection()->get_selected_rows();
3464              if (!rows.empty())              if (!rows.empty())
# Line 2536  bool MainWindow::select_dimension_region Line 3483  bool MainWindow::select_dimension_region
3483              // select and show the respective instrument in the list view              // select and show the respective instrument in the list view
3484              show_intruments_tab();              show_intruments_tab();
3485              m_TreeView.get_selection()->unselect_all();              m_TreeView.get_selection()->unselect_all();
3486    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3487                auto iterSel = model->children()[i].get_iter();
3488                m_TreeView.get_selection()->select(iterSel);
3489    #else
3490              m_TreeView.get_selection()->select(model->children()[i]);              m_TreeView.get_selection()->select(model->children()[i]);
3491    #endif
3492              std::vector<Gtk::TreeModel::Path> rows =              std::vector<Gtk::TreeModel::Path> rows =
3493                  m_TreeView.get_selection()->get_selected_rows();                  m_TreeView.get_selection()->get_selected_rows();
3494              if (!rows.empty())              if (!rows.empty())
# Line 2567  void MainWindow::select_sample(gig::Samp Line 3519  void MainWindow::select_sample(gig::Samp
3519              if (rowSample[m_SamplesModel.m_col_sample] == sample) {              if (rowSample[m_SamplesModel.m_col_sample] == sample) {
3520                  show_samples_tab();                  show_samples_tab();
3521                  m_TreeViewSamples.get_selection()->unselect_all();                  m_TreeViewSamples.get_selection()->unselect_all();
3522    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3523                    auto iterSel = rowGroup.children()[s].get_iter();
3524                    m_TreeViewSamples.get_selection()->select(iterSel);
3525    #else
3526                  m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);                  m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);
3527    #endif
3528                  std::vector<Gtk::TreeModel::Path> rows =                  std::vector<Gtk::TreeModel::Path> rows =
3529                      m_TreeViewSamples.get_selection()->get_selected_rows();                      m_TreeViewSamples.get_selection()->get_selected_rows();
3530                  if (rows.empty()) return;                  if (rows.empty()) return;
# Line 2578  void MainWindow::select_sample(gig::Samp Line 3535  void MainWindow::select_sample(gig::Samp
3535      }      }
3536  }  }
3537    
3538    #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
3539    bool MainWindow::on_sample_treeview_button_release(Gdk::EventButton& _button) {
3540        GdkEventButton* button = _button.gobj();
3541    #else
3542  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
3543    #endif
3544      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
3545          // 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
3546          // does not select the respective row, so we must assure this          // does not select the respective row, so we must assure this
# Line 2599  void MainWindow::on_sample_treeview_butt Line 3561  void MainWindow::on_sample_treeview_butt
3561              }              }
3562          }*/          }*/
3563    
3564    #if !USE_GTKMM_BUILDER
3565          Gtk::Menu* sample_popup =          Gtk::Menu* sample_popup =
3566              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));
3567    #endif
3568    
3569          // update enabled/disabled state of sample popup items          // update enabled/disabled state of sample popup items
3570          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
3571          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
# Line 2615  void MainWindow::on_sample_treeview_butt Line 3580  void MainWindow::on_sample_treeview_butt
3580              if (row[m_SamplesModel.m_col_sample]) nSamples++;              if (row[m_SamplesModel.m_col_sample]) nSamples++;
3581          }          }
3582    
3583    #if USE_GTKMM_BUILDER
3584            m_actionSampleProperties->property_enabled() = (n == 1);
3585            m_actionAddSample->property_enabled() = (n);
3586            m_actionAddSampleGroup->property_enabled() = (file);
3587            m_actionViewSampleRefs->property_enabled() = (nSamples == 1);
3588            m_actionRemoveSample->property_enabled() = (n);
3589            m_actionReplaceSample->property_enabled() = (nSamples == 1);
3590    #else
3591          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
3592              set_sensitive(n == 1);              set_sensitive(n == 1);
3593          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
# Line 2625  void MainWindow::on_sample_treeview_butt Line 3598  void MainWindow::on_sample_treeview_butt
3598              set_sensitive(nSamples == 1);              set_sensitive(nSamples == 1);
3599          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
3600              set_sensitive(n);              set_sensitive(n);
3601    #endif
3602          // show sample popup          // show sample popup
3603          sample_popup->popup(button->button, button->time);          sample_popup->popup(button->button, button->time);
3604    
3605    #if !USE_GTKMM_BUILDER
3606          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->
3607              set_sensitive(n == 1);              set_sensitive(n == 1);
3608          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->
# Line 2638  void MainWindow::on_sample_treeview_butt Line 3613  void MainWindow::on_sample_treeview_butt
3613              set_sensitive(nSamples == 1);              set_sensitive(nSamples == 1);
3614          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->
3615              set_sensitive(n);              set_sensitive(n);
3616    #endif
3617      }      }
3618        
3619    #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
3620        return false;
3621    #endif
3622  }  }
3623    
3624    #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
3625    bool MainWindow::on_script_treeview_button_release(Gdk::EventButton& _button) {
3626        GdkEventButton* button = _button.gobj();
3627    #else
3628  void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {
3629    #endif
3630      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
3631    #if !USE_GTKMM_BUILDER
3632          Gtk::Menu* script_popup =          Gtk::Menu* script_popup =
3633              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));
3634    #endif
3635          // update enabled/disabled state of sample popup items          // update enabled/disabled state of sample popup items
3636          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
3637          Gtk::TreeModel::iterator it = sel->get_selected();          Gtk::TreeModel::iterator it = sel->get_selected();
# Line 2655  void MainWindow::on_script_treeview_butt Line 3642  void MainWindow::on_script_treeview_butt
3642              group_selected  = row[m_ScriptsModel.m_col_group];              group_selected  = row[m_ScriptsModel.m_col_group];
3643              script_selected = row[m_ScriptsModel.m_col_script];              script_selected = row[m_ScriptsModel.m_col_script];
3644          }          }
3645    #if USE_GTKMM_BUILDER
3646            m_actionAddScript->property_enabled() = (group_selected || script_selected);
3647            m_actionAddScriptGroup->property_enabled() = (file);
3648            m_actionEditScript->property_enabled() = (script_selected);
3649            m_actionRemoveScript->property_enabled() = (group_selected || script_selected);
3650    #else
3651          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->
3652              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
3653          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->
# Line 2663  void MainWindow::on_script_treeview_butt Line 3656  void MainWindow::on_script_treeview_butt
3656              set_sensitive(script_selected);                  set_sensitive(script_selected);    
3657          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->
3658              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
3659    #endif
3660          // show sample popup          // show sample popup
3661          script_popup->popup(button->button, button->time);          script_popup->popup(button->button, button->time);
3662    
3663    #if !USE_GTKMM_BUILDER
3664          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->
3665              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
3666          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->
# Line 2674  void MainWindow::on_script_treeview_butt Line 3669  void MainWindow::on_script_treeview_butt
3669              set_sensitive(script_selected);                  set_sensitive(script_selected);    
3670          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->
3671              set_sensitive(group_selected || script_selected);              set_sensitive(group_selected || script_selected);
3672    #endif
3673      }      }
3674    #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
3675        return false;
3676    #endif
3677  }  }
3678    
3679  void MainWindow::updateScriptListOfMenu() {  void MainWindow::updateScriptListOfMenu() {
# Line 2720  void MainWindow::updateScriptListOfMenu( Line 3719  void MainWindow::updateScriptListOfMenu(
3719          assign_scripts_menu->append(*item);          assign_scripts_menu->append(*item);
3720      }      }
3721    
3722        // add separator line to menu
3723        assign_scripts_menu->append(*new Gtk::SeparatorMenuItem);
3724    
3725        {
3726            Gtk::MenuItem* item = new Gtk::MenuItem(_("Unassign All Scripts"));
3727            item->signal_activate().connect(
3728                sigc::mem_fun(*this, &MainWindow::dropAllScriptSlots)
3729            );
3730            assign_scripts_menu->append(*item);
3731            item->set_accel_path("<Scripts>/DropAllScriptSlots");
3732        }
3733    
3734    #if HAS_GTKMM_SHOW_ALL_CHILDREN
3735      assign_scripts_menu->show_all_children();      assign_scripts_menu->show_all_children();
3736    #endif
3737  }  }
3738    
3739    #if !USE_GTKMM_BUILDER
3740  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
3741      const Glib::ustring& name, int position) {      const Glib::ustring& name, int position) {
3742    
# Line 2746  Gtk::RadioMenuItem* MainWindow::add_inst Line 3760  Gtk::RadioMenuItem* MainWindow::add_inst
3760              item));              item));
3761      return item;      return item;
3762  }  }
3763    #endif
3764    
3765    #if !USE_GTKMM_BUILDER
3766  void MainWindow::remove_instrument_from_menu(int index) {  void MainWindow::remove_instrument_from_menu(int index) {
3767      const std::vector<Gtk::Widget*> children =      const std::vector<Gtk::Widget*> children =
3768          instrument_menu->get_children();          instrument_menu->get_children();
# Line 2754  void MainWindow::remove_instrument_from_ Line 3770  void MainWindow::remove_instrument_from_
3770      instrument_menu->remove(*child);      instrument_menu->remove(*child);
3771      delete child;      delete child;
3772  }  }
3773    #endif
3774    
3775  void MainWindow::add_instrument(gig::Instrument* instrument) {  void MainWindow::add_instrument(gig::Instrument* instrument) {
3776      const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));      const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
# Line 2762  void MainWindow::add_instrument(gig::Ins Line 3779  void MainWindow::add_instrument(gig::Ins
3779      instrument_name_connection.block();      instrument_name_connection.block();
3780      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
3781      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
3782      rowInstr[m_Columns.m_col_nr] = m_refTreeModel->children().size() - 1;      const int index = m_refTreeModel->children().size() - 1;
3783        rowInstr[m_Columns.m_col_nr] = index;
3784      rowInstr[m_Columns.m_col_name] = name;      rowInstr[m_Columns.m_col_name] = name;
3785      rowInstr[m_Columns.m_col_instr] = instrument;      rowInstr[m_Columns.m_col_instr] = instrument;
3786      rowInstr[m_Columns.m_col_scripts] = "";      rowInstr[m_Columns.m_col_scripts] = "";
3787        rowInstr[m_Columns.m_col_tooltip] = scriptTooltipFor(instrument, index);
3788      instrument_name_connection.unblock();      instrument_name_connection.unblock();
3789    
3790    #if !USE_GTKMM_BUILDER
3791      add_instrument_to_menu(name);      add_instrument_to_menu(name);
3792    #endif
3793      select_instrument(instrument);      select_instrument(instrument);
3794      file_changed();      file_changed();
3795  }  }
# Line 2837  void MainWindow::on_action_remove_instru Line 3858  void MainWindow::on_action_remove_instru
3858              if (instr) file->DeleteInstrument(instr);              if (instr) file->DeleteInstrument(instr);
3859              file_changed();              file_changed();
3860    
3861    #if !USE_GTKMM_BUILDER
3862              remove_instrument_from_menu(index);              remove_instrument_from_menu(index);
3863    #endif
3864    
3865              // remove row from instruments tree view              // remove row from instruments tree view
3866              m_refTreeModel->erase(it);              m_refTreeModel->erase(it);
# Line 2848  void MainWindow::on_action_remove_instru Line 3871  void MainWindow::on_action_remove_instru
3871                       it != m_refTreeModel->children().end(); ++it, ++index)                       it != m_refTreeModel->children().end(); ++it, ++index)
3872                  {                  {
3873                      Gtk::TreeModel::Row row = *it;                      Gtk::TreeModel::Row row = *it;
3874                        gig::Instrument* instrument = row[m_Columns.m_col_instr];
3875                      row[m_Columns.m_col_nr] = index;                      row[m_Columns.m_col_nr] = index;
3876                        row[m_Columns.m_col_tooltip] = scriptTooltipFor(instrument, index);
3877                  }                  }
3878              }              }
3879    
# Line 3052  void MainWindow::add_or_replace_sample(b Line 4077  void MainWindow::add_or_replace_sample(b
4077    
4078      // show 'browse for file' dialog      // show 'browse for file' dialog
4079      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));
4080    #if HAS_GTKMM_STOCK
4081      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4082      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
4083    #else
4084        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4085        dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
4086    #endif
4087      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
4088    
4089      // matches all file types supported by libsndfile      // matches all file types supported by libsndfile
# Line 3102  void MainWindow::add_or_replace_sample(b Line 4132  void MainWindow::add_or_replace_sample(b
4132          for (std::vector<std::string>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
4133               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
4134              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
4135              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file information
4136              SF_INFO info;              SF_INFO info;
4137              info.format = 0;              info.format = 0;
4138              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
# Line 3243  void MainWindow::on_action_replace_all_s Line 4273  void MainWindow::on_action_replace_all_s
4273      Gtk::Label description(str);      Gtk::Label description(str);
4274      description.set_line_wrap();      description.set_line_wrap();
4275  #endif  #endif
4276      Gtk::HBox entryArea;      HBox entryArea;
4277      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
4278      Gtk::Entry postfixEntryBox;      Gtk::Entry postfixEntryBox;
4279      postfixEntryBox.set_text(".wav");      postfixEntryBox.set_text(".wav");
4280      entryArea.pack_start(entryLabel);      entryArea.pack_start(entryLabel);
4281      entryArea.pack_start(postfixEntryBox);      entryArea.pack_start(postfixEntryBox);
4282    #if USE_GTKMM_BOX
4283        dialog.get_content_area()->pack_start(description, Gtk::PACK_SHRINK);
4284        dialog.get_content_area()->pack_start(entryArea, Gtk::PACK_SHRINK);
4285    #else
4286      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);
4287      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
4288    #endif
4289      description.show();      description.show();
4290    
4291    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4292      entryArea.show_all();      entryArea.show_all();
4293    #else
4294        entryArea.show();
4295    #endif
4296    
4297    #if HAS_GTKMM_STOCK
4298      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4299    #else
4300        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4301    #endif
4302      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
4303      dialog.set_select_multiple(false);      dialog.set_select_multiple(false);
4304      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 3711  void MainWindow::instrument_name_changed Line 4756  void MainWindow::instrument_name_changed
4756      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
4757      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_Columns.m_col_name];
4758    
4759    #if !USE_GTKMM_BUILDER
4760      // change name in instrument menu      // change name in instrument menu
4761      int index = path[0];      int index = path[0];
4762      const std::vector<Gtk::Widget*> children = instrument_menu->get_children();      const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
# Line 3723  void MainWindow::instrument_name_changed Line 4769  void MainWindow::instrument_name_changed
4769          item->set_active();          item->set_active();
4770  #endif  #endif
4771      }      }
4772    #endif
4773    
4774      // change name in gig      // change name in gig
4775      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_Columns.m_col_instr];
# Line 3747  bool MainWindow::instrument_row_visible( Line 4794  bool MainWindow::instrument_row_visible(
4794      trim(pattern);      trim(pattern);
4795      if (pattern.empty()) return true;      if (pattern.empty()) return true;
4796    
4797    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4798        //HACK: on GTKMM4 development branch const_iterator cannot be easily converted to iterator, probably going to be fixed before final GTKMM4 release though.
4799        Gtk::TreeModel::Row row = **(Gtk::TreeModel::iterator*)(&iter);
4800    #else
4801      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
4802    #endif
4803      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_Columns.m_col_name];
4804      name = name.lowercase();      name = name.lowercase();
4805    
# Line 3779  void MainWindow::on_action_combine_instr Line 4831  void MainWindow::on_action_combine_instr
4831      }      }
4832      d->setSelectedInstruments(indeces);      d->setSelectedInstruments(indeces);
4833    
4834    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4835      d->show_all();      d->show_all();
4836    #else
4837        d->show();
4838    #endif
4839      d->run();      d->run();
4840      if (d->fileWasChanged()) {      if (d->fileWasChanged()) {
4841          // update GUI with new instrument just created          // update GUI with new instrument just created
# Line 3803  void MainWindow::on_action_view_referenc Line 4859  void MainWindow::on_action_view_referenc
4859      d->dimension_region_selected.connect(      d->dimension_region_selected.connect(
4860          sigc::mem_fun(*this, &MainWindow::select_dimension_region)          sigc::mem_fun(*this, &MainWindow::select_dimension_region)
4861      );      );
4862    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4863      d->show_all();      d->show_all();
4864    #else
4865        d->show();
4866    #endif
4867      d->resize(500, 400);      d->resize(500, 400);
4868      d->run();      d->run();
4869      delete d;      delete d;
# Line 3887  void MainWindow::mergeFiles(const std::v Line 4947  void MainWindow::mergeFiles(const std::v
4947              Glib::filename_display_basename(this->filename) + "' ...",              Glib::filename_display_basename(this->filename) + "' ...",
4948              *this              *this
4949          );          );
4950    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4951          progress_dialog->show_all();          progress_dialog->show_all();
4952    #else
4953            progress_dialog->show();
4954    #endif
4955          saver = new Saver(this->file); //FIXME: memory leak!          saver = new Saver(this->file); //FIXME: memory leak!
4956          saver->signal_progress().connect(          saver->signal_progress().connect(
4957              sigc::mem_fun(*this, &MainWindow::on_saver_progress));              sigc::mem_fun(*this, &MainWindow::on_saver_progress));
# Line 3914  void MainWindow::on_action_merge_files() Line 4978  void MainWindow::on_action_merge_files()
4978      }      }
4979    
4980      Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));      Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
4981    #if HAS_GTKMM_STOCK
4982      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4983    #else
4984        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4985    #endif
4986      dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);      dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
4987      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
4988  #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 3931  void MainWindow::on_action_merge_files() Line 4999  void MainWindow::on_action_merge_files()
4999      dialog.set_select_multiple(true);      dialog.set_select_multiple(true);
5000    
5001      // show warning in the file picker dialog      // show warning in the file picker dialog
5002      Gtk::HBox descriptionArea;      HBox descriptionArea;
5003      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
5004      Gtk::Image warningIcon;      Gtk::Image warningIcon;
5005      warningIcon.set_from_icon_name("dialog-warning",      warningIcon.set_from_icon_name("dialog-warning",
# Line 3954  void MainWindow::on_action_merge_files() Line 5022  void MainWindow::on_action_merge_files()
5022          "will accordingly be stored separately in the target .gig file!"          "will accordingly be stored separately in the target .gig file!"
5023      ));      ));
5024      descriptionArea.pack_start(description);      descriptionArea.pack_start(description);
5025    #if USE_GTKMM_BOX
5026    # warning No description area implemented for dialog on GTKMM 3
5027    #else
5028      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
5029    #endif
5030    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5031      descriptionArea.show_all();      descriptionArea.show_all();
5032    #else
5033        descriptionArea.show();
5034    #endif
5035    
5036      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
5037          printf("on_action_merge_files self=%p\n",          printf("on_action_merge_files self=%p\n",
# Line 3991  void MainWindow::set_file_is_shared(bool Line 5067  void MainWindow::set_file_is_shared(bool
5067      }      }
5068    
5069      {      {
5070    #if USE_GTKMM_BUILDER
5071            m_actionToggleSyncSamplerSelection->property_enabled() = b;
5072    #else
5073          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(          Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
5074              uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));              uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
5075          if (item) item->set_sensitive(b);          if (item) item->set_sensitive(b);
5076    #endif
5077      }      }
5078  }  }
5079    
# Line 4150  void MainWindow::updateClipboardPasteAva Line 5230  void MainWindow::updateClipboardPasteAva
5230    
5231  void MainWindow::updateClipboardCopyAvailable() {  void MainWindow::updateClipboardCopyAvailable() {
5232      bool bDimensionRegionCopyIsPossible = m_DimRegionChooser.get_main_dimregion();      bool bDimensionRegionCopyIsPossible = m_DimRegionChooser.get_main_dimregion();
5233    #if USE_GTKMM_BUILDER
5234        m_actionCopyDimRgn->property_enabled() = bDimensionRegionCopyIsPossible;
5235    #else
5236      static_cast<Gtk::MenuItem*>(      static_cast<Gtk::MenuItem*>(
5237          uiManager->get_widget("/MenuBar/MenuEdit/CopyDimRgn")          uiManager->get_widget("/MenuBar/MenuEdit/CopyDimRgn")
5238      )->set_sensitive(bDimensionRegionCopyIsPossible);      )->set_sensitive(bDimensionRegionCopyIsPossible);
5239    #endif
5240  }  }
5241    
5242    #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
5243    void MainWindow::on_clipboard_owner_change(Gdk::EventOwnerChange& event) {
5244    #else
5245  void MainWindow::on_clipboard_owner_change(GdkEventOwnerChange* event) {  void MainWindow::on_clipboard_owner_change(GdkEventOwnerChange* event) {
5246    #endif
5247      updateClipboardPasteAvailable();      updateClipboardPasteAvailable();
5248  }  }
5249    
# Line 4222  void MainWindow::on_clipboard_received_t Line 5310  void MainWindow::on_clipboard_received_t
5310          std::find(targets.begin(), targets.end(),          std::find(targets.begin(), targets.end(),
5311                    CLIPBOARD_DIMENSIONREGION_TARGET) != targets.end();                    CLIPBOARD_DIMENSIONREGION_TARGET) != targets.end();
5312    
5313    #if USE_GTKMM_BUILDER
5314        m_actionPasteDimRgn->property_enabled() = bDimensionRegionPasteIsPossible;
5315        m_actionAdjustClipboard->property_enabled() = bDimensionRegionPasteIsPossible;
5316    #else
5317      static_cast<Gtk::MenuItem*>(      static_cast<Gtk::MenuItem*>(
5318          uiManager->get_widget("/MenuBar/MenuEdit/PasteDimRgn")          uiManager->get_widget("/MenuBar/MenuEdit/PasteDimRgn")
5319      )->set_sensitive(bDimensionRegionPasteIsPossible);      )->set_sensitive(bDimensionRegionPasteIsPossible);
# Line 4229  void MainWindow::on_clipboard_received_t Line 5321  void MainWindow::on_clipboard_received_t
5321      static_cast<Gtk::MenuItem*>(      static_cast<Gtk::MenuItem*>(
5322          uiManager->get_widget("/MenuBar/MenuEdit/AdjustClipboard")          uiManager->get_widget("/MenuBar/MenuEdit/AdjustClipboard")
5323      )->set_sensitive(bDimensionRegionPasteIsPossible);      )->set_sensitive(bDimensionRegionPasteIsPossible);
5324    #endif
5325  }  }
5326    
5327  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {

Legend:
Removed from v.3344  
changed lines
  Added in v.3456

  ViewVC Help
Powered by ViewVC