/[svn]/gigedit/trunk/src/gigedit/mainwindow.cpp
ViewVC logotype

Contents of /gigedit/trunk/src/gigedit/mainwindow.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3831 - (show annotations) (download)
Thu Oct 15 18:08:49 2020 UTC (3 years, 6 months ago) by schoenebeck
File size: 234629 byte(s)
* Main Window: auto save & restore the vertical splitter position.

* Bumped version (1.1.1.svn33).

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

  ViewVC Help
Powered by ViewVC