/[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 2398 by persson, Sun Jan 13 09:14:29 2013 UTC revision 3712 by schoenebeck, Fri Jan 10 15:22:34 2020 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2013 Andreas Persson   * Copyright (C) 2006-2020 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 20  Line 20 
20  #include <iostream>  #include <iostream>
21  #include <cstring>  #include <cstring>
22    
23    #include "compat.h"
24    
25  #include <glibmm/convert.h>  #include <glibmm/convert.h>
26  #include <glibmm/dispatcher.h>  #include <glibmm/dispatcher.h>
27  #include <glibmm/miscutils.h>  #include <glibmm/miscutils.h>
28  #include <glibmm/stringutils.h>  #include <glibmm/stringutils.h>
29    #include <glibmm/regex.h>
30  #include <gtkmm/aboutdialog.h>  #include <gtkmm/aboutdialog.h>
31  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
32  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
33  #include <gtkmm/stock.h>  #if HAS_GTKMM_STOCK
34    # include <gtkmm/stock.h>
35    #endif
36  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
37  #include <gtkmm/main.h>  #include <gtkmm/main.h>
38  #include <gtkmm/radiomenuitem.h>  #if GTKMM_MAJOR_VERSION < 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION < 89)
39  #include <gtkmm/toggleaction.h>  # include <gtkmm/toggleaction.h>
40    #endif
41    #include <gtkmm/accelmap.h>
42  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
43  #include "wrapLabel.hh"  #include "wrapLabel.hh"
44  #endif  #endif
# Line 40  Line 47 
47  #include "compat.h"  #include "compat.h"
48    
49  #include <stdio.h>  #include <stdio.h>
50  #include <sndfile.h>  #ifdef LIBSNDFILE_HEADER_FILE
51    # include LIBSNDFILE_HEADER_FILE(sndfile.h)
52    #else
53    # include <sndfile.h>
54    #endif
55    #include <assert.h>
56    
57  #include "mainwindow.h"  #include "mainwindow.h"
58    #include "Settings.h"
59    #include "CombineInstrumentsDialog.h"
60    #include "scripteditor.h"
61    #include "scriptslots.h"
62    #include "ReferencesView.h"
63  #include "../../gfx/status_attached.xpm"  #include "../../gfx/status_attached.xpm"
64  #include "../../gfx/status_detached.xpm"  #include "../../gfx/status_detached.xpm"
65    #include "gfx/builtinpix.h"
66    #include "MacroEditor.h"
67    #include "MacrosSetup.h"
68    #if defined(__APPLE__)
69    # include "MacHelper.h"
70    #endif
71    
72  template<class T> inline std::string ToString(T o) {  static const Gdk::ModifierType primaryModifierKey =
73      std::stringstream ss;      #if defined(__APPLE__)
74      ss << o;      Gdk::META_MASK; // Cmd key on Mac
75      return ss.str();      #else
76  }      Gdk::CONTROL_MASK; // Ctrl key on all other OSs
77        #endif
 Table::Table(int x, int y) : Gtk::Table(x, y), rowno(0) {  }  
   
 void Table::add(BoolEntry& boolentry)  
 {  
     attach(boolentry.widget, 0, 2, rowno, rowno + 1,  
            Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
 }  
   
 void Table::add(BoolEntryPlus6& boolentry)  
 {  
     attach(boolentry.widget, 0, 2, rowno, rowno + 1,  
            Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
 }  
   
 void Table::add(LabelWidget& prop)  
 {  
     attach(prop.label, 1, 2, rowno, rowno + 1,  
            Gtk::FILL, Gtk::SHRINK);  
     attach(prop.widget, 2, 3, rowno, rowno + 1,  
            Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);  
     rowno++;  
 }  
78    
79  MainWindow::MainWindow() :  MainWindow::MainWindow() :
80        m_DimRegionChooser(*this),
81      dimreg_label(_("Changes apply to:")),      dimreg_label(_("Changes apply to:")),
82      dimreg_all_regions(_("all regions")),      dimreg_all_regions(_("all regions")),
83      dimreg_all_dimregs(_("all dimension splits")),      dimreg_all_dimregs(_("all dimension splits")),
84      dimreg_stereo(_("both channels"))      dimreg_stereo(_("both channels")),
85        labelLegend(_("Legend:")),
86        labelNoSample(_(" No Sample")),
87        labelMissingSample(_(" Missing some Sample(s)")),
88        labelLooped(_(" Looped")),
89        labelSomeLoops(_(" Some Loop(s)"))
90  {  {
91        loadBuiltInPix();
92    
93        this->file = NULL;
94    
95  //    set_border_width(5);  //    set_border_width(5);
 //    set_default_size(400, 200);  
96    
97        if (!Settings::singleton()->autoRestoreWindowDimension) {
98    #if GTKMM_MAJOR_VERSION >= 3
99            set_default_size(960, 600);
100    #else
101            set_default_size(865, 600);
102    #endif
103            set_position(Gtk::WIN_POS_CENTER);
104        }
105    
106      add(m_VBox);      add(m_VBox);
107    
108      // Handle selection      // Handle selection
109      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      m_TreeView.get_selection()->signal_changed().connect(
     tree_sel_ref->signal_changed().connect(  
110          sigc::mem_fun(*this, &MainWindow::on_sel_change));          sigc::mem_fun(*this, &MainWindow::on_sel_change));
111    
112      // m_TreeView.set_reorderable();      // m_TreeView.set_reorderable();
113    
114    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
115        m_TreeView.signal_button_press_event().connect(
116            sigc::mem_fun(*this, &MainWindow::on_button_release));
117    #else
118      m_TreeView.signal_button_press_event().connect_notify(      m_TreeView.signal_button_press_event().connect_notify(
119          sigc::mem_fun(*this, &MainWindow::on_button_release));          sigc::mem_fun(*this, &MainWindow::on_button_release));
120    #endif
121    
122      // Add the TreeView tab, inside a ScrolledWindow, with the button underneath:      // Add the TreeView tab, inside a ScrolledWindow, with the button underneath:
123      m_ScrolledWindow.add(m_TreeView);      m_ScrolledWindow.add(m_TreeView);
# Line 108  MainWindow::MainWindow() : Line 127  MainWindow::MainWindow() :
127      m_ScrolledWindowSamples.add(m_TreeViewSamples);      m_ScrolledWindowSamples.add(m_TreeViewSamples);
128      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
129    
130        m_ScrolledWindowScripts.add(m_TreeViewScripts);
131        m_ScrolledWindowScripts.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
132    
133    #if GTKMM_MAJOR_VERSION < 3
134      m_TreeViewNotebook.set_size_request(300);      m_TreeViewNotebook.set_size_request(300);
135    #endif
136    
137        m_searchLabel.set_text(Glib::ustring(" ") + _("Filter:"));
138        m_searchField.pack_start(m_searchLabel, Gtk::PACK_SHRINK);
139        m_searchField.pack_start(m_searchText);
140        m_searchField.set_spacing(5);
141    
142        m_left_vbox.pack_start(m_TreeViewNotebook);
143        m_left_vbox.pack_start(m_searchField, Gtk::PACK_SHRINK);
144    
145        m_HPaned.add1(m_left_vbox);
146    
     m_HPaned.add1(m_TreeViewNotebook);  
147      dimreg_hbox.add(dimreg_label);      dimreg_hbox.add(dimreg_label);
148      dimreg_hbox.add(dimreg_all_regions);      dimreg_hbox.add(dimreg_all_regions);
149      dimreg_hbox.add(dimreg_all_dimregs);      dimreg_hbox.add(dimreg_all_dimregs);
# Line 119  MainWindow::MainWindow() : Line 151  MainWindow::MainWindow() :
151      dimreg_hbox.add(dimreg_stereo);      dimreg_hbox.add(dimreg_stereo);
152      dimreg_vbox.add(dimreg_edit);      dimreg_vbox.add(dimreg_edit);
153      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);
154        {
155            legend_hbox.add(labelLegend);
156    
157            imageNoSample.set(redDot);
158    #if HAS_GTKMM_ALIGNMENT
159            imageNoSample.set_alignment(Gtk::ALIGN_END);
160            labelNoSample.set_alignment(Gtk::ALIGN_START);
161    #else
162            imageNoSample.set_halign(Gtk::ALIGN_END);
163            labelNoSample.set_halign(Gtk::ALIGN_START);
164    #endif
165            legend_hbox.add(imageNoSample);
166            legend_hbox.add(labelNoSample);
167    
168            imageMissingSample.set(yellowDot);
169    #if HAS_GTKMM_ALIGNMENT
170            imageMissingSample.set_alignment(Gtk::ALIGN_END);
171            labelMissingSample.set_alignment(Gtk::ALIGN_START);
172    #else
173            imageMissingSample.set_halign(Gtk::ALIGN_END);
174            labelMissingSample.set_halign(Gtk::ALIGN_START);
175    #endif
176            legend_hbox.add(imageMissingSample);
177            legend_hbox.add(labelMissingSample);
178    
179            imageLooped.set(blackLoop);
180    #if HAS_GTKMM_ALIGNMENT
181            imageLooped.set_alignment(Gtk::ALIGN_END);
182            labelLooped.set_alignment(Gtk::ALIGN_START);
183    #else
184            imageLooped.set_halign(Gtk::ALIGN_END);
185            labelLooped.set_halign(Gtk::ALIGN_START);
186    #endif
187            legend_hbox.add(imageLooped);
188            legend_hbox.add(labelLooped);
189    
190            imageSomeLoops.set(grayLoop);
191    #if HAS_GTKMM_ALIGNMENT
192            imageSomeLoops.set_alignment(Gtk::ALIGN_END);
193            labelSomeLoops.set_alignment(Gtk::ALIGN_START);
194    #else
195            imageSomeLoops.set_halign(Gtk::ALIGN_END);
196            labelSomeLoops.set_halign(Gtk::ALIGN_START);
197    #endif
198            legend_hbox.add(imageSomeLoops);
199            legend_hbox.add(labelSomeLoops);
200    
201    #if HAS_GTKMM_SHOW_ALL_CHILDREN
202            legend_hbox.show_all_children();
203    #endif
204        }
205        dimreg_vbox.pack_start(legend_hbox, Gtk::PACK_SHRINK);
206      m_HPaned.add2(dimreg_vbox);      m_HPaned.add2(dimreg_vbox);
207    
208        dimreg_label.set_tooltip_text(_("To automatically apply your changes above globally to the entire instrument, check all 3 check boxes on the right."));
209        dimreg_all_regions.set_tooltip_text(_("If checked: all changes you perform above will automatically be applied to all regions of this instrument as well."));
210        dimreg_all_dimregs.set_tooltip_text(_("If checked: all changes you perform above will automatically be applied as well to all dimension splits of the region selected below."));
211        dimreg_stereo.set_tooltip_text(_("If checked: all changes you perform above will automatically be applied to both audio channel splits (only if a \"stereo\" dimension is defined below)."));
212    
213      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
214      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
215        m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));
216    
217    #if USE_GLIB_ACTION
218        m_actionGroup = Gio::SimpleActionGroup::create();
219        m_actionGroup->add_action(
220            "New", sigc::mem_fun(*this, &MainWindow::on_action_file_new)
221        );
222        m_actionGroup->add_action(
223            "Open", sigc::mem_fun(*this, &MainWindow::on_action_file_open)
224        );
225        m_actionGroup->add_action(
226            "Save", sigc::mem_fun(*this, &MainWindow::on_action_file_save)
227        );
228        m_actionGroup->add_action(
229            "SaveAs", sigc::mem_fun(*this, &MainWindow::on_action_file_save_as)
230        );
231        m_actionGroup->add_action(
232            "Properties", sigc::mem_fun(*this, &MainWindow::on_action_file_properties)
233        );
234        m_actionGroup->add_action(
235            "InstrProperties", sigc::mem_fun(*this, &MainWindow::show_instr_props)
236        );
237        m_actionMIDIRules = m_actionGroup->add_action(
238            "MidiRules", sigc::mem_fun(*this, &MainWindow::show_midi_rules)
239        );
240        m_actionGroup->add_action(
241            "ScriptSlots", sigc::mem_fun(*this, &MainWindow::show_script_slots)
242        );
243        m_actionGroup->add_action(
244            "Quit", sigc::mem_fun(*this, &MainWindow::on_action_quit)
245        );
246        m_actionGroup->add_action(
247            "MenuSample", sigc::mem_fun(*this, &MainWindow::show_samples_tab)
248        );
249        m_actionGroup->add_action(
250            "MenuInstrument", sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
251        );
252        m_actionGroup->add_action(
253            "MenuScript", sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
254        );
255    #else
256      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
257    
258      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));
# Line 155  MainWindow::MainWindow() : Line 282  MainWindow::MainWindow() :
282                                           Gtk::Stock::PROPERTIES),                                           Gtk::Stock::PROPERTIES),
283                       sigc::mem_fun(                       sigc::mem_fun(
284                           *this, &MainWindow::show_instr_props));                           *this, &MainWindow::show_instr_props));
285        actionGroup->add(Gtk::Action::create("MidiRules",
286                                             _("_Midi Rules...")),
287                         sigc::mem_fun(
288                             *this, &MainWindow::show_midi_rules));
289        actionGroup->add(Gtk::Action::create("ScriptSlots",
290                                             _("_Script Slots...")),
291                         sigc::mem_fun(
292                             *this, &MainWindow::show_script_slots));
293      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),
294                       sigc::mem_fun(                       sigc::mem_fun(
295                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
296      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));      actionGroup->add(
297            Gtk::Action::create("MenuSample", _("_Sample")),
298            sigc::mem_fun(*this, &MainWindow::show_samples_tab)
299        );
300        actionGroup->add(
301            Gtk::Action::create("MenuInstrument", _("_Instrument")),
302            sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
303        );
304        actionGroup->add(
305            Gtk::Action::create("MenuScript", _("Scr_ipt")),
306            sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
307        );
308        actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));
309        actionGroup->add(Gtk::Action::create("AssignScripts", _("Assign Script")));
310    
311        actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
312    #endif
313    
314      actionGroup->add(Gtk::Action::create("MenuView", _("_View")));      const Gdk::ModifierType primaryModifierKey =
315    #if defined(__APPLE__)
316        Gdk::META_MASK; // Cmd key on Mac
317    #else
318        Gdk::CONTROL_MASK; // Ctrl key on all other OSs
319    #endif
320    
321    #if USE_GLIB_ACTION
322        m_actionCopyDimRgn = m_actionGroup->add_action(
323            "CopyDimRgn", sigc::mem_fun(*this, &MainWindow::copy_selected_dimrgn)
324        );
325        m_actionPasteDimRgn = m_actionGroup->add_action(
326            "PasteDimRgn", sigc::mem_fun(*this, &MainWindow::paste_copied_dimrgn)
327        );
328        m_actionAdjustClipboard = m_actionGroup->add_action(
329            "AdjustClipboard", sigc::mem_fun(*this, &MainWindow::adjust_clipboard_content)
330        );
331        m_actionGroup->add_action(
332            "SelectPrevInstr", sigc::mem_fun(*this, &MainWindow::select_prev_instrument)
333        );
334        m_actionGroup->add_action(
335            "SelectNextInstr", sigc::mem_fun(*this, &MainWindow::select_next_instrument)
336        );
337        m_actionGroup->add_action(
338            "SelectPrevRegion", sigc::mem_fun(*this, &MainWindow::select_prev_region)
339        );
340        m_actionGroup->add_action(
341            "SelectNextRegion", sigc::mem_fun(*this, &MainWindow::select_next_region)
342        );
343        m_actionGroup->add_action(
344            "SelectPrevDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_prev_dim_rgn_zone)
345        );
346        m_actionGroup->add_action(
347            "SelectNextDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_next_dim_rgn_zone)
348        );
349        m_actionGroup->add_action(
350            "SelectPrevDimension", sigc::mem_fun(*this, &MainWindow::select_prev_dimension)
351        );
352        m_actionGroup->add_action(
353            "SelectNextDimension", sigc::mem_fun(*this, &MainWindow::select_next_dimension)
354        );
355        m_actionGroup->add_action(
356            "SelectAddPrevDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_add_prev_dim_rgn_zone)
357        );
358        m_actionGroup->add_action(
359            "SelectAddNextDimRgnZone", sigc::mem_fun(*this, &MainWindow::select_add_next_dim_rgn_zone)
360        );
361    #else
362        actionGroup->add(Gtk::Action::create("CopyDimRgn",
363                                             _("Copy selected dimension region")),
364                         Gtk::AccelKey(GDK_KEY_c, Gdk::MOD1_MASK),
365                         sigc::mem_fun(*this, &MainWindow::copy_selected_dimrgn));
366    
367        actionGroup->add(Gtk::Action::create("PasteDimRgn",
368                                             _("Paste dimension region")),
369                         Gtk::AccelKey(GDK_KEY_v, Gdk::MOD1_MASK),
370                         sigc::mem_fun(*this, &MainWindow::paste_copied_dimrgn));
371    
372        actionGroup->add(Gtk::Action::create("AdjustClipboard",
373                                             _("Adjust Clipboard Content")),
374                         Gtk::AccelKey(GDK_KEY_x, Gdk::MOD1_MASK),
375                         sigc::mem_fun(*this, &MainWindow::adjust_clipboard_content));
376    
377        actionGroup->add(Gtk::Action::create("SelectPrevInstr",
378                                             _("Select Previous Instrument")),
379                         Gtk::AccelKey(GDK_KEY_Up, primaryModifierKey),
380                         sigc::mem_fun(*this, &MainWindow::select_prev_instrument));
381    
382        actionGroup->add(Gtk::Action::create("SelectNextInstr",
383                                             _("Select Next Instrument")),
384                         Gtk::AccelKey(GDK_KEY_Down, primaryModifierKey),
385                         sigc::mem_fun(*this, &MainWindow::select_next_instrument));
386    
387        actionGroup->add(Gtk::Action::create("SelectPrevRegion",
388                                             _("Select Previous Region")),
389                         Gtk::AccelKey(GDK_KEY_Left, primaryModifierKey),
390                         sigc::mem_fun(*this, &MainWindow::select_prev_region));
391    
392        actionGroup->add(Gtk::Action::create("SelectNextRegion",
393                                             _("Select Next Region")),
394                         Gtk::AccelKey(GDK_KEY_Right, primaryModifierKey),
395                         sigc::mem_fun(*this, &MainWindow::select_next_region));
396    
397        actionGroup->add(Gtk::Action::create("SelectPrevDimRgnZone",
398                                             _("Select Previous Dimension Region Zone")),
399                         Gtk::AccelKey(GDK_KEY_Left, Gdk::MOD1_MASK),
400                         sigc::mem_fun(*this, &MainWindow::select_prev_dim_rgn_zone));
401    
402        actionGroup->add(Gtk::Action::create("SelectNextDimRgnZone",
403                                             _("Select Next Dimension Region Zone")),
404                         Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK),
405                         sigc::mem_fun(*this, &MainWindow::select_next_dim_rgn_zone));
406    
407        actionGroup->add(Gtk::Action::create("SelectPrevDimension",
408                                             _("Select Previous Dimension")),
409                         Gtk::AccelKey(GDK_KEY_Up, Gdk::MOD1_MASK),
410                         sigc::mem_fun(*this, &MainWindow::select_prev_dimension));
411    
412        actionGroup->add(Gtk::Action::create("SelectNextDimension",
413                                             _("Select Next Dimension")),
414                         Gtk::AccelKey(GDK_KEY_Down, Gdk::MOD1_MASK),
415                         sigc::mem_fun(*this, &MainWindow::select_next_dimension));
416    
417        actionGroup->add(Gtk::Action::create("SelectAddPrevDimRgnZone",
418                                             _("Add Previous Dimension Region Zone to Selection")),
419                         Gtk::AccelKey(GDK_KEY_Left, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
420                         sigc::mem_fun(*this, &MainWindow::select_add_prev_dim_rgn_zone));
421    
422        actionGroup->add(Gtk::Action::create("SelectAddNextDimRgnZone",
423                                             _("Add Next Dimension Region Zone to Selection")),
424                         Gtk::AccelKey(GDK_KEY_Right, Gdk::MOD1_MASK | Gdk::SHIFT_MASK),
425                         sigc::mem_fun(*this, &MainWindow::select_add_next_dim_rgn_zone));
426    #endif
427    
428    #if USE_GLIB_ACTION
429        m_actionToggleCopySampleUnity = m_actionGroup->add_action_bool("CopySampleUnity", true);
430        m_actionToggleCopySampleTune  = m_actionGroup->add_action_bool("CopySampleTune", true);
431        m_actionToggleCopySampleLoop  = m_actionGroup->add_action_bool("CopySampleLoop", true);
432    #else
433      Glib::RefPtr<Gtk::ToggleAction> toggle_action =      Glib::RefPtr<Gtk::ToggleAction> toggle_action =
434            Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"));
435        toggle_action->set_active(true);
436        actionGroup->add(toggle_action);
437    
438        toggle_action =
439            Gtk::ToggleAction::create("CopySampleTune", _("Copy Sample's _Fine Tune"));
440        toggle_action->set_active(true);
441        actionGroup->add(toggle_action);
442    
443        toggle_action =
444            Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));
445        toggle_action->set_active(true);
446        actionGroup->add(toggle_action);
447    #endif
448    
449    #if USE_GLIB_ACTION
450        m_actionToggleStatusBar =
451            m_actionGroup->add_action_bool("Statusbar", sigc::mem_fun(*this, &MainWindow::on_action_view_status_bar), true);
452        m_actionToggleRestoreWinDim =
453            m_actionGroup->add_action_bool("AutoRestoreWinDim", sigc::mem_fun(*this, &MainWindow::on_auto_restore_win_dim), Settings::singleton()->autoRestoreWindowDimension);
454        m_actionInstrDoubleClickOpensProps =
455            m_actionGroup->add_action_bool(
456                "OpenInstrPropsByDoubleClick",
457                sigc::mem_fun(*this, &MainWindow::on_instr_double_click_opens_props),
458                Settings::singleton()->instrumentDoubleClickOpensProps
459            );
460        m_actionToggleShowTooltips = m_actionGroup->add_action_bool(
461            "ShowTooltips", sigc::mem_fun(*this, &MainWindow::on_action_show_tooltips),
462            Settings::singleton()->showTooltips
463        );
464        m_actionToggleSaveWithTempFile =
465            m_actionGroup->add_action_bool("SaveWithTemporaryFile", sigc::mem_fun(*this, &MainWindow::on_save_with_temporary_file), Settings::singleton()->saveWithTemporaryFile);
466        m_actionGroup->add_action("RefreshAll", sigc::mem_fun(*this, &MainWindow::on_action_refresh_all));
467    #else
468        actionGroup->add(Gtk::Action::create("MenuMacro", _("_Macro")));
469    
470    
471        actionGroup->add(Gtk::Action::create("MenuView", _("Vie_w")));
472        toggle_action =
473          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));          Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));
474      toggle_action->set_active(true);      toggle_action->set_active(true);
475      actionGroup->add(toggle_action,      actionGroup->add(toggle_action,
476                       sigc::mem_fun(                       sigc::mem_fun(
477                           *this, &MainWindow::on_action_view_status_bar));                           *this, &MainWindow::on_action_view_status_bar));
478    
479        toggle_action =
480            Gtk::ToggleAction::create("AutoRestoreWinDim", _("_Auto Restore Window Dimension"));
481        toggle_action->set_active(Settings::singleton()->autoRestoreWindowDimension);
482        actionGroup->add(toggle_action,
483                         sigc::mem_fun(
484                             *this, &MainWindow::on_auto_restore_win_dim));
485    
486        toggle_action =
487            Gtk::ToggleAction::create("OpenInstrPropsByDoubleClick", _("Instrument Properties by Double Click"));
488        toggle_action->set_active(Settings::singleton()->instrumentDoubleClickOpensProps);
489        actionGroup->add(toggle_action,
490                         sigc::mem_fun(
491                             *this, &MainWindow::on_instr_double_click_opens_props));
492    
493        toggle_action =
494            Gtk::ToggleAction::create("ShowTooltips", _("Tooltips for Beginners"));
495        toggle_action->set_active(Settings::singleton()->showTooltips);
496        actionGroup->add(
497            toggle_action,
498            sigc::mem_fun(*this, &MainWindow::on_action_show_tooltips)
499        );
500    
501        toggle_action =
502            Gtk::ToggleAction::create("SaveWithTemporaryFile", _("Save with _temporary file"));
503        toggle_action->set_active(Settings::singleton()->saveWithTemporaryFile);
504        actionGroup->add(toggle_action,
505                         sigc::mem_fun(
506                             *this, &MainWindow::on_save_with_temporary_file));
507    
508        actionGroup->add(
509            Gtk::Action::create("RefreshAll", _("_Refresh All")),
510            sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)
511        );                
512    #endif
513    
514    #if USE_GLIB_ACTION
515        m_actionGroup->add_action(
516            "About", sigc::mem_fun(*this, &MainWindow::on_action_help_about)
517        );
518        m_actionGroup->add_action(
519            "AddInstrument", sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)
520        );
521        m_actionGroup->add_action(
522            "DupInstrument", sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
523        );
524        m_actionGroup->add_action(
525            "MoveInstrument", sigc::mem_fun(*this, &MainWindow::on_action_move_instr)
526        );
527        m_actionGroup->add_action(
528            "CombInstruments", sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
529        );
530        m_actionGroup->add_action(
531            "RemoveInstrument", sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
532        );
533    #else
534      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
535      actionGroup->add(Gtk::Action::create("MenuHelp",      actionGroup->add(Gtk::Action::create("MenuHelp",
536                                           action->property_label()));                                           action->property_label()));
# Line 183  MainWindow::MainWindow() : Line 546  MainWindow::MainWindow() :
546          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
547      );      );
548      actionGroup->add(      actionGroup->add(
549            Gtk::Action::create("MoveInstrument", _("Move _Instrument To ...")),
550            Gtk::AccelKey(GDK_KEY_i, primaryModifierKey),
551            sigc::mem_fun(*this, &MainWindow::on_action_move_instr)
552        );
553        actionGroup->add(
554            Gtk::Action::create("CombInstruments", _("_Combine Instruments ...")),
555            Gtk::AccelKey(GDK_KEY_j, primaryModifierKey),
556            sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
557        );
558        actionGroup->add(
559          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),
560          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
561      );      );
562    #endif
563    
564    #if USE_GLIB_ACTION
565        m_actionToggleWarnOnExtensions = m_actionGroup->add_action_bool(
566            "WarnUserOnExtensions", sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions),
567            Settings::singleton()->warnUserOnExtensions
568        );
569        m_actionToggleSyncSamplerSelection = m_actionGroup->add_action_bool(
570            "SyncSamplerInstrumentSelection", sigc::mem_fun(*this, &MainWindow::on_action_sync_sampler_instrument_selection),
571            Settings::singleton()->syncSamplerInstrumentSelection
572        );
573        m_actionToggleMoveRootNoteWithRegion = m_actionGroup->add_action_bool(
574            "MoveRootNoteWithRegionMoved", sigc::mem_fun(*this, &MainWindow::on_action_move_root_note_with_region_moved),
575            Settings::singleton()->moveRootNoteWithRegionMoved
576        );
577    #else
578        actionGroup->add(Gtk::Action::create("MenuSettings", _("_Settings")));
579        
580        toggle_action =
581            Gtk::ToggleAction::create("WarnUserOnExtensions", _("Show warning on format _extensions"));
582        toggle_action->set_active(Settings::singleton()->warnUserOnExtensions);
583        actionGroup->add(
584            toggle_action,
585            sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions)
586        );
587    
588        toggle_action =
589            Gtk::ToggleAction::create("SyncSamplerInstrumentSelection", _("Synchronize sampler's instrument selection"));
590        toggle_action->set_active(Settings::singleton()->syncSamplerInstrumentSelection);
591        actionGroup->add(
592            toggle_action,
593            sigc::mem_fun(*this, &MainWindow::on_action_sync_sampler_instrument_selection)
594        );
595    
596        toggle_action =
597            Gtk::ToggleAction::create("MoveRootNoteWithRegionMoved", _("Move root note with region moved"));
598        toggle_action->set_active(Settings::singleton()->moveRootNoteWithRegionMoved);
599        actionGroup->add(
600            toggle_action,
601            sigc::mem_fun(*this, &MainWindow::on_action_move_root_note_with_region_moved)
602        );
603    #endif
604    
605    #if USE_GLIB_ACTION
606        m_actionGroup->add_action(
607            "CombineInstruments", sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
608        );
609        m_actionGroup->add_action(
610            "MergeFiles", sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
611        );
612    #else
613        actionGroup->add(Gtk::Action::create("MenuTools", _("_Tools")));
614    
615        actionGroup->add(
616            Gtk::Action::create("CombineInstruments", _("_Combine Instruments...")),
617            sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
618        );
619    
620        actionGroup->add(
621            Gtk::Action::create("MergeFiles", _("_Merge Files...")),
622            sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
623        );
624    #endif
625    
626      // sample right-click popup actions      // sample right-click popup actions
627    #if USE_GLIB_ACTION
628        m_actionSampleProperties = m_actionGroup->add_action(
629            "SampleProperties", sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
630        );
631        m_actionAddSampleGroup = m_actionGroup->add_action(
632            "AddGroup", sigc::mem_fun(*this, &MainWindow::on_action_add_group)
633        );
634        m_actionAddSample = m_actionGroup->add_action(
635            "AddSample", sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
636        );
637        m_actionRemoveSample = m_actionGroup->add_action(
638            "RemoveSample", sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
639        );
640        m_actionGroup->add_action(
641            "RemoveUnusedSamples", sigc::mem_fun(*this, &MainWindow::on_action_remove_unused_samples)
642        );
643        m_actionViewSampleRefs = m_actionGroup->add_action(
644            "ShowSampleRefs", sigc::mem_fun(*this, &MainWindow::on_action_view_references)
645        );
646        m_actionReplaceSample = m_actionGroup->add_action(
647            "ReplaceSample", sigc::mem_fun(*this, &MainWindow::on_action_replace_sample)
648        );
649        m_actionGroup->add_action(
650            "ReplaceAllSamplesInAllGroups", sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
651        );
652    #else
653      actionGroup->add(      actionGroup->add(
654          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),
655          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
# Line 205  MainWindow::MainWindow() : Line 667  MainWindow::MainWindow() :
667          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
668      );      );
669      actionGroup->add(      actionGroup->add(
670            Gtk::Action::create("RemoveUnusedSamples", _("Remove _Unused Samples")),
671            sigc::mem_fun(*this, &MainWindow::on_action_remove_unused_samples)
672        );
673        actionGroup->add(
674            Gtk::Action::create("ShowSampleRefs", _("Show References...")),
675            sigc::mem_fun(*this, &MainWindow::on_action_view_references)
676        );
677        actionGroup->add(
678            Gtk::Action::create("ReplaceSample",
679                                _("Replace Sample...")),
680            sigc::mem_fun(*this, &MainWindow::on_action_replace_sample)
681        );
682        actionGroup->add(
683          Gtk::Action::create("ReplaceAllSamplesInAllGroups",          Gtk::Action::create("ReplaceAllSamplesInAllGroups",
684                              _("Replace All Samples in All Groups...")),                              _("Replace All Samples in All Groups...")),
685          sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)          sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
686      );      );
687    #endif
688        
689        // script right-click popup actions
690    #if USE_GLIB_ACTION
691        m_actionAddScriptGroup = m_actionGroup->add_action(
692            "AddScriptGroup", sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
693        );
694        m_actionAddScript = m_actionGroup->add_action(
695            "AddScript", sigc::mem_fun(*this, &MainWindow::on_action_add_script)
696        );
697        m_actionEditScript = m_actionGroup->add_action(
698            "EditScript", sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
699        );
700        m_actionRemoveScript = m_actionGroup->add_action(
701            "RemoveScript", sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
702        );
703    #else
704        actionGroup->add(
705            Gtk::Action::create("AddScriptGroup", _("Add _Group")),
706            sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
707        );
708        actionGroup->add(
709            Gtk::Action::create("AddScript", _("Add _Script")),
710            sigc::mem_fun(*this, &MainWindow::on_action_add_script)
711        );
712        actionGroup->add(
713            Gtk::Action::create("EditScript", _("_Edit Script...")),
714            sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
715        );
716        actionGroup->add(
717            Gtk::Action::create("RemoveScript", Gtk::Stock::REMOVE),
718            sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
719        );
720    #endif
721    
722    #if USE_GTKMM_BUILDER
723        insert_action_group("AppMenu", m_actionGroup);
724        
725        m_uiManager = Gtk::Builder::create();
726        Glib::ustring ui_info =
727            "<interface>"
728            "  <menubar id='MenuBar'>"
729            "    <menu id='MenuFile'>"
730            "      <attribute name='label' translatable='yes'>_File</attribute>"
731            "      <section>"
732            "        <item id='New'>"
733            "          <attribute name='label' translatable='yes'>New</attribute>"
734            "          <attribute name='action'>AppMenu.New</attribute>"
735            "        </item>"
736            "        <item id='Open'>"
737            "          <attribute name='label' translatable='yes'>Open</attribute>"
738            "          <attribute name='action'>AppMenu.Open</attribute>"
739            "        </item>"
740            "      </section>"
741            "      <section>"
742            "        <item id='Save'>"
743            "          <attribute name='label' translatable='yes'>Save</attribute>"
744            "          <attribute name='action'>AppMenu.Save</attribute>"
745            "        </item>"
746            "        <item id='SaveAs'>"
747            "          <attribute name='label' translatable='yes'>Save As</attribute>"
748            "          <attribute name='action'>AppMenu.SaveAs</attribute>"
749            "        </item>"
750            "      </section>"
751            "      <section>"
752            "        <item id='Properties'>"
753            "          <attribute name='label' translatable='yes'>Properties</attribute>"
754            "          <attribute name='action'>AppMenu.Properties</attribute>"
755            "        </item>"
756            "      </section>"
757            "      <section>"
758            "        <item id='Quit'>"
759            "          <attribute name='label' translatable='yes'>Quit</attribute>"
760            "          <attribute name='action'>AppMenu.Quit</attribute>"
761            "        </item>"
762            "      </section>"
763            "    </menu>"
764            "    <menu id='MenuEdit'>"
765            "      <attribute name='label' translatable='yes'>Edit</attribute>"
766            "      <section>"
767            "        <item id='CopyDimRgn'>"
768            "          <attribute name='label' translatable='yes'>Copy Dimension Region</attribute>"
769            "          <attribute name='action'>AppMenu.CopyDimRgn</attribute>"
770            "        </item>"
771            "        <item id='AdjustClipboard'>"
772            "          <attribute name='label' translatable='yes'>Adjust Clipboard</attribute>"
773            "          <attribute name='action'>AppMenu.AdjustClipboard</attribute>"
774            "        </item>"
775            "        <item id='PasteDimRgn'>"
776            "          <attribute name='label' translatable='yes'>Paste Dimension Region</attribute>"
777            "          <attribute name='action'>AppMenu.PasteDimRgn</attribute>"
778            "        </item>"
779            "      </section>"
780            "        <item id='SelectPrevInstr'>"
781            "          <attribute name='label' translatable='yes'>Previous Instrument</attribute>"
782            "          <attribute name='action'>AppMenu.SelectPrevInstr</attribute>"
783            "        </item>"
784            "        <item id='SelectNextInstr'>"
785            "          <attribute name='label' translatable='yes'>Next Instrument</attribute>"
786            "          <attribute name='action'>AppMenu.SelectNextInstr</attribute>"
787            "        </item>"
788            "      <section>"
789            "        <item id='SelectPrevRegion'>"
790            "          <attribute name='label' translatable='yes'>Previous Region</attribute>"
791            "          <attribute name='action'>AppMenu.SelectPrevRegion</attribute>"
792            "        </item>"
793            "        <item id='SelectNextRegion'>"
794            "          <attribute name='label' translatable='yes'>Next Region</attribute>"
795            "          <attribute name='action'>AppMenu.SelectNextRegion</attribute>"
796            "        </item>"
797            "      </section>"
798            "        <item id='SelectPrevDimension'>"
799            "          <attribute name='label' translatable='yes'>Previous Dimension</attribute>"
800            "          <attribute name='action'>AppMenu.SelectPrevDimension</attribute>"
801            "        </item>"
802            "        <item id='SelectNextDimension'>"
803            "          <attribute name='label' translatable='yes'>Next Dimension</attribute>"
804            "          <attribute name='action'>AppMenu.SelectNextDimension</attribute>"
805            "        </item>"
806            "        <item id='SelectPrevDimRgnZone'>"
807            "          <attribute name='label' translatable='yes'>Previous Dimension Region Zone</attribute>"
808            "          <attribute name='action'>AppMenu.SelectPrevDimRgnZone</attribute>"
809            "        </item>"
810            "        <item id='SelectNextDimRgnZone'>"
811            "          <attribute name='label' translatable='yes'>Next Dimension Region Zone</attribute>"
812            "          <attribute name='action'>AppMenu.SelectNextDimRgnZone</attribute>"
813            "        </item>"
814            "        <item id='SelectAddPrevDimRgnZone'>"
815            "          <attribute name='label' translatable='yes'>Add Previous Dimension Region Zone</attribute>"
816            "          <attribute name='action'>AppMenu.SelectAddPrevDimRgnZone</attribute>"
817            "        </item>"
818            "        <item id='SelectAddNextDimRgnZone'>"
819            "          <attribute name='label' translatable='yes'>Add Next Dimension Region Zone</attribute>"
820            "          <attribute name='action'>AppMenu.SelectAddNextDimRgnZone</attribute>"
821            "        </item>"
822            "      <section>"
823            "        <item id='CopySampleUnity'>"
824            "          <attribute name='label' translatable='yes'>Copy Sample Unity</attribute>"
825            "          <attribute name='action'>AppMenu.CopySampleUnity</attribute>"
826            "        </item>"
827            "        <item id='CopySampleTune'>"
828            "          <attribute name='label' translatable='yes'>Copy Sample Tune</attribute>"
829            "          <attribute name='action'>AppMenu.CopySampleTune</attribute>"
830            "        </item>"
831            "        <item id='CopySampleLoop'>"
832            "          <attribute name='label' translatable='yes'>Copy Sample Loop</attribute>"
833            "          <attribute name='action'>AppMenu.CopySampleLoop</attribute>"
834            "        </item>"
835            "      </section>"
836            "    </menu>"
837            "    <menu id='MenuMacro'>"
838            "      <attribute name='label' translatable='yes'>Macro</attribute>"
839            "      <section>"
840            "      </section>"
841            "    </menu>"
842            "    <menu id='MenuSample'>"
843            "      <attribute name='label' translatable='yes'>Sample</attribute>"
844            "      <section>"
845            "        <item id='SampleProperties'>"
846            "          <attribute name='label' translatable='yes'>Properties</attribute>"
847            "          <attribute name='action'>AppMenu.SampleProperties</attribute>"
848            "        </item>"
849            "        <item id='AddGroup'>"
850            "          <attribute name='label' translatable='yes'>Add Group</attribute>"
851            "          <attribute name='action'>AppMenu.AddGroup</attribute>"
852            "        </item>"
853            "        <item id='AddSample'>"
854            "          <attribute name='label' translatable='yes'>Add Sample</attribute>"
855            "          <attribute name='action'>AppMenu.AddSample</attribute>"
856            "        </item>"
857            "        <item id='ShowSampleRefs'>"
858            "          <attribute name='label' translatable='yes'>Show Sample References</attribute>"
859            "          <attribute name='action'>AppMenu.ShowSampleRefs</attribute>"
860            "        </item>"
861            "        <item id='ReplaceSample'>"
862            "          <attribute name='label' translatable='yes'>Replace Sample</attribute>"
863            "          <attribute name='action'>AppMenu.ReplaceSample</attribute>"
864            "        </item>"
865            "        <item id='ReplaceAllSamplesInAllGroups'>"
866            "          <attribute name='label' translatable='yes'>Replace all Samples in all Groups</attribute>"
867            "          <attribute name='action'>AppMenu.ReplaceAllSamplesInAllGroups</attribute>"
868            "        </item>"
869            "      </section>"
870            "      <section>"
871            "        <item id='RemoveSample'>"
872            "          <attribute name='label' translatable='yes'>Remove Sample</attribute>"
873            "          <attribute name='action'>AppMenu.RemoveSample</attribute>"
874            "        </item>"
875            "        <item id='RemoveUnusedSamples'>"
876            "          <attribute name='label' translatable='yes'>Remove unused Samples</attribute>"
877            "          <attribute name='action'>AppMenu.RemoveUnusedSamples</attribute>"
878            "        </item>"
879            "      </section>"
880            "    </menu>"
881            "    <menu id='MenuInstrument'>"
882            "      <attribute name='label' translatable='yes'>Instrument</attribute>"
883            "      <section>"
884            "        <item id='InstrProperties'>"
885            "          <attribute name='label' translatable='yes'>Properties</attribute>"
886            "          <attribute name='action'>AppMenu.InstrProperties</attribute>"
887            "        </item>"
888            "        <item id='MidiRules'>"
889            "          <attribute name='label' translatable='yes'>MIDI Rules</attribute>"
890            "          <attribute name='action'>AppMenu.MidiRules</attribute>"
891            "        </item>"
892            "        <item id='ScriptSlots'>"
893            "          <attribute name='label' translatable='yes'>Script Slots</attribute>"
894            "          <attribute name='action'>AppMenu.ScriptSlots</attribute>"
895            "        </item>"
896            "      </section>"
897            "      <submenu id='AssignScripts'>"
898            "        <attribute name='label' translatable='yes'>Assign Scripts</attribute>"
899            "      </submenu>"
900            "      <section>"
901            "        <item id='AddInstrument'>"
902            "          <attribute name='label' translatable='yes'>Add Instrument</attribute>"
903            "          <attribute name='action'>AppMenu.AddInstrument</attribute>"
904            "        </item>"
905            "        <item id='DupInstrument'>"
906            "          <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"
907            "          <attribute name='action'>AppMenu.DupInstrument</attribute>"
908            "        </item>"
909            "        <item id='MoveInstrument'>"
910            "          <attribute name='label' translatable='yes'>Move Instrument To ...</attribute>"
911            "          <attribute name='action'>AppMenu.MoveInstrument</attribute>"
912            "        </item>"
913            "        <item id='CombInstruments'>"
914            "          <attribute name='label' translatable='yes'>Combine Instrument</attribute>"
915            "          <attribute name='action'>AppMenu.CombInstruments</attribute>"
916            "        </item>"
917            "      </section>"
918            "      <section>"
919            "        <item id='RemoveInstrument'>"
920            "          <attribute name='label' translatable='yes'>Remove Instrument</attribute>"
921            "          <attribute name='action'>AppMenu.RemoveInstrument</attribute>"
922            "        </item>"
923            "      </section>"
924            "    </menu>"
925            "    <menu id='MenuScript'>"
926            "      <attribute name='label' translatable='yes'>Script</attribute>"
927            "      <section>"
928            "        <item id='AddScriptGroup'>"
929            "          <attribute name='label' translatable='yes'>Add Script Group</attribute>"
930            "          <attribute name='action'>AppMenu.AddScriptGroup</attribute>"
931            "        </item>"
932            "        <item id='AddScript'>"
933            "          <attribute name='label' translatable='yes'>Add Script</attribute>"
934            "          <attribute name='action'>AppMenu.AddScript</attribute>"
935            "        </item>"
936            "        <item id='EditScript'>"
937            "          <attribute name='label' translatable='yes'>Edit Script</attribute>"
938            "          <attribute name='action'>AppMenu.EditScript</attribute>"
939            "        </item>"
940            "      </section>"
941            "      <section>"
942            "        <item id='RemoveScript'>"
943            "          <attribute name='label' translatable='yes'>Remove Script</attribute>"
944            "          <attribute name='action'>AppMenu.RemoveScript</attribute>"
945            "        </item>"
946            "      </section>"
947            "    </menu>"
948            "    <menu id='MenuView'>"
949            "      <attribute name='label' translatable='yes'>View</attribute>"
950            "      <section>"
951            "        <item id='Statusbar'>"
952            "          <attribute name='label' translatable='yes'>Statusbar</attribute>"
953            "          <attribute name='action'>AppMenu.Statusbar</attribute>"
954            "        </item>"
955            "        <item id='ShowTooltips'>"
956            "          <attribute name='label' translatable='yes'>Tooltips for Beginners</attribute>"
957            "          <attribute name='action'>AppMenu.ShowTooltips</attribute>"
958            "        </item>"
959            "        <item id='AutoRestoreWinDim'>"
960            "          <attribute name='label' translatable='yes'>Auto restore Window Dimensions</attribute>"
961            "          <attribute name='action'>AppMenu.AutoRestoreWinDim</attribute>"
962            "        </item>"
963            "        <item id='OpenInstrPropsByDoubleClick'>"
964            "          <attribute name='label' translatable='yes'>Instrument Properties by Double Click</attribute>"
965            "          <attribute name='action'>AppMenu.OpenInstrPropsByDoubleClick</attribute>"
966            "        </item>"
967            "      </section>"
968            "      <section>"
969            "        <item id='RefreshAll'>"
970            "          <attribute name='label' translatable='yes'>Refresh All</attribute>"
971            "          <attribute name='action'>AppMenu.RefreshAll</attribute>"
972            "        </item>"
973            "      </section>"
974            "    </menu>"
975            "    <menu id='MenuTools'>"
976            "      <attribute name='label' translatable='yes'>Tools</attribute>"
977            "      <section>"
978            "        <item id='CombineInstruments'>"
979            "          <attribute name='label' translatable='yes'>Combine Instruments ...</attribute>"
980            "          <attribute name='action'>AppMenu.CombineInstruments</attribute>"
981            "        </item>"
982            "        <item id='MergeFiles'>"
983            "          <attribute name='label' translatable='yes'>Merge Files ...</attribute>"
984            "          <attribute name='action'>AppMenu.MergeFiles</attribute>"
985            "        </item>"
986            "      </section>"
987            "    </menu>"
988            "    <menu id='MenuSettings'>"
989            "      <attribute name='label' translatable='yes'>Settings</attribute>"
990            "      <section>"
991            "        <item id='WarnUserOnExtensions'>"
992            "          <attribute name='label' translatable='yes'>Warning on Format Extensions</attribute>"
993            "          <attribute name='action'>AppMenu.WarnUserOnExtensions</attribute>"
994            "        </item>"
995            "        <item id='SyncSamplerInstrumentSelection'>"
996            "          <attribute name='label' translatable='yes'>Synchronize Sampler Selection</attribute>"
997            "          <attribute name='action'>AppMenu.SyncSamplerInstrumentSelection</attribute>"
998            "        </item>"
999            "        <item id='MoveRootNoteWithRegionMoved'>"
1000            "          <attribute name='label' translatable='yes'>Move Root Note with Region moved</attribute>"
1001            "          <attribute name='action'>AppMenu.MoveRootNoteWithRegionMoved</attribute>"
1002            "        </item>"
1003            "        <item id='SaveWithTemporaryFile'>"
1004            "          <attribute name='label' translatable='yes'>Save with temporary file</attribute>"
1005            "          <attribute name='action'>AppMenu.SaveWithTemporaryFile</attribute>"
1006            "        </item>"
1007            "      </section>"
1008            "    </menu>"
1009            "    <menu id='MenuHelp'>"
1010            "      <attribute name='label' translatable='yes'>Help</attribute>"
1011            "      <section>"
1012            "        <item id='About'>"
1013            "          <attribute name='label' translatable='yes'>About ...</attribute>"
1014            "          <attribute name='action'>AppMenu.About</attribute>"
1015            "        </item>"
1016            "      </section>"
1017            "    </menu>"
1018            "  </menubar>"
1019            // popups
1020            "  <menu id='PopupMenu'>"
1021            "    <section>"
1022            "      <item id='InstrProperties'>"
1023            "        <attribute name='label' translatable='yes'>Instrument Properties</attribute>"
1024            "        <attribute name='action'>AppMenu.InstrProperties</attribute>"
1025            "      </item>"
1026            "      <item id='MidiRules'>"
1027            "        <attribute name='label' translatable='yes'>MIDI Rules</attribute>"
1028            "        <attribute name='action'>AppMenu.MidiRules</attribute>"
1029            "      </item>"
1030            "      <item id='ScriptSlots'>"
1031            "        <attribute name='label' translatable='yes'>Script Slots</attribute>"
1032            "        <attribute name='action'>AppMenu.ScriptSlots</attribute>"
1033            "      </item>"
1034            "      <item id='AddInstrument'>"
1035            "        <attribute name='label' translatable='yes'>Add Instrument</attribute>"
1036            "        <attribute name='action'>AppMenu.AddInstrument</attribute>"
1037            "      </item>"
1038            "      <item id='DupInstrument'>"
1039            "        <attribute name='label' translatable='yes'>Duplicate Instrument</attribute>"
1040            "        <attribute name='action'>AppMenu.DupInstrument</attribute>"
1041            "      </item>"
1042            "      <item id='MoveInstrument'>"
1043            "        <attribute name='label' translatable='yes'>Move Instrument To ...</attribute>"
1044            "        <attribute name='action'>AppMenu.MoveInstrument</attribute>"
1045            "      </item>"
1046            "      <item id='CombInstruments'>"
1047            "        <attribute name='label' translatable='yes'>Combine Instruments</attribute>"
1048            "        <attribute name='action'>AppMenu.CombInstruments</attribute>"
1049            "      </item>"
1050            "    </section>"
1051            "    <section>"
1052            "      <item id='RemoveInstrument'>"
1053            "        <attribute name='label' translatable='yes'>Remove Instruments</attribute>"
1054            "        <attribute name='action'>AppMenu.RemoveInstrument</attribute>"
1055            "      </item>"
1056            "    </section>"
1057            "  </menu>"
1058            "  <menu id='SamplePopupMenu'>"
1059            "    <section>"
1060            "      <item id='SampleProperties'>"
1061            "        <attribute name='label' translatable='yes'>Sample Properties</attribute>"
1062            "        <attribute name='action'>AppMenu.SampleProperties</attribute>"
1063            "      </item>"
1064            "      <item id='AddGroup'>"
1065            "        <attribute name='label' translatable='yes'>Add Sample Group</attribute>"
1066            "        <attribute name='action'>AppMenu.AddGroup</attribute>"
1067            "      </item>"
1068            "      <item id='AddSample'>"
1069            "        <attribute name='label' translatable='yes'>Add Sample</attribute>"
1070            "        <attribute name='action'>AppMenu.AddSample</attribute>"
1071            "      </item>"
1072            "      <item id='ShowSampleRefs'>"
1073            "        <attribute name='label' translatable='yes'>Show Sample References ...</attribute>"
1074            "        <attribute name='action'>AppMenu.ShowSampleRefs</attribute>"
1075            "      </item>"
1076            "      <item id='ReplaceSample'>"
1077            "        <attribute name='label' translatable='yes'>Replace Sample</attribute>"
1078            "        <attribute name='action'>AppMenu.ReplaceSample</attribute>"
1079            "      </item>"
1080            "      <item id='ReplaceAllSamplesInAllGroups'>"
1081            "        <attribute name='label' translatable='yes'>Replace all Samples ...</attribute>"
1082            "        <attribute name='action'>AppMenu.ReplaceAllSamplesInAllGroups</attribute>"
1083            "      </item>"
1084            "    </section>"
1085            "    <section>"
1086            "      <item id='RemoveSample'>"
1087            "        <attribute name='label' translatable='yes'>Remove Sample</attribute>"
1088            "        <attribute name='action'>AppMenu.RemoveSample</attribute>"
1089            "      </item>"
1090            "      <item id='RemoveUnusedSamples'>"
1091            "        <attribute name='label' translatable='yes'>Remove unused Samples</attribute>"
1092            "        <attribute name='action'>AppMenu.RemoveUnusedSamples</attribute>"
1093            "      </item>"
1094            "    </section>"
1095            "  </menu>"
1096            "  <menu id='ScriptPopupMenu'>"
1097            "    <section>"
1098            "      <item id='AddScriptGroup'>"
1099            "        <attribute name='label' translatable='yes'>Add Script Group</attribute>"
1100            "        <attribute name='action'>AppMenu.AddScriptGroup</attribute>"
1101            "      </item>"
1102            "      <item id='AddScript'>"
1103            "        <attribute name='label' translatable='yes'>Add Script</attribute>"
1104            "        <attribute name='action'>AppMenu.AddScript</attribute>"
1105            "      </item>"
1106            "      <item id='EditScript'>"
1107            "        <attribute name='label' translatable='yes'>Edit Script</attribute>"
1108            "        <attribute name='action'>AppMenu.EditScript</attribute>"
1109            "      </item>"
1110            "    </section>"
1111            "    <section>"
1112            "      <item id='RemoveScript'>"
1113            "        <attribute name='label' translatable='yes'>Remove Script</attribute>"
1114            "        <attribute name='action'>AppMenu.RemoveScript</attribute>"
1115            "      </item>"
1116            "    </section>"
1117            "  </menu>"
1118            "</interface>";
1119        m_uiManager->add_from_string(ui_info);
1120    #else
1121      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
1122      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
1123      add_accel_group(uiManager->get_accel_group());      add_accel_group(uiManager->get_accel_group());
# Line 228  MainWindow::MainWindow() : Line 1136  MainWindow::MainWindow() :
1136          "      <separator/>"          "      <separator/>"
1137          "      <menuitem action='Quit'/>"          "      <menuitem action='Quit'/>"
1138          "    </menu>"          "    </menu>"
1139            "    <menu action='MenuEdit'>"
1140            "      <menuitem action='CopyDimRgn'/>"
1141            "      <menuitem action='AdjustClipboard'/>"
1142            "      <menuitem action='PasteDimRgn'/>"
1143            "      <separator/>"
1144            "      <menuitem action='SelectPrevInstr'/>"
1145            "      <menuitem action='SelectNextInstr'/>"
1146            "      <separator/>"
1147            "      <menuitem action='SelectPrevRegion'/>"
1148            "      <menuitem action='SelectNextRegion'/>"
1149            "      <separator/>"
1150            "      <menuitem action='SelectPrevDimension'/>"
1151            "      <menuitem action='SelectNextDimension'/>"
1152            "      <menuitem action='SelectPrevDimRgnZone'/>"
1153            "      <menuitem action='SelectNextDimRgnZone'/>"
1154            "      <menuitem action='SelectAddPrevDimRgnZone'/>"
1155            "      <menuitem action='SelectAddNextDimRgnZone'/>"
1156            "      <separator/>"
1157            "      <menuitem action='CopySampleUnity'/>"
1158            "      <menuitem action='CopySampleTune'/>"
1159            "      <menuitem action='CopySampleLoop'/>"
1160            "    </menu>"
1161            "    <menu action='MenuMacro'>"
1162            "    </menu>"
1163            "    <menu action='MenuSample'>"
1164            "      <menuitem action='SampleProperties'/>"
1165            "      <menuitem action='AddGroup'/>"
1166            "      <menuitem action='AddSample'/>"
1167            "      <menuitem action='ShowSampleRefs'/>"
1168            "      <menuitem action='ReplaceSample' />"
1169            "      <menuitem action='ReplaceAllSamplesInAllGroups' />"
1170            "      <separator/>"
1171            "      <menuitem action='RemoveSample'/>"
1172            "      <menuitem action='RemoveUnusedSamples'/>"
1173            "    </menu>"
1174          "    <menu action='MenuInstrument'>"          "    <menu action='MenuInstrument'>"
1175            "      <menu action='AllInstruments'>"
1176            "      </menu>"
1177            "      <separator/>"
1178            "      <menuitem action='InstrProperties'/>"
1179            "      <menuitem action='MidiRules'/>"
1180            "      <menuitem action='ScriptSlots'/>"
1181            "      <menu action='AssignScripts'/>"
1182            "      <menuitem action='AddInstrument'/>"
1183            "      <menuitem action='DupInstrument'/>"
1184            "      <menuitem action='MoveInstrument'/>"
1185            "      <menuitem action='CombInstruments'/>"
1186            "      <separator/>"
1187            "      <menuitem action='RemoveInstrument'/>"
1188            "    </menu>"
1189            "    <menu action='MenuScript'>"
1190            "      <menuitem action='AddScriptGroup'/>"
1191            "      <menuitem action='AddScript'/>"
1192            "      <menuitem action='EditScript'/>"
1193            "      <separator/>"
1194            "      <menuitem action='RemoveScript'/>"
1195          "    </menu>"          "    </menu>"
1196          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
1197          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
1198            "      <menuitem action='ShowTooltips'/>"
1199            "      <menuitem action='AutoRestoreWinDim'/>"
1200            "      <menuitem action='OpenInstrPropsByDoubleClick'/>"
1201            "      <separator/>"
1202            "      <menuitem action='RefreshAll'/>"
1203            "    </menu>"
1204            "    <menu action='MenuTools'>"
1205            "      <menuitem action='CombineInstruments'/>"
1206            "      <menuitem action='MergeFiles'/>"
1207            "    </menu>"
1208            "    <menu action='MenuSettings'>"
1209            "      <menuitem action='WarnUserOnExtensions'/>"
1210            "      <menuitem action='SyncSamplerInstrumentSelection'/>"
1211            "      <menuitem action='MoveRootNoteWithRegionMoved'/>"
1212            "      <menuitem action='SaveWithTemporaryFile'/>"
1213          "    </menu>"          "    </menu>"
1214          "    <menu action='MenuHelp'>"          "    <menu action='MenuHelp'>"
1215          "      <menuitem action='About'/>"          "      <menuitem action='About'/>"
# Line 239  MainWindow::MainWindow() : Line 1217  MainWindow::MainWindow() :
1217          "  </menubar>"          "  </menubar>"
1218          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
1219          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
1220            "    <menuitem action='MidiRules'/>"
1221            "    <menuitem action='ScriptSlots'/>"
1222          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
1223          "    <menuitem action='DupInstrument'/>"          "    <menuitem action='DupInstrument'/>"
1224            "    <menuitem action='MoveInstrument'/>"
1225            "    <menuitem action='CombInstruments'/>"
1226          "    <separator/>"          "    <separator/>"
1227          "    <menuitem action='RemoveInstrument'/>"          "    <menuitem action='RemoveInstrument'/>"
1228          "  </popup>"          "  </popup>"
# Line 248  MainWindow::MainWindow() : Line 1230  MainWindow::MainWindow() :
1230          "    <menuitem action='SampleProperties'/>"          "    <menuitem action='SampleProperties'/>"
1231          "    <menuitem action='AddGroup'/>"          "    <menuitem action='AddGroup'/>"
1232          "    <menuitem action='AddSample'/>"          "    <menuitem action='AddSample'/>"
1233          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"          "    <menuitem action='ShowSampleRefs'/>"
1234            "    <menuitem action='ReplaceSample' />"
1235            "    <menuitem action='ReplaceAllSamplesInAllGroups' />"
1236          "    <separator/>"          "    <separator/>"
1237          "    <menuitem action='RemoveSample'/>"          "    <menuitem action='RemoveSample'/>"
1238            "    <menuitem action='RemoveUnusedSamples'/>"
1239            "  </popup>"
1240            "  <popup name='ScriptPopupMenu'>"
1241            "    <menuitem action='AddScriptGroup'/>"
1242            "    <menuitem action='AddScript'/>"
1243            "    <menuitem action='EditScript'/>"
1244            "    <separator/>"
1245            "    <menuitem action='RemoveScript'/>"
1246          "  </popup>"          "  </popup>"
1247          "</ui>";          "</ui>";
1248      uiManager->add_ui_from_string(ui_info);      uiManager->add_ui_from_string(ui_info);
1249    #endif
1250    
1251    #if USE_GTKMM_BUILDER
1252        popup_menu = new Gtk::Menu(
1253            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1254                m_uiManager->get_object("PopupMenu")
1255            )
1256        );
1257        sample_popup = new Gtk::Menu(
1258            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1259                m_uiManager->get_object("SamplePopupMenu")
1260            )
1261        );
1262        script_popup = new Gtk::Menu(
1263            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1264                m_uiManager->get_object("ScriptPopupMenu")
1265            )
1266        );
1267    #else
1268      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));      popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));
1269        
1270        // Set tooltips for menu items (for some reason, setting a tooltip on the
1271        // respective Gtk::Action objects above will simply be ignored, no matter
1272        // if using Gtk::Action::set_tooltip() or passing the tooltip string on
1273        // Gtk::Action::create()).
1274        {
1275            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1276                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
1277            item->set_tooltip_text(_("Used when dragging a sample to a region's sample reference field. You may disable this for example if you want to replace an existing sample in a region with a new sample, but don't want that the region's current unity note setting will be altered by this action."));
1278        }
1279        {
1280            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1281                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
1282            item->set_tooltip_text(_("Used when dragging a sample to a region's sample reference field. You may disable this for example if you want to replace an existing sample in a region with a new sample, but don't want that the region's current sample playback tuning will be altered by this action."));
1283        }
1284        {
1285            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1286                uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
1287            item->set_tooltip_text(_("Used when dragging a sample to a region's sample reference field. You may disable this for example if you want to replace an existing sample in a region with a new sample, but don't want that the region's current loop information to be altered by this action."));
1288        }
1289        {
1290            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1291                uiManager->get_widget("/MenuBar/MenuSettings/WarnUserOnExtensions"));
1292            item->set_tooltip_text(_("If checked, a warning will be shown whenever you try to use a feature which is based on a LinuxSampler extension ontop of the original gig format, which would not work with the Gigasampler/GigaStudio application."));
1293        }
1294        {
1295            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1296                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
1297            item->set_tooltip_text(_("If checked, the sampler's current instrument will automatically be switched whenever another instrument was selected in gigedit (only available in live-mode)."));
1298        }
1299        {
1300            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1301                uiManager->get_widget("/MenuBar/MenuSettings/MoveRootNoteWithRegionMoved"));
1302            item->set_tooltip_text(_("If checked, and when a region is moved by dragging it around on the virtual keyboard, the keyboard position dependent pitch will move exactly with the amount of semi tones the region was moved around."));
1303        }
1304        {
1305            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1306                uiManager->get_widget("/MenuBar/MenuSample/RemoveUnusedSamples"));
1307            item->set_tooltip_text(_("Removes all samples that are not referenced by any instrument (i.e. red ones)."));
1308            // copy tooltip to popup menu
1309            Gtk::MenuItem* item2 = dynamic_cast<Gtk::MenuItem*>(
1310                uiManager->get_widget("/SamplePopupMenu/RemoveUnusedSamples"));
1311            item2->set_tooltip_text(item->get_tooltip_text());
1312        }
1313        {
1314            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1315                uiManager->get_widget("/MenuBar/MenuView/RefreshAll"));
1316            item->set_tooltip_text(_("Reloads the currently open gig file and updates the entire graphical user interface."));
1317        }
1318        {
1319            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1320                uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
1321            item->set_tooltip_text(_("If checked, size and position of all windows will be saved and automatically restored next time."));
1322        }
1323        {
1324            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1325                uiManager->get_widget("/MenuBar/MenuView/OpenInstrPropsByDoubleClick"));
1326            item->set_tooltip_text(_("If checked, double clicking an instrument opens its properties dialog."));
1327        }
1328        {
1329            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1330                uiManager->get_widget("/MenuBar/MenuTools/CombineInstruments"));
1331            item->set_tooltip_text(_("Create combi sounds out of individual sounds of this .gig file."));
1332        }
1333        {
1334            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
1335                uiManager->get_widget("/MenuBar/MenuTools/MergeFiles"));
1336            item->set_tooltip_text(_("Add instruments and samples of other .gig files to this .gig file."));
1337        }
1338    #endif
1339    
1340    #if USE_GTKMM_BUILDER
1341        assign_scripts_menu = new Gtk::Menu(
1342            Glib::RefPtr<Gio::Menu>::cast_dynamic(
1343                m_uiManager->get_object("AssignScripts")
1344            )
1345        );
1346    #else
1347        instrument_menu = static_cast<Gtk::MenuItem*>(
1348            uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();
1349    
1350        assign_scripts_menu = static_cast<Gtk::MenuItem*>(
1351            uiManager->get_widget("/MenuBar/MenuInstrument/AssignScripts"))->get_submenu();
1352    #endif
1353    
1354    #if USE_GTKMM_BUILDER
1355        Gtk::Widget* menuBar = NULL;
1356        m_uiManager->get_widget("MenuBar", menuBar);
1357    #else
1358      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");
1359    #endif
1360    
1361      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
1362      m_VBox.pack_start(m_HPaned);      m_VBox.pack_start(m_HPaned);
1363      m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK);      m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK);
# Line 268  MainWindow::MainWindow() : Line 1368  MainWindow::MainWindow() :
1368      set_file_is_shared(false);      set_file_is_shared(false);
1369    
1370      // Status Bar:      // Status Bar:
1371    #if USE_GTKMM_BOX
1372    # warning No status bar layout for GTKMM 4 yet
1373    #else
1374      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);
1375      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);      m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);
1376    #endif
1377      m_StatusBar.show();      m_StatusBar.show();
1378    
1379      m_RegionChooser.signal_region_selected().connect(      m_RegionChooser.signal_region_selected().connect(
# Line 280  MainWindow::MainWindow() : Line 1384  MainWindow::MainWindow() :
1384    
1385      // Create the Tree model:      // Create the Tree model:
1386      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refTreeModel = Gtk::ListStore::create(m_Columns);
1387      m_TreeView.set_model(m_refTreeModel);      m_refTreeModelFilter = Gtk::TreeModelFilter::create(m_refTreeModel);
1388      m_refTreeModel->signal_row_changed().connect(      m_refTreeModelFilter->set_visible_func(
1389            sigc::mem_fun(*this, &MainWindow::instrument_row_visible)
1390        );
1391        m_TreeView.set_model(m_refTreeModelFilter);
1392    
1393        m_TreeView.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
1394        m_TreeView.set_has_tooltip(true);
1395        m_TreeView.signal_query_tooltip().connect(
1396            sigc::mem_fun(*this, &MainWindow::onQueryTreeViewTooltip)
1397        );
1398        instrument_name_connection = m_refTreeModel->signal_row_changed().connect(
1399          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
1400      );      );
1401    
1402      // Add the TreeView's view columns:      // Add the TreeView's view columns:
1403      m_TreeView.append_column_editable("Instrument", m_Columns.m_col_name);      m_TreeView.append_column(_("Nr"), m_Columns.m_col_nr);
1404      m_TreeView.set_headers_visible(false);      m_TreeView.append_column_editable(_("Instrument"), m_Columns.m_col_name);
1405        m_TreeView.append_column(_("Scripts"), m_Columns.m_col_scripts);
1406        m_TreeView.set_headers_visible(true);
1407        
1408        // establish drag&drop within the instrument tree view, allowing to reorder
1409        // the sequence of instruments within the gig file
1410        {
1411            std::vector<Gtk::TargetEntry> drag_target_instrument;
1412            drag_target_instrument.push_back(Gtk::TargetEntry("gig::Instrument"));
1413            m_TreeView.drag_source_set(drag_target_instrument);
1414            m_TreeView.drag_dest_set(drag_target_instrument);
1415            m_TreeView.signal_drag_begin().connect(
1416                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_begin)
1417            );
1418            m_TreeView.signal_drag_data_get().connect(
1419                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_data_get)
1420            );
1421            m_TreeView.signal_drag_data_received().connect(
1422                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drop_drag_data_received)
1423            );
1424        }
1425    
1426      // create samples treeview (including its data model)      // create samples treeview (including its data model)
1427      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);
1428      m_TreeViewSamples.set_model(m_refSamplesTreeModel);      m_TreeViewSamples.set_model(m_refSamplesTreeModel);
1429        m_TreeViewSamples.get_selection()->set_mode(Gtk::SELECTION_MULTIPLE);
1430        m_TreeViewSamples.set_tooltip_text(_("To actually use a sample, drag it from this list view to \"Sample\" -> \"Sample:\" on the region's settings pane on the right.\n\nRight click here for more actions on samples."));
1431      // m_TreeViewSamples.set_reorderable();      // m_TreeViewSamples.set_reorderable();
1432      m_TreeViewSamples.append_column_editable("Samples", m_SamplesModel.m_col_name);      m_TreeViewSamples.append_column_editable(_("Name"), m_SamplesModel.m_col_name);
1433      m_TreeViewSamples.set_headers_visible(false);      m_TreeViewSamples.append_column(_("Referenced"), m_SamplesModel.m_col_refcount);
1434        {
1435            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(0);
1436            Gtk::CellRendererText* cellrenderer =
1437                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
1438            column->add_attribute(
1439                cellrenderer->property_foreground(), m_SamplesModel.m_color
1440            );
1441        }
1442        {
1443            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(1);
1444            Gtk::CellRendererText* cellrenderer =
1445                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
1446            column->add_attribute(
1447                cellrenderer->property_foreground(), m_SamplesModel.m_color
1448            );
1449        }
1450        m_TreeViewSamples.set_headers_visible(true);
1451    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
1452        m_TreeViewSamples.signal_button_press_event().connect(
1453            sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
1454        );
1455    #else
1456      m_TreeViewSamples.signal_button_press_event().connect_notify(      m_TreeViewSamples.signal_button_press_event().connect_notify(
1457          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
1458      );      );
1459    #endif
1460      m_refSamplesTreeModel->signal_row_changed().connect(      m_refSamplesTreeModel->signal_row_changed().connect(
1461          sigc::mem_fun(*this, &MainWindow::sample_name_changed)          sigc::mem_fun(*this, &MainWindow::sample_name_changed)
1462      );      );
1463    
1464        // create scripts treeview (including its data model)
1465        m_refScriptsTreeModel = ScriptsTreeStore::create(m_ScriptsModel);
1466        m_TreeViewScripts.set_model(m_refScriptsTreeModel);
1467        m_TreeViewScripts.set_tooltip_text(_(
1468            "Use CTRL + double click for editing a script."
1469            "\n\n"
1470            "Note: instrument scripts are a LinuxSampler extension of the gig "
1471            "format. This feature will not work with the GigaStudio software!"
1472        ));
1473        // m_TreeViewScripts.set_reorderable();
1474        m_TreeViewScripts.append_column_editable("Samples", m_ScriptsModel.m_col_name);
1475        m_TreeViewScripts.set_headers_visible(false);
1476    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
1477        m_TreeViewScripts.signal_button_press_event().connect(
1478            sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
1479        );
1480    #else
1481        m_TreeViewScripts.signal_button_press_event().connect_notify(
1482            sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
1483        );
1484    #endif
1485        //FIXME: why the heck does this double click signal_row_activated() only fire while CTRL key is pressed ?
1486        m_TreeViewScripts.signal_row_activated().connect(
1487            sigc::mem_fun(*this, &MainWindow::script_double_clicked)
1488        );
1489        m_refScriptsTreeModel->signal_row_changed().connect(
1490            sigc::mem_fun(*this, &MainWindow::script_name_changed)
1491        );
1492    
1493        // establish drag&drop between scripts tree view and ScriptSlots window
1494        std::vector<Gtk::TargetEntry> drag_target_gig_script;
1495        drag_target_gig_script.push_back(Gtk::TargetEntry("gig::Script"));
1496        m_TreeViewScripts.drag_source_set(drag_target_gig_script);
1497        m_TreeViewScripts.signal_drag_begin().connect(
1498            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_begin)
1499        );
1500        m_TreeViewScripts.signal_drag_data_get().connect(
1501            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_data_get)
1502        );
1503    
1504      // establish drag&drop between samples tree view and dimension region 'Sample' text entry      // establish drag&drop between samples tree view and dimension region 'Sample' text entry
1505      std::vector<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
1506      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
# Line 320  MainWindow::MainWindow() : Line 1519  MainWindow::MainWindow() :
1519          sigc::hide(sigc::mem_fun(*this, &MainWindow::file_changed)));          sigc::hide(sigc::mem_fun(*this, &MainWindow::file_changed)));
1520      m_RegionChooser.signal_instrument_changed().connect(      m_RegionChooser.signal_instrument_changed().connect(
1521          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1522        m_RegionChooser.signal_instrument_changed().connect(
1523            sigc::mem_fun(*this, &MainWindow::region_changed));
1524      m_DimRegionChooser.signal_region_changed().connect(      m_DimRegionChooser.signal_region_changed().connect(
1525          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1526      instrumentProps.signal_instrument_changed().connect(      instrumentProps.signal_changed().connect(
1527          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1528      propDialog.signal_info_changed().connect(      sampleProps.signal_changed().connect(
1529            sigc::mem_fun(*this, &MainWindow::file_changed));
1530        fileProps.signal_changed().connect(
1531            sigc::mem_fun(*this, &MainWindow::file_changed));
1532        midiRules.signal_changed().connect(
1533          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
1534    
1535      dimreg_edit.signal_dimreg_to_be_changed().connect(      dimreg_edit.signal_dimreg_to_be_changed().connect(
# Line 333  MainWindow::MainWindow() : Line 1538  MainWindow::MainWindow() :
1538          dimreg_changed_signal.make_slot());          dimreg_changed_signal.make_slot());
1539      dimreg_edit.signal_sample_ref_changed().connect(      dimreg_edit.signal_sample_ref_changed().connect(
1540          sample_ref_changed_signal.make_slot());          sample_ref_changed_signal.make_slot());
1541        sample_ref_changed_signal.connect(
1542            sigc::mem_fun(*this, &MainWindow::on_sample_ref_changed)
1543        );
1544        samples_to_be_removed_signal.connect(
1545            sigc::mem_fun(*this, &MainWindow::on_samples_to_be_removed)
1546        );
1547    
1548        dimreg_edit.signal_select_sample().connect(
1549            sigc::mem_fun(*this, &MainWindow::select_sample)
1550        );
1551    
1552      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(
1553          sigc::hide(          sigc::hide(
1554              sigc::bind(              sigc::bind(
1555                  file_structure_to_be_changed_signal.make_slot(),                  file_structure_to_be_changed_signal.make_slot(),
1556    #if SIGCXX_MAJOR_VERSION > 2 || (SIGCXX_MAJOR_VERSION == 2 && SIGCXX_MINOR_VERSION >= 8)
1557                    std::ref(this->file)
1558    #else
1559                  sigc::ref(this->file)                  sigc::ref(this->file)
1560    #endif
1561              )              )
1562          )          )
1563      );      );
# Line 346  MainWindow::MainWindow() : Line 1565  MainWindow::MainWindow() :
1565          sigc::hide(          sigc::hide(
1566              sigc::bind(              sigc::bind(
1567                  file_structure_changed_signal.make_slot(),                  file_structure_changed_signal.make_slot(),
1568    #if SIGCXX_MAJOR_VERSION > 2 || (SIGCXX_MAJOR_VERSION == 2 && SIGCXX_MINOR_VERSION >= 8)
1569                    std::ref(this->file)
1570    #else
1571                  sigc::ref(this->file)                  sigc::ref(this->file)
1572    #endif
1573              )              )
1574          )          )
1575      );      );
# Line 367  MainWindow::MainWindow() : Line 1590  MainWindow::MainWindow() :
1590      dimreg_stereo.signal_toggled().connect(      dimreg_stereo.signal_toggled().connect(
1591          sigc::mem_fun(*this, &MainWindow::update_dimregs));          sigc::mem_fun(*this, &MainWindow::update_dimregs));
1592    
1593        m_searchText.signal_changed().connect(
1594            sigc::mem_fun(*m_refTreeModelFilter.operator->(), &Gtk::TreeModelFilter::refilter)
1595        );
1596    
1597      file = 0;      file = 0;
1598      file_is_changed = false;      file_is_changed = false;
1599    
1600    #if HAS_GTKMM_SHOW_ALL_CHILDREN
1601      show_all_children();      show_all_children();
1602    #endif
1603    
1604      // start with a new gig file by default      // start with a new gig file by default
1605      on_action_file_new();      on_action_file_new();
1606    
1607        m_TreeViewNotebook.signal_switch_page().connect(
1608            sigc::mem_fun(*this, &MainWindow::on_notebook_tab_switched)
1609        );
1610    
1611        // select 'Instruments' tab by default
1612        // (gtk allows this only if the tab childs are visible, thats why it's here)
1613        m_TreeViewNotebook.set_current_page(1);
1614    
1615        Gtk::Clipboard::get()->signal_owner_change().connect(
1616            sigc::mem_fun(*this, &MainWindow::on_clipboard_owner_change)
1617        );
1618        updateClipboardPasteAvailable();
1619        updateClipboardCopyAvailable();
1620    
1621        // setup macros and their keyboard accelerators
1622        {
1623    #if USE_GTKMM_BUILDER
1624            menuMacro = new Gtk::Menu(
1625                Glib::RefPtr<Gio::Menu>::cast_dynamic(
1626                    m_uiManager->get_object("MenuMacro")
1627                )
1628            );
1629    #else
1630            Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
1631                uiManager->get_widget("/MenuBar/MenuMacro")
1632            )->get_submenu();
1633    #endif
1634    
1635            const Gdk::ModifierType noModifier = (Gdk::ModifierType)0;
1636            Gtk::AccelMap::add_entry("<Macros>/macro_0", GDK_KEY_F1, noModifier);
1637            Gtk::AccelMap::add_entry("<Macros>/macro_1", GDK_KEY_F2, noModifier);
1638            Gtk::AccelMap::add_entry("<Macros>/macro_2", GDK_KEY_F3, noModifier);
1639            Gtk::AccelMap::add_entry("<Macros>/macro_3", GDK_KEY_F4, noModifier);
1640            Gtk::AccelMap::add_entry("<Macros>/macro_4", GDK_KEY_F5, noModifier);
1641            Gtk::AccelMap::add_entry("<Macros>/macro_5", GDK_KEY_F6, noModifier);
1642            Gtk::AccelMap::add_entry("<Macros>/macro_6", GDK_KEY_F7, noModifier);
1643            Gtk::AccelMap::add_entry("<Macros>/macro_7", GDK_KEY_F8, noModifier);
1644            Gtk::AccelMap::add_entry("<Macros>/macro_8", GDK_KEY_F9, noModifier);
1645            Gtk::AccelMap::add_entry("<Macros>/macro_9", GDK_KEY_F10, noModifier);
1646            Gtk::AccelMap::add_entry("<Macros>/macro_10", GDK_KEY_F11, noModifier);
1647            Gtk::AccelMap::add_entry("<Macros>/macro_11", GDK_KEY_F12, noModifier);
1648            Gtk::AccelMap::add_entry("<Macros>/macro_12", GDK_KEY_F13, noModifier);
1649            Gtk::AccelMap::add_entry("<Macros>/macro_13", GDK_KEY_F14, noModifier);
1650            Gtk::AccelMap::add_entry("<Macros>/macro_14", GDK_KEY_F15, noModifier);
1651            Gtk::AccelMap::add_entry("<Macros>/macro_15", GDK_KEY_F16, noModifier);
1652            Gtk::AccelMap::add_entry("<Macros>/macro_16", GDK_KEY_F17, noModifier);
1653            Gtk::AccelMap::add_entry("<Macros>/macro_17", GDK_KEY_F18, noModifier);
1654            Gtk::AccelMap::add_entry("<Macros>/macro_18", GDK_KEY_F19, noModifier);
1655            Gtk::AccelMap::add_entry("<Macros>/SetupMacros", 'm', primaryModifierKey);
1656    
1657            Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
1658            menuMacro->set_accel_group(accelGroup);
1659    
1660            updateMacroMenu();
1661        }
1662    
1663        // setup "Assign Scripts" keyboard accelerators
1664        {
1665            Gtk::AccelMap::add_entry("<Scripts>/script_0", GDK_KEY_F1, Gdk::SHIFT_MASK);
1666            Gtk::AccelMap::add_entry("<Scripts>/script_1", GDK_KEY_F2, Gdk::SHIFT_MASK);
1667            Gtk::AccelMap::add_entry("<Scripts>/script_2", GDK_KEY_F3, Gdk::SHIFT_MASK);
1668            Gtk::AccelMap::add_entry("<Scripts>/script_3", GDK_KEY_F4, Gdk::SHIFT_MASK);
1669            Gtk::AccelMap::add_entry("<Scripts>/script_4", GDK_KEY_F5, Gdk::SHIFT_MASK);
1670            Gtk::AccelMap::add_entry("<Scripts>/script_5", GDK_KEY_F6, Gdk::SHIFT_MASK);
1671            Gtk::AccelMap::add_entry("<Scripts>/script_6", GDK_KEY_F7, Gdk::SHIFT_MASK);
1672            Gtk::AccelMap::add_entry("<Scripts>/script_7", GDK_KEY_F8, Gdk::SHIFT_MASK);
1673            Gtk::AccelMap::add_entry("<Scripts>/script_8", GDK_KEY_F9, Gdk::SHIFT_MASK);
1674            Gtk::AccelMap::add_entry("<Scripts>/script_9", GDK_KEY_F10, Gdk::SHIFT_MASK);
1675            Gtk::AccelMap::add_entry("<Scripts>/script_10", GDK_KEY_F11, Gdk::SHIFT_MASK);
1676            Gtk::AccelMap::add_entry("<Scripts>/script_11", GDK_KEY_F12, Gdk::SHIFT_MASK);
1677            Gtk::AccelMap::add_entry("<Scripts>/script_12", GDK_KEY_F13, Gdk::SHIFT_MASK);
1678            Gtk::AccelMap::add_entry("<Scripts>/script_13", GDK_KEY_F14, Gdk::SHIFT_MASK);
1679            Gtk::AccelMap::add_entry("<Scripts>/script_14", GDK_KEY_F15, Gdk::SHIFT_MASK);
1680            Gtk::AccelMap::add_entry("<Scripts>/script_15", GDK_KEY_F16, Gdk::SHIFT_MASK);
1681            Gtk::AccelMap::add_entry("<Scripts>/script_16", GDK_KEY_F17, Gdk::SHIFT_MASK);
1682            Gtk::AccelMap::add_entry("<Scripts>/script_17", GDK_KEY_F18, Gdk::SHIFT_MASK);
1683            Gtk::AccelMap::add_entry("<Scripts>/script_18", GDK_KEY_F19, Gdk::SHIFT_MASK);
1684            Gtk::AccelMap::add_entry("<Scripts>/DropAllScriptSlots", GDK_KEY_BackSpace, Gdk::SHIFT_MASK);
1685    
1686            Glib::RefPtr<Gtk::AccelGroup> accelGroup = this->get_accel_group();
1687            assign_scripts_menu->set_accel_group(accelGroup);
1688        }
1689    
1690        on_show_tooltips_changed();
1691    
1692        Glib::signal_idle().connect_once(
1693            sigc::mem_fun(*this, &MainWindow::bringToFront),
1694            200
1695        );
1696  }  }
1697    
1698  MainWindow::~MainWindow()  MainWindow::~MainWindow()
1699  {  {
1700  }  }
1701    
1702    void MainWindow::bringToFront() {
1703        #if defined(__APPLE__)
1704        macRaiseAppWindow();
1705        #endif
1706        raise();
1707        present();
1708    }
1709    
1710    void MainWindow::updateMacroMenu() {
1711    #if !USE_GTKMM_BUILDER
1712        Gtk::Menu* menuMacro = dynamic_cast<Gtk::MenuItem*>(
1713            uiManager->get_widget("/MenuBar/MenuMacro")
1714        )->get_submenu();
1715    #endif
1716    
1717        // remove all entries from "Macro" menu
1718        {
1719            const std::vector<Gtk::Widget*> children = menuMacro->get_children();
1720            for (int i = 0; i < children.size(); ++i) {
1721                Gtk::Widget* child = children[i];
1722                menuMacro->remove(*child);
1723                delete child;
1724            }
1725        }
1726    
1727        // (re)load all macros from config file
1728        try {
1729            Settings::singleton()->loadMacros(m_macros);
1730        } catch (Serialization::Exception e) {
1731            std::cerr << "Exception while loading macros: " << e.Message << std::endl;
1732        } catch (...) {
1733            std::cerr << "Unknown exception while loading macros!" << std::endl;
1734        }
1735    
1736        // add all configured macros as menu items to the "Macro" menu
1737        for (int iMacro = 0; iMacro < m_macros.size(); ++iMacro) {
1738            const Serialization::Archive& macro = m_macros[iMacro];
1739            std::string name =
1740                macro.name().empty() ?
1741                    (std::string(_("Unnamed Macro")) + " " + ToString(iMacro+1)) : macro.name();
1742            Gtk::MenuItem* item = new Gtk::MenuItem(name);
1743            item->signal_activate().connect(
1744                sigc::bind(
1745                    sigc::mem_fun(*this, &MainWindow::onMacroSelected), iMacro
1746                )
1747            );
1748            menuMacro->append(*item);
1749            item->set_accel_path("<Macros>/macro_" + ToString(iMacro));
1750            Glib::ustring comment = macro.comment();
1751            if (!comment.empty())
1752                item->set_tooltip_text(comment);
1753        }
1754        // if there are no macros configured at all, then show a dummy entry instead
1755        if (m_macros.empty()) {
1756            Gtk::MenuItem* item = new Gtk::MenuItem(_("No Macros"));
1757            item->set_sensitive(false);
1758            menuMacro->append(*item);
1759        }
1760    
1761        // add separator line to menu
1762        menuMacro->append(*new Gtk::SeparatorMenuItem);
1763    
1764        {
1765            Gtk::MenuItem* item = new Gtk::MenuItem(_("Setup Macros ..."));
1766            item->signal_activate().connect(
1767                sigc::mem_fun(*this, &MainWindow::setupMacros)
1768            );
1769            menuMacro->append(*item);
1770            item->set_accel_path("<Macros>/SetupMacros");
1771        }
1772    
1773    #if HAS_GTKMM_SHOW_ALL_CHILDREN
1774        menuMacro->show_all_children();
1775    #endif
1776    }
1777    
1778    void MainWindow::onMacroSelected(int iMacro) {
1779        printf("onMacroSelected(%d)\n", iMacro);
1780        if (iMacro < 0 || iMacro >= m_macros.size()) return;
1781        Glib::ustring errorText;
1782        try {
1783            applyMacro(m_macros[iMacro]);
1784        } catch (Serialization::Exception e) {
1785            errorText = e.Message;
1786        } catch (...) {
1787            errorText = _("Unknown exception while applying macro");
1788        }
1789        if (!errorText.empty()) {
1790            Glib::ustring txt = _("Applying macro failed:\n") + errorText;
1791            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1792            msg.run();
1793        }
1794    }
1795    
1796    void MainWindow::setupMacros() {
1797        MacrosSetup* setup = new MacrosSetup();
1798        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
1799        setup->setMacros(m_macros, &m_serializationArchive, pDimRgn);
1800        setup->signal_macros_changed().connect(
1801            sigc::mem_fun(*this, &MainWindow::onMacrosSetupChanged)
1802        );
1803        setup->show();
1804    }
1805    
1806    void MainWindow::onMacrosSetupChanged(const std::vector<Serialization::Archive>& macros) {
1807        m_macros = macros;
1808        Settings::singleton()->saveMacros(m_macros);
1809        updateMacroMenu();
1810    }
1811    
1812    //NOTE: the actual signal's first argument for argument 'page' is on some gtkmm version GtkNotebookPage* and on some Gtk::Widget*. Since we don't need that argument, it is simply void* here for now.
1813    void MainWindow::on_notebook_tab_switched(void* page, guint page_num) {
1814        bool isInstrumentsPage = (page_num == 1);
1815        // so far we only support filtering for the instruments list, so hide the
1816        // filter text entry field if another tab is selected
1817        m_searchField.set_visible(isInstrumentsPage);
1818    }
1819    
1820  bool MainWindow::on_delete_event(GdkEventAny* event)  bool MainWindow::on_delete_event(GdkEventAny* event)
1821  {  {
1822      return !file_is_shared && file_is_changed && !close_confirmation_dialog();      return !file_is_shared && file_is_changed && !close_confirmation_dialog();
# Line 399  void MainWindow::region_changed() Line 1836  void MainWindow::region_changed()
1836  gig::Instrument* MainWindow::get_instrument()  gig::Instrument* MainWindow::get_instrument()
1837  {  {
1838      gig::Instrument* instrument = 0;      gig::Instrument* instrument = 0;
1839      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
1840        if (rows.empty()) return NULL;
1841      Gtk::TreeModel::iterator it = tree_sel_ref->get_selected();      //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
1842        Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
1843      if (it) {      if (it) {
1844          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
1845          instrument = row[m_Columns.m_col_instr];          instrument = row[m_Columns.m_col_instr];
# Line 444  void MainWindow::update_dimregs() Line 1882  void MainWindow::update_dimregs()
1882              add_region_to_dimregs(region, stereo, all_dimregs);              add_region_to_dimregs(region, stereo, all_dimregs);
1883          }          }
1884      }      }
1885    
1886        m_RegionChooser.setModifyAllRegions(all_regions);
1887        m_DimRegionChooser.setModifyAllRegions(all_regions);
1888        m_DimRegionChooser.setModifyAllDimensionRegions(all_dimregs);
1889        m_DimRegionChooser.setModifyBothChannels(stereo);
1890    
1891        updateClipboardCopyAvailable();
1892  }  }
1893    
1894  void MainWindow::dimreg_all_dimregs_toggled()  void MainWindow::dimreg_all_dimregs_toggled()
# Line 455  void MainWindow::dimreg_all_dimregs_togg Line 1900  void MainWindow::dimreg_all_dimregs_togg
1900  void MainWindow::dimreg_changed()  void MainWindow::dimreg_changed()
1901  {  {
1902      update_dimregs();      update_dimregs();
1903      dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion());      dimreg_edit.set_dim_region(m_DimRegionChooser.get_main_dimregion());
1904  }  }
1905    
1906  void MainWindow::on_sel_change()  void MainWindow::on_sel_change()
1907  {  {
1908    #if !USE_GTKMM_BUILDER
1909        // select item in instrument menu
1910        std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
1911        if (!rows.empty()) {
1912            Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
1913            if (it) {
1914                Gtk::TreePath path(it);
1915                int index = path[0];
1916                const std::vector<Gtk::Widget*> children =
1917                    instrument_menu->get_children();
1918                static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();
1919            }
1920        }
1921    #endif
1922    
1923        updateScriptListOfMenu();
1924    
1925      m_RegionChooser.set_instrument(get_instrument());      m_RegionChooser.set_instrument(get_instrument());
1926    
1927        if (Settings::singleton()->syncSamplerInstrumentSelection) {
1928            switch_sampler_instrument_signal.emit(get_instrument());
1929        }
1930    }
1931    
1932    
1933    LoaderSaverBase::LoaderSaverBase(const Glib::ustring filename, gig::File* gig) :
1934        filename(filename), gig(gig),
1935    #ifdef GLIB_THREADS
1936        thread(0),
1937    #endif
1938        progress(0.f)
1939    {
1940  }  }
1941    
1942  void loader_progress_callback(gig::progress_t* progress)  void loader_progress_callback(gig::progress_t* progress)
1943  {  {
1944      Loader* loader = static_cast<Loader*>(progress->custom);      LoaderSaverBase* loader = static_cast<LoaderSaverBase*>(progress->custom);
1945      loader->progress_callback(progress->factor);      loader->progress_callback(progress->factor);
1946  }  }
1947    
1948  void Loader::progress_callback(float fraction)  void LoaderSaverBase::progress_callback(float fraction)
1949  {  {
1950      {      {
1951    #ifdef GLIB_THREADS
1952          Glib::Threads::Mutex::Lock lock(progressMutex);          Glib::Threads::Mutex::Lock lock(progressMutex);
1953    #else
1954            std::lock_guard<std::mutex> lock(progressMutex);
1955    #endif
1956          progress = fraction;          progress = fraction;
1957      }      }
1958      progress_dispatcher();      progress_dispatcher();
1959  }  }
1960    
1961  void Loader::thread_function()  #if defined(WIN32) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))
1962    // make sure stack is 16-byte aligned for SSE instructions
1963    __attribute__((force_align_arg_pointer))
1964    #endif
1965    void LoaderSaverBase::thread_function()
1966  {  {
1967      printf("thread_function self=%x\n", Glib::Threads::Thread::self());  #ifdef GLIB_THREADS
1968      printf("Start %s\n", filename);      printf("thread_function self=%p\n",
1969      RIFF::File* riff = new RIFF::File(filename);             static_cast<void*>(Glib::Threads::Thread::self()));
1970      gig = new gig::File(riff);  #else
1971      gig::progress_t progress;      std::cout << "thread_function self=" << std::this_thread::get_id() << "\n";
1972      progress.callback = loader_progress_callback;  #endif
1973      progress.custom = this;      printf("Start %s\n", filename.c_str());
1974        try {
1975            gig::progress_t progress;
1976            progress.callback = loader_progress_callback;
1977            progress.custom = this;
1978    
1979            thread_function_sub(progress);
1980            printf("End\n");
1981            finished_dispatcher();
1982        } catch (RIFF::Exception e) {
1983            error_message = e.Message;
1984            error_dispatcher.emit();
1985        } catch (...) {
1986            error_message = _("Unknown exception occurred");
1987            error_dispatcher.emit();
1988        }
1989    }
1990    
1991      gig->GetInstrument(0, &progress);  void LoaderSaverBase::launch()
1992      printf("End\n");  {
1993      finished_dispatcher();  #ifdef GLIB_THREADS
1994    #ifdef OLD_THREADS
1995        thread = Glib::Thread::create(sigc::mem_fun(*this, &LoaderSaverBase::thread_function), true);
1996    #else
1997        thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &LoaderSaverBase::thread_function));
1998    #endif
1999        printf("launch thread=%p\n", static_cast<void*>(thread));
2000    #else
2001        thread = std::thread([this](){ thread_function(); });
2002        std::cout << "launch thread=" << thread.get_id() << "\n";
2003    #endif
2004  }  }
2005    
2006  Loader::Loader(const char* filename)  float LoaderSaverBase::get_progress()
     : filename(filename), thread(0)  
