/[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 2541 by schoenebeck, Wed Apr 23 16:49:05 2014 UTC revision 2968 by schoenebeck, Mon Jul 18 11:25:13 2016 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2014 Andreas Persson   * Copyright (C) 2006-2016 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 20  Line 20 
20  #include <iostream>  #include <iostream>
21  #include <cstring>  #include <cstring>
22    
23    #include <glibmmconfig.h>
24    // threads.h must be included first to be able to build with
25    // G_DISABLE_DEPRECATED
26    #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION == 31 && GLIBMM_MICRO_VERSION >= 2) || \
27        (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION > 31) || GLIBMM_MAJOR_VERSION > 2
28    #include <glibmm/threads.h>
29    #endif
30    
31  #include <glibmm/convert.h>  #include <glibmm/convert.h>
32  #include <glibmm/dispatcher.h>  #include <glibmm/dispatcher.h>
33  #include <glibmm/miscutils.h>  #include <glibmm/miscutils.h>
# Line 27  Line 35 
35  #include <gtkmm/aboutdialog.h>  #include <gtkmm/aboutdialog.h>
36  #include <gtkmm/filechooserdialog.h>  #include <gtkmm/filechooserdialog.h>
37  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
 #include <gtkmm/stock.h>  
38  #include <gtkmm/targetentry.h>  #include <gtkmm/targetentry.h>
39  #include <gtkmm/main.h>  #include <gtkmm/main.h>
40  #include <gtkmm/toggleaction.h>  #include <gtkmm/toggleaction.h>
# Line 40  Line 47 
47    
48  #include <stdio.h>  #include <stdio.h>
49  #include <sndfile.h>  #include <sndfile.h>
50    #include <assert.h>
51    
52  #include "mainwindow.h"  #include "mainwindow.h"
53  #include "Settings.h"  #include "Settings.h"
54    #include "CombineInstrumentsDialog.h"
55    #include "scripteditor.h"
56    #include "scriptslots.h"
57    #include "ReferencesView.h"
58  #include "../../gfx/status_attached.xpm"  #include "../../gfx/status_attached.xpm"
59  #include "../../gfx/status_detached.xpm"  #include "../../gfx/status_detached.xpm"
60    
61    
62  MainWindow::MainWindow() :  MainWindow::MainWindow() :
63        m_DimRegionChooser(*this),
64      dimreg_label(_("Changes apply to:")),      dimreg_label(_("Changes apply to:")),
65      dimreg_all_regions(_("all regions")),      dimreg_all_regions(_("all regions")),
66      dimreg_all_dimregs(_("all dimension splits")),      dimreg_all_dimregs(_("all dimension splits")),
# Line 76  MainWindow::MainWindow() : Line 89  MainWindow::MainWindow() :
89      m_ScrolledWindowSamples.add(m_TreeViewSamples);      m_ScrolledWindowSamples.add(m_TreeViewSamples);
90      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);      m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
91    
92        m_ScrolledWindowScripts.add(m_TreeViewScripts);
93        m_ScrolledWindowScripts.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
94    
95    
96      m_TreeViewNotebook.set_size_request(300);      m_TreeViewNotebook.set_size_request(300);
97    
# Line 96  MainWindow::MainWindow() : Line 112  MainWindow::MainWindow() :
112    
113      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));      m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
114      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));      m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
115        m_TreeViewNotebook.append_page(m_ScrolledWindowScripts, _("Scripts"));
116    
117      actionGroup = Gtk::ActionGroup::create();      actionGroup = Gtk::ActionGroup::create();
118    
119      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));      actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));
120      actionGroup->add(Gtk::Action::create("New", Gtk::Stock::NEW),      actionGroup->add(Gtk::Action::create("New", _("_New")),
121                         Gtk::AccelKey("<control>n"),
122                       sigc::mem_fun(                       sigc::mem_fun(
123                           *this, &MainWindow::on_action_file_new));                           *this, &MainWindow::on_action_file_new));
124      Glib::RefPtr<Gtk::Action> action =      actionGroup->add(Gtk::Action::create("Open", _("_Open...")),
125          Gtk::Action::create("Open", Gtk::Stock::OPEN);                       Gtk::AccelKey("<control>o"),
     action->property_label() = action->property_label() + "...";  
     actionGroup->add(action,  
126                       sigc::mem_fun(                       sigc::mem_fun(
127                           *this, &MainWindow::on_action_file_open));                           *this, &MainWindow::on_action_file_open));
128      actionGroup->add(Gtk::Action::create("Save", Gtk::Stock::SAVE),      actionGroup->add(Gtk::Action::create("Save", _("_Save")),
129                         Gtk::AccelKey("<control>s"),
130                       sigc::mem_fun(                       sigc::mem_fun(
131                           *this, &MainWindow::on_action_file_save));                           *this, &MainWindow::on_action_file_save));
132      action = Gtk::Action::create("SaveAs", Gtk::Stock::SAVE_AS);      actionGroup->add(Gtk::Action::create("SaveAs", _("Save _As...")),
     action->property_label() = action->property_label() + "...";  
     actionGroup->add(action,  
133                       Gtk::AccelKey("<shift><control>s"),                       Gtk::AccelKey("<shift><control>s"),
134                       sigc::mem_fun(                       sigc::mem_fun(
135                           *this, &MainWindow::on_action_file_save_as));                           *this, &MainWindow::on_action_file_save_as));
136      actionGroup->add(Gtk::Action::create("Properties",      actionGroup->add(Gtk::Action::create("Properties",
137                                           Gtk::Stock::PROPERTIES),                                           _("_Properties")),
138                       sigc::mem_fun(                       sigc::mem_fun(
139                           *this, &MainWindow::on_action_file_properties));                           *this, &MainWindow::on_action_file_properties));
140      actionGroup->add(Gtk::Action::create("InstrProperties",      actionGroup->add(Gtk::Action::create("InstrProperties",
141                                           Gtk::Stock::PROPERTIES),                                           _("_Properties")),
142                       sigc::mem_fun(                       sigc::mem_fun(
143                           *this, &MainWindow::show_instr_props));                           *this, &MainWindow::show_instr_props));
144      actionGroup->add(Gtk::Action::create("MidiRules",      actionGroup->add(Gtk::Action::create("MidiRules",
145                                           _("_Midi Rules")),                                           _("_Midi Rules...")),
146                       sigc::mem_fun(                       sigc::mem_fun(
147                           *this, &MainWindow::show_midi_rules));                           *this, &MainWindow::show_midi_rules));
148      actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),      actionGroup->add(Gtk::Action::create("ScriptSlots",
149                                             _("_Script Slots...")),
150                         sigc::mem_fun(
151                             *this, &MainWindow::show_script_slots));
152        actionGroup->add(Gtk::Action::create("Quit", _("_Quit")),
153                         Gtk::AccelKey("<control>q"),
154                       sigc::mem_fun(                       sigc::mem_fun(
155                           *this, &MainWindow::on_action_quit));                           *this, &MainWindow::on_action_quit));
156      actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));      actionGroup->add(
157            Gtk::Action::create("MenuSample", _("_Sample")),
158            sigc::mem_fun(*this, &MainWindow::show_samples_tab)
159        );
160        actionGroup->add(
161            Gtk::Action::create("MenuInstrument", _("_Instrument")),
162            sigc::mem_fun(*this, &MainWindow::show_intruments_tab)
163        );
164        actionGroup->add(
165            Gtk::Action::create("MenuScript", _("S_cript")),
166            sigc::mem_fun(*this, &MainWindow::show_scripts_tab)
167        );
168        actionGroup->add(Gtk::Action::create("AllInstruments", _("_Select")));
169    
170      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));      actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
171    
# Line 163  MainWindow::MainWindow() : Line 193  MainWindow::MainWindow() :
193                       sigc::mem_fun(                       sigc::mem_fun(
194                           *this, &MainWindow::on_action_view_status_bar));                           *this, &MainWindow::on_action_view_status_bar));
195    
196      action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);      toggle_action =
197      actionGroup->add(Gtk::Action::create("MenuHelp",          Gtk::ToggleAction::create("AutoRestoreWinDim", _("_Auto Restore Window Dimension"));
198                                           action->property_label()));      toggle_action->set_active(Settings::singleton()->autoRestoreWindowDimension);
199      actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),      actionGroup->add(toggle_action,
200                         sigc::mem_fun(
201                             *this, &MainWindow::on_auto_restore_win_dim));
202    
203        toggle_action =
204            Gtk::ToggleAction::create("SaveWithTemporaryFile", _("Save with _temporary file"));
205        toggle_action->set_active(Settings::singleton()->saveWithTemporaryFile);
206        actionGroup->add(toggle_action,
207                         sigc::mem_fun(
208                             *this, &MainWindow::on_save_with_temporary_file));
209    
210        actionGroup->add(
211            Gtk::Action::create("RefreshAll", _("_Refresh All")),
212            sigc::mem_fun(*this, &MainWindow::on_action_refresh_all)
213        );                
214    
215        actionGroup->add(Gtk::Action::create("MenuHelp", _("_Help")));
216        actionGroup->add(Gtk::Action::create("About", _("_About")),
217                       sigc::mem_fun(                       sigc::mem_fun(
218                           *this, &MainWindow::on_action_help_about));                           *this, &MainWindow::on_action_help_about));
219      actionGroup->add(      actionGroup->add(
# Line 178  MainWindow::MainWindow() : Line 225  MainWindow::MainWindow() :
225          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
226      );      );
227      actionGroup->add(      actionGroup->add(
228          Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveInstrument", _("_Remove")),
229          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)          sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
230      );      );
231    
# Line 193  MainWindow::MainWindow() : Line 240  MainWindow::MainWindow() :
240          sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions)          sigc::mem_fun(*this, &MainWindow::on_action_warn_user_on_extensions)
241      );      );
242    
243        toggle_action =
244            Gtk::ToggleAction::create("SyncSamplerInstrumentSelection", _("Synchronize sampler's instrument selection"));
245        toggle_action->set_active(Settings::singleton()->syncSamplerInstrumentSelection);
246        actionGroup->add(
247            toggle_action,
248            sigc::mem_fun(*this, &MainWindow::on_action_sync_sampler_instrument_selection)
249        );
250    
251        toggle_action =
252            Gtk::ToggleAction::create("MoveRootNoteWithRegionMoved", _("Move root note with region moved"));
253        toggle_action->set_active(Settings::singleton()->moveRootNoteWithRegionMoved);
254        actionGroup->add(
255            toggle_action,
256            sigc::mem_fun(*this, &MainWindow::on_action_move_root_note_with_region_moved)
257        );
258    
259    
260        actionGroup->add(Gtk::Action::create("MenuTools", _("_Tools")));
261    
262        actionGroup->add(
263            Gtk::Action::create("CombineInstruments", _("_Combine Instruments...")),
264            sigc::mem_fun(*this, &MainWindow::on_action_combine_instruments)
265        );
266    
267        actionGroup->add(
268            Gtk::Action::create("MergeFiles", _("_Merge Files...")),
269            sigc::mem_fun(*this, &MainWindow::on_action_merge_files)
270        );
271    
272    
273      // sample right-click popup actions      // sample right-click popup actions
274      actionGroup->add(      actionGroup->add(
275          Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),          Gtk::Action::create("SampleProperties", _("_Properties")),
276          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)          sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
277      );      );
278      actionGroup->add(      actionGroup->add(
# Line 208  MainWindow::MainWindow() : Line 284  MainWindow::MainWindow() :
284          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)          sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
285      );      );
286      actionGroup->add(      actionGroup->add(
287          Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),          Gtk::Action::create("RemoveSample", _("_Remove")),
288          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)          sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
289      );      );
290      actionGroup->add(      actionGroup->add(
291            Gtk::Action::create("RemoveUnusedSamples", _("Remove _Unused Samples")),
292            sigc::mem_fun(*this, &MainWindow::on_action_remove_unused_samples)
293        );
294        actionGroup->add(
295            Gtk::Action::create("ShowSampleRefs", _("Show References...")),
296            sigc::mem_fun(*this, &MainWindow::on_action_view_references)
297        );
298        actionGroup->add(
299            Gtk::Action::create("ReplaceSample",
300                                _("Replace Sample...")),
301            sigc::mem_fun(*this, &MainWindow::on_action_replace_sample)
302        );
303        actionGroup->add(
304          Gtk::Action::create("ReplaceAllSamplesInAllGroups",          Gtk::Action::create("ReplaceAllSamplesInAllGroups",
305                              _("Replace All Samples in All Groups...")),                              _("Replace All Samples in All Groups...")),
306          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)
307      );      );
308        
309        // script right-click popup actions
310        actionGroup->add(
311            Gtk::Action::create("AddScriptGroup", _("Add _Group")),
312            sigc::mem_fun(*this, &MainWindow::on_action_add_script_group)
313        );
314        actionGroup->add(
315            Gtk::Action::create("AddScript", _("Add _Script")),
316            sigc::mem_fun(*this, &MainWindow::on_action_add_script)
317        );
318        actionGroup->add(
319            Gtk::Action::create("EditScript", _("_Edit Script...")),
320            sigc::mem_fun(*this, &MainWindow::on_action_edit_script)
321        );
322        actionGroup->add(
323            Gtk::Action::create("RemoveScript", _("_Remove")),
324            sigc::mem_fun(*this, &MainWindow::on_action_remove_script)
325        );
326    
327      uiManager = Gtk::UIManager::create();      uiManager = Gtk::UIManager::create();
328      uiManager->insert_action_group(actionGroup);      uiManager->insert_action_group(actionGroup);
# Line 240  MainWindow::MainWindow() : Line 347  MainWindow::MainWindow() :
347          "      <menuitem action='CopySampleTune'/>"          "      <menuitem action='CopySampleTune'/>"
348          "      <menuitem action='CopySampleLoop'/>"          "      <menuitem action='CopySampleLoop'/>"
349          "    </menu>"          "    </menu>"
350            "    <menu action='MenuSample'>"
351            "      <menuitem action='SampleProperties'/>"
352            "      <menuitem action='AddGroup'/>"
353            "      <menuitem action='AddSample'/>"
354            "      <menuitem action='ShowSampleRefs'/>"
355            "      <menuitem action='ReplaceSample' />"
356            "      <menuitem action='ReplaceAllSamplesInAllGroups' />"
357            "      <separator/>"
358            "      <menuitem action='RemoveSample'/>"
359            "      <menuitem action='RemoveUnusedSamples'/>"
360            "    </menu>"
361          "    <menu action='MenuInstrument'>"          "    <menu action='MenuInstrument'>"
362            "      <menu action='AllInstruments'>"
363            "      </menu>"
364            "      <separator/>"
365            "      <menuitem action='InstrProperties'/>"
366            "      <menuitem action='MidiRules'/>"
367            "      <menuitem action='ScriptSlots'/>"
368            "      <menuitem action='AddInstrument'/>"
369            "      <menuitem action='DupInstrument'/>"
370            "      <separator/>"
371            "      <menuitem action='RemoveInstrument'/>"
372            "    </menu>"
373            "    <menu action='MenuScript'>"
374            "      <menuitem action='AddScriptGroup'/>"
375            "      <menuitem action='AddScript'/>"
376            "      <menuitem action='EditScript'/>"
377            "      <separator/>"
378            "      <menuitem action='RemoveScript'/>"
379          "    </menu>"          "    </menu>"
380          "    <menu action='MenuView'>"          "    <menu action='MenuView'>"
381          "      <menuitem action='Statusbar'/>"          "      <menuitem action='Statusbar'/>"
382            "      <menuitem action='AutoRestoreWinDim'/>"
383            "      <separator/>"
384            "      <menuitem action='RefreshAll'/>"
385            "    </menu>"
386            "    <menu action='MenuTools'>"
387            "      <menuitem action='CombineInstruments'/>"
388            "      <menuitem action='MergeFiles'/>"
389          "    </menu>"          "    </menu>"
390          "    <menu action='MenuSettings'>"          "    <menu action='MenuSettings'>"
391          "      <menuitem action='WarnUserOnExtensions'/>"          "      <menuitem action='WarnUserOnExtensions'/>"
392            "      <menuitem action='SyncSamplerInstrumentSelection'/>"
393            "      <menuitem action='MoveRootNoteWithRegionMoved'/>"
394            "      <menuitem action='SaveWithTemporaryFile'/>"
395          "    </menu>"          "    </menu>"
396          "    <menu action='MenuHelp'>"          "    <menu action='MenuHelp'>"
397          "      <menuitem action='About'/>"          "      <menuitem action='About'/>"
# Line 255  MainWindow::MainWindow() : Line 400  MainWindow::MainWindow() :
400          "  <popup name='PopupMenu'>"          "  <popup name='PopupMenu'>"
401          "    <menuitem action='InstrProperties'/>"          "    <menuitem action='InstrProperties'/>"
402          "    <menuitem action='MidiRules'/>"          "    <menuitem action='MidiRules'/>"
403            "    <menuitem action='ScriptSlots'/>"
404          "    <menuitem action='AddInstrument'/>"          "    <menuitem action='AddInstrument'/>"
405          "    <menuitem action='DupInstrument'/>"          "    <menuitem action='DupInstrument'/>"
406          "    <separator/>"          "    <separator/>"
# Line 264  MainWindow::MainWindow() : Line 410  MainWindow::MainWindow() :
410          "    <menuitem action='SampleProperties'/>"          "    <menuitem action='SampleProperties'/>"
411          "    <menuitem action='AddGroup'/>"          "    <menuitem action='AddGroup'/>"
412          "    <menuitem action='AddSample'/>"          "    <menuitem action='AddSample'/>"
413            "    <menuitem action='ShowSampleRefs'/>"
414            "    <menuitem action='ReplaceSample' />"
415          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"          "    <menuitem action='ReplaceAllSamplesInAllGroups' />"
416          "    <separator/>"          "    <separator/>"
417          "    <menuitem action='RemoveSample'/>"          "    <menuitem action='RemoveSample'/>"
418            "    <menuitem action='RemoveUnusedSamples'/>"
419            "  </popup>"
420            "  <popup name='ScriptPopupMenu'>"
421            "    <menuitem action='AddScriptGroup'/>"
422            "    <menuitem action='AddScript'/>"
423            "    <menuitem action='EditScript'/>"
424            "    <separator/>"
425            "    <menuitem action='RemoveScript'/>"
426          "  </popup>"          "  </popup>"
427          "</ui>";          "</ui>";
428      uiManager->add_ui_from_string(ui_info);      uiManager->add_ui_from_string(ui_info);
# Line 297  MainWindow::MainWindow() : Line 453  MainWindow::MainWindow() :
453              uiManager->get_widget("/MenuBar/MenuSettings/WarnUserOnExtensions"));              uiManager->get_widget("/MenuBar/MenuSettings/WarnUserOnExtensions"));
454          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."));          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."));
455      }      }
456        {
457            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
458                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
459            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)."));
460        }
461        {
462            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
463                uiManager->get_widget("/MenuBar/MenuSettings/MoveRootNoteWithRegionMoved"));
464            item->set_tooltip_text(_("If checked, and when a region is moved by dragging it around on the virtual keyboard, the keybord position dependent pitch will move exactly with the amount of semi tones the region was moved around."));
465        }
466        {
467            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
468                uiManager->get_widget("/MenuBar/MenuSample/RemoveUnusedSamples"));
469            item->set_tooltip_text(_("Removes all samples that are not referenced by any instrument (i.e. red ones)."));
470            // copy tooltip to popup menu
471            Gtk::MenuItem* item2 = dynamic_cast<Gtk::MenuItem*>(
472                uiManager->get_widget("/SamplePopupMenu/RemoveUnusedSamples"));
473            item2->set_tooltip_text(item->get_tooltip_text());
474        }
475        {
476            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
477                uiManager->get_widget("/MenuBar/MenuView/RefreshAll"));
478            item->set_tooltip_text(_("Reloads the currently open gig file and updates the entire graphical user interface."));
479        }
480        {
481            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
482                uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
483            item->set_tooltip_text(_("If checked, size and position of all windows will be saved and automatically restored next time."));
484        }
485        {
486            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
487                uiManager->get_widget("/MenuBar/MenuTools/CombineInstruments"));
488            item->set_tooltip_text(_("Create combi sounds out of individual sounds of this .gig file."));
489        }
490        {
491            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
492                uiManager->get_widget("/MenuBar/MenuTools/MergeFiles"));
493            item->set_tooltip_text(_("Add instruments and samples of other .gig files to this .gig file."));
494        }
495    
496    
497      instrument_menu = static_cast<Gtk::MenuItem*>(      instrument_menu = static_cast<Gtk::MenuItem*>(
498          uiManager->get_widget("/MenuBar/MenuInstrument"))->get_submenu();          uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments"))->get_submenu();
499    
500      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");      Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");
501      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);      m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
# Line 325  MainWindow::MainWindow() : Line 521  MainWindow::MainWindow() :
521      // Create the Tree model:      // Create the Tree model:
522      m_refTreeModel = Gtk::ListStore::create(m_Columns);      m_refTreeModel = Gtk::ListStore::create(m_Columns);
523      m_TreeView.set_model(m_refTreeModel);      m_TreeView.set_model(m_refTreeModel);
524      m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules."));      m_TreeView.set_tooltip_text(_("Right click here for actions on instruments & MIDI Rules. Drag & drop to change the order of instruments."));
525      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(      instrument_name_connection = m_refTreeModel->signal_row_changed().connect(
526          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)          sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
527      );      );
# Line 333  MainWindow::MainWindow() : Line 529  MainWindow::MainWindow() :
529      // Add the TreeView's view columns:      // Add the TreeView's view columns:
530      m_TreeView.append_column_editable("Instrument", m_Columns.m_col_name);      m_TreeView.append_column_editable("Instrument", m_Columns.m_col_name);
531      m_TreeView.set_headers_visible(false);      m_TreeView.set_headers_visible(false);
532        
533        // establish drag&drop within the instrument tree view, allowing to reorder
534        // the sequence of instruments within the gig file
535        {
536            std::vector<Gtk::TargetEntry> drag_target_instrument;
537            drag_target_instrument.push_back(Gtk::TargetEntry("gig::Instrument"));
538            m_TreeView.drag_source_set(drag_target_instrument);
539            m_TreeView.drag_dest_set(drag_target_instrument);
540            m_TreeView.signal_drag_begin().connect(
541                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_begin)
542            );
543            m_TreeView.signal_drag_data_get().connect(
544                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drag_data_get)
545            );
546            m_TreeView.signal_drag_data_received().connect(
547                sigc::mem_fun(*this, &MainWindow::on_instruments_treeview_drop_drag_data_received)
548            );
549        }
550    
551      // create samples treeview (including its data model)      // create samples treeview (including its data model)
552      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);      m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);
553      m_TreeViewSamples.set_model(m_refSamplesTreeModel);      m_TreeViewSamples.set_model(m_refSamplesTreeModel);
554      m_TreeViewSamples.set_tooltip_text(_("To actually use a sample, drag it from this list view to \"Sample\" -> \"Sample:\" on the region's settings pane on the right.\n\nRight click here for more actions on samples."));      m_TreeViewSamples.set_tooltip_text(_("To actually use a sample, drag it from this list view to \"Sample\" -> \"Sample:\" on the region's settings pane on the right.\n\nRight click here for more actions on samples."));
555      // m_TreeViewSamples.set_reorderable();      // m_TreeViewSamples.set_reorderable();
556      m_TreeViewSamples.append_column_editable("Samples", m_SamplesModel.m_col_name);      m_TreeViewSamples.append_column_editable(_("Name"), m_SamplesModel.m_col_name);
557      m_TreeViewSamples.set_headers_visible(false);      m_TreeViewSamples.append_column(_("Referenced"), m_SamplesModel.m_col_refcount);
558        {
559            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(0);
560            Gtk::CellRendererText* cellrenderer =
561                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
562            column->add_attribute(
563                cellrenderer->property_foreground(), m_SamplesModel.m_color
564            );
565        }
566        {
567            Gtk::TreeViewColumn* column = m_TreeViewSamples.get_column(1);
568            Gtk::CellRendererText* cellrenderer =
569                dynamic_cast<Gtk::CellRendererText*>(column->get_first_cell());
570            column->add_attribute(
571                cellrenderer->property_foreground(), m_SamplesModel.m_color
572            );
573        }
574        m_TreeViewSamples.set_headers_visible(true);
575      m_TreeViewSamples.signal_button_press_event().connect_notify(      m_TreeViewSamples.signal_button_press_event().connect_notify(
576          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)          sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
577      );      );
# Line 348  MainWindow::MainWindow() : Line 579  MainWindow::MainWindow() :
579          sigc::mem_fun(*this, &MainWindow::sample_name_changed)          sigc::mem_fun(*this, &MainWindow::sample_name_changed)
580      );      );
581    
582        // create scripts treeview (including its data model)
583        m_refScriptsTreeModel = ScriptsTreeStore::create(m_ScriptsModel);
584        m_TreeViewScripts.set_model(m_refScriptsTreeModel);
585        m_TreeViewScripts.set_tooltip_text(_(
586            "Use CTRL + double click for editing a script."
587            "\n\n"
588            "Note: instrument scripts are a LinuxSampler extension of the gig "
589            "format. This feature will not work with the GigaStudio software!"
590        ));
591        // m_TreeViewScripts.set_reorderable();
592        m_TreeViewScripts.append_column_editable("Samples", m_ScriptsModel.m_col_name);
593        m_TreeViewScripts.set_headers_visible(false);
594        m_TreeViewScripts.signal_button_press_event().connect_notify(
595            sigc::mem_fun(*this, &MainWindow::on_script_treeview_button_release)
596        );
597        //FIXME: why the heck does this double click signal_row_activated() only fire while CTRL key is pressed ?
598        m_TreeViewScripts.signal_row_activated().connect(
599            sigc::mem_fun(*this, &MainWindow::script_double_clicked)
600        );
601        m_refScriptsTreeModel->signal_row_changed().connect(
602            sigc::mem_fun(*this, &MainWindow::script_name_changed)
603        );
604    
605        // establish drag&drop between scripts tree view and ScriptSlots window
606        std::vector<Gtk::TargetEntry> drag_target_gig_script;
607        drag_target_gig_script.push_back(Gtk::TargetEntry("gig::Script"));
608        m_TreeViewScripts.drag_source_set(drag_target_gig_script);
609        m_TreeViewScripts.signal_drag_begin().connect(
610            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_begin)
611        );
612        m_TreeViewScripts.signal_drag_data_get().connect(
613            sigc::mem_fun(*this, &MainWindow::on_scripts_treeview_drag_data_get)
614        );
615    
616      // 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
617      std::vector<Gtk::TargetEntry> drag_target_gig_sample;      std::vector<Gtk::TargetEntry> drag_target_gig_sample;
618      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));      drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
# Line 366  MainWindow::MainWindow() : Line 631  MainWindow::MainWindow() :
631          sigc::hide(sigc::mem_fun(*this, &MainWindow::file_changed)));          sigc::hide(sigc::mem_fun(*this, &MainWindow::file_changed)));
632      m_RegionChooser.signal_instrument_changed().connect(      m_RegionChooser.signal_instrument_changed().connect(
633          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
634        m_RegionChooser.signal_instrument_changed().connect(
635            sigc::mem_fun(*this, &MainWindow::region_changed));
636      m_DimRegionChooser.signal_region_changed().connect(      m_DimRegionChooser.signal_region_changed().connect(
637          sigc::mem_fun(*this, &MainWindow::file_changed));          sigc::mem_fun(*this, &MainWindow::file_changed));
638      instrumentProps.signal_changed().connect(      instrumentProps.signal_changed().connect(
# Line 381  MainWindow::MainWindow() : Line 648  MainWindow::MainWindow() :
648          dimreg_changed_signal.make_slot());          dimreg_changed_signal.make_slot());
649      dimreg_edit.signal_sample_ref_changed().connect(      dimreg_edit.signal_sample_ref_changed().connect(
650          sample_ref_changed_signal.make_slot());          sample_ref_changed_signal.make_slot());
651        sample_ref_changed_signal.connect(
652            sigc::mem_fun(*this, &MainWindow::on_sample_ref_changed)
653        );
654        samples_to_be_removed_signal.connect(
655            sigc::mem_fun(*this, &MainWindow::on_samples_to_be_removed)
656        );
657    
658        dimreg_edit.signal_select_sample().connect(
659            sigc::mem_fun(*this, &MainWindow::select_sample)
660        );
661    
662      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(      m_RegionChooser.signal_instrument_struct_to_be_changed().connect(
663          sigc::hide(          sigc::hide(
# Line 422  MainWindow::MainWindow() : Line 699  MainWindow::MainWindow() :
699    
700      // start with a new gig file by default      // start with a new gig file by default
701      on_action_file_new();      on_action_file_new();
702    
703        // select 'Instruments' tab by default
704        // (gtk allows this only if the tab childs are visible, thats why it's here)
705        m_TreeViewNotebook.set_current_page(1);
706  }  }
707    
708  MainWindow::~MainWindow()  MainWindow::~MainWindow()
# Line 502  void MainWindow::dimreg_all_dimregs_togg Line 783  void MainWindow::dimreg_all_dimregs_togg
783  void MainWindow::dimreg_changed()  void MainWindow::dimreg_changed()
784  {  {
785      update_dimregs();      update_dimregs();
786      dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion());      dimreg_edit.set_dim_region(m_DimRegionChooser.get_main_dimregion());
787  }  }
788    
789  void MainWindow::on_sel_change()  void MainWindow::on_sel_change()
# Line 518  void MainWindow::on_sel_change() Line 799  void MainWindow::on_sel_change()
799      }      }
800    
801      m_RegionChooser.set_instrument(get_instrument());      m_RegionChooser.set_instrument(get_instrument());
802    
803        if (Settings::singleton()->syncSamplerInstrumentSelection) {
804            switch_sampler_instrument_signal.emit(get_instrument());
805        }
806  }  }
807    
808  void loader_progress_callback(gig::progress_t* progress)  void loader_progress_callback(gig::progress_t* progress)
# Line 537  void Loader::progress_callback(float fra Line 822  void Loader::progress_callback(float fra
822    
823  void Loader::thread_function()  void Loader::thread_function()
824  {  {
825      printf("thread_function self=%x\n", Glib::Threads::Thread::self());      printf("thread_function self=%p\n",
826      printf("Start %s\n", filename);             static_cast<void*>(Glib::Threads::Thread::self()));
827      RIFF::File* riff = new RIFF::File(filename);      printf("Start %s\n", filename.c_str());
828      gig = new gig::File(riff);      try {
829      gig::progress_t progress;          RIFF::File* riff = new RIFF::File(filename);
830      progress.callback = loader_progress_callback;          gig = new gig::File(riff);
831      progress.custom = this;          gig::progress_t progress;
832            progress.callback = loader_progress_callback;
833      gig->GetInstrument(0, &progress);          progress.custom = this;
834      printf("End\n");  
835      finished_dispatcher();          gig->GetInstrument(0, &progress);
836            printf("End\n");
837            finished_dispatcher();
838        } catch (RIFF::Exception e) {
839            error_message = e.Message;
840            error_dispatcher.emit();
841        } catch (...) {
842            error_message = _("Unknown exception occurred");
843            error_dispatcher.emit();
844        }
845  }  }
846    
847  Loader::Loader(const char* filename)  Loader::Loader(const char* filename)
848      : filename(filename), thread(0)      : filename(filename), gig(0), thread(0), progress(0.f)
849  {  {
850  }  }
851    
# Line 562  void Loader::launch() Line 856  void Loader::launch()
856  #else  #else
857      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));      thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));
858  #endif  #endif
859      printf("launch thread=%x\n", thread);      printf("launch thread=%p\n", static_cast<void*>(thread));
860  }  }
861    
862  float Loader::get_progress()  float Loader::get_progress()
# Line 585  Glib::Dispatcher& Loader::signal_finishe Line 879  Glib::Dispatcher& Loader::signal_finishe
879      return finished_dispatcher;      return finished_dispatcher;
880  }  }
881    
882  LoadDialog::LoadDialog(const Glib::ustring& title, Gtk::Window& parent)  Glib::Dispatcher& Loader::signal_error()
883    {
884        return error_dispatcher;
885    }
886    
887    void saver_progress_callback(gig::progress_t* progress)
888    {
889        Saver* saver = static_cast<Saver*>(progress->custom);
890        saver->progress_callback(progress->factor);
891    }
892    
893    void Saver::progress_callback(float fraction)
894    {
895        {
896            Glib::Threads::Mutex::Lock lock(progressMutex);
897            progress = fraction;
898        }
899        progress_dispatcher.emit();
900    }
901    
902    void Saver::thread_function()
903    {
904        printf("thread_function self=%p\n",
905               static_cast<void*>(Glib::Threads::Thread::self()));
906        printf("Start %s\n", filename.c_str());
907        try {
908            gig::progress_t progress;
909            progress.callback = saver_progress_callback;
910            progress.custom = this;
911    
912            // if no filename was provided, that means "save", if filename was provided means "save as"
913            if (filename.empty()) {
914                if (!Settings::singleton()->saveWithTemporaryFile) {
915                    // save directly over the existing .gig file
916                    // (requires less disk space than solution below
917                    // but may be slower)
918                    gig->Save(&progress);
919                } else {
920                    // save the file as separate temporary file first,
921                    // then move the saved file over the old file
922                    // (may result in performance speedup during save)
923                    String tmpname = filename + ".TMP";
924                    gig->Save(tmpname, &progress);
925                    #if defined(WIN32)
926                    if (!DeleteFile(filename.c_str())) {
927                        throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file).");
928                    }
929                    #else // POSIX ...
930                    if (unlink(filename.c_str())) {
931                        throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + String(strerror(errno)));
932                    }
933                    #endif
934                    if (rename(tmpname.c_str(), filename.c_str())) {
935                        #if defined(WIN32)
936                        throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");
937                        #else
938                        throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file): " + String(strerror(errno)));
939                        #endif
940                    }
941                }
942            } else {
943                gig->Save(filename, &progress);
944            }
945    
946            printf("End\n");
947            finished_dispatcher.emit();
948        } catch (RIFF::Exception e) {
949            error_message = e.Message;
950            error_dispatcher.emit();
951        } catch (...) {
952            error_message = _("Unknown exception occurred");
953            error_dispatcher.emit();
954        }
955    }
956    
957    Saver::Saver(gig::File* file, Glib::ustring filename)
958        : gig(file), filename(filename), thread(0), progress(0.f)
959    {
960    }
961    
962    void Saver::launch()
963    {
964    #ifdef OLD_THREADS
965        thread = Glib::Thread::create(sigc::mem_fun(*this, &Saver::thread_function), true);
966    #else
967        thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Saver::thread_function));
968    #endif
969        printf("launch thread=%p\n", static_cast<void*>(thread));
970    }
971    
972    float Saver::get_progress()
973    {
974        float res;
975        {
976            Glib::Threads::Mutex::Lock lock(progressMutex);
977            res = progress;
978        }
979        return res;
980    }
981    
982    Glib::Dispatcher& Saver::signal_progress()
983    {
984        return progress_dispatcher;
985    }
986    
987    Glib::Dispatcher& Saver::signal_finished()
988    {
989        return finished_dispatcher;
990    }
991    
992    Glib::Dispatcher& Saver::signal_error()
993    {
994        return error_dispatcher;
995    }
996    
997    ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)
998      : Gtk::Dialog(title, parent, true)      : Gtk::Dialog(title, parent, true)
999  {  {
1000      get_vbox()->pack_start(progressBar);      get_vbox()->pack_start(progressBar);
1001      show_all_children();      show_all_children();
1002        resize(600,50);
1003  }  }
1004    
1005  // Clear all GUI elements / controls. This method is typically called  // Clear all GUI elements / controls. This method is typically called
# Line 600  void MainWindow::__clear() { Line 1010  void MainWindow::__clear() {
1010      // clear the samples and instruments tree views      // clear the samples and instruments tree views
1011      m_refTreeModel->clear();      m_refTreeModel->clear();
1012      m_refSamplesTreeModel->clear();      m_refSamplesTreeModel->clear();
1013        m_refScriptsTreeModel->clear();
1014      // remove all entries from "Instrument" menu      // remove all entries from "Instrument" menu
1015      while (!instrument_menu->get_children().empty()) {      while (!instrument_menu->get_children().empty()) {
1016          remove_instrument_from_menu(0);          remove_instrument_from_menu(0);
# Line 610  void MainWindow::__clear() { Line 1021  void MainWindow::__clear() {
1021      set_file_is_shared(false);      set_file_is_shared(false);
1022  }  }
1023    
1024    void MainWindow::__refreshEntireGUI() {
1025        // clear the samples and instruments tree views
1026        m_refTreeModel->clear();
1027        m_refSamplesTreeModel->clear();
1028        m_refScriptsTreeModel->clear();
1029        // remove all entries from "Instrument" menu
1030        while (!instrument_menu->get_children().empty()) {
1031            remove_instrument_from_menu(0);
1032        }
1033    
1034        if (!this->file) return;
1035    
1036        load_gig(
1037            this->file, this->file->pInfo->Name.c_str(), this->file_is_shared
1038        );
1039    }
1040    
1041  void MainWindow::on_action_file_new()  void MainWindow::on_action_file_new()
1042  {  {
1043      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;      if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;
# Line 635  bool MainWindow::close_confirmation_dial Line 1063  bool MainWindow::close_confirmation_dial
1063      g_free(msg);      g_free(msg);
1064      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."));
1065      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);      dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
1066      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
1067      dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);      dialog.add_button(file_has_name ? _("_Save") : _("Save _As"), Gtk::RESPONSE_YES);
1068      dialog.set_default_response(Gtk::RESPONSE_YES);      dialog.set_default_response(Gtk::RESPONSE_YES);
1069      int response = dialog.run();      int response = dialog.run();
1070      dialog.hide();      dialog.hide();
1071      if (response == Gtk::RESPONSE_YES) return file_save();  
1072      return response != Gtk::RESPONSE_CANCEL;      // user decided to exit app without saving
1073        if (response == Gtk::RESPONSE_NO) return true;
1074    
1075        // user cancelled dialog, thus don't close app
1076        if (response == Gtk::RESPONSE_CANCEL) return false;
1077    
1078        // TODO: the following return valid is disabled and hard coded instead for
1079        // now, due to the fact that saving with progress bar is now implemented
1080        // asynchronously, as a result the app does not close automatically anymore
1081        // after saving the file has completed
1082        //
1083        //   if (response == Gtk::RESPONSE_YES) return file_save();
1084        //   return response != Gtk::RESPONSE_CANCEL;
1085        //
1086        if (response == Gtk::RESPONSE_YES) file_save();
1087        return false; // always prevent closing the app for now (see comment above)
1088  }  }
1089    
1090  bool MainWindow::leaving_shared_mode_dialog() {  bool MainWindow::leaving_shared_mode_dialog() {
# Line 652  bool MainWindow::leaving_shared_mode_dia Line 1095  bool MainWindow::leaving_shared_mode_dia
1095            "used by the sampler until you tell the sampler explicitly to "            "used by the sampler until you tell the sampler explicitly to "
1096            "load it."));            "load it."));
1097      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);      dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
1098      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
1099      dialog.set_default_response(Gtk::RESPONSE_CANCEL);      dialog.set_default_response(Gtk::RESPONSE_CANCEL);
1100      int response = dialog.run();      int response = dialog.run();
1101      dialog.hide();      dialog.hide();
# Line 666  void MainWindow::on_action_file_open() Line 1109  void MainWindow::on_action_file_open()
1109      if (file_is_shared && !leaving_shared_mode_dialog()) return;      if (file_is_shared && !leaving_shared_mode_dialog()) return;
1110    
1111      Gtk::FileChooserDialog dialog(*this, _("Open file"));      Gtk::FileChooserDialog dialog(*this, _("Open file"));
1112      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
1113      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
1114      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
1115  #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
1116      Gtk::FileFilter filter;      Gtk::FileFilter filter;
# Line 683  void MainWindow::on_action_file_open() Line 1126  void MainWindow::on_action_file_open()
1126      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1127          std::string filename = dialog.get_filename();          std::string filename = dialog.get_filename();
1128          printf("filename=%s\n", filename.c_str());          printf("filename=%s\n", filename.c_str());
1129          printf("on_action_file_open self=%x\n", Glib::Threads::Thread::self());          printf("on_action_file_open self=%p\n",
1130                   static_cast<void*>(Glib::Threads::Thread::self()));
1131          load_file(filename.c_str());          load_file(filename.c_str());
1132          current_gig_dir = Glib::path_get_dirname(filename);          current_gig_dir = Glib::path_get_dirname(filename);
1133      }      }
# Line 692  void MainWindow::on_action_file_open() Line 1136  void MainWindow::on_action_file_open()
1136  void MainWindow::load_file(const char* name)  void MainWindow::load_file(const char* name)
1137  {  {
1138      __clear();      __clear();
1139      load_dialog = new LoadDialog(_("Loading..."), *this);  
1140      load_dialog->show_all();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
1141      loader = new Loader(strdup(name));          _("Loading") +  Glib::ustring(" '") +
1142            Glib::filename_display_basename(name) + "' ...",
1143            *this
1144        );
1145        progress_dialog->show_all();
1146        loader = new Loader(name); //FIXME: memory leak!
1147      loader->signal_progress().connect(      loader->signal_progress().connect(
1148          sigc::mem_fun(*this, &MainWindow::on_loader_progress));          sigc::mem_fun(*this, &MainWindow::on_loader_progress));
1149      loader->signal_finished().connect(      loader->signal_finished().connect(
1150          sigc::mem_fun(*this, &MainWindow::on_loader_finished));          sigc::mem_fun(*this, &MainWindow::on_loader_finished));
1151        loader->signal_error().connect(
1152            sigc::mem_fun(*this, &MainWindow::on_loader_error));
1153      loader->launch();      loader->launch();
1154  }  }
1155    
# Line 714  void MainWindow::load_instrument(gig::In Line 1165  void MainWindow::load_instrument(gig::In
1165      // load the instrument      // load the instrument
1166      gig::File* pFile = (gig::File*) instr->GetParent();      gig::File* pFile = (gig::File*) instr->GetParent();
1167      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);      load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);
1168      //TODO: automatically select the given instrument      // automatically select the given instrument
1169        int i = 0;
1170        for (gig::Instrument* instrument = pFile->GetFirstInstrument(); instrument;
1171             instrument = pFile->GetNextInstrument(), ++i)
1172        {
1173            if (instrument == instr) {
1174                // select item in "instruments" tree view
1175                m_TreeView.get_selection()->select(Gtk::TreePath(ToString(i)));
1176                // make sure the selected item in the "instruments" tree view is
1177                // visible (scroll to it)
1178                m_TreeView.scroll_to_row(Gtk::TreePath(ToString(i)));
1179                // select item in instrument menu
1180                {
1181                    const std::vector<Gtk::Widget*> children =
1182                        instrument_menu->get_children();
1183                    static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();
1184                }
1185                // update region chooser and dimension region chooser
1186                m_RegionChooser.set_instrument(instr);
1187                break;
1188            }
1189        }
1190  }  }
1191    
1192  void MainWindow::on_loader_progress()  void MainWindow::on_loader_progress()
1193  {  {
1194      load_dialog->set_fraction(loader->get_progress());      progress_dialog->set_fraction(loader->get_progress());
1195  }  }
1196    
1197  void MainWindow::on_loader_finished()  void MainWindow::on_loader_finished()
1198  {  {
1199      printf("Loader finished!\n");      printf("Loader finished!\n");
1200      printf("on_loader_finished self=%x\n", Glib::Threads::Thread::self());      printf("on_loader_finished self=%p\n",
1201      load_gig(loader->gig, loader->filename);             static_cast<void*>(Glib::Threads::Thread::self()));
1202      load_dialog->hide();      load_gig(loader->gig, loader->filename.c_str());
1203        progress_dialog->hide();
1204    }
1205    
1206    void MainWindow::on_loader_error()
1207    {
1208        Glib::ustring txt = _("Could not load file: ") + loader->error_message;
1209        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1210        msg.run();
1211        progress_dialog->hide();
1212  }  }
1213    
1214  void MainWindow::on_action_file_save()  void MainWindow::on_action_file_save()
# Line 766  bool MainWindow::file_save() Line 1247  bool MainWindow::file_save()
1247    
1248      std::cout << "Saving file\n" << std::flush;      std::cout << "Saving file\n" << std::flush;
1249      file_structure_to_be_changed_signal.emit(this->file);      file_structure_to_be_changed_signal.emit(this->file);
1250      try {  
1251          file->Save();      progress_dialog = new ProgressDialog( //FIXME: memory leak!
1252          if (file_is_changed) {          _("Saving") +  Glib::ustring(" '") +
1253              set_title(get_title().substr(1));          Glib::filename_display_basename(this->filename) + "' ...",
1254              file_is_changed = false;          *this
1255          }      );
1256      } catch (RIFF::Exception e) {      progress_dialog->show_all();
1257          file_structure_changed_signal.emit(this->file);      saver = new Saver(this->file); //FIXME: memory leak!
1258          Glib::ustring txt = _("Could not save file: ") + e.Message;      saver->signal_progress().connect(
1259          Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);          sigc::mem_fun(*this, &MainWindow::on_saver_progress));
1260          msg.run();      saver->signal_finished().connect(
1261          return false;          sigc::mem_fun(*this, &MainWindow::on_saver_finished));
1262      }      saver->signal_error().connect(
1263      std::cout << "Saving file done\n" << std::flush;          sigc::mem_fun(*this, &MainWindow::on_saver_error));
1264        saver->launch();
1265    
1266        return true;
1267    }
1268    
1269    void MainWindow::on_saver_progress()
1270    {
1271        progress_dialog->set_fraction(saver->get_progress());
1272    }
1273    
1274    void MainWindow::on_saver_error()
1275    {
1276        file_structure_changed_signal.emit(this->file);
1277        Glib::ustring txt = _("Could not save file: ") + saver->error_message;
1278        Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1279        msg.run();
1280    }
1281    
1282    void MainWindow::on_saver_finished()
1283    {
1284        this->file = saver->gig;
1285        this->filename = saver->filename;
1286        current_gig_dir = Glib::path_get_dirname(filename);
1287        set_title(Glib::filename_display_basename(filename));
1288        file_has_name = true;
1289        file_is_changed = false;
1290        std::cout << "Saving file done. Importing queued samples now ...\n" << std::flush;
1291      __import_queued_samples();      __import_queued_samples();
1292        std::cout << "Importing queued samples done.\n" << std::flush;
1293    
1294      file_structure_changed_signal.emit(this->file);      file_structure_changed_signal.emit(this->file);
1295      return true;  
1296        __refreshEntireGUI();
1297        progress_dialog->hide();
1298  }  }
1299    
1300  void MainWindow::on_action_file_save_as()  void MainWindow::on_action_file_save_as()
# Line 793  void MainWindow::on_action_file_save_as( Line 1305  void MainWindow::on_action_file_save_as(
1305    
1306  bool MainWindow::file_save_as()  bool MainWindow::file_save_as()
1307  {  {
1308      Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);      Gtk::FileChooserDialog dialog(*this, _("Save As"), Gtk::FILE_CHOOSER_ACTION_SAVE);
1309      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
1310      dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);      dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);
1311      dialog.set_default_response(Gtk::RESPONSE_OK);      dialog.set_default_response(Gtk::RESPONSE_OK);
1312      dialog.set_do_overwrite_confirmation();      dialog.set_do_overwrite_confirmation();
1313    
# Line 826  bool MainWindow::file_save_as() Line 1338  bool MainWindow::file_save_as()
1338      // show warning in the dialog      // show warning in the dialog
1339      Gtk::HBox descriptionArea;      Gtk::HBox descriptionArea;
1340      descriptionArea.set_spacing(15);      descriptionArea.set_spacing(15);
1341      Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));      Gtk::Image warningIcon;
1342        warningIcon.set_from_icon_name("dialog-warning",
1343                                       Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
1344      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);      descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
1345  #if GTKMM_MAJOR_VERSION < 3  #if GTKMM_MAJOR_VERSION < 3
1346      view::WrapLabel description;      view::WrapLabel description;
# Line 847  bool MainWindow::file_save_as() Line 1361  bool MainWindow::file_save_as()
1361      descriptionArea.show_all();      descriptionArea.show_all();
1362    
1363      if (dialog.run() == Gtk::RESPONSE_OK) {      if (dialog.run() == Gtk::RESPONSE_OK) {
1364          file_structure_to_be_changed_signal.emit(this->file);          std::string filename = dialog.get_filename();
1365          try {          if (!Glib::str_has_suffix(filename, ".gig")) {
1366              std::string filename = dialog.get_filename();              filename += ".gig";
             if (!Glib::str_has_suffix(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;  
1367          }          }
1368          __import_queued_samples();          printf("filename=%s\n", filename.c_str());
1369          file_structure_changed_signal.emit(this->file);  
1370            progress_dialog = new ProgressDialog( //FIXME: memory leak!
1371                _("Saving") +  Glib::ustring(" '") +
1372                Glib::filename_display_basename(filename) + "' ...",
1373                *this
1374            );
1375            progress_dialog->show_all();
1376    
1377            saver = new Saver(file, filename); //FIXME: memory leak!
1378            saver->signal_progress().connect(
1379                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
1380            saver->signal_finished().connect(
1381                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
1382            saver->signal_error().connect(
1383                sigc::mem_fun(*this, &MainWindow::on_saver_error));
1384            saver->launch();
1385    
1386          return true;          return true;
1387      }      }
1388      return false;      return false;
# Line 878  bool MainWindow::file_save_as() Line 1392  bool MainWindow::file_save_as()
1392  void MainWindow::__import_queued_samples() {  void MainWindow::__import_queued_samples() {
1393      std::cout << "Starting sample import\n" << std::flush;      std::cout << "Starting sample import\n" << std::flush;
1394      Glib::ustring error_files;      Glib::ustring error_files;
1395      printf("Samples to import: %d\n", m_SampleImportQueue.size());      printf("Samples to import: %d\n", int(m_SampleImportQueue.size()));
1396      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();      for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
1397           iter != m_SampleImportQueue.end(); ) {           iter != m_SampleImportQueue.end(); ) {
1398          printf("Importing sample %s\n",(*iter).sample_path.c_str());          printf("Importing sample %s\n",(*iter).sample_path.c_str());
# Line 979  void MainWindow::on_action_warn_user_on_ Line 1493  void MainWindow::on_action_warn_user_on_
1493          !Settings::singleton()->warnUserOnExtensions;          !Settings::singleton()->warnUserOnExtensions;
1494  }  }
1495    
1496    void MainWindow::on_action_sync_sampler_instrument_selection() {
1497        Settings::singleton()->syncSamplerInstrumentSelection =
1498            !Settings::singleton()->syncSamplerInstrumentSelection;
1499    }
1500    
1501    void MainWindow::on_action_move_root_note_with_region_moved() {
1502        Settings::singleton()->moveRootNoteWithRegionMoved =
1503            !Settings::singleton()->moveRootNoteWithRegionMoved;
1504    }
1505    
1506  void MainWindow::on_action_help_about()  void MainWindow::on_action_help_about()
1507  {  {
1508      Gtk::AboutDialog dialog;      Gtk::AboutDialog dialog;
# Line 988  void MainWindow::on_action_help_about() Line 1512  void MainWindow::on_action_help_about()
1512      dialog.set_name("Gigedit");      dialog.set_name("Gigedit");
1513  #endif  #endif
1514      dialog.set_version(VERSION);      dialog.set_version(VERSION);
1515      dialog.set_copyright("Copyright (C) 2006-2014 Andreas Persson");      dialog.set_copyright("Copyright (C) 2006-2016 Andreas Persson");
1516      const std::string sComment =      const std::string sComment =
1517          _("Built " __DATE__ "\nUsing ") +          _("Built " __DATE__ "\nUsing ") +
1518          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +          ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
1519          _(          _(
1520              "Gigedit is released under the GNU General Public License.\n"              "Gigedit is released under the GNU General Public License.\n"
1521              "\n"              "\n"
1522              "Please notice that this is still a very young instrument editor. "              "This program is distributed WITHOUT ANY WARRANTY; So better "
1523              "So better backup your Gigasampler files before editing them with "              "backup your Gigasampler/GigaStudio files before editing them with "
1524              "this application.\n"              "this application.\n"
1525              "\n"              "\n"
1526              "Please report bugs to: http://bugs.linuxsampler.org"              "Please report bugs to: http://bugs.linuxsampler.org"
# Line 1008  void MainWindow::on_action_help_about() Line 1532  void MainWindow::on_action_help_about()
1532  }  }
1533    
1534  PropDialog::PropDialog()  PropDialog::PropDialog()
1535      : eName(_("Name")),      : eFileFormat(_("File Format")),
1536          eName(_("Name")),
1537        eCreationDate(_("Creation date")),        eCreationDate(_("Creation date")),
1538        eComments(_("Comments")),        eComments(_("Comments")),
1539        eProduct(_("Product")),        eProduct(_("Product")),
# Line 1024  PropDialog::PropDialog() Line 1549  PropDialog::PropDialog()
1549        eSourceForm(_("Source form")),        eSourceForm(_("Source form")),
1550        eCommissioned(_("Commissioned")),        eCommissioned(_("Commissioned")),
1551        eSubject(_("Subject")),        eSubject(_("Subject")),
1552        quitButton(Gtk::Stock::CLOSE),        quitButton(_("_Close"), true),
1553        table(2, 1)        table(2, 1),
1554          m_file(NULL)
1555  {  {
1556      set_title(_("File Properties"));      set_title(_("File Properties"));
1557      eName.set_width_chars(50);      eName.set_width_chars(50);
# Line 1047  PropDialog::PropDialog() Line 1573  PropDialog::PropDialog()
1573      connect(eCommissioned, &DLS::Info::Commissioned);      connect(eCommissioned, &DLS::Info::Commissioned);
1574      connect(eSubject, &DLS::Info::Subject);      connect(eSubject, &DLS::Info::Subject);
1575    
1576        table.add(eFileFormat);
1577      table.add(eName);      table.add(eName);
1578      table.add(eCreationDate);      table.add(eCreationDate);
1579      table.add(eComments);      table.add(eComments);
# Line 1077  PropDialog::PropDialog() Line 1604  PropDialog::PropDialog()
1604      quitButton.grab_focus();      quitButton.grab_focus();
1605      quitButton.signal_clicked().connect(      quitButton.signal_clicked().connect(
1606          sigc::mem_fun(*this, &PropDialog::hide));          sigc::mem_fun(*this, &PropDialog::hide));
1607        eFileFormat.signal_value_changed().connect(
1608            sigc::mem_fun(*this, &PropDialog::onFileFormatChanged));
1609    
1610      quitButton.show();      quitButton.show();
1611      vbox.show();      vbox.show();
1612      show_all_children();      show_all_children();
1613  }  }
1614    
1615    void PropDialog::set_file(gig::File* file)
1616    {
1617        m_file = file;
1618    
1619        // update file format version combo box
1620        const std::string sGiga = "Gigasampler/GigaStudio v";
1621        const int major = file->pVersion->major;
1622        std::vector<std::string> txts;
1623        std::vector<int> values;
1624        txts.push_back(sGiga + "2"); values.push_back(2);
1625        txts.push_back(sGiga + "3/v4"); values.push_back(3);
1626        if (major != 2 && major != 3) {
1627            txts.push_back(sGiga + ToString(major)); values.push_back(major);
1628        }
1629        std::vector<const char*> texts;
1630        for (int i = 0; i < txts.size(); ++i) texts.push_back(txts[i].c_str());
1631        texts.push_back(NULL); values.push_back(0);
1632        eFileFormat.set_choices(&texts[0], &values[0]);
1633        eFileFormat.set_value(major);
1634    }
1635    
1636    void PropDialog::onFileFormatChanged() {
1637        const int major = eFileFormat.get_value();
1638        if (m_file) m_file->pVersion->major = major;
1639    }
1640    
1641  void PropDialog::set_info(DLS::Info* info)  void PropDialog::set_info(DLS::Info* info)
1642  {  {
1643      update(info);      update(info);
# Line 1117  void InstrumentProps::set_MIDIProgram(ui Line 1672  void InstrumentProps::set_MIDIProgram(ui
1672  }  }
1673    
1674  InstrumentProps::InstrumentProps() :  InstrumentProps::InstrumentProps() :
1675      quitButton(Gtk::Stock::CLOSE),      quitButton(_("_Close"), true),
1676      table(2,1),      table(2,1),
1677      eName(_("Name")),      eName(_("Name")),
1678      eIsDrum(_("Is drum")),      eIsDrum(_("Is drum")),
# Line 1214  void MainWindow::file_changed() Line 1769  void MainWindow::file_changed()
1769      }      }
1770  }  }
1771    
1772    void MainWindow::updateSampleRefCountMap(gig::File* gig) {
1773        sample_ref_count.clear();
1774        
1775        if (!gig) return;
1776    
1777        for (gig::Instrument* instrument = gig->GetFirstInstrument(); instrument;
1778             instrument = gig->GetNextInstrument())
1779        {
1780            for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
1781                 rgn = instrument->GetNextRegion())
1782            {
1783                for (int i = 0; i < 256; ++i) {
1784                    if (!rgn->pDimensionRegions[i]) continue;
1785                    if (rgn->pDimensionRegions[i]->pSample) {
1786                        sample_ref_count[rgn->pDimensionRegions[i]->pSample]++;
1787                    }
1788                }
1789            }
1790        }
1791    }
1792    
1793  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)  void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
1794  {  {
1795      file = 0;      file = 0;
1796      set_file_is_shared(isSharedInstrument);      set_file_is_shared(isSharedInstrument);
1797    
1798      this->filename = filename ? filename : _("Unsaved Gig File");      this->filename =
1799            (filename && strlen(filename) > 0) ?
1800                filename : (!gig->GetFileName().empty()) ?
1801                    gig->GetFileName() : _("Unsaved Gig File");
1802      set_title(Glib::filename_display_basename(this->filename));      set_title(Glib::filename_display_basename(this->filename));
1803      file_has_name = filename;      file_has_name = filename;
1804      file_is_changed = false;      file_is_changed = false;
1805    
1806        propDialog.set_file(gig);
1807      propDialog.set_info(gig->pInfo);      propDialog.set_info(gig->pInfo);
1808    
1809      instrument_name_connection.block();      instrument_name_connection.block();
# Line 1239  void MainWindow::load_gig(gig::File* gig Line 1819  void MainWindow::load_gig(gig::File* gig
1819          add_instrument_to_menu(name);          add_instrument_to_menu(name);
1820      }      }
1821      instrument_name_connection.unblock();      instrument_name_connection.unblock();
1822      uiManager->get_widget("/MenuBar/MenuInstrument")->show();      uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();
1823    
1824        updateSampleRefCountMap(gig);
1825    
1826      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {      for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {
1827          if (group->Name != "") {          if (group->Name != "") {
# Line 1257  void MainWindow::load_gig(gig::File* gig Line 1839  void MainWindow::load_gig(gig::File* gig
1839                      gig_to_utf8(sample->pInfo->Name);                      gig_to_utf8(sample->pInfo->Name);
1840                  rowSample[m_SamplesModel.m_col_sample] = sample;                  rowSample[m_SamplesModel.m_col_sample] = sample;
1841                  rowSample[m_SamplesModel.m_col_group]  = NULL;                  rowSample[m_SamplesModel.m_col_group]  = NULL;
1842                    int refcount = sample_ref_count.count(sample) ? sample_ref_count[sample] : 0;
1843                    rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
1844                    rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
1845              }              }
1846          }          }
1847      }      }
1848        
1849        for (int i = 0; gig->GetScriptGroup(i); ++i) {
1850            gig::ScriptGroup* group = gig->GetScriptGroup(i);
1851    
1852            Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
1853            Gtk::TreeModel::Row rowGroup = *iterGroup;
1854            rowGroup[m_ScriptsModel.m_col_name]   = gig_to_utf8(group->Name);
1855            rowGroup[m_ScriptsModel.m_col_group]  = group;
1856            rowGroup[m_ScriptsModel.m_col_script] = NULL;
1857            for (int s = 0; group->GetScript(s); ++s) {
1858                gig::Script* script = group->GetScript(s);
1859    
1860                Gtk::TreeModel::iterator iterScript =
1861                    m_refScriptsTreeModel->append(rowGroup.children());
1862                Gtk::TreeModel::Row rowScript = *iterScript;
1863                rowScript[m_ScriptsModel.m_col_name] = gig_to_utf8(script->Name);
1864                rowScript[m_ScriptsModel.m_col_script] = script;
1865                rowScript[m_ScriptsModel.m_col_group]  = NULL;
1866            }
1867        }
1868        // unfold all sample groups & script groups by default
1869        m_TreeViewSamples.expand_all();
1870        m_TreeViewScripts.expand_all();
1871    
1872      file = gig;      file = gig;
1873    
# Line 1328  void MainWindow::show_midi_rules() Line 1936  void MainWindow::show_midi_rules()
1936      }      }
1937  }  }
1938    
1939    void MainWindow::show_script_slots() {
1940        if (!file) return;
1941        // get selected instrument
1942        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
1943        Gtk::TreeModel::iterator it = sel->get_selected();
1944        if (!it) return;
1945        Gtk::TreeModel::Row row = *it;
1946        gig::Instrument* instrument = row[m_Columns.m_col_instr];
1947        if (!instrument) return;
1948    
1949        ScriptSlots* window = new ScriptSlots;
1950        window->setInstrument(instrument);
1951        //window->reparent(*this);
1952        window->show();
1953    }
1954    
1955    void MainWindow::on_action_refresh_all() {
1956        __refreshEntireGUI();
1957    }
1958    
1959  void MainWindow::on_action_view_status_bar() {  void MainWindow::on_action_view_status_bar() {
1960      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
1961          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
# Line 1339  void MainWindow::on_action_view_status_b Line 1967  void MainWindow::on_action_view_status_b
1967      else                    m_StatusBar.hide();      else                    m_StatusBar.hide();
1968  }  }
1969    
1970    void MainWindow::on_auto_restore_win_dim() {
1971        Gtk::CheckMenuItem* item =
1972            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
1973        if (!item) {
1974            std::cerr << "/MenuBar/MenuView/AutoRestoreWinDim == NULL\n";
1975            return;
1976        }
1977        Settings::singleton()->autoRestoreWindowDimension = item->get_active();
1978    }
1979    
1980    void MainWindow::on_save_with_temporary_file() {
1981        Gtk::CheckMenuItem* item =
1982            dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));
1983        if (!item) {
1984            std::cerr << "/MenuBar/MenuSettings/SaveWithTemporaryFile == NULL\n";
1985            return;
1986        }
1987        Settings::singleton()->saveWithTemporaryFile = item->get_active();
1988    }
1989    
1990  bool MainWindow::is_copy_samples_unity_note_enabled() const {  bool MainWindow::is_copy_samples_unity_note_enabled() const {
1991      Gtk::CheckMenuItem* item =      Gtk::CheckMenuItem* item =
1992          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));          dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
# Line 1375  void MainWindow::on_button_release(GdkEv Line 2023  void MainWindow::on_button_release(GdkEv
2023          show_instr_props();          show_instr_props();
2024      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
2025          // gig v2 files have no midi rules          // gig v2 files have no midi rules
2026            const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
2027            static_cast<Gtk::MenuItem*>(
2028                uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(
2029                    bEnabled
2030                );
2031          static_cast<Gtk::MenuItem*>(          static_cast<Gtk::MenuItem*>(
2032              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(              uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
2033                  !(file->pVersion && file->pVersion->major == 2));                  bEnabled
2034                );
2035          popup_menu->popup(button->button, button->time);          popup_menu->popup(button->button, button->time);
2036      }      }
2037  }  }
# Line 1397  void MainWindow::on_instrument_selection Line 2051  void MainWindow::on_instrument_selection
2051      }      }
2052  }  }
2053    
2054    void MainWindow::select_instrument(gig::Instrument* instrument) {
2055        if (!instrument) return;
2056    
2057        Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
2058        for (int i = 0; i < model->children().size(); ++i) {
2059            Gtk::TreeModel::Row row = model->children()[i];
2060            if (row[m_Columns.m_col_instr] == instrument) {
2061                // select and show the respective instrument in the list view
2062                show_intruments_tab();
2063                m_TreeView.get_selection()->select(model->children()[i]);
2064                Gtk::TreePath path(
2065                    m_TreeView.get_selection()->get_selected()
2066                );
2067                m_TreeView.scroll_to_row(path);
2068                on_sel_change(); // the regular instrument selection change callback
2069            }
2070        }
2071    }
2072    
2073    /// Returns true if requested dimension region was successfully selected and scrolled to in the list view, false on error.
2074    bool MainWindow::select_dimension_region(gig::DimensionRegion* dimRgn) {
2075        gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();
2076        gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();
2077    
2078        Glib::RefPtr<Gtk::TreeModel> model = m_TreeView.get_model();
2079        for (int i = 0; i < model->children().size(); ++i) {
2080            Gtk::TreeModel::Row row = model->children()[i];
2081            if (row[m_Columns.m_col_instr] == pInstrument) {
2082                // select and show the respective instrument in the list view
2083                show_intruments_tab();
2084                m_TreeView.get_selection()->select(model->children()[i]);
2085                Gtk::TreePath path(
2086                    m_TreeView.get_selection()->get_selected()
2087                );
2088                m_TreeView.scroll_to_row(path);
2089                on_sel_change(); // the regular instrument selection change callback
2090    
2091                // select respective region in the region selector
2092                m_RegionChooser.set_region(pRegion);
2093    
2094                // select and show the respective dimension region in the editor
2095                //update_dimregs();
2096                if (!m_DimRegionChooser.select_dimregion(dimRgn)) return false;
2097                //dimreg_edit.set_dim_region(dimRgn);
2098    
2099                return true;
2100            }
2101        }
2102    
2103        return false;
2104    }
2105    
2106    void MainWindow::select_sample(gig::Sample* sample) {
2107        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
2108        for (int g = 0; g < model->children().size(); ++g) {
2109            Gtk::TreeModel::Row rowGroup = model->children()[g];
2110            for (int s = 0; s < rowGroup.children().size(); ++s) {
2111                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
2112                if (rowSample[m_SamplesModel.m_col_sample] == sample) {
2113                    show_samples_tab();
2114                    m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);
2115                    Gtk::TreePath path(
2116                        m_TreeViewSamples.get_selection()->get_selected()
2117                    );
2118                    m_TreeViewSamples.scroll_to_row(path);
2119                    return;
2120                }
2121            }
2122        }
2123    }
2124    
2125  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {  void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
2126      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {      if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
2127          Gtk::Menu* sample_popup =          Gtk::Menu* sample_popup =
# Line 1411  void MainWindow::on_sample_treeview_butt Line 2136  void MainWindow::on_sample_treeview_butt
2136              group_selected  = row[m_SamplesModel.m_col_group];              group_selected  = row[m_SamplesModel.m_col_group];
2137              sample_selected = row[m_SamplesModel.m_col_sample];              sample_selected = row[m_SamplesModel.m_col_sample];
2138          }          }
2139            
2140                
2141          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
2142              set_sensitive(group_selected || sample_selected);              set_sensitive(group_selected || sample_selected);
2143          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
2144              set_sensitive(group_selected || sample_selected);              set_sensitive(group_selected || sample_selected);
2145          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->
2146              set_sensitive(file);              set_sensitive(file);
2147            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/ShowSampleRefs"))->
2148                set_sensitive(sample_selected);
2149          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->          dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
2150              set_sensitive(group_selected || sample_selected);              set_sensitive(group_selected || sample_selected);
2151          // show sample popup          // show sample popup
2152          sample_popup->popup(button->button, button->time);          sample_popup->popup(button->button, button->time);
2153    
2154            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->
2155                set_sensitive(group_selected || sample_selected);
2156            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->
2157                set_sensitive(group_selected || sample_selected);
2158            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddGroup"))->
2159                set_sensitive(file);
2160            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/ShowSampleRefs"))->
2161                set_sensitive(sample_selected);
2162            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->
2163                set_sensitive(group_selected || sample_selected);
2164      }      }
2165  }  }
2166    
2167    void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {
2168        if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
2169            Gtk::Menu* script_popup =
2170                dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));
2171            // update enabled/disabled state of sample popup items
2172            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2173            Gtk::TreeModel::iterator it = sel->get_selected();
2174            bool group_selected  = false;
2175            bool script_selected = false;
2176            if (it) {
2177                Gtk::TreeModel::Row row = *it;
2178                group_selected  = row[m_ScriptsModel.m_col_group];
2179                script_selected = row[m_ScriptsModel.m_col_script];
2180            }
2181            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->
2182                set_sensitive(group_selected || script_selected);
2183            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->
2184                set_sensitive(file);
2185            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/EditScript"))->
2186                set_sensitive(script_selected);    
2187            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->
2188                set_sensitive(group_selected || script_selected);
2189            // show sample popup
2190            script_popup->popup(button->button, button->time);
2191    
2192            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->
2193                set_sensitive(group_selected || script_selected);
2194            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->
2195                set_sensitive(file);
2196            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/EditScript"))->
2197                set_sensitive(script_selected);    
2198            dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->
2199                set_sensitive(group_selected || script_selected);
2200        }
2201    }
2202    
2203  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(  Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
2204      const Glib::ustring& name, int position) {      const Glib::ustring& name, int position) {
# Line 1571  void MainWindow::on_action_sample_proper Line 2346  void MainWindow::on_action_sample_proper
2346      msg.run();      msg.run();
2347  }  }
2348    
2349    void MainWindow::on_action_add_script_group() {
2350        static int __script_indexer = 0;
2351        if (!file) return;
2352        gig::ScriptGroup* group = file->AddScriptGroup();
2353        group->Name = gig_from_utf8(_("Unnamed Group"));
2354        if (__script_indexer) group->Name += " " + ToString(__script_indexer);
2355        __script_indexer++;
2356        // update sample tree view
2357        Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
2358        Gtk::TreeModel::Row rowGroup = *iterGroup;
2359        rowGroup[m_ScriptsModel.m_col_name] = gig_to_utf8(group->Name);
2360        rowGroup[m_ScriptsModel.m_col_script] = NULL;
2361        rowGroup[m_ScriptsModel.m_col_group] = group;
2362        file_changed();
2363    }
2364    
2365    void MainWindow::on_action_add_script() {
2366        if (!file) return;
2367        // get selected group
2368        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2369        Gtk::TreeModel::iterator it = sel->get_selected();
2370        if (!it) return;
2371        Gtk::TreeModel::Row row = *it;
2372        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
2373        if (!group) { // not a group, but a script is selected (probably)
2374            gig::Script* script = row[m_ScriptsModel.m_col_script];
2375            if (!script) return;
2376            it = row.parent(); // resolve parent (that is the script's group)
2377            if (!it) return;
2378            row = *it;
2379            group = row[m_ScriptsModel.m_col_group];
2380            if (!group) return;
2381        }
2382    
2383        // add a new script to the .gig file
2384        gig::Script* script = group->AddScript();    
2385        Glib::ustring name = _("Unnamed Script");
2386        script->Name = gig_from_utf8(name);
2387    
2388        // add script to the tree view
2389        Gtk::TreeModel::iterator iterScript =
2390            m_refScriptsTreeModel->append(row.children());
2391        Gtk::TreeModel::Row rowScript = *iterScript;
2392        rowScript[m_ScriptsModel.m_col_name] = name;
2393        rowScript[m_ScriptsModel.m_col_script] = script;
2394        rowScript[m_ScriptsModel.m_col_group]  = NULL;
2395    
2396        // unfold group of new script item in treeview
2397        Gtk::TreeModel::Path path(iterScript);
2398        m_TreeViewScripts.expand_to_path(path);
2399    }
2400    
2401    void MainWindow::on_action_edit_script() {
2402        if (!file) return;
2403        // get selected script
2404        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2405        Gtk::TreeModel::iterator it = sel->get_selected();
2406        if (!it) return;
2407        Gtk::TreeModel::Row row = *it;
2408        gig::Script* script = row[m_ScriptsModel.m_col_script];
2409        if (!script) return;
2410    
2411        ScriptEditor* editor = new ScriptEditor;
2412        editor->signal_script_to_be_changed.connect(
2413            signal_script_to_be_changed.make_slot()
2414        );
2415        editor->signal_script_changed.connect(
2416            signal_script_changed.make_slot()
2417        );
2418        editor->setScript(script);
2419        //editor->reparent(*this);
2420        editor->show();
2421    }
2422    
2423    void MainWindow::on_action_remove_script() {
2424        if (!file) return;
2425        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2426        Gtk::TreeModel::iterator it = sel->get_selected();
2427        if (it) {
2428            Gtk::TreeModel::Row row = *it;
2429            gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
2430            gig::Script* script     = row[m_ScriptsModel.m_col_script];
2431            Glib::ustring name      = row[m_ScriptsModel.m_col_name];
2432            try {
2433                // remove script group or script from the gig file
2434                if (group) {
2435                    // notify everybody that we're going to remove these samples
2436    //TODO:         scripts_to_be_removed_signal.emit(members);
2437                    // delete the group in the .gig file including the
2438                    // samples that belong to the group
2439                    file->DeleteScriptGroup(group);
2440                    // notify that we're done with removal
2441    //TODO:         scripts_removed_signal.emit();
2442                    file_changed();
2443                } else if (script) {
2444                    // notify everybody that we're going to remove this sample
2445    //TODO:         std::list<gig::Script*> lscripts;
2446    //TODO:         lscripts.push_back(script);
2447    //TODO:         scripts_to_be_removed_signal.emit(lscripts);
2448                    // remove sample from the .gig file
2449                    script->GetGroup()->DeleteScript(script);
2450                    // notify that we're done with removal
2451    //TODO:         scripts_removed_signal.emit();
2452                    dimreg_changed();
2453                    file_changed();
2454                }
2455                // remove respective row(s) from samples tree view
2456                m_refScriptsTreeModel->erase(it);
2457            } catch (RIFF::Exception e) {
2458                // pretend we're done with removal (i.e. to avoid dead locks)
2459    //TODO:     scripts_removed_signal.emit();
2460                // show error message
2461                Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
2462                msg.run();
2463            }
2464        }
2465    }
2466    
2467  void MainWindow::on_action_add_group() {  void MainWindow::on_action_add_group() {
2468      static int __sample_indexer = 0;      static int __sample_indexer = 0;
2469      if (!file) return;      if (!file) return;
# Line 1587  void MainWindow::on_action_add_group() { Line 2480  void MainWindow::on_action_add_group() {
2480      file_changed();      file_changed();
2481  }  }
2482    
2483    void MainWindow::on_action_replace_sample() {
2484        add_or_replace_sample(true);
2485    }
2486    
2487  void MainWindow::on_action_add_sample() {  void MainWindow::on_action_add_sample() {
2488        add_or_replace_sample(false);
2489    }
2490    
2491    void MainWindow::add_or_replace_sample(bool replace) {
2492      if (!file) return;      if (!file) return;
2493      // get selected group  
2494        // get selected group (and probably selected sample)
2495      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();      Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
2496      Gtk::TreeModel::iterator it = sel->get_selected();      Gtk::TreeModel::iterator it = sel->get_selected();
2497      if (!it) return;      if (!it) return;
2498      Gtk::TreeModel::Row row = *it;      Gtk::TreeModel::Row row = *it;
2499        gig::Sample* sample = NULL;
2500      gig::Group* group = row[m_SamplesModel.m_col_group];      gig::Group* group = row[m_SamplesModel.m_col_group];
2501      if (!group) { // not a group, but a sample is selected (probably)      if (!group) { // not a group, but a sample is selected (probably)
2502          gig::Sample* sample = row[m_SamplesModel.m_col_sample];          if (replace) sample = row[m_SamplesModel.m_col_sample];
2503          if (!sample) return;          if (!row[m_SamplesModel.m_col_sample]) return;
2504          it = row.parent(); // resolve parent (that is the sample's group)          it = row.parent(); // resolve parent (that is the sample's group)
2505          if (!it) return;          if (!it) return;
2506          row = *it;          if (!replace) row = *it;
2507          group = row[m_SamplesModel.m_col_group];          group = (*it)[m_SamplesModel.m_col_group];
2508          if (!group) return;          if (!group) return;
2509      }      }
2510        if (replace && !sample) return;
2511    
2512      // show 'browse for file' dialog      // show 'browse for file' dialog
2513      Gtk::FileChooserDialog dialog(*this, _("Add Sample(s)"));      Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));
2514      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2515      dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);      dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
2516      dialog.set_select_multiple(true);      dialog.set_select_multiple(!replace); // allow multi audio file selection only when adding new samples, does not make sense when replacing a specific sample
2517    
2518      // matches all file types supported by libsndfile      // matches all file types supported by libsndfile
2519  #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 1679  void MainWindow::on_action_add_sample() Line 2584  void MainWindow::on_action_add_sample()
2584                          sf_close(hFile); // close sound file                          sf_close(hFile); // close sound file
2585                          throw std::string(_("format not supported")); // unsupported subformat (yet?)                          throw std::string(_("format not supported")); // unsupported subformat (yet?)
2586                  }                  }
2587                  // add a new sample to the .gig file                  // add a new sample to the .gig file (if adding is requested actually)
2588                  gig::Sample* sample = file->AddSample();                  if (!replace) sample = file->AddSample();
2589                  // file name without path                  // file name without path
2590                  Glib::ustring filename = Glib::filename_display_basename(*iter);                  Glib::ustring filename = Glib::filename_display_basename(*iter);
2591                  // remove file extension if there is one                  // remove file extension if there is one
# Line 1731  void MainWindow::on_action_add_sample() Line 2636  void MainWindow::on_action_add_sample()
2636                  // physically when File::Save() is called)                  // physically when File::Save() is called)
2637                  sample->Resize(info.frames);                  sample->Resize(info.frames);
2638                  // make sure sample is part of the selected group                  // make sure sample is part of the selected group
2639                  group->AddSample(sample);                  if (!replace) group->AddSample(sample);
2640                  // schedule that physical resize and sample import                  // schedule that physical resize and sample import
2641                  // (data copying), performed when "Save" is requested                  // (data copying), performed when "Save" is requested
2642                  SampleImportItem sched_item;                  SampleImportItem sched_item;
# Line 1739  void MainWindow::on_action_add_sample() Line 2644  void MainWindow::on_action_add_sample()
2644                  sched_item.sample_path = *iter;                  sched_item.sample_path = *iter;
2645                  m_SampleImportQueue.push_back(sched_item);                  m_SampleImportQueue.push_back(sched_item);
2646                  // add sample to the tree view                  // add sample to the tree view
2647                  Gtk::TreeModel::iterator iterSample =                  if (replace) {
2648                      m_refSamplesTreeModel->append(row.children());                      row[m_SamplesModel.m_col_name] = gig_to_utf8(sample->pInfo->Name);
2649                  Gtk::TreeModel::Row rowSample = *iterSample;                  } else {
2650                  rowSample[m_SamplesModel.m_col_name] =                      Gtk::TreeModel::iterator iterSample =
2651                      gig_to_utf8(sample->pInfo->Name);                          m_refSamplesTreeModel->append(row.children());
2652                  rowSample[m_SamplesModel.m_col_sample] = sample;                      Gtk::TreeModel::Row rowSample = *iterSample;
2653                  rowSample[m_SamplesModel.m_col_group]  = NULL;                      rowSample[m_SamplesModel.m_col_name] =
2654                            gig_to_utf8(sample->pInfo->Name);
2655                        rowSample[m_SamplesModel.m_col_sample] = sample;
2656                        rowSample[m_SamplesModel.m_col_group]  = NULL;
2657                    }
2658                  // close sound file                  // close sound file
2659                  sf_close(hFile);                  sf_close(hFile);
2660                  file_changed();                  file_changed();
# Line 1756  void MainWindow::on_action_add_sample() Line 2665  void MainWindow::on_action_add_sample()
2665          }          }
2666          // 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
2667          if (!error_files.empty()) {          if (!error_files.empty()) {
2668              Glib::ustring txt = _("Could not add the following sample(s):\n") + error_files;              Glib::ustring txt =
2669                    (replace
2670                        ? _("Failed to replace sample with:\n")
2671                        : _("Could not add the following sample(s):\n"))
2672                    + error_files;
2673              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);              Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2674              msg.run();              msg.run();
2675          }          }
# Line 1799  void MainWindow::on_action_replace_all_s Line 2712  void MainWindow::on_action_replace_all_s
2712      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);      dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
2713      description.show();      description.show();
2714      entryArea.show_all();      entryArea.show_all();
2715      dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);      dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2716      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);      dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
2717      dialog.set_select_multiple(false);      dialog.set_select_multiple(false);
2718      if (current_sample_dir != "") {      if (current_sample_dir != "") {
# Line 1823  void MainWindow::on_action_replace_all_s Line 2736  void MainWindow::on_action_replace_all_s
2736              try              try
2737              {              {
2738                  if (!hFile) throw std::string(_("could not open file"));                  if (!hFile) throw std::string(_("could not open file"));
                 int bitdepth;  
2739                  switch (info.format & 0xff) {                  switch (info.format & 0xff) {
2740                      case SF_FORMAT_PCM_S8:                      case SF_FORMAT_PCM_S8:
2741                      case SF_FORMAT_PCM_16:                      case SF_FORMAT_PCM_16:
2742                      case SF_FORMAT_PCM_U8:                      case SF_FORMAT_PCM_U8:
                         bitdepth = 16;  
                         break;  
2743                      case SF_FORMAT_PCM_24:                      case SF_FORMAT_PCM_24:
2744                      case SF_FORMAT_PCM_32:                      case SF_FORMAT_PCM_32:
2745                      case SF_FORMAT_FLOAT:                      case SF_FORMAT_FLOAT:
2746                      case SF_FORMAT_DOUBLE:                      case SF_FORMAT_DOUBLE:
                         bitdepth = 24;  
2747                          break;                          break;
2748                      default:                      default:
2749                          sf_close(hFile);                          sf_close(hFile);
# Line 1940  void MainWindow::on_action_remove_sample Line 2849  void MainWindow::on_action_remove_sample
2849      }      }
2850  }  }
2851    
2852    void MainWindow::on_action_remove_unused_samples() {
2853        if (!file) return;
2854    
2855        // collect all samples that are not referenced by any instrument
2856        std::list<gig::Sample*> lsamples;
2857        for (int iSample = 0; file->GetSample(iSample); ++iSample) {
2858            gig::Sample* sample = file->GetSample(iSample);
2859            bool isUsed = false;
2860            for (gig::Instrument* instrument = file->GetFirstInstrument(); instrument;
2861                                  instrument = file->GetNextInstrument())
2862            {
2863                for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
2864                                  rgn = instrument->GetNextRegion())
2865                {
2866                    for (int i = 0; i < 256; ++i) {
2867                        if (!rgn->pDimensionRegions[i]) continue;
2868                        if (rgn->pDimensionRegions[i]->pSample != sample) continue;
2869                        isUsed = true;
2870                        goto endOfRefSearch;
2871                    }
2872                }
2873            }
2874            endOfRefSearch:
2875            if (!isUsed) lsamples.push_back(sample);
2876        }
2877    
2878        if (lsamples.empty()) return;
2879    
2880        // notify everybody that we're going to remove these samples
2881        samples_to_be_removed_signal.emit(lsamples);
2882    
2883        // remove collected samples
2884        try {
2885            for (std::list<gig::Sample*>::iterator itSample = lsamples.begin();
2886                 itSample != lsamples.end(); ++itSample)
2887            {
2888                gig::Sample* sample = *itSample;
2889                // remove sample from the .gig file
2890                file->DeleteSample(sample);
2891                // if sample was just previously added, remove it fro the import queue
2892                for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
2893                     iter != m_SampleImportQueue.end(); ++iter)
2894                {
2895                    if ((*iter).gig_sample == sample) {
2896                        printf("Removing previously added sample '%s'\n",
2897                               (*iter).sample_path.c_str());
2898                        m_SampleImportQueue.erase(iter);
2899                        break;
2900                    }
2901                }
2902            }
2903        } catch (RIFF::Exception e) {
2904            // show error message
2905            Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
2906            msg.run();
2907        }
2908    
2909        // notify everybody that we're done with removal
2910        samples_removed_signal.emit();
2911    
2912        dimreg_changed();
2913        file_changed();
2914        __refreshEntireGUI();
2915    }
2916    
2917    // see comment on on_sample_treeview_drag_begin()
2918    void MainWindow::on_scripts_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
2919    {
2920        first_call_to_drag_data_get = true;
2921    }
2922    
2923    void MainWindow::on_scripts_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
2924                                                       Gtk::SelectionData& selection_data, guint, guint)
2925    {
2926        if (!first_call_to_drag_data_get) return;
2927        first_call_to_drag_data_get = false;
2928    
2929        // get selected script
2930        gig::Script* script = NULL;
2931        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
2932        Gtk::TreeModel::iterator it = sel->get_selected();
2933        if (it) {
2934            Gtk::TreeModel::Row row = *it;
2935            script = row[m_ScriptsModel.m_col_script];
2936        }
2937        // pass the gig::Script as pointer
2938        selection_data.set(selection_data.get_target(), 0/*unused*/,
2939                           (const guchar*)&script,
2940                           sizeof(script)/*length of data in bytes*/);
2941    }
2942    
2943    // see comment on on_sample_treeview_drag_begin()
2944    void MainWindow::on_instruments_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
2945    {
2946        first_call_to_drag_data_get = true;
2947    }
2948    
2949    void MainWindow::on_instruments_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
2950                                                           Gtk::SelectionData& selection_data, guint, guint)
2951    {
2952        if (!first_call_to_drag_data_get) return;
2953        first_call_to_drag_data_get = false;
2954    
2955        // get selected source instrument
2956        gig::Instrument* src = NULL;
2957        {
2958            Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
2959            Gtk::TreeModel::iterator it = sel->get_selected();
2960            if (it) {
2961                Gtk::TreeModel::Row row = *it;
2962                src = row[m_Columns.m_col_instr];
2963            }
2964        }
2965        if (!src) return;
2966    
2967        // pass the source gig::Instrument as pointer
2968        selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&src,
2969                           sizeof(src)/*length of data in bytes*/);
2970    }
2971    
2972    void MainWindow::on_instruments_treeview_drop_drag_data_received(
2973        const Glib::RefPtr<Gdk::DragContext>& context, int x, int y,
2974        const Gtk::SelectionData& selection_data, guint, guint time)
2975    {
2976        gig::Instrument* src = *((gig::Instrument**) selection_data.get_data());
2977        if (!src || selection_data.get_length() != sizeof(gig::Instrument*))
2978            return;
2979    
2980        gig::Instrument* dst = NULL;
2981        {
2982            Gtk::TreeModel::Path path;
2983            const bool found = m_TreeView.get_path_at_pos(x, y, path);
2984            if (!found) return;
2985    
2986            Gtk::TreeModel::iterator iter = m_refTreeModel->get_iter(path);
2987            if (!iter) return;
2988            Gtk::TreeModel::Row row = *iter;
2989            dst = row[m_Columns.m_col_instr];
2990        }
2991        if (!dst) return;
2992    
2993        //printf("dragdrop received src=%s dst=%s\n", src->pInfo->Name.c_str(), dst->pInfo->Name.c_str());
2994        src->MoveTo(dst);
2995        __refreshEntireGUI();
2996        select_instrument(src);
2997    }
2998    
2999  // For some reason drag_data_get gets called two times for each  // For some reason drag_data_get gets called two times for each
3000  // 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
3001  // 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 1998  void MainWindow::on_sample_label_drop_dr Line 3054  void MainWindow::on_sample_label_drop_dr
3054          bool channels_changed = false;          bool channels_changed = false;
3055          if (sample->Channels == 1 && stereo_dimension) {          if (sample->Channels == 1 && stereo_dimension) {
3056              // remove the samplechannel dimension              // remove the samplechannel dimension
3057    /* commented out, because it makes it impossible building up an instrument from scratch using two separate L/R samples
3058              region->DeleteDimension(stereo_dimension);              region->DeleteDimension(stereo_dimension);
3059              channels_changed = true;              channels_changed = true;
3060              region_changed();              region_changed();
3061    */
3062          }          }
3063          dimreg_edit.set_sample(          dimreg_edit.set_sample(
3064              sample,              sample,
# Line 2066  void MainWindow::sample_name_changed(con Line 3124  void MainWindow::sample_name_changed(con
3124      }      }
3125  }  }
3126    
3127    void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,
3128                                         const Gtk::TreeModel::iterator& iter) {
3129        if (!iter) return;
3130        Gtk::TreeModel::Row row = *iter;
3131        Glib::ustring name      = row[m_ScriptsModel.m_col_name];
3132        gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
3133        gig::Script* script     = row[m_ScriptsModel.m_col_script];
3134        gig::String gigname(gig_from_utf8(name));
3135        if (group) {
3136            if (group->Name != gigname) {
3137                group->Name = gigname;
3138                printf("script group name changed\n");
3139                file_changed();
3140            }
3141        } else if (script) {
3142            if (script->Name != gigname) {
3143                script->Name = gigname;
3144                printf("script name changed\n");
3145                file_changed();
3146            }
3147        }
3148    }
3149    
3150    void MainWindow::script_double_clicked(const Gtk::TreeModel::Path& path,
3151                                           Gtk::TreeViewColumn* column)
3152    {
3153        Gtk::TreeModel::iterator iter = m_refScriptsTreeModel->get_iter(path);
3154        if (!iter) return;
3155        Gtk::TreeModel::Row row = *iter;
3156        gig::Script* script = row[m_ScriptsModel.m_col_script];
3157        if (!script) return;
3158    
3159        ScriptEditor* editor = new ScriptEditor;
3160        editor->signal_script_to_be_changed.connect(
3161            signal_script_to_be_changed.make_slot()
3162        );
3163        editor->signal_script_changed.connect(
3164            signal_script_changed.make_slot()
3165        );
3166        editor->setScript(script);
3167        //editor->reparent(*this);
3168        editor->show();
3169    }
3170    
3171  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,  void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,
3172                                           const Gtk::TreeModel::iterator& iter) {                                           const Gtk::TreeModel::iterator& iter) {
3173      if (!iter) return;      if (!iter) return;
# Line 2100  void MainWindow::instrument_name_changed Line 3202  void MainWindow::instrument_name_changed
3202      }      }
3203  }  }
3204    
3205    void MainWindow::on_action_combine_instruments() {
3206        CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);
3207        d->show_all();
3208        d->resize(500, 400);
3209        d->run();
3210        if (d->fileWasChanged()) {
3211            // update GUI with new instrument just created
3212            add_instrument(d->newCombinedInstrument());
3213        }
3214        delete d;
3215    }
3216    
3217    void MainWindow::on_action_view_references() {
3218        Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
3219        Gtk::TreeModel::iterator it = sel->get_selected();
3220        if (!it) return;
3221        Gtk::TreeModel::Row row = *it;
3222        gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3223        if (!sample) return;
3224    
3225        ReferencesView* d = new ReferencesView(*this);
3226        d->setSample(sample);
3227        d->dimension_region_selected.connect(
3228            sigc::mem_fun(*this, &MainWindow::select_dimension_region)
3229        );
3230        d->show_all();
3231        d->resize(500, 400);
3232        d->run();
3233        delete d;
3234    }
3235    
3236    void MainWindow::mergeFiles(const std::vector<std::string>& filenames) {
3237        struct _Source {
3238            std::vector<RIFF::File*> riffs;
3239            std::vector<gig::File*> gigs;
3240            
3241            ~_Source() {
3242                for (int k = 0; k < gigs.size(); ++k) delete gigs[k];
3243                for (int k = 0; k < riffs.size(); ++k) delete riffs[k];
3244                riffs.clear();
3245                gigs.clear();
3246            }
3247        } sources;
3248    
3249        if (filenames.empty())
3250            throw RIFF::Exception(_("No files selected, so nothing done."));
3251    
3252        // first open all input files (to avoid output file corruption)
3253        int i;
3254        try {
3255            for (i = 0; i < filenames.size(); ++i) {
3256                const std::string& filename = filenames[i];
3257                printf("opening file=%s\n", filename.c_str());
3258    
3259                RIFF::File* riff = new RIFF::File(filename);
3260                sources.riffs.push_back(riff);
3261    
3262                gig::File* gig = new gig::File(riff);
3263                sources.gigs.push_back(gig);
3264            }
3265        } catch (RIFF::Exception e) {
3266            throw RIFF::Exception(
3267                _("Error occurred while opening '") +
3268                filenames[i] +
3269                "': " +
3270                e.Message
3271            );
3272        } catch (...) {
3273            throw RIFF::Exception(
3274                _("Unknown exception occurred while opening '") +
3275                filenames[i] + "'"
3276            );
3277        }
3278    
3279        // now merge the opened .gig files to the main .gig file currently being
3280        // open in gigedit
3281        try {
3282            for (i = 0; i < filenames.size(); ++i) {
3283                const std::string& filename = filenames[i];
3284                printf("merging file=%s\n", filename.c_str());
3285                assert(i < sources.gigs.size());
3286    
3287                this->file->AddContentOf(sources.gigs[i]);
3288            }
3289        } catch (RIFF::Exception e) {
3290            throw RIFF::Exception(
3291                _("Error occurred while merging '") +
3292                filenames[i] +
3293                "': " +
3294                e.Message
3295            );
3296        } catch (...) {
3297            throw RIFF::Exception(
3298                _("Unknown exception occurred while merging '") +
3299                filenames[i] + "'"
3300            );
3301        }
3302    
3303        // Finally save gig file persistently to disk ...
3304        //NOTE: requires that this gig file already has a filename !
3305        {
3306            std::cout << "Saving file\n" << std::flush;
3307            file_structure_to_be_changed_signal.emit(this->file);
3308    
3309            progress_dialog = new ProgressDialog( //FIXME: memory leak!
3310                _("Saving") +  Glib::ustring(" '") +
3311                Glib::filename_display_basename(this->filename) + "' ...",
3312                *this
3313            );
3314            progress_dialog->show_all();
3315            saver = new Saver(this->file); //FIXME: memory leak!
3316            saver->signal_progress().connect(
3317                sigc::mem_fun(*this, &MainWindow::on_saver_progress));
3318            saver->signal_finished().connect(
3319                sigc::mem_fun(*this, &MainWindow::on_saver_finished));
3320            saver->signal_error().connect(
3321                sigc::mem_fun(*this, &MainWindow::on_saver_error));
3322            saver->launch();
3323        }
3324    }
3325    
3326    void MainWindow::on_action_merge_files() {
3327        if (this->file->GetFileName().empty()) {
3328            Glib::ustring txt = _(
3329                "You seem to have a new .gig file open that has not been saved "
3330                "yet. You must save it somewhere before starting to merge it with "
3331                "other .gig files though, because during the merge operation the "
3332                "other files' sample data must be written on file level to the "
3333                "target .gig file."
3334            );
3335            Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
3336            msg.run();
3337            return;
3338        }
3339    
3340        Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
3341        dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
3342        dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
3343        dialog.set_default_response(Gtk::RESPONSE_CANCEL);
3344    #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
3345        Gtk::FileFilter filter;
3346        filter.add_pattern("*.gig");
3347    #else
3348        Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
3349        filter->add_pattern("*.gig");
3350    #endif
3351        dialog.set_filter(filter);
3352        if (current_gig_dir != "") {
3353            dialog.set_current_folder(current_gig_dir);
3354        }
3355        dialog.set_select_multiple(true);
3356    
3357        // show warning in the file picker dialog
3358        Gtk::HBox descriptionArea;
3359        descriptionArea.set_spacing(15);
3360        Gtk::Image warningIcon;
3361        warningIcon.set_from_icon_name("dialog-warning",
3362                                       Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
3363        descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
3364    #if GTKMM_MAJOR_VERSION < 3
3365        view::WrapLabel description;
3366    #else
3367        Gtk::Label description;
3368        description.set_line_wrap();
3369    #endif
3370        description.set_markup(_(
3371            "\nSelect at least one .gig file that shall be merged to the .gig file "
3372            "currently being open in gigedit.\n\n"
3373            "<b>Please Note:</b> Merging with other files will modify your "
3374            "currently open .gig file on file level! And be aware that the current "
3375            "merge algorithm does not detect duplicate samples yet. So if you are "
3376            "merging files which are using equivalent sample data, those "
3377            "equivalent samples will currently be treated as separate samples and "
3378            "will accordingly be stored separately in the target .gig file!"
3379        ));
3380        descriptionArea.pack_start(description);
3381        dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
3382        descriptionArea.show_all();
3383    
3384        if (dialog.run() == Gtk::RESPONSE_OK) {
3385            printf("on_action_merge_files self=%p\n",
3386                   static_cast<void*>(Glib::Threads::Thread::self()));
3387            std::vector<std::string> filenames = dialog.get_filenames();
3388    
3389            // merge the selected files to the currently open .gig file
3390            try {
3391                mergeFiles(filenames);
3392            } catch (RIFF::Exception e) {
3393                Gtk::MessageDialog msg(*this, e.Message, false, Gtk::MESSAGE_ERROR);
3394                msg.run();
3395            }
3396    
3397            // update GUI
3398            __refreshEntireGUI();
3399        }
3400    }
3401    
3402  void MainWindow::set_file_is_shared(bool b) {  void MainWindow::set_file_is_shared(bool b) {
3403      this->file_is_shared = b;      this->file_is_shared = b;
3404    
# Line 2114  void MainWindow::set_file_is_shared(bool Line 3413  void MainWindow::set_file_is_shared(bool
3413              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)              Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)
3414          );          );
3415      }      }
3416    
3417        {
3418            Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
3419                uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
3420            if (item) item->set_sensitive(b);
3421        }
3422    }
3423    
3424    void MainWindow::on_sample_ref_count_incremented(gig::Sample* sample, int offset) {
3425        if (!sample) return;
3426        sample_ref_count[sample] += offset;
3427        const int refcount = sample_ref_count[sample];
3428    
3429        Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
3430        for (int g = 0; g < model->children().size(); ++g) {
3431            Gtk::TreeModel::Row rowGroup = model->children()[g];
3432            for (int s = 0; s < rowGroup.children().size(); ++s) {
3433                Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
3434                if (rowSample[m_SamplesModel.m_col_sample] != sample) continue;
3435                rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
3436                rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
3437            }
3438        }
3439    }
3440    
3441    void MainWindow::on_sample_ref_changed(gig::Sample* oldSample, gig::Sample* newSample) {
3442        on_sample_ref_count_incremented(oldSample, -1);
3443        on_sample_ref_count_incremented(newSample, +1);
3444    }
3445    
3446    void MainWindow::on_samples_to_be_removed(std::list<gig::Sample*> samples) {
3447        // just in case a new sample is added later with exactly the same memory
3448        // address, which would lead to incorrect refcount if not deleted here
3449        for (std::list<gig::Sample*>::const_iterator it = samples.begin();
3450             it != samples.end(); ++it)
3451        {
3452            sample_ref_count.erase(*it);
3453        }
3454    }
3455    
3456    void MainWindow::show_samples_tab() {
3457        m_TreeViewNotebook.set_current_page(0);
3458    }
3459    
3460    void MainWindow::show_intruments_tab() {
3461        m_TreeViewNotebook.set_current_page(1);
3462    }
3463    
3464    void MainWindow::show_scripts_tab() {
3465        m_TreeViewNotebook.set_current_page(2);
3466  }  }
3467    
3468  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 2171  sigc::signal<void, int/*key*/, int/*velo Line 3520  sigc::signal<void, int/*key*/, int/*velo
3520  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {  sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {
3521      return m_RegionChooser.signal_keyboard_key_released();      return m_RegionChooser.signal_keyboard_key_released();
3522  }  }
3523    
3524    sigc::signal<void, gig::Instrument*>& MainWindow::signal_switch_sampler_instrument() {
3525        return switch_sampler_instrument_signal;
3526    }

Legend:
Removed from v.2541  
changed lines
  Added in v.2968

  ViewVC Help
Powered by ViewVC