2007  {  {
2008    #ifdef GLIB_THREADS
2009        Glib::Threads::Mutex::Lock lock(progressMutex);
2010    #else
2011        std::lock_guard<std::mutex> lock(progressMutex);
2012    #endif
2013        return progress;
2014  }  }
2015    
2016  void Loader::launch()  Glib::Dispatcher& LoaderSaverBase::signal_progress()
2017  {  {
2018  #ifdef OLD_THREADS      return progress_dispatcher;
2019      thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);  }
2020    
2021    Glib::Dispatcher& LoaderSaverBase::signal_finished()
2022    {
2023        return finished_dispatcher;
2024    }
2025    
2026    Glib::Dispatcher& LoaderSaverBase::signal_error()
2027    {
2028        return error_dispatcher;
2029    }
2030    
2031    void LoaderSaverBase::join() {
2032    #ifdef GLIB_THREADS
2033        thread->join();
2034  #else  #else
2035      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));      thread.join();
2036  #endif  #endif
     printf("launch thread=%x\n", thread);  
2037  }  }
2038    
2039  float Loader::get_progress()  
2040    Loader::Loader(const char* filename) :
2041        LoaderSaverBase(filename, 0)
2042  {  {
     float res;  
     {  
         Glib::Threads::Mutex::Lock lock(progressMutex);  
         res = progress;  
     }  
     return res;  
2043  }  }
2044    
2045  Glib::Dispatcher& Loader::signal_progress()  void Loader::thread_function_sub(gig::progress_t& progress)
2046  {  {
2047      return progress_dispatcher;      RIFF::File* riff = new RIFF::File(filename);
2048        gig = new gig::File(riff);
2049    
2050        gig->GetInstrument(0, &progress);
2051  }  }
2052    
2053  Glib::Dispatcher& Loader::signal_finished()  
2054    Saver::Saver(gig::File* file, Glib::ustring filename) :
2055        LoaderSaverBase(filename, file)
2056  {  {
     return finished_dispatcher;  
2057  }  }
2058    
2059  LoadDialog::LoadDialog(const Glib::ustring& title, Gtk::Window& parent)  void Saver::thread_function_sub(gig::progress_t& progress)
2060    {
2061        // if no filename was provided, that means "save", if filename was provided means "save as"
2062        if (filename.empty()) {
2063            if (!Settings::singleton()->saveWithTemporaryFile) {
2064                // save directly over the existing .gig file
2065                // (requires less disk space than solution below
2066                // but may be slower)
2067                gig->Save(&progress);
2068            } else {
2069                // save the file as separate temporary file first,
2070                // then move the saved file over the old file
2071                // (may result in performance speedup during save)
2072                gig::String tmpname = filename + ".TMP";
2073                gig->Save(tmpname, &progress);
2074    #if defined(WIN32)
2075                if (!DeleteFile(filename.c_str())) {
2076                    throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file).");
2077                }
2078    #else // POSIX ...
2079                if (unlink(filename.c_str())) {
2080                    throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + gig::String(strerror(errno)));
2081                }
2082    #endif
2083                if (rename(tmpname.c_str(), filename.c_str())) {
2084    #if defined(WIN32)
2085                    throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");
2086    #else
2087                    throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file): " + gig::String(strerror(errno)));
2088    #endif
2089                }
2090            }
2091        } else {
2092            gig->Save(filename, &progress);
2093        }
2094    }
2095    
2096    
2097    ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)
2098      : Gtk::Dialog(title, parent, true)      : Gtk::Dialog(title, parent, true)
2099  {  {
2100    #if USE_GTKMM_BOX
2101        get_content_area()->pack_start(progressBar);
2102    #else
2103      get_vbox()->pack_start(progressBar);      get_vbox()->pack_start(progressBar);
2104    #endif
2105    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2106      show_all_children();      show_all_children();
2107    #endif
2108        resize(600,50);
2109  }  }
2110    
2111  // Clear all GUI elements / controls. This method is typically called  // Clear all GUI elements / controls. This method is typically called
2112  // before a new .gig file is to be created or to be loaded.  // before a new .gig file is to be created or to be loaded.
2113  void MainWindow::__clear() {  void MainWindow::__clear() {
     // remove all entries from "Instrument" menu  
     Gtk::MenuItem* instrument_menu =  
         dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));  
     instrument_menu->hide();  
     Gtk::Menu* menu = instrument_menu->get_submenu();  
     while (menu->get_children().size()) {  
         Gtk::Widget* child = *menu->get_children().begin();  
         menu->remove(*child);  
         delete child;  
     }  
2114      // forget all samples that ought to be imported      // forget all samples that ought to be imported
2115      m_SampleImportQueue.clear();      m_SampleImportQueue.clear();
2116      // clear the samples and instruments tree views      // clear the samples and instruments tree views
2117      m_refTreeModel->clear();      m_refTreeModel->clear();
2118      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
2119        m_refScriptsTreeModel->clear();
2120    #if !USE_GTKMM_BUILDER
2121        // remove all entries from "Instrument" menu
2122        while (!instrument_menu->get_children().empty()) {
2123            remove_instrument_from_menu(0);
2124        }
2125    #endif
2126      // free libgig's gig::File instance      // free libgig's gig::File instance
2127      if (file && !file_is_shared) delete file;      if (file && !file_is_shared) delete file;
2128      file = NULL;      file = NULL;
2129      set_file_is_shared(false);      set_file_is_shared(false);
2130  }  }
2131    
2132    void MainWindow::__refreshEntireGUI() {
2133        // clear the samples and instruments tree views
2134        m_refTreeModel->clear();
2135        m_refSamplesTreeModel->clear();
2136        m_refScriptsTreeModel->clear();
2137    #if !USE_GTKMM_BUILDER
2138        // remove all entries from "Instrument" menu
2139        while (!instrument_menu->get_children().empty()) {
2140            remove_instrument_from_menu(0);
2141        }
2142    #endif
2143    
2144        if (!this->file) return;
2145    
2146        load_gig(
2147            this->file, this->file->pInfo->Name.c_str(), this->file_is_shared
2148        );
2149    }
2150    
2151  void MainWindow::on_action_file_new()  void MainWindow::on_action_file_new()
2152  {  {
2153      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;
# Line 571  void MainWindow::on_action_file_new() Line 2160  void MainWindow::on_action_file_new()
2160      gig::File* pFile = new gig::File;      gig::File* pFile = new gig::File;
2161      // already add one new instrument by default      // already add one new instrument by default
2162      gig::Instrument* pInstrument = pFile->AddInstrument();      gig::Instrument* pInstrument = pFile->AddInstrument();
2163      pInstrument->pInfo->Name = _("Unnamed Instrument");      pInstrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument"));
2164      // update GUI with that new gig::File      // update GUI with that new gig::File
2165      load_gig(pFile, 0 /*no file name yet*/);      load_gig(pFile, 0 /*no file name yet*/);
2166  }  }
# Line 584  bool MainWindow::close_confirmation_dial Line 2173  bool MainWindow::close_confirmation_dial
2173      g_free(msg);      g_free(msg);
2174      dialog.set_secondary_text(_("If you close without saving, your changes will be lost."));      dialog.set_secondary_text(_("If you close without saving, your changes will be lost."));
2175      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
2176    #if HAS_GTKMM_STOCK
2177      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2178      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);
2179    #else
2180        dialog.add_button(_("_OK"), Gtk::RESPONSE_OK);
2181        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2182    #endif
2183      dialog.set_default_response(Gtk::RESPONSE_YES);      dialog.set_default_response(Gtk::RESPONSE_YES);
2184      int response = dialog.run();      int response = dialog.run();
2185      dialog.hide();      dialog.hide();
2186      if (response == Gtk::RESPONSE_YES) return file_save();  
2187      return response != Gtk::RESPONSE_CANCEL;      // user decided to exit app without saving
2188        if (response == Gtk::RESPONSE_NO) return true;
2189    
2190        // user cancelled dialog, thus don't close app
2191        if (response == Gtk::RESPONSE_CANCEL) return false;
2192    
2193        // TODO: the following return valid is disabled and hard coded instead for
2194        // now, due to the fact that saving with progress bar is now implemented
2195        // asynchronously, as a result the app does not close automatically anymore
2196        // after saving the file has completed
2197        //
2198        //   if (response == Gtk::RESPONSE_YES) return file_save();
2199        //   return response != Gtk::RESPONSE_CANCEL;
2200        //
2201        if (response == Gtk::RESPONSE_YES) file_save();
2202        return false; // always prevent closing the app for now (see comment above)
2203  }  }
2204    
2205  bool MainWindow::leaving_shared_mode_dialog() {  bool MainWindow::leaving_shared_mode_dialog() {
# Line 601  bool MainWindow::leaving_shared_mode_dia Line 2210  bool MainWindow::leaving_shared_mode_dia
2210            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
2211            "load it."));            "load it."));
2212      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
2213    #if HAS_GTKMM_STOCK
2214      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2215    #else
2216        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2217    #endif
2218      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
2219      int response = dialog.run();      int response = dialog.run();
2220      dialog.hide();      dialog.hide();
# Line 615  void MainWindow::on_action_file_open() Line 2228  void MainWindow::on_action_file_open()
2228      if (file_is_shared && !leaving_shared_mode_dialog()) return;      if (file_is_shared && !leaving_shared_mode_dialog()) return;
2229    
2230      Gtk::FileChooserDialog dialog(*this, _("Open file"));      Gtk::FileChooserDialog dialog(*this, _("Open file"));
2231    #if HAS_GTKMM_STOCK
2232      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2233      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
2234    #else
2235        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2236        dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
2237    #endif
2238      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
2239  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2  #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
2240      Gtk::FileFilter filter;      Gtk::FileFilter filter;
# Line 630  void MainWindow::on_action_file_open() Line 2248  void MainWindow::on_action_file_open()
2248          dialog.set_current_folder(current_gig_dir);          dialog.set_current_folder(current_gig_dir);
2249      }      }
2250      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2251            dialog.hide();
2252          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
2253          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
2254          printf("on_action_file_open self=%x\n", Glib::Threads::Thread::self());  #ifdef GLIB_THREADS
2255            printf("on_action_file_open self=%p\n",
2256                   static_cast<void*>(Glib::Threads::Thread::self()));
2257    #else
2258            std::cout << "on_action_file_open self=" <<
2259                std::this_thread::get_id() << "\n";
2260    #endif
2261          load_file(filename.c_str());          load_file(filename.c_str());
2262          current_gig_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
2263      }      }
# Line 641  void MainWindow::on_action_file_open() Line 2266  void MainWindow::on_action_file_open()
2266  void MainWindow::load_file(const char* name)  void MainWindow::load_file(const char* name)
2267  {  {
2268      __clear();      __clear();
2269      load_dialog = new LoadDialog(_("Loading..."), *this);  
2270      load_dialog->show_all();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
2271      loader = new Loader(strdup(name));          _("Loading") +  Glib::ustring(" '") +
2272            Glib::filename_display_basename(name) + "' ...",
2273            *this
2274        );
2275    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2276        progress_dialog->show_all();
2277    #endif
2278        loader = new Loader(name); //FIXME: memory leak!
2279      loader->signal_progress().connect(      loader->signal_progress().connect(
2280          sigc::mem_fun(*this, &MainWindow::on_loader_progress));          sigc::mem_fun(*this, &MainWindow::on_loader_progress));
2281      loader->signal_finished().connect(      loader->signal_finished().connect(
2282          sigc::mem_fun(*this, &MainWindow::on_loader_finished));          sigc::mem_fun(*this, &MainWindow::on_loader_finished));
2283        loader->signal_error().connect(
2284            sigc::mem_fun(*this, &MainWindow::on_loader_error));
2285      loader->launch();      loader->launch();
2286  }  }
2287    
# Line 663  void MainWindow::load_instrument(gig::In Line 2297  void MainWindow::load_instrument(gig::In
2297      // load the instrument      // load the instrument
2298      gig::File* pFile = (gig::File*) instr->GetParent();      gig::File* pFile = (gig::File*) instr->GetParent();
2299      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);
2300      //TODO: automatically select the given instrument      // automatically select the given instrument
2301        int i = 0;
2302        for (gig::Instrument* instrument = pFile->GetFirstInstrument(); instrument;
2303             instrument = pFile->GetNextInstrument(), ++i)
2304        {
2305            if (instrument == instr) {
2306                // select item in "instruments" tree view
2307                m_TreeView.get_selection()->select(Gtk::TreePath(ToString(i)));
2308                // make sure the selected item in the "instruments" tree view is
2309                // visible (scroll to it)
2310                m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));
2311    #if !USE_GTKMM_BUILDER
2312                // select item in instrument menu
2313                {
2314                    const std::vector<Gtk::Widget*> children =
2315                        instrument_menu->get_children();
2316                    static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();
2317                }
2318    #endif
2319                // update region chooser and dimension region chooser
2320                m_RegionChooser.set_instrument(instr);
2321                break;
2322            }
2323        }
2324  }  }
2325    
2326  void MainWindow::on_loader_progress()  void MainWindow::on_loader_progress()
2327  {  {
2328      load_dialog->set_fraction(loader->get_progress());      progress_dialog->set_fraction(loader->get_progress());
2329  }  }
2330    
2331  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
2332  {  {
2333        loader->join();
2334      printf("Loader finished!\n");      printf("Loader finished!\n");
2335      printf("on_loader_finished self=%x\n", Glib::Threads::Thread::self());  #ifdef GLIB_THREADS
2336      load_gig(loader->gig, loader->filename);      printf("on_loader_finished self=%p\n",
2337      load_dialog->hide();             static_cast<void*>(Glib::Threads::Thread::self()));
2338    #else
2339        std::cout << "on_loader_finished self=" <<
2340            std::this_thread::get_id() << "\n";
2341    #endif
2342        load_gig(loader->gig, loader->filename.c_str());
2343        progress_dialog->hide();
2344    }
2345    
2346    void MainWindow::on_loader_error()
2347    {
2348        loader->join();
2349        Glib::ustring txt = _("Could not load file: ") + loader->error_message;
2350        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2351        msg.run();
2352        progress_dialog->hide();
2353  }  }
2354    
2355  void MainWindow::on_action_file_save()  void MainWindow::on_action_file_save()
# Line 715  bool MainWindow::file_save() Line 2388  bool MainWindow::file_save()
2388    
2389      std::cout << "Saving file\n" << std::flush;      std::cout << "Saving file\n" << std::flush;
2390      file_structure_to_be_changed_signal.emit(this->file);      file_structure_to_be_changed_signal.emit(this->file);
2391      try {  
2392          file->Save();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
2393          if (file_is_changed) {          _("Saving") +  Glib::ustring(" '") +
2394              set_title(get_title().substr(1));          Glib::filename_display_basename(this->filename) + "' ...",
2395              file_is_changed = false;          *this
2396          }      );
2397      } catch (RIFF::Exception e) {  #if HAS_GTKMM_SHOW_ALL_CHILDREN
2398          file_structure_changed_signal.emit(this->file);      progress_dialog->show_all();
2399          Glib::ustring txt = _("Could not save file: ") + e.Message;  #endif
2400          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);      saver = new Saver(this->file); //FIXME: memory leak!
2401          msg.run();      saver->signal_progress().connect(
2402          return false;          sigc::mem_fun(*this, &MainWindow::on_saver_progress));
2403      }      saver->signal_finished().connect(
2404      std::cout << "Saving file done\n" << std::flush;          sigc::mem_fun(*this, &MainWindow::on_saver_finished));
2405        saver->signal_error().connect(
2406            sigc::mem_fun(*this, &MainWindow::on_saver_error));
2407        saver->launch();
2408    
2409        return true;
2410    }
2411    
2412    void MainWindow::on_saver_progress()
2413    {
2414        progress_dialog->set_fraction(saver->get_progress());
2415    }
2416    
2417    void MainWindow::on_saver_error()
2418    {
2419        saver->join();
2420        file_structure_changed_signal.emit(this->file);
2421        Glib::ustring txt = _("Could not save file: ") + saver->error_message;
2422        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2423        msg.run();
2424    }
2425    
2426    void MainWindow::on_saver_finished()
2427    {
2428        saver->join();
2429        this->file = saver->gig;
2430        this->filename = saver->filename;
2431        current_gig_dir = Glib::path_get_dirname(filename);
2432        set_title(Glib::filename_display_basename(filename));
2433        file_has_name = true;
2434        file_is_changed = false;
2435        std::cout << "Saving file done. Importing queued samples now ...\n" << std::flush;
2436      __import_queued_samples();      __import_queued_samples();
2437        std::cout << "Importing queued samples done.\n" << std::flush;
2438    
2439      file_structure_changed_signal.emit(this->file);      file_structure_changed_signal.emit(this->file);
2440      return true;  
2441        __refreshEntireGUI();
2442        progress_dialog->hide();
2443  }  }
2444    
2445  void MainWindow::on_action_file_save_as()  void MainWindow::on_action_file_save_as()
# Line 743  void MainWindow::on_action_file_save_as( Line 2451  void MainWindow::on_action_file_save_as(
2451  bool MainWindow::file_save_as()  bool MainWindow::file_save_as()
2452  {  {
2453      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);
2454    #if HAS_GTKMM_STOCK
2455      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2456      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
2457    #else
2458        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2459        dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);
2460    #endif
2461      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
2462      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
2463    
# Line 773  bool MainWindow::file_save_as() Line 2486  bool MainWindow::file_save_as()
2486      }      }
2487    
2488      // show warning in the dialog      // show warning in the dialog
2489      Gtk::HBox descriptionArea;      HBox descriptionArea;
2490      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
2491      Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));      Gtk::Image warningIcon;
2492        warningIcon.set_from_icon_name("dialog-warning",
2493                                       Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
2494      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
2495  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
2496      view::WrapLabel description;      view::WrapLabel description;
# Line 792  bool MainWindow::file_save_as() Line 2507  bool MainWindow::file_save_as()
2507            "same .gig file will end up in corrupted sample wave data!\n")            "same .gig file will end up in corrupted sample wave data!\n")
2508      );      );
2509      descriptionArea.pack_start(description);      descriptionArea.pack_start(description);
2510    #if USE_GTKMM_BOX
2511        dialog.get_content_area()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2512    #else
2513      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2514    #endif
2515    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2516      descriptionArea.show_all();      descriptionArea.show_all();
2517    #endif
2518    
2519      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
2520          file_structure_to_be_changed_signal.emit(this->file);          dialog.hide();
2521          try {          std::string filename = dialog.get_filename();
2522              std::string filename = dialog.get_filename();          if (!Glib::str_has_suffix(filename, ".gig")) {
2523              if (!Glib::str_has_suffix(filename, ".gig")) {              filename += ".gig";
                 filename += ".gig";  
             }  
             printf("filename=%s\n", filename.c_str());  
             file->Save(filename);  
             this->filename = filename;  
             current_gig_dir = Glib::path_get_dirname(filename);  
             set_title(Glib::filename_display_basename(filename));  
             file_has_name = true;  
             file_is_changed = false;  
         } catch (RIFF::Exception e) {  
             file_structure_changed_signal.emit(this->file);  
             Glib::ustring txt = _("Could not save file: ") + e.Message;  
             Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);  
             msg.run();  
             return false;  
2524          }          }
2525          __import_queued_samples();          printf("filename=%s\n", filename.c_str());
2526          file_structure_changed_signal.emit(this->file);  
2527            progress_dialog = new ProgressDialog( //FIXME: memory leak!
2528                _("Saving") +  Glib::ustring(" '") +
2529                Glib::filename_display_basename(filename) + "' ...",
2530                *this
2531            );
2532    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2533            progress_dialog->show_all();
2534    #endif
2535    
2536            saver = new Saver(file, filename); //FIXME: memory leak!
2537            saver->signal_progress().connect(
2538                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
2539            saver->signal_finished().connect(
2540                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
2541            saver->signal_error().connect(
2542                sigc::mem_fun(*this, &MainWindow::on_saver_error));
2543            saver->launch();
2544    
2545          return true;          return true;
2546      }      }
2547      return false;      return false;
# Line 827  bool MainWindow::file_save_as() Line 2551  bool MainWindow::file_save_as()
2551  void MainWindow::__import_queued_samples() {  void MainWindow::__import_queued_samples() {
2552      std::cout << "Starting sample import\n" << std::flush;      std::cout << "Starting sample import\n" << std::flush;
2553      Glib::ustring error_files;      Glib::ustring error_files;
2554      printf("Samples to import: %d\n", m_SampleImportQueue.size());      printf("Samples to import: %d\n", int(m_SampleImportQueue.size()));
2555      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();      for (std::map<gig::Sample*, SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
2556           iter != m_SampleImportQueue.end(); ) {           iter != m_SampleImportQueue.end(); ) {
2557          printf("Importing sample %s\n",(*iter).sample_path.c_str());          printf("Importing sample %s\n",iter->second.sample_path.c_str());
2558          SF_INFO info;          SF_INFO info;
2559          info.format = 0;          info.format = 0;
2560          SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);          SNDFILE* hFile = sf_open(iter->second.sample_path.c_str(), SFM_READ, &info);
2561          sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);          sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);
2562          try {          try {
2563              if (!hFile) throw std::string(_("could not open file"));              if (!hFile) throw std::string(_("could not open file"));
# Line 856  void MainWindow::__import_queued_samples Line 2580  void MainWindow::__import_queued_samples
2580                      throw std::string(_("format not supported")); // unsupported subformat (yet?)                      throw std::string(_("format not supported")); // unsupported subformat (yet?)
2581              }              }
2582    
2583                // reset write position for sample
2584                iter->first->SetPos(0);
2585    
2586              const int bufsize = 10000;              const int bufsize = 10000;
2587              switch (bitdepth) {              switch (bitdepth) {
2588                  case 16: {                  case 16: {
# Line 865  void MainWindow::__import_queued_samples Line 2592  void MainWindow::__import_queued_samples
2592                          // libsndfile does the conversion for us (if needed)                          // libsndfile does the conversion for us (if needed)
2593                          int n = sf_readf_short(hFile, buffer, bufsize);                          int n = sf_readf_short(hFile, buffer, bufsize);
2594                          // write from buffer directly (physically) into .gig file                          // write from buffer directly (physically) into .gig file
2595                          iter->gig_sample->Write(buffer, n);                          iter->first->Write(buffer, n);
2596                          cnt -= n;                          cnt -= n;
2597                      }                      }
2598                      delete[] buffer;                      delete[] buffer;
# Line 885  void MainWindow::__import_queued_samples Line 2612  void MainWindow::__import_queued_samples
2612                              dstbuf[j++] = srcbuf[i] >> 24;                              dstbuf[j++] = srcbuf[i] >> 24;
2613                          }                          }
2614                          // write from buffer directly (physically) into .gig file                          // write from buffer directly (physically) into .gig file
2615                          iter->gig_sample->Write(dstbuf, n);                          iter->first->Write(dstbuf, n);
2616                          cnt -= n;                          cnt -= n;
2617                      }                      }
2618                      delete[] srcbuf;                      delete[] srcbuf;
# Line 896  void MainWindow::__import_queued_samples Line 2623  void MainWindow::__import_queued_samples
2623              // cleanup              // cleanup
2624              sf_close(hFile);              sf_close(hFile);
2625              // let the sampler re-cache the sample if needed              // let the sampler re-cache the sample if needed
2626              sample_changed_signal.emit(iter->gig_sample);              sample_changed_signal.emit(iter->first);
2627              // on success we remove the sample from the import queue,              // on success we remove the sample from the import queue,
2628              // otherwise keep it, maybe it works the next time ?              // otherwise keep it, maybe it works the next time ?
2629              std::list<SampleImportItem>::iterator cur = iter;              std::map<gig::Sample*, SampleImportItem>::iterator cur = iter;
2630              ++iter;              ++iter;
2631              m_SampleImportQueue.erase(cur);              m_SampleImportQueue.erase(cur);
2632          } catch (std::string what) {          } catch (std::string what) {
2633              // remember the files that made trouble (and their cause)              // remember the files that made trouble (and their cause)
2634              if (error_files.size()) error_files += "\n";              if (!error_files.empty()) error_files += "\n";
2635              error_files += (*iter).sample_path += " (" + what + ")";              error_files += iter->second.sample_path += " (" + what + ")";
2636              ++iter;              ++iter;
2637          }          }
2638      }      }
2639      // show error message box when some sample(s) could not be imported      // show error message box when some sample(s) could not be imported
2640      if (error_files.size()) {      if (!error_files.empty()) {
2641          Glib::ustring txt = _("Could not import the following sample(s):\n") + error_files;          Glib::ustring txt = _("Could not import the following sample(s):\n") + error_files;
2642          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2643          msg.run();          msg.run();
# Line 919  void MainWindow::__import_queued_samples Line 2646  void MainWindow::__import_queued_samples
2646    
2647  void MainWindow::on_action_file_properties()  void MainWindow::on_action_file_properties()
2648  {  {
2649      propDialog.show();      fileProps.show();
2650      propDialog.deiconify();      fileProps.deiconify();
2651    }
2652    
2653    void MainWindow::on_action_warn_user_on_extensions() {
2654        Settings::singleton()->warnUserOnExtensions =
2655            !Settings::singleton()->warnUserOnExtensions;
2656    }
2657    
2658    void MainWindow::on_action_show_tooltips() {
2659        Settings::singleton()->showTooltips =
2660            !Settings::singleton()->showTooltips;
2661    
2662        on_show_tooltips_changed();
2663    }
2664    
2665    void MainWindow::on_show_tooltips_changed() {
2666        const bool b = Settings::singleton()->showTooltips;
2667    
2668        dimreg_label.set_has_tooltip(b);
2669        dimreg_all_regions.set_has_tooltip(b);
2670        dimreg_all_dimregs.set_has_tooltip(b);
2671        dimreg_stereo.set_has_tooltip(b);
2672    
2673        // Not doing this here, we let onQueryTreeViewTooltip() handle this per cell
2674        //m_TreeView.set_has_tooltip(b);
2675    
2676        m_TreeViewSamples.set_has_tooltip(b);
2677        m_TreeViewScripts.set_has_tooltip(b);
2678    
2679        set_has_tooltip(b);
2680    }
2681    
2682    void MainWindow::on_action_sync_sampler_instrument_selection() {
2683        Settings::singleton()->syncSamplerInstrumentSelection =
2684            !Settings::singleton()->syncSamplerInstrumentSelection;
2685    }
2686    
2687    void MainWindow::on_action_move_root_note_with_region_moved() {
2688        Settings::singleton()->moveRootNoteWithRegionMoved =
2689            !Settings::singleton()->moveRootNoteWithRegionMoved;
2690  }  }
2691    
2692  void MainWindow::on_action_help_about()  void MainWindow::on_action_help_about()
# Line 932  void MainWindow::on_action_help_about() Line 2698  void MainWindow::on_action_help_about()
2698      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
2699  #endif  #endif
2700      dialog.set_version(VERSION);      dialog.set_version(VERSION);
2701      dialog.set_copyright("Copyright (C) 2006-2013 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2019 Andreas Persson");
2702      dialog.set_comments(_(      const std::string sComment =
2703          "Released under the GNU General Public License.\n"          _("Built " __DATE__ "\nUsing ") +
2704          "\n"          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
2705          "Please notice that this is still a very young instrument editor. "          _(
2706          "So better backup your Gigasampler files before editing them with "              "Gigedit is released under the GNU General Public License.\n"
2707          "this application.\n"              "\n"
2708          "\n"              "This program is distributed WITHOUT ANY WARRANTY; So better "
2709          "Please report bugs to: http://bugs.linuxsampler.org")              "backup your Gigasampler/GigaStudio files before editing them with "
2710      );              "this application.\n"
2711      dialog.set_website("http://www.linuxsampler.org");              "\n"
2712      dialog.set_website_label("http://www.linuxsampler.org");              "Please report bugs to: https://bugs.linuxsampler.org"
2713            );
2714        dialog.set_comments(sComment.c_str());
2715        dialog.set_website("https://www.linuxsampler.org");
2716        dialog.set_website_label("https://www.linuxsampler.org");
2717        dialog.set_position(Gtk::WIN_POS_CENTER);
2718      dialog.run();      dialog.run();
2719  }  }
2720    
2721  PropDialog::PropDialog()  FilePropDialog::FilePropDialog()
2722      : eName(_("Name")),      : eFileFormat(_("File Format")),
2723          eName(_("Name")),
2724        eCreationDate(_("Creation date")),        eCreationDate(_("Creation date")),
2725        eComments(_("Comments")),        eComments(_("Comments")),
2726        eProduct(_("Product")),        eProduct(_("Product")),
# Line 964  PropDialog::PropDialog() Line 2736  PropDialog::PropDialog()
2736        eSourceForm(_("Source form")),        eSourceForm(_("Source form")),
2737        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
2738        eSubject(_("Subject")),        eSubject(_("Subject")),
2739    #if HAS_GTKMM_STOCK
2740        quitButton(Gtk::Stock::CLOSE),        quitButton(Gtk::Stock::CLOSE),
2741    #else
2742          quitButton(_("_Close")),
2743    #endif
2744        table(2, 1),        table(2, 1),
2745        update_model(0)        m_file(NULL)
2746  {  {
2747        if (!Settings::singleton()->autoRestoreWindowDimension) {
2748            set_default_size(470, 390);
2749            set_position(Gtk::WIN_POS_MOUSE);
2750        }
2751    
2752      set_title(_("File Properties"));      set_title(_("File Properties"));
2753      eName.set_width_chars(50);      eName.set_width_chars(50);
2754    
2755        connect(eFileFormat, &FilePropDialog::set_FileFormat);
2756      connect(eName, &DLS::Info::Name);      connect(eName, &DLS::Info::Name);
2757      connect(eCreationDate, &DLS::Info::CreationDate);      connect(eCreationDate, &DLS::Info::CreationDate);
2758      connect(eComments, &DLS::Info::Comments);      connect(eComments, &DLS::Info::Comments);
# Line 988  PropDialog::PropDialog() Line 2770  PropDialog::PropDialog()
2770      connect(eCommissioned, &DLS::Info::Commissioned);      connect(eCommissioned, &DLS::Info::Commissioned);
2771      connect(eSubject, &DLS::Info::Subject);      connect(eSubject, &DLS::Info::Subject);
2772    
2773        table.add(eFileFormat);
2774      table.add(eName);      table.add(eName);
2775      table.add(eCreationDate);      table.add(eCreationDate);
2776      table.add(eComments);      table.add(eComments);
# Line 1005  PropDialog::PropDialog() Line 2788  PropDialog::PropDialog()
2788      table.add(eCommissioned);      table.add(eCommissioned);
2789      table.add(eSubject);      table.add(eSubject);
2790    
2791    #if USE_GTKMM_GRID
2792        table.set_column_spacing(5);
2793    #else
2794      table.set_col_spacings(5);      table.set_col_spacings(5);
2795    #endif
2796    
2797      add(vbox);      add(vbox);
2798    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2799        table.set_margin(5);
2800    #else
2801      table.set_border_width(5);      table.set_border_width(5);
2802    #endif
2803      vbox.add(table);      vbox.add(table);
2804      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
2805      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
2806    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2807        buttonBox.set_margin(5);
2808    #else
2809      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
2810    #endif
2811      buttonBox.show();      buttonBox.show();
2812      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
2813      quitButton.set_can_default();      quitButton.set_can_default();
2814      quitButton.grab_focus();      quitButton.grab_focus();
2815      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
2816          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &FilePropDialog::hide));
2817    
2818      quitButton.show();      quitButton.show();
2819      vbox.show();      vbox.show();
2820    #if HAS_GTKMM_SHOW_ALL_CHILDREN
2821      show_all_children();      show_all_children();
2822    #endif
2823  }  }
2824    
2825  void PropDialog::set_info(DLS::Info* info)  void FilePropDialog::set_file(gig::File* file)
2826  {  {
2827      this->info = info;      m_file = file;
2828        update(file->pInfo);
2829    
2830        // update file format version combo box
2831        const std::string sGiga = "Gigasampler/GigaStudio v";
2832        const int major = file->pVersion->major;
2833        std::vector<std::string> txts;
2834        std::vector<int> values;
2835        txts.push_back(sGiga + "2"); values.push_back(2);
2836        txts.push_back(sGiga + "3"); values.push_back(3);
2837        txts.push_back(sGiga + "4"); values.push_back(4);
2838        if (major < 2 || major > 4) {
2839            txts.push_back(sGiga + ToString(major)); values.push_back(major);
2840        }
2841        std::vector<const char*> texts;
2842        for (int i = 0; i < txts.size(); ++i) texts.push_back(txts[i].c_str());
2843        texts.push_back(NULL); values.push_back(0);
2844    
2845      update_model++;      update_model++;
2846      eName.set_value(info->Name);      eFileFormat.set_choices(&texts[0], &values[0]);
2847      eCreationDate.set_value(info->CreationDate);      eFileFormat.set_value(major);
     eComments.set_value(info->Comments);  
     eProduct.set_value(info->Product);  
     eCopyright.set_value(info->Copyright);  
     eArtists.set_value(info->Artists);  
     eGenre.set_value(info->Genre);  
     eKeywords.set_value(info->Keywords);  
     eEngineer.set_value(info->Engineer);  
     eTechnician.set_value(info->Technician);  
     eSoftware.set_value(info->Software);  
     eMedium.set_value(info->Medium);  
     eSource.set_value(info->Source);  
     eSourceForm.set_value(info->SourceForm);  
     eCommissioned.set_value(info->Commissioned);  
     eSubject.set_value(info->Subject);  
2848      update_model--;      update_model--;
2849  }  }
2850    
2851  sigc::signal<void>& PropDialog::signal_info_changed()  void FilePropDialog::set_FileFormat(int value)
2852  {  {
2853      return info_changed;      m_file->pVersion->major = value;
2854  }  }
2855    
2856  void InstrumentProps::set_IsDrum(bool value)  
2857    void InstrumentProps::set_Name(const gig::String& name)
2858  {  {
2859      instrument->IsDrum = value;      m->pInfo->Name = name;
2860  }  }
2861    
2862  void InstrumentProps::set_MIDIBank(uint16_t value)  void InstrumentProps::update_name()
2863  {  {
2864      instrument->MIDIBank = value;      update_model++;
2865        eName.set_value(m->pInfo->Name);
2866        update_model--;
2867  }  }
2868    
2869  void InstrumentProps::set_MIDIProgram(uint32_t value)  void InstrumentProps::set_IsDrum(bool value)
2870  {  {
2871      instrument->MIDIProgram = value;      m->IsDrum = value;
2872  }  }
2873    
2874  void InstrumentProps::set_DimensionKeyRange_low(uint8_t value)  void InstrumentProps::set_MIDIBank(uint16_t value)
2875  {  {
2876      instrument->DimensionKeyRange.low = value;      m->MIDIBank = value;
     if (value > instrument->DimensionKeyRange.high) {  
         eDimensionKeyRangeHigh.set_value(value);  
     }  
2877  }  }
2878    
2879  void InstrumentProps::set_DimensionKeyRange_high(uint8_t value)  void InstrumentProps::set_MIDIProgram(uint32_t value)
2880  {  {
2881      instrument->DimensionKeyRange.high = value;      m->MIDIProgram = value;
     if (value < instrument->DimensionKeyRange.low) {  
         eDimensionKeyRangeLow.set_value(value);  
     }  
2882  }  }
2883    
2884  InstrumentProps::InstrumentProps()  InstrumentProps::InstrumentProps() :
2885      : update_model(0),  #if HAS_GTKMM_STOCK
2886        quitButton(Gtk::Stock::CLOSE),      quitButton(Gtk::Stock::CLOSE),
2887        table(2,1),  #else
2888        eName(_("Name")),      quitButton(_("_Close")),
2889        eIsDrum(_("Is drum")),  #endif
2890        eMIDIBank(_("MIDI bank"), 0, 16383),      table(2,1),
2891        eMIDIProgram(_("MIDI program")),      eName(_("Name")),
2892        eAttenuation(_("Attenuation"), 0, 96, 0, 1),      eIsDrum(_("Is drum")),
2893        eGainPlus6(_("Gain +6dB"), eAttenuation, -6),      eMIDIBank(_("MIDI bank"), 0, 16383),
2894        eEffectSend(_("Effect send"), 0, 65535),      eMIDIProgram(_("MIDI program")),
2895        eFineTune(_("Fine tune"), -8400, 8400),      eAttenuation(_("Attenuation (dB)"), -96, +96, 0, 1),
2896        ePitchbendRange(_("Pitchbend range"), 0, 12),      eEffectSend(_("Effect send"), 0, 65535),
2897        ePianoReleaseMode(_("Piano release mode")),      eFineTune(_("Fine tune"), -8400, 8400),
2898        eDimensionKeyRangeLow(_("Keyswitching range low")),      ePitchbendRange(_("Pitchbend range (halftones)"), 0, 48),
2899        eDimensionKeyRangeHigh(_("Keyswitching range high"))      ePianoReleaseMode(_("Piano release mode")),
2900  {      eDimensionKeyRangeLow(_("Keyswitching range low")),
2901        eDimensionKeyRangeHigh(_("Keyswitching range high")),
2902        table2(2,1),
2903        eName2(_("Name")),
2904        eCreationDate(_("Creation date")),
2905        eComments(_("Comments")),
2906        eProduct(_("Product")),
2907        eCopyright(_("Copyright")),
2908        eArtists(_("Artists")),
2909        eGenre(_("Genre")),
2910        eKeywords(_("Keywords")),
2911        eEngineer(_("Engineer")),
2912        eTechnician(_("Technician")),
2913        eSoftware(_("Software")),
2914        eMedium(_("Medium")),
2915        eSource(_("Source")),
2916        eSourceForm(_("Source form")),
2917        eCommissioned(_("Commissioned")),
2918        eSubject(_("Subject"))
2919    {
2920        if (!Settings::singleton()->autoRestoreWindowDimension) {
2921            //set_default_size(470, 390);
2922            set_position(Gtk::WIN_POS_MOUSE);
2923        }
2924    
2925      set_title(_("Instrument Properties"));      set_title(_("Instrument Properties"));
2926    
2927        tabs.append_page(vbox[1], _("Settings"));
2928        tabs.append_page(vbox[2], _("Info"));
2929    
2930      eDimensionKeyRangeLow.set_tip(      eDimensionKeyRangeLow.set_tip(
2931          _("start of the keyboard area which should switch the "          _("start of the keyboard area which should switch the "
2932            "\"keyswitching\" dimension")            "\"keyswitching\" dimension")
# Line 1111  InstrumentProps::InstrumentProps() Line 2936  InstrumentProps::InstrumentProps()
2936            "\"keyswitching\" dimension")            "\"keyswitching\" dimension")
2937      );      );
2938    
2939        connect(eName, &InstrumentProps::set_Name);
2940      connect(eIsDrum, &InstrumentProps::set_IsDrum);      connect(eIsDrum, &InstrumentProps::set_IsDrum);
2941      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);      connect(eMIDIBank, &InstrumentProps::set_MIDIBank);
2942      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);      connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);
2943      connect(eAttenuation, &gig::Instrument::Attenuation);      connect(eAttenuation, &gig::Instrument::Attenuation);
     connect(eGainPlus6, &gig::Instrument::Attenuation);  
2944      connect(eEffectSend, &gig::Instrument::EffectSend);      connect(eEffectSend, &gig::Instrument::EffectSend);
2945      connect(eFineTune, &gig::Instrument::FineTune);      connect(eFineTune, &gig::Instrument::FineTune);
2946      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);      connect(ePitchbendRange, &gig::Instrument::PitchbendRange);
2947      connect(ePianoReleaseMode, &gig::Instrument::PianoReleaseMode);      connect(ePianoReleaseMode, &gig::Instrument::PianoReleaseMode);
2948      connect(eDimensionKeyRangeLow,      connect(eDimensionKeyRangeLow, eDimensionKeyRangeHigh,
2949              &InstrumentProps::set_DimensionKeyRange_low);              &gig::Instrument::DimensionKeyRange);
     connect(eDimensionKeyRangeHigh,  
             &InstrumentProps::set_DimensionKeyRange_high);  
2950    
2951      table.set_col_spacings(5);      eName.signal_value_changed().connect(sig_name_changed.make_slot());
2952    
2953        connect(eName2, &InstrumentProps::set_Name);
2954        connectLambda(eCreationDate, [this](gig::String s) {
2955            m->pInfo->CreationDate = s;
2956        });
2957        connectLambda(eComments, [this](gig::String s) {
2958            m->pInfo->Comments = s;
2959        });
2960        connectLambda(eProduct, [this](gig::String s) {
2961            m->pInfo->Product = s;
2962        });
2963        connectLambda(eCopyright, [this](gig::String s) {
2964            m->pInfo->Copyright = s;
2965        });
2966        connectLambda(eArtists, [this](gig::String s) {
2967            m->pInfo->Artists = s;
2968        });
2969        connectLambda(eGenre, [this](gig::String s) {
2970            m->pInfo->Genre = s;
2971        });
2972        connectLambda(eKeywords, [this](gig::String s) {
2973            m->pInfo->Keywords = s;
2974        });
2975        connectLambda(eEngineer, [this](gig::String s) {
2976            m->pInfo->Engineer = s;
2977        });
2978        connectLambda(eTechnician, [this](gig::String s) {
2979            m->pInfo->Technician = s;
2980        });
2981        connectLambda(eSoftware, [this](gig::String s) {
2982            m->pInfo->Software = s;
2983        });
2984        connectLambda(eMedium, [this](gig::String s) {
2985            m->pInfo->Medium = s;
2986        });
2987        connectLambda(eSource, [this](gig::String s) {
2988            m->pInfo->Source = s;
2989        });
2990        connectLambda(eSourceForm, [this](gig::String s) {
2991            m->pInfo->SourceForm = s;
2992        });
2993        connectLambda(eCommissioned, [this](gig::String s) {
2994            m->pInfo->Commissioned = s;
2995        });
2996        connectLambda(eSubject, [this](gig::String s) {
2997            m->pInfo->Subject = s;
2998        });
2999    
3000        // tab 1
3001    #if USE_GTKMM_GRID
3002        table.set_column_spacing(5);
3003    #else
3004        table.set_col_spacings(5);
3005    #endif
3006      table.add(eName);      table.add(eName);
3007      table.add(eIsDrum);      table.add(eIsDrum);
3008      table.add(eMIDIBank);      table.add(eMIDIBank);
3009      table.add(eMIDIProgram);      table.add(eMIDIProgram);
3010      table.add(eAttenuation);      table.add(eAttenuation);
     table.add(eGainPlus6);  
3011      table.add(eEffectSend);      table.add(eEffectSend);
3012      table.add(eFineTune);      table.add(eFineTune);
3013      table.add(ePitchbendRange);      table.add(ePitchbendRange);
# Line 1140  InstrumentProps::InstrumentProps() Line 3015  InstrumentProps::InstrumentProps()
3015      table.add(eDimensionKeyRangeLow);      table.add(eDimensionKeyRangeLow);
3016      table.add(eDimensionKeyRangeHigh);      table.add(eDimensionKeyRangeHigh);
3017    
3018      add(vbox);      // tab 2
3019    #if USE_GTKMM_GRID
3020        table2.set_column_spacing(5);
3021    #else
3022        table2.set_col_spacings(5);
3023    #endif
3024        table2.add(eName2);
3025        table2.add(eCreationDate);
3026        table2.add(eComments);
3027        table2.add(eProduct);
3028        table2.add(eCopyright);
3029        table2.add(eArtists);
3030        table2.add(eGenre);
3031        table2.add(eKeywords);
3032        table2.add(eEngineer);
3033        table2.add(eTechnician);
3034        table2.add(eSoftware);
3035        table2.add(eMedium);
3036        table2.add(eSource);
3037        table2.add(eSourceForm);
3038        table2.add(eCommissioned);
3039        table2.add(eSubject);
3040    
3041        add(vbox[0]);
3042    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3043        table.set_margin(5);
3044    #else
3045      table.set_border_width(5);      table.set_border_width(5);
3046      vbox.pack_start(table);  #endif
3047        vbox[1].pack_start(table);
3048        vbox[2].pack_start(table2);
3049      table.show();      table.show();
3050      vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);      table2.show();
3051        vbox[0].pack_start(tabs);
3052        vbox[0].pack_start(buttonBox, Gtk::PACK_SHRINK);
3053      buttonBox.set_layout(Gtk::BUTTONBOX_END);      buttonBox.set_layout(Gtk::BUTTONBOX_END);
3054    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3055        buttonBox.set_margin(5);
3056    #else
3057      buttonBox.set_border_width(5);      buttonBox.set_border_width(5);
3058    #endif
3059      buttonBox.show();      buttonBox.show();
3060      buttonBox.pack_start(quitButton);      buttonBox.pack_start(quitButton);
3061      quitButton.set_can_default();      quitButton.set_can_default();
# Line 1156  InstrumentProps::InstrumentProps() Line 3065  InstrumentProps::InstrumentProps()
3065          sigc::mem_fun(*this, &InstrumentProps::hide));          sigc::mem_fun(*this, &InstrumentProps::hide));
3066    
3067      quitButton.show();      quitButton.show();
3068      vbox.show();      vbox[0].show();
3069    #if HAS_GTKMM_SHOW_ALL_CHILDREN
3070      show_all_children();      show_all_children();
3071    #endif
3072  }  }
3073    
3074  void InstrumentProps::set_instrument(gig::Instrument* instrument)  void InstrumentProps::set_instrument(gig::Instrument* instrument)
3075  {  {
3076      this->instrument = instrument;      update(instrument);
3077    
3078      update_model++;      update_model++;
3079    
3080        // tab 1
3081      eName.set_value(instrument->pInfo->Name);      eName.set_value(instrument->pInfo->Name);
3082      eIsDrum.set_value(instrument->IsDrum);      eIsDrum.set_value(instrument->IsDrum);
3083      eMIDIBank.set_value(instrument->MIDIBank);      eMIDIBank.set_value(instrument->MIDIBank);
3084      eMIDIProgram.set_value(instrument->MIDIProgram);      eMIDIProgram.set_value(instrument->MIDIProgram);
3085      eAttenuation.set_value(instrument->Attenuation);      // tab 2
3086      eGainPlus6.set_value(instrument->Attenuation);      eName2.set_value(instrument->pInfo->Name);
3087      eEffectSend.set_value(instrument->EffectSend);      eCreationDate.set_value(instrument->pInfo->CreationDate);
3088      eFineTune.set_value(instrument->FineTune);      eComments.set_value(instrument->pInfo->Comments);
3089      ePitchbendRange.set_value(instrument->PitchbendRange);      eProduct.set_value(instrument->pInfo->Product);
3090      ePianoReleaseMode.set_value(instrument->PianoReleaseMode);      eCopyright.set_value(instrument->pInfo->Copyright);
3091      eDimensionKeyRangeLow.set_value(instrument->DimensionKeyRange.low);      eArtists.set_value(instrument->pInfo->Artists);
3092      eDimensionKeyRangeHigh.set_value(instrument->DimensionKeyRange.high);      eGenre.set_value(instrument->pInfo->Genre);
3093        eKeywords.set_value(instrument->pInfo->Keywords);
3094        eEngineer.set_value(instrument->pInfo->Engineer);
3095        eTechnician.set_value(instrument->pInfo->Technician);
3096        eSoftware.set_value(instrument->pInfo->Software);
3097        eMedium.set_value(instrument->pInfo->Medium);
3098        eSource.set_value(instrument->pInfo->Source);
3099        eSourceForm.set_value(instrument->pInfo->SourceForm);
3100        eCommissioned.set_value(instrument->pInfo->Commissioned);
3101        eSubject.set_value(instrument->pInfo->Subject);
3102    
3103        update_model--;
3104    }
3105    
3106    
3107    SampleProps::SampleProps() :
3108    #if HAS_GTKMM_STOCK
3109        quitButton(Gtk::Stock::CLOSE),
3110    #else
3111        quitButton(_("_Close")),
3112    #endif
3113        table(2,1),
3114        eName(_("Name")),
3115        eUnityNote(_("Unity Note")),
3116        eSampleGroup(_("Sample Group")),
3117        eSampleFormatInfo(_("Sample Format")),
3118        eSampleID("Sample ID"),
3119        eChecksum("Wave Data CRC-32"),
3120        eLoopsCount(_("Loops"), 0, 1), // we might support more than 1 loop in future
3121        eLoopStart(_("Loop start position"), 0, 9999999),
3122        eLoopLength(_("Loop size"), 0, 9999999),
3123        eLoopType(_("Loop type")),
3124        eLoopPlayCount(_("Playback count")),
3125        table2(2,1),
3126        eName2(_("Name")),
3127        eCreationDate(_("Creation date")),
3128        eComments(_("Comments")),
3129        eProduct(_("Product")),
3130        eCopyright(_("Copyright")),
3131        eArtists(_("Artists")),
3132        eGenre(_("Genre")),
3133        eKeywords(_("Keywords")),
3134        eEngineer(_("Engineer")),
3135        eTechnician(_("Technician")),
3136        eSoftware(_("Software")),
3137        eMedium(_("Medium")),
3138        eSource(_("Source")),
3139        eSourceForm(_("Source form")),
3140        eCommissioned(_("Commissioned")),
3141        eSubject(_("Subject"))
3142    {
3143        if (!Settings::singleton()->autoRestoreWindowDimension) {
3144            //set_default_size(470, 390);
3145            set_position(Gtk::WIN_POS_MOUSE);
3146        }
3147    
3148        set_title(_("Sample Properties"));
3149    
3150        tabs.append_page(vbox[1], _("Settings"));
3151        tabs.append_page(vbox[2], _("Info"));
3152    
3153        connect(eName, &SampleProps::set_Name);
3154        connect(eUnityNote, &gig::Sample::MIDIUnityNote);
3155        connect(eLoopsCount, &gig::Sample::Loops);
3156        connectLambda(eLoopStart, [this](uint32_t start){
3157            m->LoopStart = start;
3158            m->LoopEnd = start + m->LoopSize;
3159        });
3160        connectLambda(eLoopLength, [this](uint32_t length){
3161            m->LoopSize = length;
3162            m->LoopEnd = m->LoopStart + length;
3163        });
3164        {
3165            const char* choices[] = { _("normal"), _("bidirectional"), _("backward"), 0 };
3166            static const gig::loop_type_t values[] = {
3167                gig::loop_type_normal,
3168                gig::loop_type_bidirectional,
3169                gig::loop_type_backward
3170            };
3171            eLoopType.set_choices(choices, values);
3172        }
3173        connect(eLoopType, &gig::Sample::LoopType);
3174        connect(eLoopPlayCount, &gig::Sample::LoopPlayCount);
3175    
3176        eName.signal_value_changed().connect(sig_name_changed.make_slot());
3177    
3178        connect(eName2, &SampleProps::set_Name);
3179        connectLambda(eCreationDate, [this](gig::String s) {
3180            m->pInfo->CreationDate = s;
3181        });
3182        connectLambda(eComments, [this](gig::String s) {
3183            m->pInfo->Comments = s;
3184        });
3185        connectLambda(eProduct, [this](gig::String s) {
3186            m->pInfo->Product = s;
3187        });
3188        connectLambda(eCopyright, [this](gig::String s) {
3189            m->pInfo->Copyright = s;
3190        });
3191        connectLambda(eArtists, [this](gig::String s) {
3192            m->pInfo->Artists = s;
3193        });
3194        connectLambda(eGenre, [this](gig::String s) {
3195            m->pInfo->Genre = s;
3196        });
3197        connectLambda(eKeywords, [this](gig::String s) {
3198            m->pInfo->Keywords = s;
3199        });
3200        connectLambda(eEngineer, [this](gig::String s) {
3201            m->pInfo->Engineer = s;
3202        });
3203        connectLambda(eTechnician, [this](gig::String s) {
3204            m->pInfo->Technician = s;
3205        });
3206        connectLambda(eSoftware, [this](gig::String s) {
3207            m->pInfo->Software = s;
3208        });
3209        connectLambda(eMedium, [this](gig::String s) {
3210            m->pInfo->Medium = s;
3211        });
3212        connectLambda(eSource, [this](gig::String s) {
3213            m->pInfo->Source = s;
3214        });
3215        connectLambda(eSourceForm, [this](gig::String s) {
3216            m->pInfo->SourceForm = s;
3217        });
3218        connectLambda(eCommissioned, [this](gig::String s) {
3219            m->pInfo->Commissioned = s;
3220        });
3221        connectLambda(eSubject, [this](gig::String s) {
3222            m->pInfo->Subject = s;
3223        });
3224    
3225        // tab 1
3226    #if USE_GTKMM_GRID
3227        table.set_column_spacing(5);
3228    #else
3229        table.set_col_spacings(5);
3230    #endif
3231        table.add(eName);
3232        table.add(eUnityNote);
3233        table.add(eSampleGroup);
3234        table.add(eSampleFormatInfo);
3235        table.add(eSampleID);
3236        table.add(eChecksum);
3237        table.add(eLoopsCount);
3238        table.add(eLoopStart);
3239        table.add(eLoopLength);
3240        table.add(eLoopType);
3241        table.add(eLoopPlayCount);
3242    
3243        // tab 2
3244    #if USE_GTKMM_GRID
3245        table2.set_column_spacing(5);
3246    #else
3247        table2.set_col_spacings(5);
3248    #endif
3249        table2.add(eName2);
3250        table2.add(eCreationDate);
3251        table2.add(eComments);
3252        table2.add(eProduct);
3253        table2.add(eCopyright);
3254        table2.add(eArtists);
3255        table2.add(eGenre);
3256        table2.add(eKeywords);
3257        table2.add(eEngineer);
3258        table2.add(eTechnician);
3259        table2.add(eSoftware);
3260        table2.add(eMedium);
3261        table2.add(eSource);
3262        table2.add(eSourceForm);
3263        table2.add(eCommissioned);
3264        table2.add(eSubject);
3265    
3266        add(vbox[0]);
3267    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3268        table.set_margin(5);
3269    #else
3270        table.set_border_width(5);
3271    #endif
3272        vbox[1].pack_start(table);
3273        vbox[2].pack_start(table2);
3274        table.show();
3275        table2.show();
3276        vbox[0].pack_start(tabs);
3277        vbox[0].pack_start(buttonBox, Gtk::PACK_SHRINK);
3278        buttonBox.set_layout(Gtk::BUTTONBOX_END);
3279    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3280        buttonBox.set_margin(5);
3281    #else
3282        buttonBox.set_border_width(5);
3283    #endif
3284        buttonBox.show();
3285        buttonBox.pack_start(quitButton);
3286        quitButton.set_can_default();
3287        quitButton.grab_focus();
3288    
3289        quitButton.signal_clicked().connect(
3290            sigc::mem_fun(*this, &SampleProps::hide));
3291    
3292        quitButton.show();
3293        vbox[0].show();
3294    #if HAS_GTKMM_SHOW_ALL_CHILDREN
3295        show_all_children();
3296    #endif
3297    }
3298    
3299    void SampleProps::set_sample(gig::Sample* sample)
3300    {
3301        update(sample);
3302    
3303        update_model++;
3304    
3305        // tab 1
3306        eName.set_value(sample->pInfo->Name);
3307        eUnityNote.set_value(sample->MIDIUnityNote);
3308        // show sample group name
3309        {
3310            Glib::ustring s = "---";
3311            if (sample && sample->GetGroup())
3312                s = sample->GetGroup()->Name;
3313            eSampleGroup.text.set_text(s);
3314        }
3315        // assemble sample format info string
3316        {
3317            Glib::ustring s;
3318            if (sample) {
3319                switch (sample->Channels) {
3320                    case 1: s = _("Mono"); break;
3321                    case 2: s = _("Stereo"); break;
3322                    default:
3323                        s = ToString(sample->Channels) + _(" audio channels");
3324                        break;
3325                }
3326                s += " " + ToString(sample->BitDepth) + " Bits";
3327                s += " " + ToString(sample->SamplesPerSecond/1000) + "."
3328                         + ToString((sample->SamplesPerSecond%1000)/100) + " kHz";
3329            } else {
3330                s = _("No sample assigned to this dimension region.");
3331            }
3332            eSampleFormatInfo.text.set_text(s);
3333        }
3334        // generate sample's memory address pointer string
3335        {
3336            Glib::ustring s;
3337            if (sample) {
3338                char buf[64] = {};
3339                snprintf(buf, sizeof(buf), "%p", sample);
3340                s = buf;
3341            } else {
3342                s = "---";
3343            }
3344            eSampleID.text.set_text(s);
3345        }
3346        // generate raw wave form data CRC-32 checksum string
3347        {
3348            Glib::ustring s = "---";
3349            if (sample) {
3350                char buf[64] = {};
3351                snprintf(buf, sizeof(buf), "%x", sample->GetWaveDataCRC32Checksum());
3352                s = buf;
3353            }
3354            eChecksum.text.set_text(s);
3355        }
3356        eLoopsCount.set_value(sample->Loops);
3357        eLoopStart.set_value(sample->LoopStart);
3358        eLoopLength.set_value(sample->LoopSize);
3359        eLoopType.set_value(sample->LoopType);
3360        eLoopPlayCount.set_value(sample->LoopPlayCount);
3361        // tab 2
3362        eName2.set_value(sample->pInfo->Name);
3363        eCreationDate.set_value(sample->pInfo->CreationDate);
3364        eComments.set_value(sample->pInfo->Comments);
3365        eProduct.set_value(sample->pInfo->Product);
3366        eCopyright.set_value(sample->pInfo->Copyright);
3367        eArtists.set_value(sample->pInfo->Artists);
3368        eGenre.set_value(sample->pInfo->Genre);
3369        eKeywords.set_value(sample->pInfo->Keywords);
3370        eEngineer.set_value(sample->pInfo->Engineer);
3371        eTechnician.set_value(sample->pInfo->Technician);
3372        eSoftware.set_value(sample->pInfo->Software);
3373        eMedium.set_value(sample->pInfo->Medium);
3374        eSource.set_value(sample->pInfo->Source);
3375        eSourceForm.set_value(sample->pInfo->SourceForm);
3376        eCommissioned.set_value(sample->pInfo->Commissioned);
3377        eSubject.set_value(sample->pInfo->Subject);
3378    
3379      update_model--;      update_model--;
3380  }  }
3381    
3382  sigc::signal<void>& InstrumentProps::signal_instrument_changed()  void SampleProps::set_Name(const gig::String& name)
3383  {  {
3384      return instrument_changed;      m->pInfo->Name = name;
3385  }  }
3386    
3387    void SampleProps::update_name()
3388    {
3389        update_model++;
3390        eName.set_value(m->pInfo->Name);
3391        update_model--;
3392    }
3393    
3394    
3395  void MainWindow::file_changed()  void MainWindow::file_changed()
3396  {  {
3397      if (file && !file_is_changed) {      if (file && !file_is_changed) {
# Line 1193  void MainWindow::file_changed() Line 3400  void MainWindow::file_changed()
3400      }      }
3401  }  }
3402    
3403    void MainWindow::updateSampleRefCountMap(gig::File* gig) {
3404        sample_ref_count.clear();
3405        
3406        if (!gig) return;
3407    
3408        for (gig::Instrument* instrument = gig->GetFirstInstrument(); instrument;
3409             instrument = gig->GetNextInstrument())
3410        {
3411            for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
3412                 rgn = instrument->GetNextRegion())
3413            {
3414                for (int i = 0; i < 256; ++i) {
3415                    if (!rgn->pDimensionRegions[i]) continue;
3416                    if (rgn->pDimensionRegions[i]->pSample) {
3417                        sample_ref_count[rgn->pDimensionRegions[i]->pSample]++;
3418                    }
3419                }
3420            }
3421        }
3422    }
3423    
3424    bool MainWindow::onQueryTreeViewTooltip(int x, int y, bool keyboardTip, const Glib::RefPtr<Gtk::Tooltip>& tooltip) {
3425        Gtk::TreeModel::iterator iter;
3426        if (!m_TreeView.get_tooltip_context_iter(x, y, keyboardTip, iter)) {
3427            return false;
3428        }
3429        Gtk::TreeModel::Path path(iter);
3430        Gtk::TreeModel::Row row = *iter;
3431        Gtk::TreeViewColumn* pointedColumn = NULL;
3432        // resolve the precise table column the mouse points to
3433        {
3434            Gtk::TreeModel::Path path; // unused
3435            int cellX, cellY; // unused
3436            m_TreeView.get_path_at_pos(x, y, path, pointedColumn, cellX, cellY);
3437        }
3438        Gtk::TreeViewColumn* scriptsColumn = m_TreeView.get_column(2);
3439        if (pointedColumn == scriptsColumn) { // mouse hovers scripts column ...
3440            // show the script(s) assigned to the hovered instrument as tooltip
3441            tooltip->set_markup( row[m_Columns.m_col_tooltip] );
3442            m_TreeView.set_tooltip_cell(tooltip, &path, scriptsColumn, NULL);
3443        } else {
3444            // if beginners' tooltips is disabled then don't show the following one
3445            if (!Settings::singleton()->showTooltips)
3446                return false;
3447            // yeah, a beginners tooltip
3448            tooltip->set_text(_(
3449                "Right click here for actions on instruments & MIDI Rules. "
3450                "Drag & drop to change the order of instruments."
3451            ));
3452            m_TreeView.set_tooltip_cell(tooltip, &path, pointedColumn, NULL);
3453        }
3454        return true;
3455    }
3456    
3457    static Glib::ustring scriptTooltipFor(gig::Instrument* instrument, int index) {
3458        Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3459        const int iScriptSlots = instrument->ScriptSlotCount();
3460        Glib::ustring tooltip = "<u>(" + ToString(index) + ") “"  + name + "”</u>\n\n";
3461        if (!iScriptSlots)
3462            tooltip += "<span foreground='red'><i>No script assigned</i></span>";
3463        else {
3464            for (int i = 0; i < iScriptSlots; ++i) {
3465                tooltip += "• " + ToString(i+1) + ". Script: “<span foreground='#46DEFF'><b>" +
3466                           instrument->GetScriptOfSlot(i)->Name + "</b></span>”";
3467                if (i + 1 < iScriptSlots) tooltip += "\n\n";
3468            }
3469        }
3470        return tooltip;
3471    }
3472    
3473  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
3474  {  {
3475      file = 0;      file = 0;
3476      set_file_is_shared(isSharedInstrument);      set_file_is_shared(isSharedInstrument);
3477    
3478      this->filename = filename ? filename : _("Unsaved Gig File");      this->filename =
3479            (filename && strlen(filename) > 0) ?
3480                filename : (!gig->GetFileName().empty()) ?
3481                    gig->GetFileName() : _("Unsaved Gig File");
3482      set_title(Glib::filename_display_basename(this->filename));      set_title(Glib::filename_display_basename(this->filename));
3483      file_has_name = filename;      file_has_name = filename;
3484      file_is_changed = false;      file_is_changed = false;
3485    
3486      propDialog.set_info(gig->pInfo);      fileProps.set_file(gig);
   
     Gtk::MenuItem* instrument_menu =  
         dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuInstrument"));  
3487    
3488      int instrument_index = 0;      instrument_name_connection.block();
3489      Gtk::RadioMenuItem::Group instrument_group;      int index = 0;
3490      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;      for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
3491           instrument = gig->GetNextInstrument()) {           instrument = gig->GetNextInstrument(), ++index) {
3492            Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3493            const int iScriptSlots = instrument->ScriptSlotCount();
3494    
3495          Gtk::TreeModel::iterator iter = m_refTreeModel->append();          Gtk::TreeModel::iterator iter = m_refTreeModel->append();
3496          Gtk::TreeModel::Row row = *iter;          Gtk::TreeModel::Row row = *iter;
3497          row[m_Columns.m_col_name] = instrument->pInfo->Name.c_str();          row[m_Columns.m_col_nr] = index;
3498            row[m_Columns.m_col_name] = name;
3499          row[m_Columns.m_col_instr] = instrument;          row[m_Columns.m_col_instr] = instrument;
3500          // create a menu item for this instrument          row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3501          Gtk::RadioMenuItem* item =          row[m_Columns.m_col_tooltip] = scriptTooltipFor(instrument, index);
3502              new Gtk::RadioMenuItem(instrument_group, instrument->pInfo->Name.c_str());  
3503          instrument_menu->get_submenu()->append(*item);  #if !USE_GTKMM_BUILDER
3504          item->signal_activate().connect(          add_instrument_to_menu(name);
3505              sigc::bind(  #endif
                 sigc::mem_fun(*this, &MainWindow::on_instrument_selection_change),  
                 instrument_index  
             )  
         );  
         instrument_index++;  
3506      }      }
3507      instrument_menu->show();      instrument_name_connection.unblock();
3508      instrument_menu->get_submenu()->show_all_children();  #if !USE_GTKMM_BUILDER
3509        uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();
3510    #endif
3511    
3512        updateSampleRefCountMap(gig);
3513    
3514      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {
3515          if (group->Name != "") {          if (group->Name != "") {
3516              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();              Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
3517              Gtk::TreeModel::Row rowGroup = *iterGroup;              Gtk::TreeModel::Row rowGroup = *iterGroup;
3518              rowGroup[m_SamplesModel.m_col_name]   = group->Name.c_str();              rowGroup[m_SamplesModel.m_col_name]   = gig_to_utf8(group->Name);
3519              rowGroup[m_SamplesModel.m_col_group]  = group;              rowGroup[m_SamplesModel.m_col_group]  = group;
3520              rowGroup[m_SamplesModel.m_col_sample] = NULL;              rowGroup[m_SamplesModel.m_col_sample] = NULL;
3521              for (gig::Sample* sample = group->GetFirstSample();              for (gig::Sample* sample = group->GetFirstSample();
# Line 1243  void MainWindow::load_gig(gig::File* gig Line 3523  void MainWindow::load_gig(gig::File* gig
3523                  Gtk::TreeModel::iterator iterSample =                  Gtk::TreeModel::iterator iterSample =
3524                      m_refSamplesTreeModel->append(rowGroup.children());                      m_refSamplesTreeModel->append(rowGroup.children());
3525                  Gtk::TreeModel::Row rowSample = *iterSample;                  Gtk::TreeModel::Row rowSample = *iterSample;
3526                  rowSample[m_SamplesModel.m_col_name]   = sample->pInfo->Name.c_str();                  rowSample[m_SamplesModel.m_col_name] =
3527                        gig_to_utf8(sample->pInfo->Name);
3528                  rowSample[m_SamplesModel.m_col_sample] = sample;                  rowSample[m_SamplesModel.m_col_sample] = sample;
3529                  rowSample[m_SamplesModel.m_col_group]  = NULL;                  rowSample[m_SamplesModel.m_col_group]  = NULL;
3530                    int refcount = sample_ref_count.count(sample) ? sample_ref_count[sample] : 0;
3531                    rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
3532                    rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
3533              }              }
3534          }          }
3535      }      }
3536        
3537        for (int i = 0; gig->GetScriptGroup(i); ++i) {
3538            gig::ScriptGroup* group = gig->GetScriptGroup(i);
3539    
3540            Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
3541            Gtk::TreeModel::Row rowGroup = *iterGroup;
3542            rowGroup[m_ScriptsModel.m_col_name]   = gig_to_utf8(group->Name);
3543            rowGroup[m_ScriptsModel.m_col_group]  = group;
3544            rowGroup[m_ScriptsModel.m_col_script] = NULL;
3545            for (int s = 0; group->GetScript(s); ++s) {
3546                gig::Script* script = group->GetScript(s);
3547    
3548                Gtk::TreeModel::iterator iterScript =
3549                    m_refScriptsTreeModel->append(rowGroup.children());
3550                Gtk::TreeModel::Row rowScript = *iterScript;
3551                rowScript[m_ScriptsModel.m_col_name] = gig_to_utf8(script->Name);
3552                rowScript[m_ScriptsModel.m_col_script] = script;
3553                rowScript[m_ScriptsModel.m_col_group]  = NULL;
3554            }
3555        }
3556        // unfold all sample groups & script groups by default
3557        m_TreeViewSamples.expand_all();
3558        m_TreeViewScripts.expand_all();
3559    
3560      file = gig;      file = gig;
3561    
3562      // select the first instrument      // select the first instrument
3563      Glib::RefPtr<Gtk::TreeSelection> tree_sel_ref = m_TreeView.get_selection();      m_TreeView.get_selection()->select(Gtk::TreePath("0"));
3564      tree_sel_ref->select(Gtk::TreePath("0"));  
3565        instr_props_set_instrument();
3566        gig::Instrument* instrument = get_instrument();
3567        if (instrument) {
3568            midiRules.set_instrument(instrument);
3569        }
3570  }  }
3571    
3572  void MainWindow::show_instr_props()  bool MainWindow::instr_props_set_instrument()
3573  {  {
3574      gig::Instrument* instrument = get_instrument();      instrumentProps.signal_name_changed().clear();
3575      if (instrument)  
3576      {      std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
3577        if (rows.empty()) {
3578            instrumentProps.hide();
3579            return false;
3580        }
3581        //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
3582        Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
3583        if (it) {
3584            Gtk::TreeModel::Row row = *it;
3585            gig::Instrument* instrument = row[m_Columns.m_col_instr];
3586    
3587          instrumentProps.set_instrument(instrument);          instrumentProps.set_instrument(instrument);
3588    
3589            // make sure instrument tree is updated when user changes the
3590            // instrument name in instrument properties window
3591            instrumentProps.signal_name_changed().connect(
3592                sigc::bind(
3593                    sigc::mem_fun(*this,
3594                                  &MainWindow::instr_name_changed_by_instr_props),
3595                    it));
3596        } else {
3597            instrumentProps.hide();
3598        }
3599        //NOTE: explicit boolean cast required for GTKMM4 development branch here
3600        return it ? true : false;
3601    }
3602    
3603    void MainWindow::show_instr_props()
3604    {
3605        if (instr_props_set_instrument()) {
3606          instrumentProps.show();          instrumentProps.show();
3607          instrumentProps.deiconify();          instrumentProps.deiconify();
3608      }      }
3609  }  }
3610    
3611    void MainWindow::instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it)
3612    {
3613        Gtk::TreeModel::Row row = *it;
3614        Glib::ustring name = row[m_Columns.m_col_name];
3615    
3616        gig::Instrument* instrument = row[m_Columns.m_col_instr];
3617        Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
3618        if (gigname != name) {
3619            Gtk::TreeModel::Path path(*it);
3620            const int index = path[0];
3621            row[m_Columns.m_col_name] = gigname;
3622            row[m_Columns.m_col_tooltip] = scriptTooltipFor(instrument, index);
3623        }
3624    }
3625    
3626    bool MainWindow::sample_props_set_sample()
3627    {
3628        sampleProps.signal_name_changed().clear();
3629    
3630        std::vector<Gtk::TreeModel::Path> rows = m_TreeViewSamples.get_selection()->get_selected_rows();
3631        if (rows.empty()) {
3632            sampleProps.hide();
3633            return false;
3634        }
3635        //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
3636        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
3637        if (it) {
3638            Gtk::TreeModel::Row row = *it;
3639            gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3640    
3641            sampleProps.set_sample(sample);
3642    
3643            // make sure sample tree is updated when user changes the
3644            // sample name in sample properties window
3645            sampleProps.signal_name_changed().connect(
3646                sigc::bind(
3647                    sigc::mem_fun(*this,
3648                        &MainWindow::sample_name_changed_by_sample_props
3649                    ), it
3650                )
3651            );
3652        } else {
3653            sampleProps.hide();
3654        }
3655        //NOTE: explicit boolean cast required for GTKMM4 development branch here
3656        return it ? true : false;
3657    }
3658    
3659    void MainWindow::show_sample_props()
3660    {
3661        if (sample_props_set_sample()) {
3662            sampleProps.show();
3663            sampleProps.deiconify();
3664        }
3665    }
3666    
3667    void MainWindow::sample_name_changed_by_sample_props(Gtk::TreeModel::iterator& it)
3668    {
3669        Gtk::TreeModel::Row row = *it;
3670        Glib::ustring name = row[m_SamplesModel.m_col_name];
3671    
3672        gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3673        Glib::ustring gigname(gig_to_utf8(sample->pInfo->Name));
3674        if (gigname != name) {
3675            Gtk::TreeModel::Path path(*it);
3676            row[m_SamplesModel.m_col_name] = gigname;
3677        }
3678    }
3679    
3680    void MainWindow::show_midi_rules()
3681    {
3682        if (gig::Instrument* instrument = get_instrument())
3683        {
3684            midiRules.set_instrument(instrument);
3685            midiRules.show();
3686            midiRules.deiconify();
3687        }
3688    }
3689    
3690    void MainWindow::show_script_slots() {
3691        if (!file) return;
3692        // get selected instrument
3693        std::vector<Gtk::TreeModel::Path> rows = m_TreeView.get_selection()->get_selected_rows();
3694        if (rows.empty()) return;
3695        Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
3696        if (!it) return;
3697        Gtk::TreeModel::Row row = *it;
3698        gig::Instrument* instrument = row[m_Columns.m_col_instr];
3699        if (!instrument) return;
3700    
3701        ScriptSlots* window = new ScriptSlots;
3702        window->setInstrument(instrument);
3703        window->signal_script_slots_changed().connect(
3704            sigc::mem_fun(*this, &MainWindow::onScriptSlotsModified)
3705        );
3706        //window->reparent(*this);
3707        window->show();
3708    }
3709    
3710    void MainWindow::onScriptSlotsModified(gig::Instrument* pInstrument) {
3711        if (!pInstrument) return;
3712        const int iScriptSlots = pInstrument->ScriptSlotCount();
3713    
3714        //NOTE: This is a big mess! Sometimes GTK requires m_TreeView.get_model(), here we need m_refTreeModelFilter->get_model(), otherwise accessing children below causes an error!
3715        //Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
3716        Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();
3717    
3718        for (int i = 0; i < model->children().size(); ++i) {
3719            Gtk::TreeModel::Row row = model->children()[i];
3720            if (row[m_Columns.m_col_instr] != pInstrument) continue;
3721            row[m_Columns.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3722            row[m_Columns.m_col_tooltip] = scriptTooltipFor(pInstrument, i);
3723            break;
3724        }
3725    
3726        // causes the sampler to reload the instrument with the new script
3727        on_sel_change();
3728    }
3729    
3730    void MainWindow::assignScript(gig::Script* pScript) {
3731        if (!pScript) {
3732            printf("assignScript() : !script\n");
3733            return;
3734        }
3735        printf("assignScript('%s')\n", pScript->Name.c_str());
3736    
3737        gig::Instrument* pInstrument = get_instrument();
3738        if (!pInstrument) {
3739            printf("!instrument\n");
3740            return;
3741        }
3742    
3743        pInstrument->AddScriptSlot(pScript);
3744    
3745        onScriptSlotsModified(pInstrument);
3746    }
3747    
3748    void MainWindow::dropAllScriptSlots() {
3749        gig::Instrument* pInstrument = get_instrument();
3750        if (!pInstrument) {
3751            printf("!instrument\n");
3752            return;
3753        }
3754    
3755        const int iScriptSlots = pInstrument->ScriptSlotCount();
3756        for (int i = iScriptSlots - 1; i >= 0; --i)
3757            pInstrument->RemoveScriptSlot(i);
3758    
3759        onScriptSlotsModified(pInstrument);
3760    }
3761    
3762    void MainWindow::on_action_refresh_all() {
3763        __refreshEntireGUI();
3764    }
3765    
3766  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
3767    #if USE_GLIB_ACTION
3768        bool active = false;
3769        m_actionToggleStatusBar->get_state(active);
3770        // for some reason toggle state does not change automatically
3771        active = !active;
3772        m_actionToggleStatusBar->change_state(active);
3773        if (active)
3774            m_StatusBar.show();
3775        else
3776            m_StatusBar.hide();
3777    #else
3778      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
3779          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
3780      if (!item) {      if (!item) {
# Line 1277  void MainWindow::on_action_view_status_b Line 3783  void MainWindow::on_action_view_status_b
3783      }      }
3784      if (item->get_active()) m_StatusBar.show();      if (item->get_active()) m_StatusBar.show();
3785      else                    m_StatusBar.hide();      else                    m_StatusBar.hide();
3786    #endif
3787  }  }
3788    
3789  void MainWindow::on_button_release(GdkEventButton* button)  void MainWindow::on_auto_restore_win_dim() {
3790  {  #if USE_GLIB_ACTION
3791        bool active = false;
3792        m_actionToggleRestoreWinDim->get_state(active);
3793        // for some reason toggle state does not change automatically
3794        active = !active;
3795        m_actionToggleRestoreWinDim->change_state(active);
3796        Settings::singleton()->autoRestoreWindowDimension = active;
3797    #else
3798        Gtk::CheckMenuItem* item =
3799            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
3800        if (!item) {
3801            std::cerr << "/MenuBar/MenuView/AutoRestoreWinDim == NULL\n";
3802            return;
3803        }
3804        Settings::singleton()->autoRestoreWindowDimension = item->get_active();
3805    #endif
3806    }
3807    
3808    void MainWindow::on_instr_double_click_opens_props() {
3809    #if USE_GLIB_ACTION
3810        bool active = false;
3811        m_actionInstrDoubleClickOpensProps->get_state(active);
3812        // for some reason toggle state does not change automatically
3813        active = !active;
3814        m_actionInstrDoubleClickOpensProps->change_state(active);
3815        Settings::singleton()->instrumentDoubleClickOpensProps = active;
3816    #else
3817        Gtk::CheckMenuItem* item =
3818            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/OpenInstrPropsByDoubleClick"));
3819        if (!item) {
3820            std::cerr << "/MenuBar/MenuView/OpenInstrPropsByDoubleClick == NULL\n";
3821            return;
3822        }
3823        Settings::singleton()->instrumentDoubleClickOpensProps = item->get_active();
3824    #endif
3825    }
3826    
3827    void MainWindow::on_save_with_temporary_file() {
3828    #if USE_GLIB_ACTION
3829        bool active = false;
3830        m_actionToggleSaveWithTempFile->get_state(active);
3831        // for some reason toggle state does not change automatically
3832        active = !active;
3833        m_actionToggleSaveWithTempFile->change_state(active);
3834        Settings::singleton()->saveWithTemporaryFile = active;
3835    #else
3836        Gtk::CheckMenuItem* item =
3837            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));
3838        if (!item) {
3839            std::cerr << "/MenuBar/MenuSettings/SaveWithTemporaryFile == NULL\n";
3840            return;
3841        }
3842        Settings::singleton()->saveWithTemporaryFile = item->get_active();
3843    #endif
3844    }
3845    
3846    bool MainWindow::is_copy_samples_unity_note_enabled() const {
3847    #if USE_GLIB_ACTION
3848        bool active = false;
3849        m_actionToggleCopySampleUnity->get_state(active);
3850        return active;
3851    #else
3852        Gtk::CheckMenuItem* item =
3853            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
3854        if (!item) {
3855            std::cerr << "/MenuBar/MenuEdit/CopySampleUnity == NULL\n";
3856            return true;
3857        }
3858        return item->get_active();
3859    #endif
3860    }
3861    
3862    bool MainWindow::is_copy_samples_fine_tune_enabled() const {
3863    #if USE_GLIB_ACTION
3864        bool active = false;
3865        m_actionToggleCopySampleTune->get_state(active);
3866        return active;
3867    #else
3868        Gtk::CheckMenuItem* item =
3869            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
3870        if (!item) {
3871            std::cerr << "/MenuBar/MenuEdit/CopySampleTune == NULL\n";
3872            return true;
3873        }
3874        return item->get_active();
3875    #endif
3876    }
3877    
3878    bool MainWindow::is_copy_samples_loop_enabled() const {
3879    #if USE_GLIB_ACTION
3880        bool active = false;
3881        m_actionToggleCopySampleLoop->get_state(active);
3882        return active;
3883    #else
3884        Gtk::CheckMenuItem* item =
3885            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
3886        if (!item) {
3887            std::cerr << "/MenuBar/MenuEdit/CopySampleLoop == NULL\n";
3888            return true;
3889        }
3890        return item->get_active();
3891    #endif
3892    }
3893    
3894    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
3895    bool MainWindow::on_button_release(Gdk::EventButton& _button) {
3896        GdkEventButton* button = _button.gobj();
3897    #else
3898    void MainWindow::on_button_release(GdkEventButton* button) {
3899    #endif
3900      if (button->type == GDK_2BUTTON_PRESS) {      if (button->type == GDK_2BUTTON_PRESS) {
3901          show_instr_props();          if (Settings::singleton()->instrumentDoubleClickOpensProps)
3902                show_instr_props();
3903      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
3904            // gig v2 files have no midi rules
3905            const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
3906    #if USE_GTKMM_BUILDER
3907            m_actionMIDIRules->property_enabled() = bEnabled;
3908    #else
3909            static_cast<Gtk::MenuItem*>(
3910                uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(
3911                    bEnabled
3912                );
3913            static_cast<Gtk::MenuItem*>(
3914                uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
3915                    bEnabled
3916                );
3917    #endif
3918          popup_menu->popup(button->button, button->time);          popup_menu->popup(button->button, button->time);
3919      }      }
3920    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
3921        return false;
3922    #endif
3923    }
3924    
3925    #if !USE_GTKMM_BUILDER
3926    void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {
3927        if (item->get_active()) {
3928            const std::vector<Gtk::Widget*> children =
3929                instrument_menu->get_children();
3930            std::vector<Gtk::Widget*>::const_iterator it =
3931                find(children.begin(), children.end(), item);
3932            if (it != children.end()) {
3933                int index = it - children.begin();
3934                m_TreeView.get_selection()->select(Gtk::TreePath(ToString(index)));
3935    
3936                m_RegionChooser.set_instrument(file->GetInstrument(index));
3937            }
3938        }
3939    }
3940    #endif
3941    
3942    void MainWindow::on_action_move_instr() {
3943        gig::Instrument* instr = get_instrument();
3944        if (!instr) return;
3945    
3946        int currentIndex = getIndexOf(instr);
3947    
3948        Gtk::Dialog dialog(_("Move Instrument"), true /*modal*/);
3949    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
3950        Gtk::Adjustment adjustment(
3951            currentIndex,
3952            0 /*min*/, file->CountInstruments() - 1 /*max*/
3953        );
3954        Gtk::SpinButton spinBox(adjustment);
3955    #else
3956        Gtk::SpinButton spinBox(
3957            Gtk::Adjustment::create(
3958                currentIndex,
3959                0 /*min*/, file->CountInstruments() - 1 /*max*/
3960            )
3961        );
3962    #endif
3963    #if USE_GTKMM_BOX
3964        dialog.get_content_area()->pack_start(spinBox);
3965    #else
3966        dialog.get_vbox()->pack_start(spinBox);
3967    #endif
3968    #if HAS_GTKMM_STOCK
3969        Gtk::Button* okButton = dialog.add_button(Gtk::Stock::OK, 0);
3970        dialog.add_button(Gtk::Stock::CANCEL, 1);
3971    #else
3972        Gtk::Button* okButton = dialog.add_button(_("_OK"), 0);
3973        dialog.add_button(_("_Cancel"), 1);
3974    #endif
3975        okButton->set_sensitive(false);
3976        // show the dialog at a reasonable screen position
3977        dialog.set_position(Gtk::WIN_POS_MOUSE);
3978        // only enable the 'OK' button if entered new index is not instrument's
3979        // current index already
3980        spinBox.signal_value_changed().connect([&]{
3981            okButton->set_sensitive( spinBox.get_value_as_int() != currentIndex );
3982        });
3983        // usability acceleration: if user hits enter key on the text entry field
3984        // then auto trigger the 'OK' button
3985        spinBox.signal_activate().connect([&]{
3986            if (okButton->get_sensitive())
3987                okButton->clicked();
3988        });
3989    #if HAS_GTKMM_SHOW_ALL_CHILDREN
3990        dialog.show_all_children();
3991    #endif
3992        if (!dialog.run()) { // 'OK' selected ...
3993            int newIndex = spinBox.get_value_as_int();
3994            printf("MOVE TO %d\n", newIndex);
3995            gig::Instrument* dst = file->GetInstrument(newIndex);
3996            instr->MoveTo(dst);
3997            __refreshEntireGUI();
3998            select_instrument(instr);
3999        }
4000    }
4001    
4002    void MainWindow::select_instrument(gig::Instrument* instrument) {
4003        if (!instrument) return;
4004    
4005        //NOTE: This is a big mess! Sometimes GTK requires m_refTreeModelFilter->get_model(), here we need m_TreeView.get_model(), otherwise treeview selection below causes an error!
4006        Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
4007        //Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();
4008    
4009        for (int i = 0; i < model->children().size(); ++i) {
4010            Gtk::TreeModel::Row row = model->children()[i];
4011            if (row[m_Columns.m_col_instr] == instrument) {
4012                // select and show the respective instrument in the list view
4013                show_intruments_tab();
4014                m_TreeView.get_selection()->unselect_all();
4015                
4016    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4017                auto iterSel = model->children()[i].get_iter();
4018                m_TreeView.get_selection()->select(iterSel);
4019    #else
4020                m_TreeView.get_selection()->select(model->children()[i]);
4021    #endif
4022                std::vector<Gtk::TreeModel::Path> rows =
4023                    m_TreeView.get_selection()->get_selected_rows();
4024                if (!rows.empty())
4025                    m_TreeView.scroll_to_row(rows[0]);
4026                on_sel_change(); // the regular instrument selection change callback
4027            }
4028        }
4029    }
4030    
4031    /// Returns true if requested dimension region was successfully selected and scrolled to in the list view, false on error.
4032    bool MainWindow::select_dimension_region(gig::DimensionRegion* dimRgn) {
4033        gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();
4034        gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();
4035    
4036        //NOTE: This is a big mess! Sometimes GTK requires m_refTreeModelFilter->get_model(), here we need m_TreeView.get_model(), otherwise treeview selection below causes an error!
4037        Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
4038        //Glib::RefPtr<Gtk::TreeModel> model = m_refTreeModelFilter->get_model();
4039    
4040        for (int i = 0; i < model->children().size(); ++i) {
4041            Gtk::TreeModel::Row row = model->children()[i];
4042            if (row[m_Columns.m_col_instr] == pInstrument) {
4043                // select and show the respective instrument in the list view
4044                show_intruments_tab();
4045                m_TreeView.get_selection()->unselect_all();
4046    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4047                auto iterSel = model->children()[i].get_iter();
4048                m_TreeView.get_selection()->select(iterSel);
4049    #else
4050                m_TreeView.get_selection()->select(model->children()[i]);
4051    #endif
4052                std::vector<Gtk::TreeModel::Path> rows =
4053                    m_TreeView.get_selection()->get_selected_rows();
4054                if (!rows.empty())
4055                    m_TreeView.scroll_to_row(rows[0]);
4056                on_sel_change(); // the regular instrument selection change callback
4057    
4058                // select respective region in the region selector
4059                m_RegionChooser.set_region(pRegion);
4060    
4061                // select and show the respective dimension region in the editor
4062                //update_dimregs();
4063                if (!m_DimRegionChooser.select_dimregion(dimRgn)) return false;
4064                //dimreg_edit.set_dim_region(dimRgn);
4065    
4066                return true;
4067            }
4068        }
4069    
4070        return false;
4071  }  }
4072    
4073  void MainWindow::on_instrument_selection_change(int index) {  void MainWindow::select_sample(gig::Sample* sample) {
4074      m_RegionChooser.set_instrument(file->GetInstrument(index));      Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
4075        for (int g = 0; g < model->children().size(); ++g) {
4076            Gtk::TreeModel::Row rowGroup = model->children()[g];
4077            for (int s = 0; s < rowGroup.children().size(); ++s) {
4078                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
4079                if (rowSample[m_SamplesModel.m_col_sample] == sample) {
4080                    show_samples_tab();
4081                    m_TreeViewSamples.get_selection()->unselect_all();
4082    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4083                    auto iterSel = rowGroup.children()[s].get_iter();
4084                    m_TreeViewSamples.get_selection()->select(iterSel);
4085    #else
4086                    m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);
4087    #endif
4088                    std::vector<Gtk::TreeModel::Path> rows =
4089                        m_TreeViewSamples.get_selection()->get_selected_rows();
4090                    if (rows.empty()) return;
4091                    m_TreeViewSamples.scroll_to_row(rows[0]);
4092                    return;
4093                }
4094            }
4095        }
4096  }  }
4097    
4098    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
4099    bool MainWindow::on_sample_treeview_button_release(Gdk::EventButton& _button) {
4100        GdkEventButton* button = _button.gobj();
4101    #else
4102  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
4103    #endif
4104      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
4105            // by default if Ctrl keys is pressed down, then a mouse right-click
4106            // does not select the respective row, so we must assure this
4107            // programmatically ...
4108            /*{
4109                Gtk::TreeModel::Path path;
4110                Gtk::TreeViewColumn* pColumn = NULL;
4111                int cellX, cellY;
4112                bool bSuccess = m_TreeViewSamples.get_path_at_pos(
4113                    (int)button->x, (int)button->y,
4114                    path, pColumn, cellX, cellY
4115                );
4116                if (bSuccess) {
4117                    if (m_TreeViewSamples.get_selection()->count_selected_rows() <= 0) {
4118                        printf("not selected !!!\n");
4119                        m_TreeViewSamples.get_selection()->select(path);
4120                    }
4121                }
4122            }*/
4123    
4124    #if !USE_GTKMM_BUILDER
4125          Gtk::Menu* sample_popup =          Gtk::Menu* sample_popup =
4126              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));              dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));
4127    #endif
4128    
4129          // update enabled/disabled state of sample popup items          // update enabled/disabled state of sample popup items
4130          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();          Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
4131          Gtk::TreeModel::iterator it = sel->get_selected();          std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4132          bool group_selected  = false;          const int n = rows.size();
4133          bool sample_selected = false;          int nGroups  = 0;
4134          if (it) {          int nSamples = 0;
4135            for (int r = 0; r < n; ++r) {
4136                Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
4137                if (!it) continue;
4138              Gtk::TreeModel::Row row = *it;              Gtk::TreeModel::Row row = *it;
4139              group_selected  = row[m_SamplesModel.m_col_group];              if (row[m_SamplesModel.m_col_group]) nGroups++;
4140              sample_selected = row[m_SamplesModel.m_col_sample];              if (row[m_SamplesModel.m_col_sample]) nSamples++;
4141          }          }
4142    
4143    #if USE_GTKMM_BUILDER
4144            m_actionSampleProperties->property_enabled() = (n == 1);
4145            m_actionAddSample->property_enabled() = (n);
4146            m_actionAddSampleGroup->property_enabled() = (file);
4147            m_actionViewSampleRefs->property_enabled() = (nSamples == 1);
4148            m_actionRemoveSample->property_enabled() = (n);
4149            m_actionReplaceSample->property_enabled() = (nSamples == 1);
4150    #else
4151          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
4152              set_sensitive(group_selected || sample_selected);              set_sensitive(n == 1);
4153          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
4154              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
4155          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->
4156              set_sensitive(file);              set_sensitive(file);
4157            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/ShowSampleRefs"))->
4158                set_sensitive(nSamples == 1);
4159          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
4160              set_sensitive(group_selected || sample_selected);              set_sensitive(n);
4161    #endif
4162          // show sample popup          // show sample popup
4163          sample_popup->popup(button->button, button->time);          sample_popup->popup(button->button, button->time);
4164    
4165    #if !USE_GTKMM_BUILDER
4166            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->
4167                set_sensitive(n == 1);
4168            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->
4169                set_sensitive(n);
4170            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddGroup"))->
4171                set_sensitive(file);
4172            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/ShowSampleRefs"))->
4173                set_sensitive(nSamples == 1);
4174            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->
4175                set_sensitive(n);
4176    #endif
4177      }      }
4178        
4179    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
4180        return false;
4181    #endif
4182  }  }
4183    
4184  void MainWindow::on_action_add_instrument() {  #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
4185      static int __instrument_indexer = 0;  bool MainWindow::on_script_treeview_button_release(Gdk::EventButton& _button) {
4186      if (!file) return;      GdkEventButton* button = _button.gobj();
4187      gig::Instrument* instrument = file->AddInstrument();  #else
4188      __instrument_indexer++;  void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {
4189      instrument->pInfo->Name =  #endif
4190          _("Unnamed Instrument ") + ToString(__instrument_indexer);      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
4191    #if !USE_GTKMM_BUILDER
4192            Gtk::Menu* script_popup =
4193                dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));
4194    #endif
4195            // update enabled/disabled state of sample popup items
4196            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
4197            Gtk::TreeModel::iterator it = sel->get_selected();
4198            bool group_selected  = false;
4199            bool script_selected = false;
4200            if (it) {
4201                Gtk::TreeModel::Row row = *it;
4202                group_selected  = row[m_ScriptsModel.m_col_group];
4203                script_selected = row[m_ScriptsModel.m_col_script];
4204            }
4205    #if USE_GTKMM_BUILDER
4206            m_actionAddScript->property_enabled() = (group_selected || script_selected);
4207            m_actionAddScriptGroup->property_enabled() = (file);
4208            m_actionEditScript->property_enabled() = (script_selected);
4209            m_actionRemoveScript->property_enabled() = (group_selected || script_selected);
4210    #else
4211            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->
4212                set_sensitive(group_selected || script_selected);
4213            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->
4214                set_sensitive(file);
4215            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/EditScript"))->
4216                set_sensitive(script_selected);    
4217            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->
4218                set_sensitive(group_selected || script_selected);
4219    #endif
4220            // show sample popup
4221            script_popup->popup(button->button, button->time);
4222    
4223    #if !USE_GTKMM_BUILDER
4224            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->
4225                set_sensitive(group_selected || script_selected);
4226            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->
4227                set_sensitive(file);
4228            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/EditScript"))->
4229                set_sensitive(script_selected);    
4230            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->
4231                set_sensitive(group_selected || script_selected);
4232    #endif
4233        }
4234    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
4235        return false;
4236    #endif
4237    }
4238    
4239    void MainWindow::updateScriptListOfMenu() {
4240        // remove all entries from "Assign Script" menu
4241        {
4242            const std::vector<Gtk::Widget*> children = assign_scripts_menu->get_children();
4243            for (int i = 0; i < children.size(); ++i) {
4244                Gtk::Widget* child = children[i];
4245                assign_scripts_menu->remove(*child);
4246                delete child;
4247            }
4248        }
4249    
4250        int iTotalScripts = 0;
4251    
4252        if (!file) goto noScripts;
4253    
4254        // add all configured macros as menu items to the "Macro" menu
4255        for (int iGroup = 0; file->GetScriptGroup(iGroup); ++iGroup) {
4256            gig::ScriptGroup* pGroup = file->GetScriptGroup(iGroup);
4257            for (int iScript = 0; pGroup->GetScript(iScript); ++iScript, ++iTotalScripts) {
4258                gig::Script* pScript = pGroup->GetScript(iScript);
4259                std::string name = pScript->Name;
4260    
4261                Gtk::MenuItem* item = new Gtk::MenuItem(name);
4262                item->signal_activate().connect(
4263                    sigc::bind(
4264                        sigc::mem_fun(*this, &MainWindow::assignScript), pScript
4265                    )
4266                );
4267                assign_scripts_menu->append(*item);
4268                item->set_accel_path("<Scripts>/script_" + ToString(iTotalScripts));
4269                //item->set_tooltip_text(comment);
4270            }
4271        }
4272    
4273        noScripts:
4274    
4275        // if there are no macros configured at all, then show a dummy entry instead
4276        if (!iTotalScripts) {
4277            Gtk::MenuItem* item = new Gtk::MenuItem(_("No Scripts"));
4278            item->set_sensitive(false);
4279            assign_scripts_menu->append(*item);
4280        }
4281    
4282        // add separator line to menu
4283        assign_scripts_menu->append(*new Gtk::SeparatorMenuItem);
4284    
4285        {
4286            Gtk::MenuItem* item = new Gtk::MenuItem(_("Unassign All Scripts"));
4287            item->signal_activate().connect(
4288                sigc::mem_fun(*this, &MainWindow::dropAllScriptSlots)
4289            );
4290            assign_scripts_menu->append(*item);
4291            item->set_accel_path("<Scripts>/DropAllScriptSlots");
4292        }
4293    
4294    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4295        assign_scripts_menu->show_all_children();
4296    #endif
4297    }
4298    
4299    #if !USE_GTKMM_BUILDER
4300    Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
4301        const Glib::ustring& name, int position) {
4302    
4303        Gtk::RadioMenuItem::Group instrument_group;
4304        const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
4305        if (!children.empty()) {
4306            instrument_group =
4307                static_cast<Gtk::RadioMenuItem*>(children[0])->get_group();
4308        }
4309        Gtk::RadioMenuItem* item =
4310            new Gtk::RadioMenuItem(instrument_group, name);
4311        if (position < 0) {
4312            instrument_menu->append(*item);
4313        } else {
4314            instrument_menu->insert(*item, position);
4315        }
4316        item->show();
4317        item->signal_activate().connect(
4318            sigc::bind(
4319                sigc::mem_fun(*this, &MainWindow::on_instrument_selection_change),
4320                item));
4321        return item;
4322    }
4323    #endif
4324    
4325    #if !USE_GTKMM_BUILDER
4326    void MainWindow::remove_instrument_from_menu(int index) {
4327        const std::vector<Gtk::Widget*> children =
4328            instrument_menu->get_children();
4329        Gtk::Widget* child = children[index];
4330        instrument_menu->remove(*child);
4331        delete child;
4332    }
4333    #endif
4334    
4335    void MainWindow::add_instrument(gig::Instrument* instrument) {
4336        const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
4337    
4338      // update instrument tree view      // update instrument tree view
4339        instrument_name_connection.block();
4340      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
4341      Gtk::TreeModel::Row rowInstr = *iterInstr;      Gtk::TreeModel::Row rowInstr = *iterInstr;
4342      rowInstr[m_Columns.m_col_name] = instrument->pInfo->Name.c_str();      const int index = m_refTreeModel->children().size() - 1;
4343        rowInstr[m_Columns.m_col_nr] = index;
4344        rowInstr[m_Columns.m_col_name] = name;
4345      rowInstr[m_Columns.m_col_instr] = instrument;      rowInstr[m_Columns.m_col_instr] = instrument;
4346        rowInstr[m_Columns.m_col_scripts] = "";
4347        rowInstr[m_Columns.m_col_tooltip] = scriptTooltipFor(instrument, index);
4348        instrument_name_connection.unblock();
4349    
4350    #if !USE_GTKMM_BUILDER
4351        add_instrument_to_menu(name);
4352    #endif
4353        select_instrument(instrument);
4354      file_changed();      file_changed();
4355  }  }
4356    
4357    void MainWindow::on_action_add_instrument() {
4358        static int __instrument_indexer = 0;
4359        if (!file) return;
4360        gig::Instrument* instrument = file->AddInstrument();
4361        __instrument_indexer++;
4362        instrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument ") +
4363                                                ToString(__instrument_indexer));
4364    
4365        add_instrument(instrument);
4366    }
4367    
4368  void MainWindow::on_action_duplicate_instrument() {  void MainWindow::on_action_duplicate_instrument() {
4369      if (!file) return;      if (!file) return;
4370        
4371      // retrieve the currently selected instrument      // retrieve the currently selected instrument
4372      // (being the original instrument to be duplicated)      // (being the original instrument to be duplicated)
4373      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
4374      Gtk::TreeModel::iterator itSelection = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4375      if (!itSelection) return;      for (int r = 0; r < rows.size(); ++r) {
4376      Gtk::TreeModel::Row row = *itSelection;          Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
4377      gig::Instrument* instrOrig = row[m_Columns.m_col_instr];          if (it) {
4378      if (!instrOrig) return;              Gtk::TreeModel::Row row = *it;
4379                    gig::Instrument* instrOrig = row[m_Columns.m_col_instr];
4380      // duplicate the orginal instrument              if (instrOrig) {
4381      gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);                  // duplicate the orginal instrument
4382      instrNew->pInfo->Name =                  gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
4383          instrOrig->pInfo->Name + " (" + _("Copy") + ")";                  instrNew->pInfo->Name =
4384                                instrOrig->pInfo->Name +
4385      // update instrument tree view                      gig_from_utf8(Glib::ustring(" (") + _("Copy") + ")");
4386      Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();  
4387      Gtk::TreeModel::Row rowInstr = *iterInstr;                  add_instrument(instrNew);
4388      rowInstr[m_Columns.m_col_name] = instrNew->pInfo->Name.c_str();              }
4389      rowInstr[m_Columns.m_col_instr] = instrNew;          }
4390      file_changed();      }
4391  }  }
4392    
4393  void MainWindow::on_action_remove_instrument() {  void MainWindow::on_action_remove_instrument() {
# Line 1373  void MainWindow::on_action_remove_instru Line 4404  void MainWindow::on_action_remove_instru
4404      }      }
4405    
4406      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
4407      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4408      if (it) {      for (int r = rows.size() - 1; r >= 0; --r) {
4409            Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
4410            if (!it) continue;
4411          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
4412          gig::Instrument* instr = row[m_Columns.m_col_instr];          gig::Instrument* instr = row[m_Columns.m_col_instr];
4413          try {          try {
4414                Gtk::TreePath path(it);
4415                int index = path[0];
4416    
4417              // remove instrument from the gig file              // remove instrument from the gig file
4418              if (instr) file->DeleteInstrument(instr);              if (instr) file->DeleteInstrument(instr);
             // remove respective row from instruments tree view  
             m_refTreeModel->erase(it);  
4419              file_changed();              file_changed();
4420    
4421    #if !USE_GTKMM_BUILDER
4422                remove_instrument_from_menu(index);
4423    #endif
4424    
4425                // remove row from instruments tree view
4426                m_refTreeModel->erase(it);
4427                // update "Nr" column of all instrument rows
4428                {
4429                    int index = 0;
4430                    for (Gtk::TreeModel::iterator it = m_refTreeModel->children().begin();
4431                         it != m_refTreeModel->children().end(); ++it, ++index)
4432                    {
4433                        Gtk::TreeModel::Row row = *it;
4434                        gig::Instrument* instrument = row[m_Columns.m_col_instr];
4435                        row[m_Columns.m_col_nr] = index;
4436                        row[m_Columns.m_col_tooltip] = scriptTooltipFor(instrument, index);
4437                    }
4438                }
4439    
4440    #if GTKMM_MAJOR_VERSION < 3
4441                // select another instrument (in gtk3 this is done
4442                // automatically)
4443                if (!m_refTreeModel->children().empty()) {
4444                    if (index == m_refTreeModel->children().size()) {
4445                        index--;
4446                    }
4447                    m_TreeView.get_selection()->select(
4448                        Gtk::TreePath(ToString(index)));
4449                }
4450    #endif
4451                instr_props_set_instrument();
4452                instr = get_instrument();
4453                if (instr) {
4454                    midiRules.set_instrument(instr);
4455                } else {
4456                    midiRules.hide();
4457                }
4458          } catch (RIFF::Exception e) {          } catch (RIFF::Exception e) {
4459              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
4460              msg.run();              msg.run();
# Line 1391  void MainWindow::on_action_remove_instru Line 4463  void MainWindow::on_action_remove_instru
4463  }  }
4464    
4465  void MainWindow::on_action_sample_properties() {  void MainWindow::on_action_sample_properties() {
4466      //TODO: show a dialog where the selected sample's properties can be edited      show_sample_props();
4467      Gtk::MessageDialog msg(  }
4468          *this, _("Sorry, yet to be implemented!"), false, Gtk::MESSAGE_INFO  
4469    void MainWindow::on_action_add_script_group() {
4470        static int __script_indexer = 0;
4471        if (!file) return;
4472        gig::ScriptGroup* group = file->AddScriptGroup();
4473        group->Name = gig_from_utf8(_("Unnamed Group"));
4474        if (__script_indexer) group->Name += " " + ToString(__script_indexer);
4475        __script_indexer++;
4476        // update sample tree view
4477        Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
4478        Gtk::TreeModel::Row rowGroup = *iterGroup;
4479        rowGroup[m_ScriptsModel.m_col_name] = gig_to_utf8(group->Name);
4480        rowGroup[m_ScriptsModel.m_col_script] = NULL;
4481        rowGroup[m_ScriptsModel.m_col_group] = group;
4482        file_changed();
4483    }
4484    
4485    void MainWindow::on_action_add_script() {
4486        if (!file) return;
4487        // get selected group
4488        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
4489        Gtk::TreeModel::iterator it = sel->get_selected();
4490        if (!it) return;
4491        Gtk::TreeModel::Row row = *it;
4492        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
4493        if (!group) { // not a group, but a script is selected (probably)
4494            gig::Script* script = row[m_ScriptsModel.m_col_script];
4495            if (!script) return;
4496            it = row.parent(); // resolve parent (that is the script's group)
4497            if (!it) return;
4498            row = *it;
4499            group = row[m_ScriptsModel.m_col_group];
4500            if (!group) return;
4501        }
4502    
4503        // add a new script to the .gig file
4504        gig::Script* script = group->AddScript();    
4505        Glib::ustring name = _("Unnamed Script");
4506        script->Name = gig_from_utf8(name);
4507    
4508        // add script to the tree view
4509        Gtk::TreeModel::iterator iterScript =
4510            m_refScriptsTreeModel->append(row.children());
4511        Gtk::TreeModel::Row rowScript = *iterScript;
4512        rowScript[m_ScriptsModel.m_col_name] = name;
4513        rowScript[m_ScriptsModel.m_col_script] = script;
4514        rowScript[m_ScriptsModel.m_col_group]  = NULL;
4515    
4516        // unfold group of new script item in treeview
4517        Gtk::TreeModel::Path path(iterScript);
4518        m_TreeViewScripts.expand_to_path(path);
4519    }
4520    
4521    void MainWindow::on_action_edit_script() {
4522        if (!file) return;
4523        // get selected script
4524        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
4525        Gtk::TreeModel::iterator it = sel->get_selected();
4526        if (!it) return;
4527        Gtk::TreeModel::Row row = *it;
4528        gig::Script* script = row[m_ScriptsModel.m_col_script];
4529        if (!script) return;
4530    
4531        ScriptEditor* editor = new ScriptEditor;
4532        editor->signal_script_to_be_changed.connect(
4533            signal_script_to_be_changed.make_slot()
4534      );      );
4535      msg.run();      editor->signal_script_changed.connect(
4536            signal_script_changed.make_slot()
4537        );
4538        editor->setScript(script);
4539        //editor->reparent(*this);
4540        editor->show();
4541    }
4542    
4543    void MainWindow::on_action_remove_script() {
4544        if (!file) return;
4545        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
4546        Gtk::TreeModel::iterator it = sel->get_selected();
4547        if (it) {
4548            Gtk::TreeModel::Row row = *it;
4549            gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
4550            gig::Script* script     = row[m_ScriptsModel.m_col_script];
4551            Glib::ustring name      = row[m_ScriptsModel.m_col_name];
4552            try {
4553                // remove script group or script from the gig file
4554                if (group) {
4555                    // notify everybody that we're going to remove these samples
4556    //TODO:         scripts_to_be_removed_signal.emit(members);
4557                    // delete the group in the .gig file including the
4558                    // samples that belong to the group
4559                    file->DeleteScriptGroup(group);
4560                    // notify that we're done with removal
4561    //TODO:         scripts_removed_signal.emit();
4562                    file_changed();
4563                } else if (script) {
4564                    // notify everybody that we're going to remove this sample
4565    //TODO:         std::list<gig::Script*> lscripts;
4566    //TODO:         lscripts.push_back(script);
4567    //TODO:         scripts_to_be_removed_signal.emit(lscripts);
4568                    // remove sample from the .gig file
4569                    script->GetGroup()->DeleteScript(script);
4570                    // notify that we're done with removal
4571    //TODO:         scripts_removed_signal.emit();
4572                    dimreg_changed();
4573                    file_changed();
4574                }
4575                // remove respective row(s) from samples tree view
4576                m_refScriptsTreeModel->erase(it);
4577            } catch (RIFF::Exception e) {
4578                // pretend we're done with removal (i.e. to avoid dead locks)
4579    //TODO:     scripts_removed_signal.emit();
4580                // show error message
4581                Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
4582                msg.run();
4583            }
4584        }
4585  }  }
4586    
4587  void MainWindow::on_action_add_group() {  void MainWindow::on_action_add_group() {
4588      static int __sample_indexer = 0;      static int __sample_indexer = 0;
4589      if (!file) return;      if (!file) return;
4590      gig::Group* group = file->AddGroup();      gig::Group* group = file->AddGroup();
4591      group->Name = _("Unnamed Group");      group->Name = gig_from_utf8(_("Unnamed Group"));
4592      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);      if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
4593      __sample_indexer++;      __sample_indexer++;
4594      // update sample tree view      // update sample tree view
4595      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();      Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
4596      Gtk::TreeModel::Row rowGroup = *iterGroup;      Gtk::TreeModel::Row rowGroup = *iterGroup;
4597      rowGroup[m_SamplesModel.m_col_name] = group->Name.c_str();      rowGroup[m_SamplesModel.m_col_name] = gig_to_utf8(group->Name);
4598      rowGroup[m_SamplesModel.m_col_sample] = NULL;      rowGroup[m_SamplesModel.m_col_sample] = NULL;
4599      rowGroup[m_SamplesModel.m_col_group] = group;      rowGroup[m_SamplesModel.m_col_group] = group;
4600      file_changed();      file_changed();
4601  }  }
4602    
4603    void MainWindow::on_action_replace_sample() {
4604        add_or_replace_sample(true);
4605    }
4606    
4607  void MainWindow::on_action_add_sample() {  void MainWindow::on_action_add_sample() {
4608        add_or_replace_sample(false);
4609    }
4610    
4611    void MainWindow::add_or_replace_sample(bool replace) {
4612      if (!file) return;      if (!file) return;
4613      // get selected group  
4614        // get selected group (and probably selected sample)
4615      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
4616      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4617        if (rows.empty()) return;
4618        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
4619      if (!it) return;      if (!it) return;
4620      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
4621        gig::Sample* sample = NULL;
4622      gig::Group* group = row[m_SamplesModel.m_col_group];      gig::Group* group = row[m_SamplesModel.m_col_group];
4623      if (!group) { // not a group, but a sample is selected (probably)      if (!group) { // not a group, but a sample is selected (probably)
4624          gig::Sample* sample = row[m_SamplesModel.m_col_sample];          if (replace) sample = row[m_SamplesModel.m_col_sample];
4625          if (!sample) return;          if (!row[m_SamplesModel.m_col_sample]) return;
4626          it = row.parent(); // resolve parent (that is the sample's group)          it = row.parent(); // resolve parent (that is the sample's group)
4627          if (!it) return;          if (!it) return;
4628          row = *it;          if (!replace) row = *it;
4629          group = row[m_SamplesModel.m_col_group];          group = (*it)[m_SamplesModel.m_col_group];
4630          if (!group) return;          if (!group) return;
4631      }      }
4632        if (replace && !sample) return;
4633    
4634      // show 'browse for file' dialog      // show 'browse for file' dialog
4635      Gtk::FileChooserDialog dialog(*this, _("Add Sample(s)"));      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));
4636    #if HAS_GTKMM_STOCK
4637      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4638      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
4639      dialog.set_select_multiple(true);  #else
4640        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4641        dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
4642    #endif
4643        dialog.set_select_multiple(!replace); // allow multi audio file selection only when adding new samples, does not make sense when replacing a specific sample
4644    
4645      // matches all file types supported by libsndfile      // matches all file types supported by libsndfile
4646  #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 1477  void MainWindow::on_action_add_sample() Line 4682  void MainWindow::on_action_add_sample()
4682          dialog.set_current_folder(current_sample_dir);          dialog.set_current_folder(current_sample_dir);
4683      }      }
4684      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
4685            dialog.hide();
4686          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
4687          Glib::ustring error_files;          Glib::ustring error_files;
4688          std::vector<std::string> filenames = dialog.get_filenames();          std::vector<std::string> filenames = dialog.get_filenames();
4689          for (std::vector<std::string>::iterator iter = filenames.begin();          for (std::vector<std::string>::iterator iter = filenames.begin();
4690               iter != filenames.end(); ++iter) {               iter != filenames.end(); ++iter) {
4691              printf("Adding sample %s\n",(*iter).c_str());              printf("Adding sample %s\n",(*iter).c_str());
4692              // use libsndfile to retrieve file informations              // use libsndfile to retrieve file information
4693              SF_INFO info;              SF_INFO info;
4694              info.format = 0;              info.format = 0;
4695              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
# Line 1506  void MainWindow::on_action_add_sample() Line 4712  void MainWindow::on_action_add_sample()
4712                          sf_close(hFile); // close sound file                          sf_close(hFile); // close sound file
4713                          throw std::string(_("format not supported")); // unsupported subformat (yet?)                          throw std::string(_("format not supported")); // unsupported subformat (yet?)
4714                  }                  }
4715                  // add a new sample to the .gig file                  // add a new sample to the .gig file (if adding is requested actually)
4716                  gig::Sample* sample = file->AddSample();                  if (!replace) sample = file->AddSample();
4717                  // file name without path                  // file name without path
4718                  Glib::ustring filename = Glib::filename_display_basename(*iter);                  Glib::ustring filename = Glib::filename_display_basename(*iter);
4719                  // remove file extension if there is one                  // remove file extension if there is one
# Line 1517  void MainWindow::on_action_add_sample() Line 4723  void MainWindow::on_action_add_sample()
4723                          break;                          break;
4724                      }                      }
4725                  }                  }
4726                  sample->pInfo->Name = filename;                  sample->pInfo->Name = gig_from_utf8(filename);
4727                  sample->Channels = info.channels;                  sample->Channels = info.channels;
4728                  sample->BitDepth = bitdepth;                  sample->BitDepth = bitdepth;
4729                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;                  sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;
# Line 1531  void MainWindow::on_action_add_sample() Line 4737  void MainWindow::on_action_add_sample()
4737                                 &instrument, sizeof(instrument)) != SF_FALSE)                                 &instrument, sizeof(instrument)) != SF_FALSE)
4738                  {                  {
4739                      sample->MIDIUnityNote = instrument.basenote;                      sample->MIDIUnityNote = instrument.basenote;
4740                        sample->FineTune      = instrument.detune;
4741    
4742                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {                      if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {
4743                          sample->Loops = 1;                          sample->Loops = 1;
# Line 1557  void MainWindow::on_action_add_sample() Line 4764  void MainWindow::on_action_add_sample()
4764                  // physically when File::Save() is called)                  // physically when File::Save() is called)
4765                  sample->Resize(info.frames);                  sample->Resize(info.frames);
4766                  // make sure sample is part of the selected group                  // make sure sample is part of the selected group
4767                  group->AddSample(sample);                  if (!replace) group->AddSample(sample);
4768                  // schedule that physical resize and sample import                  // schedule that physical resize and sample import
4769                  // (data copying), performed when "Save" is requested                  // (data copying), performed when "Save" is requested
4770                  SampleImportItem sched_item;                  SampleImportItem sched_item;
4771                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
4772                  sched_item.sample_path = *iter;                  sched_item.sample_path = *iter;
4773                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue[sample] = sched_item;
4774                  // add sample to the tree view                  // add sample to the tree view
4775                  Gtk::TreeModel::iterator iterSample =                  if (replace) {
4776                      m_refSamplesTreeModel->append(row.children());                      row[m_SamplesModel.m_col_name] = gig_to_utf8(sample->pInfo->Name);
4777                  Gtk::TreeModel::Row rowSample = *iterSample;                  } else {
4778                  rowSample[m_SamplesModel.m_col_name]   = filename;                      Gtk::TreeModel::iterator iterSample =
4779                  rowSample[m_SamplesModel.m_col_sample] = sample;                          m_refSamplesTreeModel->append(row.children());
4780                  rowSample[m_SamplesModel.m_col_group]  = NULL;                      Gtk::TreeModel::Row rowSample = *iterSample;
4781                        rowSample[m_SamplesModel.m_col_name] =
4782                            gig_to_utf8(sample->pInfo->Name);
4783                        rowSample[m_SamplesModel.m_col_sample] = sample;
4784                        rowSample[m_SamplesModel.m_col_group]  = NULL;
4785                    }
4786                  // close sound file                  // close sound file
4787                  sf_close(hFile);                  sf_close(hFile);
4788                  file_changed();                  file_changed();
4789              } catch (std::string what) { // remember the files that made trouble (and their cause)              } catch (std::string what) { // remember the files that made trouble (and their cause)
4790                  if (error_files.size()) error_files += "\n";                  if (!error_files.empty()) error_files += "\n";
4791                  error_files += *iter += " (" + what + ")";                  error_files += *iter += " (" + what + ")";
4792              }              }
4793          }          }
4794          // show error message box when some file(s) could not be opened / added          // show error message box when some file(s) could not be opened / added
4795          if (error_files.size()) {          if (!error_files.empty()) {
4796              Glib::ustring txt = _("Could not add the following sample(s):\n") + error_files;              Glib::ustring txt =
4797                    (replace
4798                        ? _("Failed to replace sample with:\n")
4799                        : _("Could not add the following sample(s):\n"))
4800                    + error_files;
4801              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
4802              msg.run();              msg.run();
4803          }          }
# Line 1593  void MainWindow::on_action_replace_all_s Line 4809  void MainWindow::on_action_replace_all_s
4809      if (!file) return;      if (!file) return;
4810      Gtk::FileChooserDialog dialog(*this, _("Select Folder"),      Gtk::FileChooserDialog dialog(*this, _("Select Folder"),
4811                                    Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);                                    Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
4812      const char* str =      const char* str =
4813          _("This is a very specific function. It tries to replace all samples "          _("This is a very specific function. It tries to replace all samples "
4814            "in the current gig file by samples located in the chosen "            "in the current gig file by samples located in the chosen "
4815            "directory.\n\n"            "directory.\n\n"
# Line 1614  void MainWindow::on_action_replace_all_s Line 4830  void MainWindow::on_action_replace_all_s
4830      Gtk::Label description(str);      Gtk::Label description(str);
4831      description.set_line_wrap();      description.set_line_wrap();
4832  #endif  #endif
4833      Gtk::HBox entryArea;      HBox entryArea;
4834      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);      Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
4835      Gtk::Entry postfixEntryBox;      Gtk::Entry postfixEntryBox;
4836      postfixEntryBox.set_text(".wav");      postfixEntryBox.set_text(".wav");
4837      entryArea.pack_start(entryLabel);      entryArea.pack_start(entryLabel);
4838      entryArea.pack_start(postfixEntryBox);      entryArea.pack_start(postfixEntryBox);
4839    #if USE_GTKMM_BOX
4840        dialog.get_content_area()->pack_start(description, Gtk::PACK_SHRINK);
4841        dialog.get_content_area()->pack_start(entryArea, Gtk::PACK_SHRINK);
4842    #else
4843      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);
4844      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
4845    #endif
4846      description.show();      description.show();
4847    
4848    #if HAS_GTKMM_SHOW_ALL_CHILDREN
4849      entryArea.show_all();      entryArea.show_all();
4850    #else
4851        entryArea.show();
4852    #endif
4853    
4854    #if HAS_GTKMM_STOCK
4855      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4856    #else
4857        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4858    #endif
4859      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
4860      dialog.set_select_multiple(false);      dialog.set_select_multiple(false);
4861      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 1632  void MainWindow::on_action_replace_all_s Line 4863  void MainWindow::on_action_replace_all_s
4863      }      }
4864      if (dialog.run() == Gtk::RESPONSE_OK)      if (dialog.run() == Gtk::RESPONSE_OK)
4865      {      {
4866            dialog.hide();
4867          current_sample_dir = dialog.get_current_folder();          current_sample_dir = dialog.get_current_folder();
4868          Glib::ustring error_files;          Glib::ustring error_files;
4869          std::string folder = dialog.get_filename();          std::string folder = dialog.get_filename();
# Line 1639  void MainWindow::on_action_replace_all_s Line 4871  void MainWindow::on_action_replace_all_s
4871               sample; sample = file->GetNextSample())               sample; sample = file->GetNextSample())
4872          {          {
4873              std::string filename =              std::string filename =
4874                  folder + G_DIR_SEPARATOR_S + sample->pInfo->Name +                  folder + G_DIR_SEPARATOR_S +
4875                  postfixEntryBox.get_text().raw();                  Glib::filename_from_utf8(gig_to_utf8(sample->pInfo->Name) +
4876                                             postfixEntryBox.get_text());
4877              SF_INFO info;              SF_INFO info;
4878              info.format = 0;              info.format = 0;
4879              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);              SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
4880              try              try
4881              {              {
4882                  if (!hFile) throw std::string(_("could not open file"));                  if (!hFile) throw std::string(_("could not open file"));
                 int bitdepth;  
4883                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
4884                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
4885                      case SF_FORMAT_PCM_16:                      case SF_FORMAT_PCM_16:
4886                      case SF_FORMAT_PCM_U8:                      case SF_FORMAT_PCM_U8:
                         bitdepth = 16;  
                         break;  
4887                      case SF_FORMAT_PCM_24:                      case SF_FORMAT_PCM_24:
4888                      case SF_FORMAT_PCM_32:                      case SF_FORMAT_PCM_32:
4889                      case SF_FORMAT_FLOAT:                      case SF_FORMAT_FLOAT:
4890                      case SF_FORMAT_DOUBLE:                      case SF_FORMAT_DOUBLE:
                         bitdepth = 24;  
4891                          break;                          break;
4892                      default:                      default:
4893                          sf_close(hFile);                          sf_close(hFile);
# Line 1667  void MainWindow::on_action_replace_all_s Line 4896  void MainWindow::on_action_replace_all_s
4896                  SampleImportItem sched_item;                  SampleImportItem sched_item;
4897                  sched_item.gig_sample  = sample;                  sched_item.gig_sample  = sample;
4898                  sched_item.sample_path = filename;                  sched_item.sample_path = filename;
4899                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue[sample] = sched_item;
4900                  sf_close(hFile);                  sf_close(hFile);
4901                  file_changed();                  file_changed();
4902              }              }
4903              catch (std::string what)              catch (std::string what)
4904              {              {
4905                  if (error_files.size()) error_files += "\n";                  if (!error_files.empty()) error_files += "\n";
4906                      error_files += filename += " (" + what + ")";                  error_files += Glib::filename_to_utf8(filename) +
4907                        " (" + what + ")";
4908              }              }
4909          }          }
4910          // show error message box when some file(s) could not be opened / added          // show error message box when some file(s) could not be opened / added
4911          if (error_files.size()) {          if (!error_files.empty()) {
4912              Glib::ustring txt =              Glib::ustring txt =
4913                  _("Could not replace the following sample(s):\n") + error_files;                  _("Could not replace the following sample(s):\n") + error_files;
4914              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
# Line 1690  void MainWindow::on_action_replace_all_s Line 4920  void MainWindow::on_action_replace_all_s
4920  void MainWindow::on_action_remove_sample() {  void MainWindow::on_action_remove_sample() {
4921      if (!file) return;      if (!file) return;
4922      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
4923      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4924      if (it) {      for (int r = rows.size() - 1; r >= 0; --r) {
4925            Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
4926            if (!it) continue;
4927          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::Row row = *it;
4928          gig::Group* group   = row[m_SamplesModel.m_col_group];          gig::Group* group   = row[m_SamplesModel.m_col_group];
4929          gig::Sample* sample = row[m_SamplesModel.m_col_sample];          gig::Sample* sample = row[m_SamplesModel.m_col_sample];
# Line 1699  void MainWindow::on_action_remove_sample Line 4931  void MainWindow::on_action_remove_sample
4931          try {          try {
4932              // remove group or sample from the gig file              // remove group or sample from the gig file
4933              if (group) {              if (group) {
4934                  // temporarily remember the samples that bolong to                  // temporarily remember the samples that belong to
4935                  // that group (we need that to clean the queue)                  // that group (we need that to clean the queue)
4936                  std::list<gig::Sample*> members;                  std::list<gig::Sample*> members;
4937                  for (gig::Sample* pSample = group->GetFirstSample();                  for (gig::Sample* pSample = group->GetFirstSample();
# Line 1716  void MainWindow::on_action_remove_sample Line 4948  void MainWindow::on_action_remove_sample
4948                  // if sample(s) were just previously added, remove                  // if sample(s) were just previously added, remove
4949                  // them from the import queue                  // them from the import queue
4950                  for (std::list<gig::Sample*>::iterator member = members.begin();                  for (std::list<gig::Sample*>::iterator member = members.begin();
4951                       member != members.end(); ++member) {                       member != members.end(); ++member)
4952                      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();                  {
4953                           iter != m_SampleImportQueue.end(); ++iter) {                      if (m_SampleImportQueue.count(*member)) {
4954                          if ((*iter).gig_sample == *member) {                          printf("Removing previously added sample '%s' from group '%s'\n",
4955                              printf("Removing previously added sample '%s' from group '%s'\n",                                 m_SampleImportQueue[sample].sample_path.c_str(), name.c_str());
4956                                     (*iter).sample_path.c_str(), name.c_str());                          m_SampleImportQueue.erase(*member);
                             m_SampleImportQueue.erase(iter);  
                             break;  
                         }  
4957                      }                      }
4958                  }                  }
4959                  file_changed();                  file_changed();
# Line 1739  void MainWindow::on_action_remove_sample Line 4968  void MainWindow::on_action_remove_sample
4968                  samples_removed_signal.emit();                  samples_removed_signal.emit();
4969                  // if sample was just previously added, remove it from                  // if sample was just previously added, remove it from
4970                  // the import queue                  // the import queue
4971                  for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();                  if (m_SampleImportQueue.count(sample)) {
4972                       iter != m_SampleImportQueue.end(); ++iter) {                      printf("Removing previously added sample '%s'\n",
4973                      if ((*iter).gig_sample == sample) {                             m_SampleImportQueue[sample].sample_path.c_str());
4974                          printf("Removing previously added sample '%s'\n",                      m_SampleImportQueue.erase(sample);
                                (*iter).sample_path.c_str());  
                         m_SampleImportQueue.erase(iter);  
                         break;  
                     }  
4975                  }                  }
4976                  dimreg_changed();                  dimreg_changed();
4977                  file_changed();                  file_changed();
# Line 1763  void MainWindow::on_action_remove_sample Line 4988  void MainWindow::on_action_remove_sample
4988      }      }
4989  }  }
4990    
4991    void MainWindow::on_action_remove_unused_samples() {
4992        if (!file) return;
4993    
4994        // collect all samples that are not referenced by any instrument
4995        std::list<gig::Sample*> lsamples;
4996        for (int iSample = 0; file->GetSample(iSample); ++iSample) {
4997            gig::Sample* sample = file->GetSample(iSample);
4998            bool isUsed = false;
4999            for (gig::Instrument* instrument = file->GetFirstInstrument(); instrument;
5000                                  instrument = file->GetNextInstrument())
5001            {
5002                for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
5003                                  rgn = instrument->GetNextRegion())
5004                {
5005                    for (int i = 0; i < 256; ++i) {
5006                        if (!rgn->pDimensionRegions[i]) continue;
5007                        if (rgn->pDimensionRegions[i]->pSample != sample) continue;
5008                        isUsed = true;
5009                        goto endOfRefSearch;
5010                    }
5011                }
5012            }
5013            endOfRefSearch:
5014            if (!isUsed) lsamples.push_back(sample);
5015        }
5016    
5017        if (lsamples.empty()) return;
5018    
5019        // notify everybody that we're going to remove these samples
5020        samples_to_be_removed_signal.emit(lsamples);
5021    
5022        // remove collected samples
5023        try {
5024            for (std::list<gig::Sample*>::iterator itSample = lsamples.begin();
5025                 itSample != lsamples.end(); ++itSample)
5026            {
5027                gig::Sample* sample = *itSample;
5028                // remove sample from the .gig file
5029                file->DeleteSample(sample);
5030                // if sample was just previously added, remove it from the import queue
5031                if (m_SampleImportQueue.count(sample)) {
5032                    printf("Removing previously added sample '%s'\n",
5033                           m_SampleImportQueue[sample].sample_path.c_str());
5034                    m_SampleImportQueue.erase(sample);
5035                }
5036            }
5037        } catch (RIFF::Exception e) {
5038            // show error message
5039            Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
5040            msg.run();
5041        }
5042    
5043        // notify everybody that we're done with removal
5044        samples_removed_signal.emit();
5045    
5046        dimreg_changed();
5047        file_changed();
5048        __refreshEntireGUI();
5049    }
5050    
5051    // see comment on on_sample_treeview_drag_begin()
5052    void MainWindow::on_scripts_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
5053    {
5054        first_call_to_drag_data_get = true;
5055    }
5056    
5057    void MainWindow::on_scripts_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
5058                                                       Gtk::SelectionData& selection_data, guint, guint)
5059    {
5060        if (!first_call_to_drag_data_get) return;
5061        first_call_to_drag_data_get = false;
5062    
5063        // get selected script
5064        gig::Script* script = NULL;
5065        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
5066        Gtk::TreeModel::iterator it = sel->get_selected();
5067        if (it) {
5068            Gtk::TreeModel::Row row = *it;
5069            script = row[m_ScriptsModel.m_col_script];
5070        }
5071        // pass the gig::Script as pointer
5072        selection_data.set(selection_data.get_target(), 0/*unused*/,
5073                           (const guchar*)&script,
5074                           sizeof(script)/*length of data in bytes*/);
5075    }
5076    
5077    // see comment on on_sample_treeview_drag_begin()
5078    void MainWindow::on_instruments_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
5079    {
5080        first_call_to_drag_data_get = true;
5081    }
5082    
5083    void MainWindow::on_instruments_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
5084                                                           Gtk::SelectionData& selection_data, guint, guint)
5085    {
5086        if (!first_call_to_drag_data_get) return;
5087        first_call_to_drag_data_get = false;
5088    
5089        // get selected source instrument
5090        gig::Instrument* src = NULL;
5091        {
5092            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
5093            std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5094            if (!rows.empty()) {
5095                Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[0]);
5096                if (it) {
5097                    Gtk::TreeModel::Row row = *it;
5098                    src = row[m_Columns.m_col_instr];
5099                }
5100            }
5101        }
5102        if (!src) return;
5103    
5104        // pass the source gig::Instrument as pointer
5105        selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&src,
5106                           sizeof(src)/*length of data in bytes*/);
5107    }
5108    
5109    void MainWindow::on_instruments_treeview_drop_drag_data_received(
5110        const Glib::RefPtr<Gdk::DragContext>& context, int x, int y,
5111        const Gtk::SelectionData& selection_data, guint, guint time)
5112    {
5113        gig::Instrument* src = *((gig::Instrument**) selection_data.get_data());
5114        if (!src || selection_data.get_length() != sizeof(gig::Instrument*))
5115            return;
5116    
5117        gig::Instrument* dst = NULL;
5118        {
5119            Gtk::TreeModel::Path path;
5120            const bool found = m_TreeView.get_path_at_pos(x, y, path);
5121            if (!found) return;
5122    
5123            Gtk::TreeModel::iterator iter = m_refTreeModel->get_iter(path);
5124            if (!iter) return;
5125            Gtk::TreeModel::Row row = *iter;
5126            dst = row[m_Columns.m_col_instr];
5127        }
5128        if (!dst) return;
5129    
5130        //printf("dragdrop received src=%s dst=%s\n", src->pInfo->Name.c_str(), dst->pInfo->Name.c_str());
5131        src->MoveTo(dst);
5132        __refreshEntireGUI();
5133        select_instrument(src);
5134    }
5135    
5136  // For some reason drag_data_get gets called two times for each  // For some reason drag_data_get gets called two times for each
5137  // drag'n'drop (at least when target is an Entry). This work-around  // drag'n'drop (at least when target is an Entry). This work-around
5138  // makes sure the code in drag_data_get and drop_drag_data_received is  // makes sure the code in drag_data_get and drop_drag_data_received is
# Line 1781  void MainWindow::on_sample_treeview_drag Line 5151  void MainWindow::on_sample_treeview_drag
5151      // get selected sample      // get selected sample
5152      gig::Sample* sample = NULL;      gig::Sample* sample = NULL;
5153      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
5154      Gtk::TreeModel::iterator it = sel->get_selected();      std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5155      if (it) {      if (!rows.empty()) {
5156          Gtk::TreeModel::Row row = *it;          Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
5157          sample = row[m_SamplesModel.m_col_sample];          if (it) {
5158                Gtk::TreeModel::Row row = *it;
5159                sample = row[m_SamplesModel.m_col_sample];
5160            }
5161      }      }
5162      // pass the gig::Sample as pointer      // pass the gig::Sample as pointer
5163      selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&sample,      selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&sample,
# Line 1821  void MainWindow::on_sample_label_drop_dr Line 5194  void MainWindow::on_sample_label_drop_dr
5194          bool channels_changed = false;          bool channels_changed = false;
5195          if (sample->Channels == 1 && stereo_dimension) {          if (sample->Channels == 1 && stereo_dimension) {
5196              // remove the samplechannel dimension              // remove the samplechannel dimension
5197    /* commented out, because it makes it impossible building up an instrument from scratch using two separate L/R samples
5198              region->DeleteDimension(stereo_dimension);              region->DeleteDimension(stereo_dimension);
5199              channels_changed = true;              channels_changed = true;
5200              region_changed();              region_changed();
5201    */
5202          }          }
5203          dimreg_edit.set_sample(sample);          dimreg_edit.set_sample(
5204                sample,
5205                is_copy_samples_unity_note_enabled(),
5206                is_copy_samples_fine_tune_enabled(),
5207                is_copy_samples_loop_enabled()
5208            );
5209    
5210          if (sample->Channels == 2 && !stereo_dimension) {          if (sample->Channels == 2 && !stereo_dimension) {
5211              // add samplechannel dimension              // add samplechannel dimension
# Line 1868  void MainWindow::sample_name_changed(con Line 5248  void MainWindow::sample_name_changed(con
5248      Glib::ustring name  = row[m_SamplesModel.m_col_name];      Glib::ustring name  = row[m_SamplesModel.m_col_name];
5249      gig::Group* group   = row[m_SamplesModel.m_col_group];      gig::Group* group   = row[m_SamplesModel.m_col_group];
5250      gig::Sample* sample = row[m_SamplesModel.m_col_sample];      gig::Sample* sample = row[m_SamplesModel.m_col_sample];
5251        gig::String gigname(gig_from_utf8(name));
5252      if (group) {      if (group) {
5253          if (group->Name != name) {          if (group->Name != gigname) {
5254              group->Name = name;              group->Name = gigname;
5255              printf("group name changed\n");              printf("group name changed\n");
5256              file_changed();              file_changed();
5257          }          }
5258      } else if (sample) {      } else if (sample) {
5259          if (sample->pInfo->Name != name.raw()) {          if (sample->pInfo->Name != gigname) {
5260              sample->pInfo->Name = name.raw();              sample->pInfo->Name = gigname;
5261              printf("sample name changed\n");              printf("sample name changed\n");
5262              file_changed();              file_changed();
5263          }          }
5264      }      }
5265        // change name in the sample properties window
5266        if (sampleProps.get_sample() == sample && sample) {
5267            sampleProps.set_sample(sample);
5268        }
5269    }
5270    
5271    void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,
5272                                         const Gtk::TreeModel::iterator& iter) {
5273        if (!iter) return;
5274        Gtk::TreeModel::Row row = *iter;
5275        Glib::ustring name      = row[m_ScriptsModel.m_col_name];
5276        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
5277        gig::Script* script     = row[m_ScriptsModel.m_col_script];
5278        gig::String gigname(gig_from_utf8(name));
5279        if (group) {
5280            if (group->Name != gigname) {
5281                group->Name = gigname;
5282                printf("script group name changed\n");
5283                file_changed();
5284            }
5285        } else if (script) {
5286            if (script->Name != gigname) {
5287                script->Name = gigname;
5288                printf("script name changed\n");
5289                file_changed();
5290            }
5291        }
5292    }
5293    
5294    void MainWindow::script_double_clicked(const Gtk::TreeModel::Path& path,
5295                                           Gtk::TreeViewColumn* column)
5296    {
5297        Gtk::TreeModel::iterator iter = m_refScriptsTreeModel->get_iter(path);
5298        if (!iter) return;
5299        Gtk::TreeModel::Row row = *iter;
5300        gig::Script* script = row[m_ScriptsModel.m_col_script];
5301        if (!script) return;
5302    
5303        ScriptEditor* editor = new ScriptEditor;
5304        editor->signal_script_to_be_changed.connect(
5305            signal_script_to_be_changed.make_slot()
5306        );
5307        editor->signal_script_changed.connect(
5308            signal_script_changed.make_slot()
5309        );
5310        editor->setScript(script);
5311        //editor->reparent(*this);
5312        editor->show();
5313  }  }
5314    
5315  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,
# Line 1888  void MainWindow::instrument_name_changed Line 5317  void MainWindow::instrument_name_changed
5317      if (!iter) return;      if (!iter) return;
5318      Gtk::TreeModel::Row row = *iter;      Gtk::TreeModel::Row row = *iter;
5319      Glib::ustring name = row[m_Columns.m_col_name];      Glib::ustring name = row[m_Columns.m_col_name];
5320    
5321    #if !USE_GTKMM_BUILDER
5322        // change name in instrument menu
5323        int index = path[0];
5324        const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
5325        if (index < children.size()) {
5326    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 16) || GTKMM_MAJOR_VERSION > 2
5327            static_cast<Gtk::RadioMenuItem*>(children[index])->set_label(name);
5328    #else
5329            remove_instrument_from_menu(index);
5330            Gtk::RadioMenuItem* item = add_instrument_to_menu(name, index);
5331            item->set_active();
5332    #endif
5333        }
5334    #endif
5335    
5336        // change name in gig
5337      gig::Instrument* instrument = row[m_Columns.m_col_instr];      gig::Instrument* instrument = row[m_Columns.m_col_instr];
5338      if (instrument && instrument->pInfo->Name != name.raw()) {      gig::String gigname(gig_from_utf8(name));
5339          instrument->pInfo->Name = name.raw();      if (instrument && instrument->pInfo->Name != gigname) {
5340            instrument->pInfo->Name = gigname;
5341    
5342            // change name in the instrument properties window
5343            if (instrumentProps.get_instrument() == instrument) {
5344                instrumentProps.update_name();
5345            }
5346    
5347          file_changed();          file_changed();
5348      }      }
5349  }  }
5350    
5351    bool MainWindow::instrument_row_visible(const Gtk::TreeModel::const_iterator& iter) {
5352        if (!iter)
5353            return true;
5354    
5355        Glib::ustring pattern = m_searchText.get_text().lowercase();
5356        trim(pattern);
5357        if (pattern.empty()) return true;
5358    
5359    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
5360        //HACK: on GTKMM4 development branch const_iterator cannot be easily converted to iterator, probably going to be fixed before final GTKMM4 release though.
5361        Gtk::TreeModel::Row row = **(Gtk::TreeModel::iterator*)(&iter);
5362    #else
5363        Gtk::TreeModel::Row row = *iter;
5364    #endif
5365        Glib::ustring name = row[m_Columns.m_col_name];
5366        name = name.lowercase();
5367    
5368        std::vector<Glib::ustring> tokens = Glib::Regex::split_simple(" ", pattern);
5369        for (int t = 0; t < tokens.size(); ++t)
5370            if (name.find(tokens[t]) == Glib::ustring::npos)
5371                return false;
5372    
5373        return true;
5374    }
5375    
5376    void MainWindow::on_action_combine_instruments() {
5377        CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);
5378    
5379        // take over selection from instruments list view for the combine dialog's
5380        // list view as pre-selection
5381        std::set<int> indeces;
5382        {
5383            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
5384            std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5385            for (int r = 0; r < rows.size(); ++r) {
5386                Gtk::TreeModel::iterator it = m_refTreeModel->get_iter(rows[r]);
5387                if (it) {
5388                    Gtk::TreeModel::Row row = *it;
5389                    int index = row[m_Columns.m_col_nr];
5390                    indeces.insert(index);
5391                }
5392            }
5393        }
5394        d->setSelectedInstruments(indeces);
5395    
5396    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5397        d->show_all();
5398    #else
5399        d->show();
5400    #endif
5401        d->run();
5402        if (d->fileWasChanged()) {
5403            // update GUI with new instrument just created
5404            add_instrument(d->newCombinedInstrument());
5405        }
5406        delete d;
5407    }
5408    
5409    void MainWindow::on_action_view_references() {
5410        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
5411        std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5412        if (rows.empty()) return;
5413        Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
5414        if (!it) return;
5415        Gtk::TreeModel::Row row = *it;
5416        gig::Sample* sample = row[m_SamplesModel.m_col_sample];
5417        if (!sample) return;
5418    
5419        ReferencesView* d = new ReferencesView(*this);
5420        d->setSample(sample);
5421        d->dimension_region_selected.connect(
5422            sigc::mem_fun(*this, &MainWindow::select_dimension_region)
5423        );
5424    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5425        d->show_all();
5426    #else
5427        d->show();
5428    #endif
5429        d->resize(500, 400);
5430        d->run();
5431        delete d;
5432    }
5433    
5434    void MainWindow::mergeFiles(const std::vector<std::string>& filenames) {
5435        struct _Source {
5436            std::vector<RIFF::File*> riffs;
5437            std::vector<gig::File*> gigs;
5438            
5439            ~_Source() {
5440                for (int k = 0; k < gigs.size(); ++k) delete gigs[k];
5441                for (int k = 0; k < riffs.size(); ++k) delete riffs[k];
5442                riffs.clear();
5443                gigs.clear();
5444            }
5445        } sources;
5446    
5447        if (filenames.empty())
5448            throw RIFF::Exception(_("No files selected, so nothing done."));
5449    
5450        // first open all input files (to avoid output file corruption)
5451        int i;
5452        try {
5453            for (i = 0; i < filenames.size(); ++i) {
5454                const std::string& filename = filenames[i];
5455                printf("opening file=%s\n", filename.c_str());
5456    
5457                RIFF::File* riff = new RIFF::File(filename);
5458                sources.riffs.push_back(riff);
5459    
5460                gig::File* gig = new gig::File(riff);
5461                sources.gigs.push_back(gig);
5462            }
5463        } catch (RIFF::Exception e) {
5464            throw RIFF::Exception(
5465                _("Error occurred while opening '") +
5466                filenames[i] +
5467                "': " +
5468                e.Message
5469            );
5470        } catch (...) {
5471            throw RIFF::Exception(
5472                _("Unknown exception occurred while opening '") +
5473                filenames[i] + "'"
5474            );
5475        }
5476    
5477        // now merge the opened .gig files to the main .gig file currently being
5478        // open in gigedit
5479        try {
5480            for (i = 0; i < filenames.size(); ++i) {
5481                const std::string& filename = filenames[i];
5482                printf("merging file=%s\n", filename.c_str());
5483                assert(i < sources.gigs.size());
5484    
5485                this->file->AddContentOf(sources.gigs[i]);
5486            }
5487        } catch (RIFF::Exception e) {
5488            throw RIFF::Exception(
5489                _("Error occurred while merging '") +
5490                filenames[i] +
5491                "': " +
5492                e.Message
5493            );
5494        } catch (...) {
5495            throw RIFF::Exception(
5496                _("Unknown exception occurred while merging '") +
5497                filenames[i] + "'"
5498            );
5499        }
5500    
5501        // Finally save gig file persistently to disk ...
5502        //NOTE: requires that this gig file already has a filename !
5503        {
5504            std::cout << "Saving file\n" << std::flush;
5505            file_structure_to_be_changed_signal.emit(this->file);
5506    
5507            progress_dialog = new ProgressDialog( //FIXME: memory leak!
5508                _("Saving") +  Glib::ustring(" '") +
5509                Glib::filename_display_basename(this->filename) + "' ...",
5510                *this
5511            );
5512    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5513            progress_dialog->show_all();
5514    #else
5515            progress_dialog->show();
5516    #endif
5517            saver = new Saver(this->file); //FIXME: memory leak!
5518            saver->signal_progress().connect(
5519                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
5520            saver->signal_finished().connect(
5521                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
5522            saver->signal_error().connect(
5523                sigc::mem_fun(*this, &MainWindow::on_saver_error));
5524            saver->launch();
5525        }
5526    }
5527    
5528    void MainWindow::on_action_merge_files() {
5529        if (this->file->GetFileName().empty()) {
5530            Glib::ustring txt = _(
5531                "You seem to have a new .gig file open that has not been saved "
5532                "yet. You must save it somewhere before starting to merge it with "
5533                "other .gig files though, because during the merge operation the "
5534                "other files' sample data must be written on file level to the "
5535                "target .gig file."
5536            );
5537            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
5538            msg.run();
5539            return;
5540        }
5541    
5542        Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
5543    #if HAS_GTKMM_STOCK
5544        dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
5545    #else
5546        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
5547    #endif
5548        dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
5549        dialog.set_default_response(Gtk::RESPONSE_CANCEL);
5550    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
5551        Gtk::FileFilter filter;
5552        filter.add_pattern("*.gig");
5553    #else
5554        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
5555        filter->add_pattern("*.gig");
5556    #endif
5557        dialog.set_filter(filter);
5558        if (current_gig_dir != "") {
5559            dialog.set_current_folder(current_gig_dir);
5560        }
5561        dialog.set_select_multiple(true);
5562    
5563        // show warning in the file picker dialog
5564        HBox descriptionArea;
5565        descriptionArea.set_spacing(15);
5566        Gtk::Image warningIcon;
5567        warningIcon.set_from_icon_name("dialog-warning",
5568                                       Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
5569        descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
5570    #if GTKMM_MAJOR_VERSION < 3
5571        view::WrapLabel description;
5572    #else
5573        Gtk::Label description;
5574        description.set_line_wrap();
5575    #endif
5576        description.set_markup(_(
5577            "\nSelect at least one .gig file that shall be merged to the .gig file "
5578            "currently being open in gigedit.\n\n"
5579            "<b>Please Note:</b> Merging with other files will modify your "
5580            "currently open .gig file on file level! And be aware that the current "
5581            "merge algorithm does not detect duplicate samples yet. So if you are "
5582            "merging files which are using equivalent sample data, those "
5583            "equivalent samples will currently be treated as separate samples and "
5584            "will accordingly be stored separately in the target .gig file!"
5585        ));
5586        descriptionArea.pack_start(description);
5587    #if USE_GTKMM_BOX
5588    # warning No description area implemented for dialog on GTKMM 3
5589    #else
5590        dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
5591    #endif
5592    #if HAS_GTKMM_SHOW_ALL_CHILDREN
5593        descriptionArea.show_all();
5594    #else
5595        descriptionArea.show();
5596    #endif
5597    
5598        if (dialog.run() == Gtk::RESPONSE_OK) {
5599            dialog.hide();
5600    #ifdef GLIB_THREADS
5601            printf("on_action_merge_files self=%p\n",
5602                   static_cast<void*>(Glib::Threads::Thread::self()));
5603    #else
5604            std::cout << "on_action_merge_files self=" <<
5605                std::this_thread::get_id() << "\n";
5606    #endif
5607            std::vector<std::string> filenames = dialog.get_filenames();
5608    
5609            // merge the selected files to the currently open .gig file
5610            try {
5611                mergeFiles(filenames);
5612            } catch (RIFF::Exception e) {
5613                Gtk::MessageDialog msg(*this, e.Message, false, Gtk::MESSAGE_ERROR);
5614                msg.run();
5615            }
5616    
5617            // update GUI
5618            __refreshEntireGUI();
5619        }
5620    }
5621    
5622  void MainWindow::set_file_is_shared(bool b) {  void MainWindow::set_file_is_shared(bool b) {
5623      this->file_is_shared = b;      this->file_is_shared = b;
5624    
# Line 1909  void MainWindow::set_file_is_shared(bool Line 5633  void MainWindow::set_file_is_shared(bool
5633              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)
5634          );          );
5635      }      }
5636    
5637        {
5638    #if USE_GTKMM_BUILDER
5639            m_actionToggleSyncSamplerSelection->property_enabled() = b;
5640    #else
5641            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
5642                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
5643            if (item) item->set_sensitive(b);
5644    #endif
5645        }
5646    }
5647    
5648    void MainWindow::on_sample_ref_count_incremented(gig::Sample* sample, int offset) {
5649        if (!sample) return;
5650        sample_ref_count[sample] += offset;
5651        const int refcount = sample_ref_count[sample];
5652    
5653        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
5654        for (int g = 0; g < model->children().size(); ++g) {
5655            Gtk::TreeModel::Row rowGroup = model->children()[g];
5656            for (int s = 0; s < rowGroup.children().size(); ++s) {
5657                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
5658                if (rowSample[m_SamplesModel.m_col_sample] != sample) continue;
5659                rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
5660                rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
5661            }
5662        }
5663    }
5664    
5665    void MainWindow::on_sample_ref_changed(gig::Sample* oldSample, gig::Sample* newSample) {
5666        on_sample_ref_count_incremented(oldSample, -1);
5667        on_sample_ref_count_incremented(newSample, +1);
5668    }
5669    
5670    void MainWindow::on_samples_to_be_removed(std::list<gig::Sample*> samples) {
5671        // just in case a new sample is added later with exactly the same memory
5672        // address, which would lead to incorrect refcount if not deleted here
5673        for (std::list<gig::Sample*>::const_iterator it = samples.begin();
5674             it != samples.end(); ++it)
5675        {
5676            sample_ref_count.erase(*it);
5677        }
5678    }
5679    
5680    void MainWindow::show_samples_tab() {
5681        m_TreeViewNotebook.set_current_page(0);
5682    }
5683    
5684    void MainWindow::show_intruments_tab() {
5685        m_TreeViewNotebook.set_current_page(1);
5686    }
5687    
5688    void MainWindow::show_scripts_tab() {
5689        m_TreeViewNotebook.set_current_page(2);
5690    }
5691    
5692    void MainWindow::select_instrument_by_dir(int dir) {
5693        if (!file) return;
5694        gig::Instrument* pInstrument = get_instrument();
5695        if (!pInstrument) {
5696            select_instrument( file->GetInstrument(0) );
5697            return;
5698        }
5699        for (int i = 0; file->GetInstrument(i); ++i) {
5700            if (file->GetInstrument(i) == pInstrument) {
5701                select_instrument( file->GetInstrument(i + dir) );
5702                return;
5703            }
5704        }
5705    }
5706    
5707    void MainWindow::select_prev_instrument() {
5708        select_instrument_by_dir(-1);
5709    }
5710    
5711    void MainWindow::select_next_instrument() {
5712        select_instrument_by_dir(1);
5713    }
5714    
5715    void MainWindow::select_prev_region() {
5716        m_RegionChooser.select_prev_region();
5717    }
5718    
5719    void MainWindow::select_next_region() {
5720        m_RegionChooser.select_next_region();
5721    }
5722    
5723    void MainWindow::select_next_dim_rgn_zone() {
5724        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5725        m_DimRegionChooser.select_next_dimzone();
5726    }
5727    
5728    void MainWindow::select_prev_dim_rgn_zone() {
5729        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5730        m_DimRegionChooser.select_prev_dimzone();
5731    }
5732    
5733    void MainWindow::select_add_next_dim_rgn_zone() {
5734        m_DimRegionChooser.select_next_dimzone(true);
5735    }
5736    
5737    void MainWindow::select_add_prev_dim_rgn_zone() {
5738        m_DimRegionChooser.select_prev_dimzone(true);
5739    }
5740    
5741    void MainWindow::select_prev_dimension() {
5742        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5743        m_DimRegionChooser.select_prev_dimension();
5744    }
5745    
5746    void MainWindow::select_next_dimension() {
5747        if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5748        m_DimRegionChooser.select_next_dimension();
5749    }
5750    
5751    #define CLIPBOARD_DIMENSIONREGION_TARGET \
5752        ("libgig.DimensionRegion." + m_serializationArchive.rawDataFormat())
5753    
5754    void MainWindow::copy_selected_dimrgn() {
5755        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
5756        if (!pDimRgn) {
5757            updateClipboardPasteAvailable();
5758            updateClipboardCopyAvailable();
5759            return;
5760        }
5761    
5762        std::vector<Gtk::TargetEntry> targets;
5763        targets.push_back( Gtk::TargetEntry(CLIPBOARD_DIMENSIONREGION_TARGET) );
5764    
5765        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5766        clipboard->set(
5767            targets,
5768            sigc::mem_fun(*this, &MainWindow::on_clipboard_get),
5769            sigc::mem_fun(*this, &MainWindow::on_clipboard_clear)
5770        );
5771    
5772        m_serializationArchive.serialize(pDimRgn);
5773    
5774        updateClipboardPasteAvailable();
5775    }
5776    
5777    void MainWindow::paste_copied_dimrgn() {
5778        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5779        clipboard->request_contents(
5780            CLIPBOARD_DIMENSIONREGION_TARGET,
5781            sigc::mem_fun(*this, &MainWindow::on_clipboard_received)
5782        );
5783        updateClipboardPasteAvailable();
5784    }
5785    
5786    void MainWindow::adjust_clipboard_content() {
5787        MacroEditor* editor = new MacroEditor();
5788        editor->setMacro(&m_serializationArchive, true);
5789        editor->show();
5790    }
5791    
5792    void MainWindow::updateClipboardPasteAvailable() {
5793        Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5794        clipboard->request_targets(
5795            sigc::mem_fun(*this, &MainWindow::on_clipboard_received_targets)
5796        );
5797    }
5798    
5799    void MainWindow::updateClipboardCopyAvailable() {
5800        bool bDimensionRegionCopyIsPossible = m_DimRegionChooser.get_main_dimregion();
5801    #if USE_GTKMM_BUILDER
5802        m_actionCopyDimRgn->property_enabled() = bDimensionRegionCopyIsPossible;
5803    #else
5804        static_cast<Gtk::MenuItem*>(
5805            uiManager->get_widget("/MenuBar/MenuEdit/CopyDimRgn")
5806        )->set_sensitive(bDimensionRegionCopyIsPossible);
5807    #endif
5808    }
5809    
5810    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
5811    void MainWindow::on_clipboard_owner_change(Gdk::EventOwnerChange& event) {
5812    #else
5813    void MainWindow::on_clipboard_owner_change(GdkEventOwnerChange* event) {
5814    #endif
5815        updateClipboardPasteAvailable();
5816    }
5817    
5818    void MainWindow::on_clipboard_get(Gtk::SelectionData& selection_data, guint /*info*/) {
5819        const std::string target = selection_data.get_target();
5820        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
5821            selection_data.set(
5822                CLIPBOARD_DIMENSIONREGION_TARGET, 8 /* "format": probably unused*/,
5823                &m_serializationArchive.rawData()[0],
5824                m_serializationArchive.rawData().size()
5825            );
5826        } else {
5827            std::cerr << "Clipboard: content for unknown target '" << target << "' requested\n";
5828        }
5829    }
5830    
5831    void MainWindow::on_clipboard_clear() {
5832        m_serializationArchive.clear();
5833        updateClipboardPasteAvailable();
5834        updateClipboardCopyAvailable();
5835    }
5836    
5837    //NOTE: Might throw exception !!!
5838    void MainWindow::applyMacro(Serialization::Archive& macro) {
5839        gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
5840        if (!pDimRgn) return;
5841    
5842        for (std::set<gig::DimensionRegion*>::iterator itDimReg = dimreg_edit.dimregs.begin();
5843             itDimReg != dimreg_edit.dimregs.end(); ++itDimReg)
5844        {
5845            gig::DimensionRegion* pDimRgn = *itDimReg;
5846            DimRegionChangeGuard(this, pDimRgn);
5847            macro.deserialize(pDimRgn);
5848        }
5849        //region_changed()
5850        file_changed();
5851        dimreg_changed();
5852    }
5853    
5854    void MainWindow::on_clipboard_received(const Gtk::SelectionData& selection_data) {
5855        const std::string target = selection_data.get_target();
5856        if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
5857            Glib::ustring errorText;
5858            try {
5859                m_serializationArchive.decode(
5860                    selection_data.get_data(), selection_data.get_length()
5861                );
5862                applyMacro(m_serializationArchive);
5863            } catch (Serialization::Exception e) {
5864                errorText = e.Message;
5865            } catch (...) {
5866                errorText = _("Unknown exception while pasting DimensionRegion");
5867            }
5868            if (!errorText.empty()) {
5869                Glib::ustring txt = _("Pasting DimensionRegion failed:\n") + errorText;
5870                Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
5871                msg.run();
5872            }
5873        }
5874    }
5875    
5876    void MainWindow::on_clipboard_received_targets(const std::vector<Glib::ustring>& targets) {
5877        const bool bDimensionRegionPasteIsPossible =
5878            std::find(targets.begin(), targets.end(),
5879                      CLIPBOARD_DIMENSIONREGION_TARGET) != targets.end();
5880    
5881    #if USE_GTKMM_BUILDER
5882        m_actionPasteDimRgn->property_enabled() = bDimensionRegionPasteIsPossible;
5883        m_actionAdjustClipboard->property_enabled() = bDimensionRegionPasteIsPossible;
5884    #else
5885        static_cast<Gtk::MenuItem*>(
5886            uiManager->get_widget("/MenuBar/MenuEdit/PasteDimRgn")
5887        )->set_sensitive(bDimensionRegionPasteIsPossible);
5888    
5889        static_cast<Gtk::MenuItem*>(
5890            uiManager->get_widget("/MenuBar/MenuEdit/AdjustClipboard")
5891        )->set_sensitive(bDimensionRegionPasteIsPossible);
5892    #endif
5893  }  }
5894    
5895  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {  sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {
# Line 1966  sigc::signal<void, int/*key*/, int/*velo Line 5947  sigc::signal<void, int/*key*/, int/*velo
5947  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {
5948      return m_RegionChooser.signal_keyboard_key_released();      return m_RegionChooser.signal_keyboard_key_released();
5949  }  }
5950    
5951    sigc::signal<void, gig::Instrument*>& MainWindow::signal_switch_sampler_instrument() {
5952        return switch_sampler_instrument_signal;
5953    }

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

  ViewVC Help
Powered by ViewVC