/[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 3918 - (show annotations) (download)
Thu Jun 10 13:28:17 2021 UTC (2 years, 10 months ago) by schoenebeck
File size: 235714 byte(s)
* Use libgig's new IO-per-thread feature to avoid file I/O concurrency
  issues with .gig files in a multi-threaded environment.

* Bumped version (1.2.0.svn1).

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 // due to the multi-threaded scenario use separate file I/O handles for
2108 // each thread to avoid file I/O concurrency issues with .gig file
2109 riff->SetIOPerThread(true);
2110
2111 gig = new gig::File(riff);
2112
2113 gig->GetInstrument(0, &progress);
2114 }
2115
2116
2117 Saver::Saver(gig::File* file, Glib::ustring filename) :
2118 LoaderSaverBase(filename, file)
2119 {
2120 }
2121
2122 void Saver::thread_function_sub(gig::progress_t& progress)
2123 {
2124 // if no filename was provided, that means "save", if filename was provided means "save as"
2125 if (filename.empty()) {
2126 if (!Settings::singleton()->saveWithTemporaryFile) {
2127 // save directly over the existing .gig file
2128 // (requires less disk space than solution below
2129 // but may be slower)
2130 gig->Save(&progress);
2131 } else {
2132 // save the file as separate temporary file first,
2133 // then move the saved file over the old file
2134 // (may result in performance speedup during save)
2135 gig::String tmpname = filename + ".TMP";
2136 gig->Save(tmpname, &progress);
2137 #if defined(WIN32)
2138 if (!DeleteFile(filename.c_str())) {
2139 throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file).");
2140 }
2141 #else // POSIX ...
2142 if (unlink(filename.c_str())) {
2143 throw RIFF::Exception("Could not replace original file with temporary file (unable to remove original file): " + gig::String(strerror(errno)));
2144 }
2145 #endif
2146 if (rename(tmpname.c_str(), filename.c_str())) {
2147 #if defined(WIN32)
2148 throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file).");
2149 #else
2150 throw RIFF::Exception("Could not replace original file with temporary file (unable to rename temp file): " + gig::String(strerror(errno)));
2151 #endif
2152 }
2153 }
2154 } else {
2155 gig->Save(filename, &progress);
2156 }
2157 }
2158
2159
2160 ProgressDialog::ProgressDialog(const Glib::ustring& title, Gtk::Window& parent)
2161 : Gtk::Dialog(title, parent, true)
2162 {
2163 #if USE_GTKMM_BOX
2164 get_content_area()->pack_start(progressBar);
2165 #else
2166 get_vbox()->pack_start(progressBar);
2167 #endif
2168 #if HAS_GTKMM_SHOW_ALL_CHILDREN
2169 show_all_children();
2170 #endif
2171 resize(600,50);
2172 }
2173
2174 // Clear all GUI elements / controls. This method is typically called
2175 // before a new .gig file is to be created or to be loaded.
2176 void MainWindow::__clear() {
2177 // forget all samples that ought to be imported
2178 m_SampleImportQueue.clear();
2179 // clear the samples and instruments tree views
2180 m_refInstrumentsTreeModel->clear();
2181 m_refSamplesTreeModel->clear();
2182 m_refScriptsTreeModel->clear();
2183 #if !USE_GTKMM_BUILDER
2184 // remove all entries from "Instrument" menu
2185 while (!instrument_menu->get_children().empty()) {
2186 remove_instrument_from_menu(0);
2187 }
2188 #endif
2189 // free libgig's gig::File instance
2190 if (file && !file_is_shared) delete file;
2191 file = NULL;
2192 set_file_is_shared(false);
2193 }
2194
2195 void MainWindow::__refreshEntireGUI() {
2196 // clear the samples and instruments tree views
2197 m_refInstrumentsTreeModel->clear();
2198 m_refSamplesTreeModel->clear();
2199 m_refScriptsTreeModel->clear();
2200 #if !USE_GTKMM_BUILDER
2201 // remove all entries from "Instrument" menu
2202 while (!instrument_menu->get_children().empty()) {
2203 remove_instrument_from_menu(0);
2204 }
2205 #endif
2206
2207 if (!this->file) return;
2208
2209 load_gig(
2210 this->file, this->file->pInfo->Name.c_str(), this->file_is_shared
2211 );
2212 }
2213
2214 void MainWindow::on_action_file_new()
2215 {
2216 if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;
2217
2218 if (file_is_shared && !leaving_shared_mode_dialog()) return;
2219
2220 // clear all GUI elements
2221 __clear();
2222 // create a new .gig file (virtually yet)
2223 gig::File* pFile = new gig::File;
2224 // due to the multi-threaded scenario use separate file I/O handles for
2225 // each thread to avoid file I/O concurrency issues with .gig file
2226 RIFF::File* pRIFF = pFile->GetRiffFile();
2227 pRIFF->SetIOPerThread(true);
2228 // already add one new instrument by default
2229 gig::Instrument* pInstrument = pFile->AddInstrument();
2230 pInstrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument"));
2231 // update GUI with that new gig::File
2232 load_gig(pFile, 0 /*no file name yet*/);
2233 }
2234
2235 bool MainWindow::close_confirmation_dialog()
2236 {
2237 gchar* msg = g_strdup_printf(_("Save changes to \"%s\" before closing?"),
2238 Glib::filename_display_basename(filename).c_str());
2239 Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
2240 g_free(msg);
2241 dialog.set_secondary_text(_("If you close without saving, your changes will be lost."));
2242 dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
2243 #if HAS_GTKMM_STOCK
2244 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2245 dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);
2246 #else
2247 dialog.add_button(_("_OK"), Gtk::RESPONSE_OK);
2248 dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2249 #endif
2250 dialog.set_default_response(Gtk::RESPONSE_YES);
2251 int response = dialog.run();
2252 dialog.hide();
2253
2254 // user decided to exit app without saving
2255 if (response == Gtk::RESPONSE_NO) return true;
2256
2257 // user cancelled dialog, thus don't close app
2258 if (response == Gtk::RESPONSE_CANCEL) return false;
2259
2260 // TODO: the following return valid is disabled and hard coded instead for
2261 // now, due to the fact that saving with progress bar is now implemented
2262 // asynchronously, as a result the app does not close automatically anymore
2263 // after saving the file has completed
2264 //
2265 // if (response == Gtk::RESPONSE_YES) return file_save();
2266 // return response != Gtk::RESPONSE_CANCEL;
2267 //
2268 if (response == Gtk::RESPONSE_YES) file_save();
2269 return false; // always prevent closing the app for now (see comment above)
2270 }
2271
2272 bool MainWindow::leaving_shared_mode_dialog() {
2273 Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");
2274 Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
2275 dialog.set_secondary_text(
2276 _("If you proceed to work on another instrument file, it won't be "
2277 "used by the sampler until you tell the sampler explicitly to "
2278 "load it."));
2279 dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
2280 #if HAS_GTKMM_STOCK
2281 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2282 #else
2283 dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2284 #endif
2285 dialog.set_default_response(Gtk::RESPONSE_CANCEL);
2286 int response = dialog.run();
2287 dialog.hide();
2288 return response == Gtk::RESPONSE_YES;
2289 }
2290
2291 void MainWindow::on_action_file_open()
2292 {
2293 if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;
2294
2295 if (file_is_shared && !leaving_shared_mode_dialog()) return;
2296
2297 Gtk::FileChooserDialog dialog(*this, _("Open file"));
2298 #if HAS_GTKMM_STOCK
2299 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2300 dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
2301 #else
2302 dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2303 dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
2304 #endif
2305 dialog.set_default_response(Gtk::RESPONSE_OK);
2306 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
2307 Gtk::FileFilter filter;
2308 filter.add_pattern("*.gig");
2309 #else
2310 Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
2311 filter->add_pattern("*.gig");
2312 #endif
2313 dialog.set_filter(filter);
2314 if (current_gig_dir != "") {
2315 dialog.set_current_folder(current_gig_dir);
2316 }
2317 if (dialog.run() == Gtk::RESPONSE_OK) {
2318 dialog.hide();
2319 std::string filename = dialog.get_filename();
2320 printf("filename=%s\n", filename.c_str());
2321 #ifdef GLIB_THREADS
2322 printf("on_action_file_open self=%p\n",
2323 static_cast<void*>(Glib::Threads::Thread::self()));
2324 #else
2325 std::cout << "on_action_file_open self=" <<
2326 std::this_thread::get_id() << "\n";
2327 #endif
2328 load_file(filename.c_str());
2329 current_gig_dir = Glib::path_get_dirname(filename);
2330 }
2331 }
2332
2333 void MainWindow::load_file(const char* name)
2334 {
2335 __clear();
2336
2337 progress_dialog = new ProgressDialog( //FIXME: memory leak!
2338 _("Loading") + Glib::ustring(" '") +
2339 Glib::filename_display_basename(name) + "' ...",
2340 *this
2341 );
2342 #if HAS_GTKMM_SHOW_ALL_CHILDREN
2343 progress_dialog->show_all();
2344 #endif
2345 loader = new Loader(name); //FIXME: memory leak!
2346 loader->signal_progress().connect(
2347 sigc::mem_fun(*this, &MainWindow::on_loader_progress));
2348 loader->signal_finished().connect(
2349 sigc::mem_fun(*this, &MainWindow::on_loader_finished));
2350 loader->signal_error().connect(
2351 sigc::mem_fun(*this, &MainWindow::on_loader_error));
2352 loader->launch();
2353 }
2354
2355 void MainWindow::load_instrument(gig::Instrument* instr) {
2356 if (!instr) {
2357 Glib::ustring txt = "Provided instrument is NULL!\n";
2358 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2359 msg.run();
2360 Gtk::Main::quit();
2361 }
2362 // clear all GUI elements
2363 __clear();
2364 // load the instrument
2365 gig::File* pFile = (gig::File*) instr->GetParent();
2366 load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);
2367 // automatically select the given instrument
2368 int i = 0;
2369 for (gig::Instrument* instrument = pFile->GetFirstInstrument(); instrument;
2370 instrument = pFile->GetNextInstrument(), ++i)
2371 {
2372 if (instrument == instr) {
2373 // select item in "instruments" tree view
2374 m_TreeViewInstruments.get_selection()->select(Gtk::TreePath(ToString(i)));
2375 // make sure the selected item in the "instruments" tree view is
2376 // visible (scroll to it)
2377 m_TreeViewInstruments.scroll_to_row(Gtk::TreePath(ToString(i)));
2378 #if !USE_GTKMM_BUILDER
2379 // select item in instrument menu
2380 {
2381 const std::vector<Gtk::Widget*> children =
2382 instrument_menu->get_children();
2383 static_cast<Gtk::RadioMenuItem*>(children[i])->set_active();
2384 }
2385 #endif
2386 // update region chooser and dimension region chooser
2387 m_RegionChooser.set_instrument(instr);
2388 break;
2389 }
2390 }
2391 }
2392
2393 void MainWindow::on_loader_progress()
2394 {
2395 progress_dialog->set_fraction(loader->get_progress());
2396 }
2397
2398 void MainWindow::on_loader_finished()
2399 {
2400 loader->join();
2401 printf("Loader finished!\n");
2402 #ifdef GLIB_THREADS
2403 printf("on_loader_finished self=%p\n",
2404 static_cast<void*>(Glib::Threads::Thread::self()));
2405 #else
2406 std::cout << "on_loader_finished self=" <<
2407 std::this_thread::get_id() << "\n";
2408 #endif
2409 load_gig(loader->gig, loader->filename.c_str());
2410 progress_dialog->hide();
2411 }
2412
2413 void MainWindow::on_loader_error()
2414 {
2415 loader->join();
2416 Glib::ustring txt = _("Could not load file: ") + loader->error_message;
2417 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2418 msg.run();
2419 progress_dialog->hide();
2420 }
2421
2422 void MainWindow::on_action_file_save()
2423 {
2424 file_save();
2425 }
2426
2427 bool MainWindow::check_if_savable()
2428 {
2429 if (!file) return false;
2430
2431 if (!file->GetFirstSample()) {
2432 Gtk::MessageDialog(*this, _("The file could not be saved "
2433 "because it contains no samples"),
2434 false, Gtk::MESSAGE_ERROR).run();
2435 return false;
2436 }
2437
2438 for (gig::Instrument* instrument = file->GetFirstInstrument() ; instrument ;
2439 instrument = file->GetNextInstrument()) {
2440 if (!instrument->GetFirstRegion()) {
2441 Gtk::MessageDialog(*this, _("The file could not be saved "
2442 "because there are instruments "
2443 "that have no regions"),
2444 false, Gtk::MESSAGE_ERROR).run();
2445 return false;
2446 }
2447 }
2448 return true;
2449 }
2450
2451 bool MainWindow::file_save()
2452 {
2453 if (!check_if_savable()) return false;
2454 if (!file_is_shared && !file_has_name) return file_save_as();
2455
2456 std::cout << "Saving file\n" << std::flush;
2457 file_structure_to_be_changed_signal.emit(this->file);
2458
2459 progress_dialog = new ProgressDialog( //FIXME: memory leak!
2460 _("Saving") + Glib::ustring(" '") +
2461 Glib::filename_display_basename(this->filename) + "' ...",
2462 *this
2463 );
2464 #if HAS_GTKMM_SHOW_ALL_CHILDREN
2465 progress_dialog->show_all();
2466 #endif
2467 saver = new Saver(this->file); //FIXME: memory leak!
2468 saver->signal_progress().connect(
2469 sigc::mem_fun(*this, &MainWindow::on_saver_progress));
2470 saver->signal_finished().connect(
2471 sigc::mem_fun(*this, &MainWindow::on_saver_finished));
2472 saver->signal_error().connect(
2473 sigc::mem_fun(*this, &MainWindow::on_saver_error));
2474 saver->launch();
2475
2476 return true;
2477 }
2478
2479 void MainWindow::on_saver_progress()
2480 {
2481 progress_dialog->set_fraction(saver->get_progress());
2482 }
2483
2484 void MainWindow::on_saver_error()
2485 {
2486 saver->join();
2487 file_structure_changed_signal.emit(this->file);
2488 Glib::ustring txt = _("Could not save file: ") + saver->error_message;
2489 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2490 msg.run();
2491 }
2492
2493 void MainWindow::on_saver_finished()
2494 {
2495 saver->join();
2496 this->file = saver->gig;
2497 this->filename = saver->filename;
2498 current_gig_dir = Glib::path_get_dirname(filename);
2499 set_title(Glib::filename_display_basename(filename));
2500 file_has_name = true;
2501 file_is_changed = false;
2502 std::cout << "Saving file done. Importing queued samples now ...\n" << std::flush;
2503 __import_queued_samples();
2504 std::cout << "Importing queued samples done.\n" << std::flush;
2505
2506 file_structure_changed_signal.emit(this->file);
2507
2508 __refreshEntireGUI();
2509 progress_dialog->hide();
2510 }
2511
2512 void MainWindow::on_action_file_save_as()
2513 {
2514 if (!check_if_savable()) return;
2515 file_save_as();
2516 }
2517
2518 bool MainWindow::file_save_as()
2519 {
2520 Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);
2521 #if HAS_GTKMM_STOCK
2522 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
2523 dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
2524 #else
2525 dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
2526 dialog.add_button(_("_Save"), Gtk::RESPONSE_OK);
2527 #endif
2528 dialog.set_default_response(Gtk::RESPONSE_OK);
2529 dialog.set_do_overwrite_confirmation();
2530
2531 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
2532 Gtk::FileFilter filter;
2533 filter.add_pattern("*.gig");
2534 #else
2535 Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
2536 filter->add_pattern("*.gig");
2537 #endif
2538 dialog.set_filter(filter);
2539
2540 // set initial dir and filename of the Save As dialog
2541 // and prepare that initial filename as a copy of the gig
2542 {
2543 std::string basename = Glib::path_get_basename(filename);
2544 std::string dir = Glib::path_get_dirname(filename);
2545 basename = std::string(_("copy_of_")) + basename;
2546 Glib::ustring copyFileName = Glib::build_filename(dir, basename);
2547 if (Glib::path_is_absolute(filename)) {
2548 dialog.set_filename(copyFileName);
2549 } else {
2550 if (current_gig_dir != "") dialog.set_current_folder(current_gig_dir);
2551 }
2552 dialog.set_current_name(Glib::filename_display_basename(copyFileName));
2553 }
2554
2555 // show warning in the dialog
2556 HBox descriptionArea;
2557 descriptionArea.set_spacing(15);
2558 Gtk::Image warningIcon;
2559 warningIcon.set_from_icon_name("dialog-warning",
2560 Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
2561 descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
2562 #if GTKMM_MAJOR_VERSION < 3
2563 view::WrapLabel description;
2564 #else
2565 Gtk::Label description;
2566 description.set_line_wrap();
2567 #endif
2568 description.set_markup(
2569 _("\n<b>CAUTION:</b> You <b>MUST</b> use the "
2570 "<span style=\"italic\">\"Save\"</span> dialog instead of "
2571 "<span style=\"italic\">\"Save As...\"</span> if you want to save "
2572 "to the same .gig file. Using "
2573 "<span style=\"italic\">\"Save As...\"</span> for writing to the "
2574 "same .gig file will end up in corrupted sample wave data!\n")
2575 );
2576 descriptionArea.pack_start(description);
2577 #if USE_GTKMM_BOX
2578 dialog.get_content_area()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2579 #else
2580 dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
2581 #endif
2582 #if HAS_GTKMM_SHOW_ALL_CHILDREN
2583 descriptionArea.show_all();
2584 #endif
2585
2586 if (dialog.run() == Gtk::RESPONSE_OK) {
2587 dialog.hide();
2588 std::string filename = dialog.get_filename();
2589 if (!Glib::str_has_suffix(filename, ".gig")) {
2590 filename += ".gig";
2591 }
2592 printf("filename=%s\n", filename.c_str());
2593
2594 progress_dialog = new ProgressDialog( //FIXME: memory leak!
2595 _("Saving") + Glib::ustring(" '") +
2596 Glib::filename_display_basename(filename) + "' ...",
2597 *this
2598 );
2599 #if HAS_GTKMM_SHOW_ALL_CHILDREN
2600 progress_dialog->show_all();
2601 #endif
2602
2603 saver = new Saver(file, filename); //FIXME: memory leak!
2604 saver->signal_progress().connect(
2605 sigc::mem_fun(*this, &MainWindow::on_saver_progress));
2606 saver->signal_finished().connect(
2607 sigc::mem_fun(*this, &MainWindow::on_saver_finished));
2608 saver->signal_error().connect(
2609 sigc::mem_fun(*this, &MainWindow::on_saver_error));
2610 saver->launch();
2611
2612 return true;
2613 }
2614 return false;
2615 }
2616
2617 // actually write the sample(s)' data to the gig file
2618 void MainWindow::__import_queued_samples() {
2619 std::cout << "Starting sample import\n" << std::flush;
2620 Glib::ustring error_files;
2621 printf("Samples to import: %d\n", int(m_SampleImportQueue.size()));
2622 for (std::map<gig::Sample*, SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
2623 iter != m_SampleImportQueue.end(); ) {
2624 printf("Importing sample %s\n",iter->second.sample_path.c_str());
2625 SF_INFO info;
2626 info.format = 0;
2627 SNDFILE* hFile = sf_open(iter->second.sample_path.c_str(), SFM_READ, &info);
2628 sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);
2629 try {
2630 if (!hFile) throw std::string(_("could not open file"));
2631 // determine sample's bit depth
2632 int bitdepth;
2633 switch (info.format & 0xff) {
2634 case SF_FORMAT_PCM_S8:
2635 case SF_FORMAT_PCM_16:
2636 case SF_FORMAT_PCM_U8:
2637 bitdepth = 16;
2638 break;
2639 case SF_FORMAT_PCM_24:
2640 case SF_FORMAT_PCM_32:
2641 case SF_FORMAT_FLOAT:
2642 case SF_FORMAT_DOUBLE:
2643 bitdepth = 24;
2644 break;
2645 default:
2646 sf_close(hFile); // close sound file
2647 throw std::string(_("format not supported")); // unsupported subformat (yet?)
2648 }
2649
2650 // reset write position for sample
2651 iter->first->SetPos(0);
2652
2653 const int bufsize = 10000;
2654 switch (bitdepth) {
2655 case 16: {
2656 short* buffer = new short[bufsize * info.channels];
2657 sf_count_t cnt = info.frames;
2658 while (cnt) {
2659 // libsndfile does the conversion for us (if needed)
2660 int n = sf_readf_short(hFile, buffer, bufsize);
2661 // write from buffer directly (physically) into .gig file
2662 iter->first->Write(buffer, n);
2663 cnt -= n;
2664 }
2665 delete[] buffer;
2666 break;
2667 }
2668 case 24: {
2669 int* srcbuf = new int[bufsize * info.channels];
2670 uint8_t* dstbuf = new uint8_t[bufsize * 3 * info.channels];
2671 sf_count_t cnt = info.frames;
2672 while (cnt) {
2673 // libsndfile returns 32 bits, convert to 24
2674 int n = sf_readf_int(hFile, srcbuf, bufsize);
2675 int j = 0;
2676 for (int i = 0 ; i < n * info.channels ; i++) {
2677 dstbuf[j++] = srcbuf[i] >> 8;
2678 dstbuf[j++] = srcbuf[i] >> 16;
2679 dstbuf[j++] = srcbuf[i] >> 24;
2680 }
2681 // write from buffer directly (physically) into .gig file
2682 iter->first->Write(dstbuf, n);
2683 cnt -= n;
2684 }
2685 delete[] srcbuf;
2686 delete[] dstbuf;
2687 break;
2688 }
2689 }
2690 // cleanup
2691 sf_close(hFile);
2692 // let the sampler re-cache the sample if needed
2693 sample_changed_signal.emit(iter->first);
2694 // on success we remove the sample from the import queue,
2695 // otherwise keep it, maybe it works the next time ?
2696 std::map<gig::Sample*, SampleImportItem>::iterator cur = iter;
2697 ++iter;
2698 m_SampleImportQueue.erase(cur);
2699 } catch (std::string what) {
2700 // remember the files that made trouble (and their cause)
2701 if (!error_files.empty()) error_files += "\n";
2702 error_files += iter->second.sample_path += " (" + what + ")";
2703 ++iter;
2704 }
2705 }
2706 // show error message box when some sample(s) could not be imported
2707 if (!error_files.empty()) {
2708 Glib::ustring txt = _("Could not import the following sample(s):\n") + error_files;
2709 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
2710 msg.run();
2711 }
2712 }
2713
2714 void MainWindow::on_action_file_properties()
2715 {
2716 fileProps.show();
2717 fileProps.deiconify();
2718 }
2719
2720 void MainWindow::on_action_warn_user_on_extensions() {
2721 Settings::singleton()->warnUserOnExtensions =
2722 !Settings::singleton()->warnUserOnExtensions;
2723 }
2724
2725 void MainWindow::on_action_show_tooltips() {
2726 Settings::singleton()->showTooltips =
2727 !Settings::singleton()->showTooltips;
2728
2729 on_show_tooltips_changed();
2730 }
2731
2732 void MainWindow::on_show_tooltips_changed() {
2733 const bool b = Settings::singleton()->showTooltips;
2734
2735 dimreg_label.set_has_tooltip(b);
2736 dimreg_all_regions.set_has_tooltip(b);
2737 dimreg_all_dimregs.set_has_tooltip(b);
2738 dimreg_stereo.set_has_tooltip(b);
2739
2740 // Not doing this here, we let onQueryTreeViewTooltip() handle this per cell
2741 //m_TreeViewInstruments.set_has_tooltip(b);
2742
2743 m_TreeViewSamples.set_has_tooltip(b);
2744 m_TreeViewScripts.set_has_tooltip(b);
2745
2746 set_has_tooltip(b);
2747 }
2748
2749 void MainWindow::on_action_sync_sampler_instrument_selection() {
2750 Settings::singleton()->syncSamplerInstrumentSelection =
2751 !Settings::singleton()->syncSamplerInstrumentSelection;
2752 }
2753
2754 void MainWindow::on_action_move_root_note_with_region_moved() {
2755 Settings::singleton()->moveRootNoteWithRegionMoved =
2756 !Settings::singleton()->moveRootNoteWithRegionMoved;
2757 }
2758
2759 void MainWindow::on_action_help_about()
2760 {
2761 Gtk::AboutDialog dialog;
2762 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 12) || GTKMM_MAJOR_VERSION > 2
2763 dialog.set_program_name("Gigedit");
2764 #else
2765 dialog.set_name("Gigedit");
2766 #endif
2767 dialog.set_version(VERSION);
2768 dialog.set_copyright("Copyright (C) 2006-2019 Andreas Persson");
2769 const std::string sComment =
2770 _("Built " __DATE__ "\nUsing ") +
2771 ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
2772 _(
2773 "Gigedit is released under the GNU General Public License.\n"
2774 "\n"
2775 "This program is distributed WITHOUT ANY WARRANTY; So better "
2776 "backup your Gigasampler/GigaStudio files before editing them with "
2777 "this application.\n"
2778 "\n"
2779 "Please report bugs to: https://bugs.linuxsampler.org"
2780 );
2781 dialog.set_comments(sComment.c_str());
2782 dialog.set_website("https://www.linuxsampler.org");
2783 dialog.set_website_label("https://www.linuxsampler.org");
2784 dialog.set_position(Gtk::WIN_POS_CENTER);
2785 dialog.run();
2786 }
2787
2788 FilePropDialog::FilePropDialog()
2789 : eFileFormat(_("File Format")),
2790 eName(_("Name")),
2791 eCreationDate(_("Creation date")),
2792 eComments(_("Comments")),
2793 eProduct(_("Product")),
2794 eCopyright(_("Copyright")),
2795 eArtists(_("Artists")),
2796 eGenre(_("Genre")),
2797 eKeywords(_("Keywords")),
2798 eEngineer(_("Engineer")),
2799 eTechnician(_("Technician")),
2800 eSoftware(_("Software")),
2801 eMedium(_("Medium")),
2802 eSource(_("Source")),
2803 eSourceForm(_("Source form")),
2804 eCommissioned(_("Commissioned")),
2805 eSubject(_("Subject")),
2806 #if HAS_GTKMM_STOCK
2807 quitButton(Gtk::Stock::CLOSE),
2808 #else
2809 quitButton(_("_Close")),
2810 #endif
2811 table(2, 1),
2812 m_file(NULL)
2813 {
2814 if (!Settings::singleton()->autoRestoreWindowDimension) {
2815 set_default_size(470, 390);
2816 set_position(Gtk::WIN_POS_MOUSE);
2817 }
2818
2819 set_title(_("File Properties"));
2820 eName.set_width_chars(50);
2821
2822 connect(eFileFormat, &FilePropDialog::set_FileFormat);
2823 connect(eName, &DLS::Info::Name);
2824 connect(eCreationDate, &DLS::Info::CreationDate);
2825 connect(eComments, &DLS::Info::Comments);
2826 connect(eProduct, &DLS::Info::Product);
2827 connect(eCopyright, &DLS::Info::Copyright);
2828 connect(eArtists, &DLS::Info::Artists);
2829 connect(eGenre, &DLS::Info::Genre);
2830 connect(eKeywords, &DLS::Info::Keywords);
2831 connect(eEngineer, &DLS::Info::Engineer);
2832 connect(eTechnician, &DLS::Info::Technician);
2833 connect(eSoftware, &DLS::Info::Software);
2834 connect(eMedium, &DLS::Info::Medium);
2835 connect(eSource, &DLS::Info::Source);
2836 connect(eSourceForm, &DLS::Info::SourceForm);
2837 connect(eCommissioned, &DLS::Info::Commissioned);
2838 connect(eSubject, &DLS::Info::Subject);
2839
2840 table.add(eFileFormat);
2841 table.add(eName);
2842 table.add(eCreationDate);
2843 table.add(eComments);
2844 table.add(eProduct);
2845 table.add(eCopyright);
2846 table.add(eArtists);
2847 table.add(eGenre);
2848 table.add(eKeywords);
2849 table.add(eEngineer);
2850 table.add(eTechnician);
2851 table.add(eSoftware);
2852 table.add(eMedium);
2853 table.add(eSource);
2854 table.add(eSourceForm);
2855 table.add(eCommissioned);
2856 table.add(eSubject);
2857
2858 #if USE_GTKMM_GRID
2859 table.set_column_spacing(5);
2860 #else
2861 table.set_col_spacings(5);
2862 #endif
2863
2864 add(vbox);
2865 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2866 table.set_margin(5);
2867 #else
2868 table.set_border_width(5);
2869 #endif
2870 vbox.add(table);
2871 vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
2872 buttonBox.set_layout(Gtk::BUTTONBOX_END);
2873 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
2874 buttonBox.set_margin(5);
2875 #else
2876 buttonBox.set_border_width(5);
2877 #endif
2878 buttonBox.show();
2879 buttonBox.pack_start(quitButton);
2880 quitButton.set_can_default();
2881 quitButton.grab_focus();
2882 quitButton.signal_clicked().connect(
2883 sigc::mem_fun(*this, &FilePropDialog::hide));
2884
2885 quitButton.show();
2886 vbox.show();
2887 #if HAS_GTKMM_SHOW_ALL_CHILDREN
2888 show_all_children();
2889 #endif
2890 }
2891
2892 void FilePropDialog::set_file(gig::File* file)
2893 {
2894 m_file = file;
2895 update(file->pInfo);
2896
2897 // update file format version combo box
2898 const std::string sGiga = "Gigasampler/GigaStudio v";
2899 const int major = file->pVersion->major;
2900 std::vector<std::string> txts;
2901 std::vector<int> values;
2902 txts.push_back(sGiga + "2"); values.push_back(2);
2903 txts.push_back(sGiga + "3"); values.push_back(3);
2904 txts.push_back(sGiga + "4"); values.push_back(4);
2905 if (major < 2 || major > 4) {
2906 txts.push_back(sGiga + ToString(major)); values.push_back(major);
2907 }
2908 std::vector<const char*> texts;
2909 for (int i = 0; i < txts.size(); ++i) texts.push_back(txts[i].c_str());
2910 texts.push_back(NULL); values.push_back(0);
2911
2912 update_model++;
2913 eFileFormat.set_choices(&texts[0], &values[0]);
2914 eFileFormat.set_value(major);
2915 update_model--;
2916 }
2917
2918 void FilePropDialog::set_FileFormat(int value)
2919 {
2920 m_file->pVersion->major = value;
2921 }
2922
2923
2924 void InstrumentProps::set_Name(const gig::String& name)
2925 {
2926 m->pInfo->Name = name;
2927 }
2928
2929 void InstrumentProps::update_name()
2930 {
2931 update_model++;
2932 eName.set_value(m->pInfo->Name);
2933 update_model--;
2934 }
2935
2936 void InstrumentProps::set_IsDrum(bool value)
2937 {
2938 m->IsDrum = value;
2939 }
2940
2941 void InstrumentProps::set_MIDIBank(uint16_t value)
2942 {
2943 m->MIDIBank = value;
2944 }
2945
2946 void InstrumentProps::set_MIDIProgram(uint32_t value)
2947 {
2948 m->MIDIProgram = value;
2949 }
2950
2951 InstrumentProps::InstrumentProps() :
2952 #if HAS_GTKMM_STOCK
2953 quitButton(Gtk::Stock::CLOSE),
2954 #else
2955 quitButton(_("_Close")),
2956 #endif
2957 table(2,1),
2958 eName(_("Name")),
2959 eIsDrum(_("Is drum")),
2960 eMIDIBank(_("MIDI bank"), 0, 16383),
2961 eMIDIProgram(_("MIDI program")),
2962 eAttenuation(_("Attenuation (dB)"), -96, +96, 0, 1),
2963 eEffectSend(_("Effect send"), 0, 65535),
2964 eFineTune(_("Fine tune"), -8400, 8400),
2965 ePitchbendRange(_("Pitchbend range (halftones)"), 0, 48),
2966 ePianoReleaseMode(_("Piano release mode")),
2967 eDimensionKeyRangeLow(_("Keyswitching range low")),
2968 eDimensionKeyRangeHigh(_("Keyswitching range high")),
2969 table2(2,1),
2970 eName2(_("Name")),
2971 eCreationDate(_("Creation date")),
2972 eComments(_("Comments")),
2973 eProduct(_("Product")),
2974 eCopyright(_("Copyright")),
2975 eArtists(_("Artists")),
2976 eGenre(_("Genre")),
2977 eKeywords(_("Keywords")),
2978 eEngineer(_("Engineer")),
2979 eTechnician(_("Technician")),
2980 eSoftware(_("Software")),
2981 eMedium(_("Medium")),
2982 eSource(_("Source")),
2983 eSourceForm(_("Source form")),
2984 eCommissioned(_("Commissioned")),
2985 eSubject(_("Subject"))
2986 {
2987 if (!Settings::singleton()->autoRestoreWindowDimension) {
2988 //set_default_size(470, 390);
2989 set_position(Gtk::WIN_POS_MOUSE);
2990 }
2991
2992 set_title(_("Instrument Properties"));
2993
2994 tabs.append_page(vbox[1], _("Settings"));
2995 tabs.append_page(vbox[2], _("Info"));
2996
2997 eDimensionKeyRangeLow.set_tip(
2998 _("start of the keyboard area which should switch the "
2999 "\"keyswitching\" dimension")
3000 );
3001 eDimensionKeyRangeHigh.set_tip(
3002 _("end of the keyboard area which should switch the "
3003 "\"keyswitching\" dimension")
3004 );
3005
3006 connect(eName, &InstrumentProps::set_Name);
3007 connect(eIsDrum, &InstrumentProps::set_IsDrum);
3008 connect(eMIDIBank, &InstrumentProps::set_MIDIBank);
3009 connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);
3010 connect(eAttenuation, &gig::Instrument::Attenuation);
3011 connect(eEffectSend, &gig::Instrument::EffectSend);
3012 connect(eFineTune, &gig::Instrument::FineTune);
3013 connect(ePitchbendRange, &gig::Instrument::PitchbendRange);
3014 connect(ePianoReleaseMode, &gig::Instrument::PianoReleaseMode);
3015 connect(eDimensionKeyRangeLow, eDimensionKeyRangeHigh,
3016 &gig::Instrument::DimensionKeyRange);
3017
3018 eName.signal_value_changed().connect(sig_name_changed.make_slot());
3019
3020 connect(eName2, &InstrumentProps::set_Name);
3021 connectLambda(eCreationDate, [this](gig::String s) {
3022 m->pInfo->CreationDate = s;
3023 });
3024 connectLambda(eComments, [this](gig::String s) {
3025 m->pInfo->Comments = s;
3026 });
3027 connectLambda(eProduct, [this](gig::String s) {
3028 m->pInfo->Product = s;
3029 });
3030 connectLambda(eCopyright, [this](gig::String s) {
3031 m->pInfo->Copyright = s;
3032 });
3033 connectLambda(eArtists, [this](gig::String s) {
3034 m->pInfo->Artists = s;
3035 });
3036 connectLambda(eGenre, [this](gig::String s) {
3037 m->pInfo->Genre = s;
3038 });
3039 connectLambda(eKeywords, [this](gig::String s) {
3040 m->pInfo->Keywords = s;
3041 });
3042 connectLambda(eEngineer, [this](gig::String s) {
3043 m->pInfo->Engineer = s;
3044 });
3045 connectLambda(eTechnician, [this](gig::String s) {
3046 m->pInfo->Technician = s;
3047 });
3048 connectLambda(eSoftware, [this](gig::String s) {
3049 m->pInfo->Software = s;
3050 });
3051 connectLambda(eMedium, [this](gig::String s) {
3052 m->pInfo->Medium = s;
3053 });
3054 connectLambda(eSource, [this](gig::String s) {
3055 m->pInfo->Source = s;
3056 });
3057 connectLambda(eSourceForm, [this](gig::String s) {
3058 m->pInfo->SourceForm = s;
3059 });
3060 connectLambda(eCommissioned, [this](gig::String s) {
3061 m->pInfo->Commissioned = s;
3062 });
3063 connectLambda(eSubject, [this](gig::String s) {
3064 m->pInfo->Subject = s;
3065 });
3066
3067 // tab 1
3068 #if USE_GTKMM_GRID
3069 table.set_column_spacing(5);
3070 #else
3071 table.set_col_spacings(5);
3072 #endif
3073 table.add(eName);
3074 table.add(eIsDrum);
3075 table.add(eMIDIBank);
3076 table.add(eMIDIProgram);
3077 table.add(eAttenuation);
3078 table.add(eEffectSend);
3079 table.add(eFineTune);
3080 table.add(ePitchbendRange);
3081 table.add(ePianoReleaseMode);
3082 table.add(eDimensionKeyRangeLow);
3083 table.add(eDimensionKeyRangeHigh);
3084
3085 // tab 2
3086 #if USE_GTKMM_GRID
3087 table2.set_column_spacing(5);
3088 #else
3089 table2.set_col_spacings(5);
3090 #endif
3091 table2.add(eName2);
3092 table2.add(eCreationDate);
3093 table2.add(eComments);
3094 table2.add(eProduct);
3095 table2.add(eCopyright);
3096 table2.add(eArtists);
3097 table2.add(eGenre);
3098 table2.add(eKeywords);
3099 table2.add(eEngineer);
3100 table2.add(eTechnician);
3101 table2.add(eSoftware);
3102 table2.add(eMedium);
3103 table2.add(eSource);
3104 table2.add(eSourceForm);
3105 table2.add(eCommissioned);
3106 table2.add(eSubject);
3107
3108 add(vbox[0]);
3109 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3110 table.set_margin(5);
3111 #else
3112 table.set_border_width(5);
3113 #endif
3114 vbox[1].pack_start(table);
3115 vbox[2].pack_start(table2);
3116 table.show();
3117 table2.show();
3118 vbox[0].pack_start(tabs);
3119 vbox[0].pack_start(buttonBox, Gtk::PACK_SHRINK);
3120 buttonBox.set_layout(Gtk::BUTTONBOX_END);
3121 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3122 buttonBox.set_margin(5);
3123 #else
3124 buttonBox.set_border_width(5);
3125 #endif
3126 buttonBox.show();
3127 buttonBox.pack_start(quitButton);
3128 quitButton.set_can_default();
3129 quitButton.grab_focus();
3130
3131 quitButton.signal_clicked().connect(
3132 sigc::mem_fun(*this, &InstrumentProps::hide));
3133
3134 quitButton.show();
3135 vbox[0].show();
3136 #if HAS_GTKMM_SHOW_ALL_CHILDREN
3137 show_all_children();
3138 #endif
3139 }
3140
3141 void InstrumentProps::set_instrument(gig::Instrument* instrument)
3142 {
3143 update(instrument);
3144
3145 update_model++;
3146
3147 // tab 1
3148 eName.set_value(instrument->pInfo->Name);
3149 eIsDrum.set_value(instrument->IsDrum);
3150 eMIDIBank.set_value(instrument->MIDIBank);
3151 eMIDIProgram.set_value(instrument->MIDIProgram);
3152 // tab 2
3153 eName2.set_value(instrument->pInfo->Name);
3154 eCreationDate.set_value(instrument->pInfo->CreationDate);
3155 eComments.set_value(instrument->pInfo->Comments);
3156 eProduct.set_value(instrument->pInfo->Product);
3157 eCopyright.set_value(instrument->pInfo->Copyright);
3158 eArtists.set_value(instrument->pInfo->Artists);
3159 eGenre.set_value(instrument->pInfo->Genre);
3160 eKeywords.set_value(instrument->pInfo->Keywords);
3161 eEngineer.set_value(instrument->pInfo->Engineer);
3162 eTechnician.set_value(instrument->pInfo->Technician);
3163 eSoftware.set_value(instrument->pInfo->Software);
3164 eMedium.set_value(instrument->pInfo->Medium);
3165 eSource.set_value(instrument->pInfo->Source);
3166 eSourceForm.set_value(instrument->pInfo->SourceForm);
3167 eCommissioned.set_value(instrument->pInfo->Commissioned);
3168 eSubject.set_value(instrument->pInfo->Subject);
3169
3170 update_model--;
3171 }
3172
3173
3174 SampleProps::SampleProps() :
3175 #if HAS_GTKMM_STOCK
3176 quitButton(Gtk::Stock::CLOSE),
3177 #else
3178 quitButton(_("_Close")),
3179 #endif
3180 table(2,1),
3181 eName(_("Name")),
3182 eUnityNote(_("Unity Note")),
3183 eSampleGroup(_("Sample Group")),
3184 eSampleFormatInfo(_("Sample Format")),
3185 eSampleID("Sample ID"),
3186 eChecksum("Wave Data CRC-32"),
3187 eLoopsCount(_("Loops"), 0, 1), // we might support more than 1 loop in future
3188 eLoopStart(_("Loop start position"), 0, 9999999),
3189 eLoopLength(_("Loop size"), 0, 9999999),
3190 eLoopType(_("Loop type")),
3191 eLoopPlayCount(_("Playback count")),
3192 table2(2,1),
3193 eName2(_("Name")),
3194 eCreationDate(_("Creation date")),
3195 eComments(_("Comments")),
3196 eProduct(_("Product")),
3197 eCopyright(_("Copyright")),
3198 eArtists(_("Artists")),
3199 eGenre(_("Genre")),
3200 eKeywords(_("Keywords")),
3201 eEngineer(_("Engineer")),
3202 eTechnician(_("Technician")),
3203 eSoftware(_("Software")),
3204 eMedium(_("Medium")),
3205 eSource(_("Source")),
3206 eSourceForm(_("Source form")),
3207 eCommissioned(_("Commissioned")),
3208 eSubject(_("Subject"))
3209 {
3210 if (!Settings::singleton()->autoRestoreWindowDimension) {
3211 //set_default_size(470, 390);
3212 set_position(Gtk::WIN_POS_MOUSE);
3213 }
3214
3215 set_title(_("Sample Properties"));
3216
3217 tabs.append_page(vbox[1], _("Settings"));
3218 tabs.append_page(vbox[2], _("Info"));
3219
3220 connect(eName, &SampleProps::set_Name);
3221 connect(eUnityNote, &gig::Sample::MIDIUnityNote);
3222 connect(eLoopsCount, &gig::Sample::Loops);
3223 connectLambda(eLoopStart, [this](uint32_t start){
3224 m->LoopStart = start;
3225 m->LoopEnd = start + m->LoopSize;
3226 });
3227 connectLambda(eLoopLength, [this](uint32_t length){
3228 m->LoopSize = length;
3229 m->LoopEnd = m->LoopStart + length;
3230 });
3231 {
3232 const char* choices[] = { _("normal"), _("bidirectional"), _("backward"), 0 };
3233 static const gig::loop_type_t values[] = {
3234 gig::loop_type_normal,
3235 gig::loop_type_bidirectional,
3236 gig::loop_type_backward
3237 };
3238 eLoopType.set_choices(choices, values);
3239 }
3240 connect(eLoopType, &gig::Sample::LoopType);
3241 connect(eLoopPlayCount, &gig::Sample::LoopPlayCount);
3242
3243 eName.signal_value_changed().connect(sig_name_changed.make_slot());
3244
3245 connect(eName2, &SampleProps::set_Name);
3246 connectLambda(eCreationDate, [this](gig::String s) {
3247 m->pInfo->CreationDate = s;
3248 });
3249 connectLambda(eComments, [this](gig::String s) {
3250 m->pInfo->Comments = s;
3251 });
3252 connectLambda(eProduct, [this](gig::String s) {
3253 m->pInfo->Product = s;
3254 });
3255 connectLambda(eCopyright, [this](gig::String s) {
3256 m->pInfo->Copyright = s;
3257 });
3258 connectLambda(eArtists, [this](gig::String s) {
3259 m->pInfo->Artists = s;
3260 });
3261 connectLambda(eGenre, [this](gig::String s) {
3262 m->pInfo->Genre = s;
3263 });
3264 connectLambda(eKeywords, [this](gig::String s) {
3265 m->pInfo->Keywords = s;
3266 });
3267 connectLambda(eEngineer, [this](gig::String s) {
3268 m->pInfo->Engineer = s;
3269 });
3270 connectLambda(eTechnician, [this](gig::String s) {
3271 m->pInfo->Technician = s;
3272 });
3273 connectLambda(eSoftware, [this](gig::String s) {
3274 m->pInfo->Software = s;
3275 });
3276 connectLambda(eMedium, [this](gig::String s) {
3277 m->pInfo->Medium = s;
3278 });
3279 connectLambda(eSource, [this](gig::String s) {
3280 m->pInfo->Source = s;
3281 });
3282 connectLambda(eSourceForm, [this](gig::String s) {
3283 m->pInfo->SourceForm = s;
3284 });
3285 connectLambda(eCommissioned, [this](gig::String s) {
3286 m->pInfo->Commissioned = s;
3287 });
3288 connectLambda(eSubject, [this](gig::String s) {
3289 m->pInfo->Subject = s;
3290 });
3291
3292 // tab 1
3293 #if USE_GTKMM_GRID
3294 table.set_column_spacing(5);
3295 #else
3296 table.set_col_spacings(5);
3297 #endif
3298 table.add(eName);
3299 table.add(eUnityNote);
3300 table.add(eSampleGroup);
3301 table.add(eSampleFormatInfo);
3302 table.add(eSampleID);
3303 table.add(eChecksum);
3304 table.add(eLoopsCount);
3305 table.add(eLoopStart);
3306 table.add(eLoopLength);
3307 table.add(eLoopType);
3308 table.add(eLoopPlayCount);
3309
3310 // tab 2
3311 #if USE_GTKMM_GRID
3312 table2.set_column_spacing(5);
3313 #else
3314 table2.set_col_spacings(5);
3315 #endif
3316 table2.add(eName2);
3317 table2.add(eCreationDate);
3318 table2.add(eComments);
3319 table2.add(eProduct);
3320 table2.add(eCopyright);
3321 table2.add(eArtists);
3322 table2.add(eGenre);
3323 table2.add(eKeywords);
3324 table2.add(eEngineer);
3325 table2.add(eTechnician);
3326 table2.add(eSoftware);
3327 table2.add(eMedium);
3328 table2.add(eSource);
3329 table2.add(eSourceForm);
3330 table2.add(eCommissioned);
3331 table2.add(eSubject);
3332
3333 add(vbox[0]);
3334 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3335 table.set_margin(5);
3336 #else
3337 table.set_border_width(5);
3338 #endif
3339 vbox[1].pack_start(table);
3340 vbox[2].pack_start(table2);
3341 table.show();
3342 table2.show();
3343 vbox[0].pack_start(tabs);
3344 vbox[0].pack_start(buttonBox, Gtk::PACK_SHRINK);
3345 buttonBox.set_layout(Gtk::BUTTONBOX_END);
3346 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
3347 buttonBox.set_margin(5);
3348 #else
3349 buttonBox.set_border_width(5);
3350 #endif
3351 buttonBox.show();
3352 buttonBox.pack_start(quitButton);
3353 quitButton.set_can_default();
3354 quitButton.grab_focus();
3355
3356 quitButton.signal_clicked().connect(
3357 sigc::mem_fun(*this, &SampleProps::hide));
3358
3359 quitButton.show();
3360 vbox[0].show();
3361 #if HAS_GTKMM_SHOW_ALL_CHILDREN
3362 show_all_children();
3363 #endif
3364 }
3365
3366 void SampleProps::set_sample(gig::Sample* sample)
3367 {
3368 update(sample);
3369
3370 update_model++;
3371
3372 // tab 1
3373 eName.set_value(sample->pInfo->Name);
3374 eUnityNote.set_value(sample->MIDIUnityNote);
3375 // show sample group name
3376 {
3377 Glib::ustring s = "---";
3378 if (sample && sample->GetGroup())
3379 s = sample->GetGroup()->Name;
3380 eSampleGroup.text.set_text(s);
3381 }
3382 // assemble sample format info string
3383 {
3384 Glib::ustring s;
3385 if (sample) {
3386 switch (sample->Channels) {
3387 case 1: s = _("Mono"); break;
3388 case 2: s = _("Stereo"); break;
3389 default:
3390 s = ToString(sample->Channels) + _(" audio channels");
3391 break;
3392 }
3393 s += " " + ToString(sample->BitDepth) + " Bits";
3394 s += " " + ToString(sample->SamplesPerSecond/1000) + "."
3395 + ToString((sample->SamplesPerSecond%1000)/100) + " kHz";
3396 } else {
3397 s = _("No sample assigned to this dimension region.");
3398 }
3399 eSampleFormatInfo.text.set_text(s);
3400 }
3401 // generate sample's memory address pointer string
3402 {
3403 Glib::ustring s;
3404 if (sample) {
3405 char buf[64] = {};
3406 snprintf(buf, sizeof(buf), "%p", sample);
3407 s = buf;
3408 } else {
3409 s = "---";
3410 }
3411 eSampleID.text.set_text(s);
3412 }
3413 // generate raw wave form data CRC-32 checksum string
3414 {
3415 Glib::ustring s = "---";
3416 if (sample) {
3417 char buf[64] = {};
3418 snprintf(buf, sizeof(buf), "%x", sample->GetWaveDataCRC32Checksum());
3419 s = buf;
3420 }
3421 eChecksum.text.set_text(s);
3422 }
3423 eLoopsCount.set_value(sample->Loops);
3424 eLoopStart.set_value(sample->LoopStart);
3425 eLoopLength.set_value(sample->LoopSize);
3426 eLoopType.set_value(sample->LoopType);
3427 eLoopPlayCount.set_value(sample->LoopPlayCount);
3428 // tab 2
3429 eName2.set_value(sample->pInfo->Name);
3430 eCreationDate.set_value(sample->pInfo->CreationDate);
3431 eComments.set_value(sample->pInfo->Comments);
3432 eProduct.set_value(sample->pInfo->Product);
3433 eCopyright.set_value(sample->pInfo->Copyright);
3434 eArtists.set_value(sample->pInfo->Artists);
3435 eGenre.set_value(sample->pInfo->Genre);
3436 eKeywords.set_value(sample->pInfo->Keywords);
3437 eEngineer.set_value(sample->pInfo->Engineer);
3438 eTechnician.set_value(sample->pInfo->Technician);
3439 eSoftware.set_value(sample->pInfo->Software);
3440 eMedium.set_value(sample->pInfo->Medium);
3441 eSource.set_value(sample->pInfo->Source);
3442 eSourceForm.set_value(sample->pInfo->SourceForm);
3443 eCommissioned.set_value(sample->pInfo->Commissioned);
3444 eSubject.set_value(sample->pInfo->Subject);
3445
3446 update_model--;
3447 }
3448
3449 void SampleProps::set_Name(const gig::String& name)
3450 {
3451 m->pInfo->Name = name;
3452 }
3453
3454 void SampleProps::update_name()
3455 {
3456 update_model++;
3457 eName.set_value(m->pInfo->Name);
3458 update_model--;
3459 }
3460
3461
3462 void MainWindow::file_changed()
3463 {
3464 if (file && !file_is_changed) {
3465 set_title("*" + get_title());
3466 file_is_changed = true;
3467 }
3468 }
3469
3470 void MainWindow::updateSampleRefCountMap(gig::File* gig) {
3471 sample_ref_count.clear();
3472
3473 if (!gig) return;
3474
3475 for (gig::Instrument* instrument = gig->GetFirstInstrument(); instrument;
3476 instrument = gig->GetNextInstrument())
3477 {
3478 for (gig::Region* rgn = instrument->GetFirstRegion(); rgn;
3479 rgn = instrument->GetNextRegion())
3480 {
3481 for (int i = 0; i < 256; ++i) {
3482 if (!rgn->pDimensionRegions[i]) continue;
3483 if (rgn->pDimensionRegions[i]->pSample) {
3484 sample_ref_count[rgn->pDimensionRegions[i]->pSample]++;
3485 }
3486 }
3487 }
3488 }
3489 }
3490
3491 bool MainWindow::onQueryTreeViewTooltip(int x, int y, bool keyboardTip, const Glib::RefPtr<Gtk::Tooltip>& tooltip) {
3492 Gtk::TreeModel::iterator iter;
3493 if (!m_TreeViewInstruments.get_tooltip_context_iter(x, y, keyboardTip, iter)) {
3494 return false;
3495 }
3496 Gtk::TreeModel::Path path(iter);
3497 Gtk::TreeModel::Row row = *iter;
3498 Gtk::TreeViewColumn* pointedColumn = NULL;
3499 // resolve the precise table column the mouse points to
3500 {
3501 Gtk::TreeModel::Path path; // unused
3502 int cellX, cellY; // unused
3503 m_TreeViewInstruments.get_path_at_pos(x, y, path, pointedColumn, cellX, cellY);
3504 }
3505 Gtk::TreeViewColumn* scriptsColumn = m_TreeViewInstruments.get_column(2);
3506 if (pointedColumn == scriptsColumn) { // mouse hovers scripts column ...
3507 // show the script(s) assigned to the hovered instrument as tooltip
3508 tooltip->set_markup( row[m_InstrumentsModel.m_col_tooltip] );
3509 m_TreeViewInstruments.set_tooltip_cell(tooltip, &path, scriptsColumn, NULL);
3510 } else {
3511 // if beginners' tooltips is disabled then don't show the following one
3512 if (!Settings::singleton()->showTooltips)
3513 return false;
3514 // yeah, a beginners tooltip
3515 tooltip->set_text(_(
3516 "Right click here for actions on instruments & MIDI Rules. "
3517 "Drag & drop to change the order of instruments."
3518 ));
3519 m_TreeViewInstruments.set_tooltip_cell(tooltip, &path, pointedColumn, NULL);
3520 }
3521 return true;
3522 }
3523
3524 static Glib::ustring scriptTooltipFor(gig::Instrument* instrument, int index) {
3525 Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3526 const int iScriptSlots = instrument->ScriptSlotCount();
3527 Glib::ustring tooltip = "<u>(" + ToString(index) + ") ���" + name + "���</u>\n\n";
3528 if (!iScriptSlots)
3529 tooltip += "<span foreground='red'><i>No script assigned</i></span>";
3530 else {
3531 for (int i = 0; i < iScriptSlots; ++i) {
3532 tooltip += "��� " + ToString(i+1) + ". Script: ���<span foreground='#46DEFF'><b>" +
3533 instrument->GetScriptOfSlot(i)->Name + "</b></span>���";
3534 if (i + 1 < iScriptSlots) tooltip += "\n\n";
3535 }
3536 }
3537 return tooltip;
3538 }
3539
3540 void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
3541 {
3542 file = 0;
3543 set_file_is_shared(isSharedInstrument);
3544
3545 // assuming libgig's file-IO-per-thread feature is enabled: by default
3546 // the file stream is closed for individual threads (except of the original
3547 // thread having opened the gig file), so open the file stream for this
3548 // thread for being able to read the .gig file
3549 // (see libgig's RIFF::File::SetIOPerThread() for details)
3550 ::RIFF::File* riff = gig->GetRiffFile();
3551 if (!riff->IsNew() && riff->GetMode() == ::RIFF::stream_mode_closed) {
3552 try {
3553 riff->SetMode(::RIFF::stream_mode_read);
3554 } catch (...) {
3555 printf("Failed opening '%s' in read mode\n",
3556 riff->GetFileName().c_str());
3557 }
3558 }
3559
3560 this->filename =
3561 (filename && strlen(filename) > 0) ?
3562 filename : (!gig->GetFileName().empty()) ?
3563 gig->GetFileName() : _("Unsaved Gig File");
3564 set_title(Glib::filename_display_basename(this->filename));
3565 file_has_name = filename;
3566 file_is_changed = false;
3567
3568 fileProps.set_file(gig);
3569
3570 instrument_name_connection.block();
3571 int index = 0;
3572 for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
3573 instrument = gig->GetNextInstrument(), ++index) {
3574 Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
3575 const int iScriptSlots = instrument->ScriptSlotCount();
3576
3577 Gtk::TreeModel::iterator iter = m_refInstrumentsTreeModel->append();
3578 Gtk::TreeModel::Row row = *iter;
3579 row[m_InstrumentsModel.m_col_nr] = index;
3580 row[m_InstrumentsModel.m_col_name] = name;
3581 row[m_InstrumentsModel.m_col_instr] = instrument;
3582 row[m_InstrumentsModel.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3583 row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
3584
3585 #if !USE_GTKMM_BUILDER
3586 add_instrument_to_menu(name);
3587 #endif
3588 }
3589 instrument_name_connection.unblock();
3590 #if !USE_GTKMM_BUILDER
3591 uiManager->get_widget("/MenuBar/MenuInstrument/AllInstruments")->show();
3592 #endif
3593
3594 updateSampleRefCountMap(gig);
3595
3596 for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {
3597 if (group->Name != "") {
3598 Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
3599 Gtk::TreeModel::Row rowGroup = *iterGroup;
3600 rowGroup[m_SamplesModel.m_col_name] = gig_to_utf8(group->Name);
3601 rowGroup[m_SamplesModel.m_col_group] = group;
3602 rowGroup[m_SamplesModel.m_col_sample] = NULL;
3603 for (gig::Sample* sample = group->GetFirstSample();
3604 sample; sample = group->GetNextSample()) {
3605 Gtk::TreeModel::iterator iterSample =
3606 m_refSamplesTreeModel->append(rowGroup.children());
3607 Gtk::TreeModel::Row rowSample = *iterSample;
3608 rowSample[m_SamplesModel.m_col_name] =
3609 gig_to_utf8(sample->pInfo->Name);
3610 rowSample[m_SamplesModel.m_col_sample] = sample;
3611 rowSample[m_SamplesModel.m_col_group] = NULL;
3612 int refcount = sample_ref_count.count(sample) ? sample_ref_count[sample] : 0;
3613 rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
3614 rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
3615 }
3616 }
3617 }
3618
3619 for (int i = 0; gig->GetScriptGroup(i); ++i) {
3620 gig::ScriptGroup* group = gig->GetScriptGroup(i);
3621
3622 Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
3623 Gtk::TreeModel::Row rowGroup = *iterGroup;
3624 rowGroup[m_ScriptsModel.m_col_name] = gig_to_utf8(group->Name);
3625 rowGroup[m_ScriptsModel.m_col_group] = group;
3626 rowGroup[m_ScriptsModel.m_col_script] = NULL;
3627 for (int s = 0; group->GetScript(s); ++s) {
3628 gig::Script* script = group->GetScript(s);
3629
3630 Gtk::TreeModel::iterator iterScript =
3631 m_refScriptsTreeModel->append(rowGroup.children());
3632 Gtk::TreeModel::Row rowScript = *iterScript;
3633 rowScript[m_ScriptsModel.m_col_name] = gig_to_utf8(script->Name);
3634 rowScript[m_ScriptsModel.m_col_script] = script;
3635 rowScript[m_ScriptsModel.m_col_group] = NULL;
3636 }
3637 }
3638 // unfold all sample groups & script groups by default
3639 m_TreeViewSamples.expand_all();
3640 m_TreeViewScripts.expand_all();
3641
3642 file = gig;
3643
3644 // select the first instrument
3645 m_TreeViewInstruments.get_selection()->select(Gtk::TreePath("0"));
3646
3647 instr_props_set_instrument();
3648 gig::Instrument* instrument = get_instrument();
3649 if (instrument) {
3650 midiRules.set_instrument(instrument);
3651 }
3652 }
3653
3654 bool MainWindow::instr_props_set_instrument()
3655 {
3656 instrumentProps.signal_name_changed().clear();
3657
3658 // get visual selection
3659 std::vector<Gtk::TreeModel::Path> rows = m_TreeViewInstruments.get_selection()->get_selected_rows();
3660 if (rows.empty()) {
3661 instrumentProps.hide();
3662 return false;
3663 }
3664
3665 // convert index of visual selection (i.e. if filtered) to index of model
3666 Gtk::TreeModel::Path path = m_refInstrumentsModelFilter->convert_path_to_child_path(rows[0]);
3667
3668 //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
3669 Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(path);
3670 if (it) {
3671 Gtk::TreeModel::Row row = *it;
3672 gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
3673
3674 instrumentProps.set_instrument(instrument);
3675
3676 // make sure instrument tree is updated when user changes the
3677 // instrument name in instrument properties window
3678 instrumentProps.signal_name_changed().connect(
3679 sigc::bind(
3680 sigc::mem_fun(*this,
3681 &MainWindow::instr_name_changed_by_instr_props),
3682 it));
3683 } else {
3684 instrumentProps.hide();
3685 }
3686 //NOTE: explicit boolean cast required for GTKMM4 development branch here
3687 return it ? true : false;
3688 }
3689
3690 void MainWindow::show_instr_props()
3691 {
3692 if (instr_props_set_instrument()) {
3693 instrumentProps.show();
3694 instrumentProps.deiconify();
3695 }
3696 }
3697
3698 void MainWindow::instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it)
3699 {
3700 Gtk::TreeModel::Row row = *it;
3701 Glib::ustring name = row[m_InstrumentsModel.m_col_name];
3702
3703 gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
3704 Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
3705 if (gigname != name) {
3706 Gtk::TreeModel::Path path(*it);
3707 const int index = path[0];
3708 row[m_InstrumentsModel.m_col_name] = gigname;
3709 row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
3710 }
3711 }
3712
3713 bool MainWindow::sample_props_set_sample()
3714 {
3715 sampleProps.signal_name_changed().clear();
3716
3717 std::vector<Gtk::TreeModel::Path> rows = m_TreeViewSamples.get_selection()->get_selected_rows();
3718 if (rows.empty()) {
3719 sampleProps.hide();
3720 return false;
3721 }
3722 //NOTE: was const_iterator before, which did not compile with GTKMM4 development branch, probably going to be fixed before final GTKMM4 release though.
3723 Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
3724 if (it) {
3725 Gtk::TreeModel::Row row = *it;
3726 gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3727
3728 sampleProps.set_sample(sample);
3729
3730 // make sure sample tree is updated when user changes the
3731 // sample name in sample properties window
3732 sampleProps.signal_name_changed().connect(
3733 sigc::bind(
3734 sigc::mem_fun(*this,
3735 &MainWindow::sample_name_changed_by_sample_props
3736 ), it
3737 )
3738 );
3739 } else {
3740 sampleProps.hide();
3741 }
3742 //NOTE: explicit boolean cast required for GTKMM4 development branch here
3743 return it ? true : false;
3744 }
3745
3746 void MainWindow::show_sample_props()
3747 {
3748 if (sample_props_set_sample()) {
3749 sampleProps.show();
3750 sampleProps.deiconify();
3751 }
3752 }
3753
3754 void MainWindow::sample_name_changed_by_sample_props(Gtk::TreeModel::iterator& it)
3755 {
3756 Gtk::TreeModel::Row row = *it;
3757 Glib::ustring name = row[m_SamplesModel.m_col_name];
3758
3759 gig::Sample* sample = row[m_SamplesModel.m_col_sample];
3760 Glib::ustring gigname(gig_to_utf8(sample->pInfo->Name));
3761 if (gigname != name) {
3762 Gtk::TreeModel::Path path(*it);
3763 row[m_SamplesModel.m_col_name] = gigname;
3764 }
3765 }
3766
3767 void MainWindow::show_midi_rules()
3768 {
3769 if (gig::Instrument* instrument = get_instrument())
3770 {
3771 midiRules.set_instrument(instrument);
3772 midiRules.show();
3773 midiRules.deiconify();
3774 }
3775 }
3776
3777 void MainWindow::show_script_slots() {
3778 if (!file) return;
3779
3780 // get selected instrument
3781 gig::Instrument* instrument = get_instrument();
3782 if (!instrument) return;
3783
3784 ScriptSlots* window = new ScriptSlots;
3785 window->setInstrument(instrument);
3786 window->signal_script_slots_changed().connect(
3787 sigc::mem_fun(*this, &MainWindow::onScriptSlotsModified)
3788 );
3789 //window->reparent(*this);
3790 window->show();
3791 }
3792
3793 void MainWindow::onScriptSlotsModified(gig::Instrument* pInstrument) {
3794 if (!pInstrument) return;
3795 const int iScriptSlots = pInstrument->ScriptSlotCount();
3796
3797 //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!
3798 //Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewInstruments.get_model();
3799 Glib::RefPtr<Gtk::TreeModel> model = m_refInstrumentsModelFilter->get_model();
3800
3801 for (int i = 0; i < model->children().size(); ++i) {
3802 Gtk::TreeModel::Row row = model->children()[i];
3803 if (row[m_InstrumentsModel.m_col_instr] != pInstrument) continue;
3804 row[m_InstrumentsModel.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
3805 row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(pInstrument, i);
3806 break;
3807 }
3808
3809 // causes the sampler to reload the instrument with the new script
3810 on_sel_change();
3811
3812 // force script 'patch' variables editor ("Script" tab) to be refreshed
3813 dimreg_edit.scriptVars.setInstrument(pInstrument, true/*force update*/);
3814 }
3815
3816 void MainWindow::assignScript(gig::Script* pScript) {
3817 if (!pScript) {
3818 printf("assignScript() : !script\n");
3819 return;
3820 }
3821 printf("assignScript('%s')\n", pScript->Name.c_str());
3822
3823 gig::Instrument* pInstrument = get_instrument();
3824 if (!pInstrument) {
3825 printf("!instrument\n");
3826 return;
3827 }
3828
3829 pInstrument->AddScriptSlot(pScript);
3830
3831 onScriptSlotsModified(pInstrument);
3832 }
3833
3834 void MainWindow::dropAllScriptSlots() {
3835 gig::Instrument* pInstrument = get_instrument();
3836 if (!pInstrument) {
3837 printf("!instrument\n");
3838 return;
3839 }
3840
3841 const int iScriptSlots = pInstrument->ScriptSlotCount();
3842 for (int i = iScriptSlots - 1; i >= 0; --i)
3843 pInstrument->RemoveScriptSlot(i);
3844
3845 onScriptSlotsModified(pInstrument);
3846 }
3847
3848 void MainWindow::on_action_refresh_all() {
3849 __refreshEntireGUI();
3850 }
3851
3852 void MainWindow::on_action_view_status_bar() {
3853 #if USE_GLIB_ACTION
3854 bool active = false;
3855 m_actionToggleStatusBar->get_state(active);
3856 // for some reason toggle state does not change automatically
3857 active = !active;
3858 m_actionToggleStatusBar->change_state(active);
3859 if (active)
3860 m_StatusBar.show();
3861 else
3862 m_StatusBar.hide();
3863 #else
3864 Gtk::CheckMenuItem* item =
3865 dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
3866 if (!item) {
3867 std::cerr << "/MenuBar/MenuView/Statusbar == NULL\n";
3868 return;
3869 }
3870 if (item->get_active()) m_StatusBar.show();
3871 else m_StatusBar.hide();
3872 #endif
3873 }
3874
3875 void MainWindow::on_auto_restore_win_dim() {
3876 #if USE_GLIB_ACTION
3877 bool active = false;
3878 m_actionToggleRestoreWinDim->get_state(active);
3879 // for some reason toggle state does not change automatically
3880 active = !active;
3881 m_actionToggleRestoreWinDim->change_state(active);
3882 Settings::singleton()->autoRestoreWindowDimension = active;
3883 #else
3884 Gtk::CheckMenuItem* item =
3885 dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/AutoRestoreWinDim"));
3886 if (!item) {
3887 std::cerr << "/MenuBar/MenuView/AutoRestoreWinDim == NULL\n";
3888 return;
3889 }
3890 Settings::singleton()->autoRestoreWindowDimension = item->get_active();
3891 #endif
3892 }
3893
3894 void MainWindow::on_instr_double_click_opens_props() {
3895 #if USE_GLIB_ACTION
3896 bool active = false;
3897 m_actionInstrDoubleClickOpensProps->get_state(active);
3898 // for some reason toggle state does not change automatically
3899 active = !active;
3900 m_actionInstrDoubleClickOpensProps->change_state(active);
3901 Settings::singleton()->instrumentDoubleClickOpensProps = active;
3902 #else
3903 Gtk::CheckMenuItem* item =
3904 dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/OpenInstrPropsByDoubleClick"));
3905 if (!item) {
3906 std::cerr << "/MenuBar/MenuView/OpenInstrPropsByDoubleClick == NULL\n";
3907 return;
3908 }
3909 Settings::singleton()->instrumentDoubleClickOpensProps = item->get_active();
3910 #endif
3911 }
3912
3913 void MainWindow::on_save_with_temporary_file() {
3914 #if USE_GLIB_ACTION
3915 bool active = false;
3916 m_actionToggleSaveWithTempFile->get_state(active);
3917 // for some reason toggle state does not change automatically
3918 active = !active;
3919 m_actionToggleSaveWithTempFile->change_state(active);
3920 Settings::singleton()->saveWithTemporaryFile = active;
3921 #else
3922 Gtk::CheckMenuItem* item =
3923 dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuSettings/SaveWithTemporaryFile"));
3924 if (!item) {
3925 std::cerr << "/MenuBar/MenuSettings/SaveWithTemporaryFile == NULL\n";
3926 return;
3927 }
3928 Settings::singleton()->saveWithTemporaryFile = item->get_active();
3929 #endif
3930 }
3931
3932 bool MainWindow::is_copy_samples_unity_note_enabled() const {
3933 #if USE_GLIB_ACTION
3934 bool active = false;
3935 m_actionToggleCopySampleUnity->get_state(active);
3936 return active;
3937 #else
3938 Gtk::CheckMenuItem* item =
3939 dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
3940 if (!item) {
3941 std::cerr << "/MenuBar/MenuEdit/CopySampleUnity == NULL\n";
3942 return true;
3943 }
3944 return item->get_active();
3945 #endif
3946 }
3947
3948 bool MainWindow::is_copy_samples_fine_tune_enabled() const {
3949 #if USE_GLIB_ACTION
3950 bool active = false;
3951 m_actionToggleCopySampleTune->get_state(active);
3952 return active;
3953 #else
3954 Gtk::CheckMenuItem* item =
3955 dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
3956 if (!item) {
3957 std::cerr << "/MenuBar/MenuEdit/CopySampleTune == NULL\n";
3958 return true;
3959 }
3960 return item->get_active();
3961 #endif
3962 }
3963
3964 bool MainWindow::is_copy_samples_loop_enabled() const {
3965 #if USE_GLIB_ACTION
3966 bool active = false;
3967 m_actionToggleCopySampleLoop->get_state(active);
3968 return active;
3969 #else
3970 Gtk::CheckMenuItem* item =
3971 dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
3972 if (!item) {
3973 std::cerr << "/MenuBar/MenuEdit/CopySampleLoop == NULL\n";
3974 return true;
3975 }
3976 return item->get_active();
3977 #endif
3978 }
3979
3980 #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
3981 bool MainWindow::on_button_release(Gdk::EventButton& _button) {
3982 GdkEventButton* button = _button.gobj();
3983 #else
3984 void MainWindow::on_button_release(GdkEventButton* button) {
3985 #endif
3986 if (button->type == GDK_2BUTTON_PRESS) {
3987 if (Settings::singleton()->instrumentDoubleClickOpensProps)
3988 show_instr_props();
3989 } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
3990 // gig v2 files have no midi rules
3991 const bool bEnabled = !(file->pVersion && file->pVersion->major == 2);
3992 #if USE_GTKMM_BUILDER
3993 m_actionMIDIRules->property_enabled() = bEnabled;
3994 #else
3995 static_cast<Gtk::MenuItem*>(
3996 uiManager->get_widget("/MenuBar/MenuInstrument/MidiRules"))->set_sensitive(
3997 bEnabled
3998 );
3999 static_cast<Gtk::MenuItem*>(
4000 uiManager->get_widget("/PopupMenu/MidiRules"))->set_sensitive(
4001 bEnabled
4002 );
4003 #endif
4004 popup_menu->popup(button->button, button->time);
4005 }
4006 #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
4007 return false;
4008 #endif
4009 }
4010
4011 #if !USE_GTKMM_BUILDER
4012 void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {
4013 if (item->get_active()) {
4014 const std::vector<Gtk::Widget*> children =
4015 instrument_menu->get_children();
4016 std::vector<Gtk::Widget*>::const_iterator it =
4017 find(children.begin(), children.end(), item);
4018 if (it != children.end()) {
4019 int index = it - children.begin();
4020
4021 // convert index of model to index of visual presentation (i.e. if filtered)
4022 Gtk::TreeModel::Path path = m_refInstrumentsModelFilter->convert_child_path_to_path(Gtk::TreePath(ToString(index)));
4023
4024 if (path)
4025 m_TreeViewInstruments.get_selection()->select(path);
4026 else
4027 m_TreeViewInstruments.get_selection()->unselect_all();
4028
4029 m_RegionChooser.set_instrument(file->GetInstrument(index));
4030 }
4031 }
4032 }
4033 #endif
4034
4035 void MainWindow::on_action_move_instr() {
4036 gig::Instrument* instr = get_instrument();
4037 if (!instr) return;
4038
4039 int currentIndex = getIndexOf(instr);
4040
4041 Gtk::Dialog dialog(_("Move Instrument"), true /*modal*/);
4042 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
4043 Gtk::Adjustment adjustment(
4044 currentIndex,
4045 0 /*min*/, file->CountInstruments() - 1 /*max*/
4046 );
4047 Gtk::SpinButton spinBox(adjustment);
4048 #else
4049 Gtk::SpinButton spinBox(
4050 Gtk::Adjustment::create(
4051 currentIndex,
4052 0 /*min*/, file->CountInstruments() - 1 /*max*/
4053 )
4054 );
4055 #endif
4056 #if USE_GTKMM_BOX
4057 dialog.get_content_area()->pack_start(spinBox);
4058 #else
4059 dialog.get_vbox()->pack_start(spinBox);
4060 #endif
4061 #if HAS_GTKMM_STOCK
4062 Gtk::Button* okButton = dialog.add_button(Gtk::Stock::OK, 0);
4063 dialog.add_button(Gtk::Stock::CANCEL, 1);
4064 #else
4065 Gtk::Button* okButton = dialog.add_button(_("_OK"), 0);
4066 dialog.add_button(_("_Cancel"), 1);
4067 #endif
4068 okButton->set_sensitive(false);
4069 // show the dialog at a reasonable screen position
4070 dialog.set_position(Gtk::WIN_POS_MOUSE);
4071 // only enable the 'OK' button if entered new index is not instrument's
4072 // current index already
4073 spinBox.signal_value_changed().connect([&]{
4074 okButton->set_sensitive( spinBox.get_value_as_int() != currentIndex );
4075 });
4076 // usability acceleration: if user hits enter key on the text entry field
4077 // then auto trigger the 'OK' button
4078 spinBox.signal_activate().connect([&]{
4079 if (okButton->get_sensitive())
4080 okButton->clicked();
4081 });
4082 #if HAS_GTKMM_SHOW_ALL_CHILDREN
4083 dialog.show_all_children();
4084 #endif
4085 if (!dialog.run()) { // 'OK' selected ...
4086 int newIndex = spinBox.get_value_as_int();
4087 printf("MOVE TO %d\n", newIndex);
4088 gig::Instrument* dst = file->GetInstrument(newIndex);
4089 instr->MoveTo(dst);
4090 __refreshEntireGUI();
4091 select_instrument(instr);
4092 }
4093 }
4094
4095 void MainWindow::select_instrument(gig::Instrument* instrument) {
4096 if (!instrument) return;
4097
4098 //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!
4099 Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewInstruments.get_model();
4100 //Glib::RefPtr<Gtk::TreeModel> model = m_refInstrumentsModelFilter->get_model();
4101
4102 for (int i = 0; i < model->children().size(); ++i) {
4103 Gtk::TreeModel::Row row = model->children()[i];
4104 if (row[m_InstrumentsModel.m_col_instr] == instrument) {
4105 // select and show the respective instrument in the list view
4106 show_intruments_tab();
4107 m_TreeViewInstruments.get_selection()->unselect_all();
4108
4109 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4110 auto iterSel = model->children()[i].get_iter();
4111 m_TreeViewInstruments.get_selection()->select(iterSel);
4112 #else
4113 m_TreeViewInstruments.get_selection()->select(model->children()[i]);
4114 #endif
4115 std::vector<Gtk::TreeModel::Path> rows =
4116 m_TreeViewInstruments.get_selection()->get_selected_rows();
4117 if (!rows.empty())
4118 m_TreeViewInstruments.scroll_to_row(rows[0]);
4119 on_sel_change(); // the regular instrument selection change callback
4120 }
4121 }
4122 }
4123
4124 /// Returns true if requested dimension region was successfully selected and scrolled to in the list view, false on error.
4125 bool MainWindow::select_dimension_region(gig::DimensionRegion* dimRgn) {
4126 gig::Region* pRegion = (gig::Region*) dimRgn->GetParent();
4127 gig::Instrument* pInstrument = (gig::Instrument*) pRegion->GetParent();
4128
4129 //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!
4130 Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewInstruments.get_model();
4131 //Glib::RefPtr<Gtk::TreeModel> model = m_refInstrumentsModelFilter->get_model();
4132
4133 for (int i = 0; i < model->children().size(); ++i) {
4134 Gtk::TreeModel::Row row = model->children()[i];
4135 if (row[m_InstrumentsModel.m_col_instr] == pInstrument) {
4136 // select and show the respective instrument in the list view
4137 show_intruments_tab();
4138 m_TreeViewInstruments.get_selection()->unselect_all();
4139 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4140 auto iterSel = model->children()[i].get_iter();
4141 m_TreeViewInstruments.get_selection()->select(iterSel);
4142 #else
4143 m_TreeViewInstruments.get_selection()->select(model->children()[i]);
4144 #endif
4145 std::vector<Gtk::TreeModel::Path> rows =
4146 m_TreeViewInstruments.get_selection()->get_selected_rows();
4147 if (!rows.empty())
4148 m_TreeViewInstruments.scroll_to_row(rows[0]);
4149 on_sel_change(); // the regular instrument selection change callback
4150
4151 // select respective region in the region selector
4152 m_RegionChooser.set_region(pRegion);
4153
4154 // select and show the respective dimension region in the editor
4155 //update_dimregs();
4156 if (!m_DimRegionChooser.select_dimregion(dimRgn)) return false;
4157 //dimreg_edit.set_dim_region(dimRgn);
4158
4159 return true;
4160 }
4161 }
4162
4163 return false;
4164 }
4165
4166 void MainWindow::select_sample(gig::Sample* sample) {
4167 Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
4168 for (int g = 0; g < model->children().size(); ++g) {
4169 Gtk::TreeModel::Row rowGroup = model->children()[g];
4170 for (int s = 0; s < rowGroup.children().size(); ++s) {
4171 Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
4172 if (rowSample[m_SamplesModel.m_col_sample] == sample) {
4173 show_samples_tab();
4174 m_TreeViewSamples.get_selection()->unselect_all();
4175 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
4176 auto iterSel = rowGroup.children()[s].get_iter();
4177 m_TreeViewSamples.get_selection()->select(iterSel);
4178 #else
4179 m_TreeViewSamples.get_selection()->select(rowGroup.children()[s]);
4180 #endif
4181 std::vector<Gtk::TreeModel::Path> rows =
4182 m_TreeViewSamples.get_selection()->get_selected_rows();
4183 if (rows.empty()) return;
4184 m_TreeViewSamples.scroll_to_row(rows[0]);
4185 return;
4186 }
4187 }
4188 }
4189 }
4190
4191 #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
4192 bool MainWindow::on_sample_treeview_button_release(Gdk::EventButton& _button) {
4193 GdkEventButton* button = _button.gobj();
4194 #else
4195 void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
4196 #endif
4197 if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
4198 // by default if Ctrl keys is pressed down, then a mouse right-click
4199 // does not select the respective row, so we must assure this
4200 // programmatically ...
4201 /*{
4202 Gtk::TreeModel::Path path;
4203 Gtk::TreeViewColumn* pColumn = NULL;
4204 int cellX, cellY;
4205 bool bSuccess = m_TreeViewSamples.get_path_at_pos(
4206 (int)button->x, (int)button->y,
4207 path, pColumn, cellX, cellY
4208 );
4209 if (bSuccess) {
4210 if (m_TreeViewSamples.get_selection()->count_selected_rows() <= 0) {
4211 printf("not selected !!!\n");
4212 m_TreeViewSamples.get_selection()->select(path);
4213 }
4214 }
4215 }*/
4216
4217 #if !USE_GTKMM_BUILDER
4218 Gtk::Menu* sample_popup =
4219 dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));
4220 #endif
4221
4222 // update enabled/disabled state of sample popup items
4223 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
4224 std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4225 const int n = rows.size();
4226 int nGroups = 0;
4227 int nSamples = 0;
4228 for (int r = 0; r < n; ++r) {
4229 Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
4230 if (!it) continue;
4231 Gtk::TreeModel::Row row = *it;
4232 if (row[m_SamplesModel.m_col_group]) nGroups++;
4233 if (row[m_SamplesModel.m_col_sample]) nSamples++;
4234 }
4235
4236 #if USE_GTKMM_BUILDER
4237 m_actionSampleProperties->property_enabled() = (n == 1);
4238 m_actionAddSample->property_enabled() = (n);
4239 m_actionAddSampleGroup->property_enabled() = (file);
4240 m_actionViewSampleRefs->property_enabled() = (nSamples == 1);
4241 m_actionRemoveSample->property_enabled() = (n);
4242 m_actionReplaceSample->property_enabled() = (nSamples == 1);
4243 #else
4244 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
4245 set_sensitive(n == 1);
4246 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
4247 set_sensitive(n);
4248 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->
4249 set_sensitive(file);
4250 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/ShowSampleRefs"))->
4251 set_sensitive(nSamples == 1);
4252 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
4253 set_sensitive(n);
4254 #endif
4255 // show sample popup
4256 sample_popup->popup(button->button, button->time);
4257
4258 #if !USE_GTKMM_BUILDER
4259 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/SampleProperties"))->
4260 set_sensitive(n == 1);
4261 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddSample"))->
4262 set_sensitive(n);
4263 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/AddGroup"))->
4264 set_sensitive(file);
4265 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/ShowSampleRefs"))->
4266 set_sensitive(nSamples == 1);
4267 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuSample/RemoveSample"))->
4268 set_sensitive(n);
4269 #endif
4270 }
4271
4272 #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
4273 return false;
4274 #endif
4275 }
4276
4277 #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
4278 bool MainWindow::on_script_treeview_button_release(Gdk::EventButton& _button) {
4279 GdkEventButton* button = _button.gobj();
4280 #else
4281 void MainWindow::on_script_treeview_button_release(GdkEventButton* button) {
4282 #endif
4283 if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
4284 #if !USE_GTKMM_BUILDER
4285 Gtk::Menu* script_popup =
4286 dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/ScriptPopupMenu"));
4287 #endif
4288 // update enabled/disabled state of sample popup items
4289 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
4290 Gtk::TreeModel::iterator it = sel->get_selected();
4291 bool group_selected = false;
4292 bool script_selected = false;
4293 if (it) {
4294 Gtk::TreeModel::Row row = *it;
4295 group_selected = row[m_ScriptsModel.m_col_group];
4296 script_selected = row[m_ScriptsModel.m_col_script];
4297 }
4298 #if USE_GTKMM_BUILDER
4299 m_actionAddScript->property_enabled() = (group_selected || script_selected);
4300 m_actionAddScriptGroup->property_enabled() = (file);
4301 m_actionEditScript->property_enabled() = (script_selected);
4302 m_actionRemoveScript->property_enabled() = (group_selected || script_selected);
4303 #else
4304 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScript"))->
4305 set_sensitive(group_selected || script_selected);
4306 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/AddScriptGroup"))->
4307 set_sensitive(file);
4308 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/EditScript"))->
4309 set_sensitive(script_selected);
4310 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/ScriptPopupMenu/RemoveScript"))->
4311 set_sensitive(group_selected || script_selected);
4312 #endif
4313 // show sample popup
4314 script_popup->popup(button->button, button->time);
4315
4316 #if !USE_GTKMM_BUILDER
4317 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScript"))->
4318 set_sensitive(group_selected || script_selected);
4319 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/AddScriptGroup"))->
4320 set_sensitive(file);
4321 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/EditScript"))->
4322 set_sensitive(script_selected);
4323 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/MenuBar/MenuScript/RemoveScript"))->
4324 set_sensitive(group_selected || script_selected);
4325 #endif
4326 }
4327 #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
4328 return false;
4329 #endif
4330 }
4331
4332 void MainWindow::updateScriptListOfMenu() {
4333 // remove all entries from "Assign Script" menu
4334 {
4335 const std::vector<Gtk::Widget*> children = assign_scripts_menu->get_children();
4336 for (int i = 0; i < children.size(); ++i) {
4337 Gtk::Widget* child = children[i];
4338 assign_scripts_menu->remove(*child);
4339 delete child;
4340 }
4341 }
4342
4343 int iTotalScripts = 0;
4344
4345 if (!file) goto noScripts;
4346
4347 // add all configured macros as menu items to the "Macro" menu
4348 for (int iGroup = 0; file->GetScriptGroup(iGroup); ++iGroup) {
4349 gig::ScriptGroup* pGroup = file->GetScriptGroup(iGroup);
4350 for (int iScript = 0; pGroup->GetScript(iScript); ++iScript, ++iTotalScripts) {
4351 gig::Script* pScript = pGroup->GetScript(iScript);
4352 std::string name = pScript->Name;
4353
4354 Gtk::MenuItem* item = new Gtk::MenuItem(name);
4355 item->signal_activate().connect(
4356 sigc::bind(
4357 sigc::mem_fun(*this, &MainWindow::assignScript), pScript
4358 )
4359 );
4360 assign_scripts_menu->append(*item);
4361 item->set_accel_path("<Scripts>/script_" + ToString(iTotalScripts));
4362 //item->set_tooltip_text(comment);
4363 }
4364 }
4365
4366 noScripts:
4367
4368 // if there are no macros configured at all, then show a dummy entry instead
4369 if (!iTotalScripts) {
4370 Gtk::MenuItem* item = new Gtk::MenuItem(_("No Scripts"));
4371 item->set_sensitive(false);
4372 assign_scripts_menu->append(*item);
4373 }
4374
4375 // add separator line to menu
4376 assign_scripts_menu->append(*new Gtk::SeparatorMenuItem);
4377
4378 {
4379 Gtk::MenuItem* item = new Gtk::MenuItem(_("Unassign All Scripts"));
4380 item->signal_activate().connect(
4381 sigc::mem_fun(*this, &MainWindow::dropAllScriptSlots)
4382 );
4383 assign_scripts_menu->append(*item);
4384 item->set_accel_path("<Scripts>/DropAllScriptSlots");
4385 }
4386
4387 #if HAS_GTKMM_SHOW_ALL_CHILDREN
4388 assign_scripts_menu->show_all_children();
4389 #endif
4390 }
4391
4392 #if !USE_GTKMM_BUILDER
4393 Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
4394 const Glib::ustring& name, int position) {
4395
4396 Gtk::RadioMenuItem::Group instrument_group;
4397 const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
4398 if (!children.empty()) {
4399 instrument_group =
4400 static_cast<Gtk::RadioMenuItem*>(children[0])->get_group();
4401 }
4402 Gtk::RadioMenuItem* item =
4403 new Gtk::RadioMenuItem(instrument_group, name);
4404 if (position < 0) {
4405 instrument_menu->append(*item);
4406 } else {
4407 instrument_menu->insert(*item, position);
4408 }
4409 item->show();
4410 item->signal_activate().connect(
4411 sigc::bind(
4412 sigc::mem_fun(*this, &MainWindow::on_instrument_selection_change),
4413 item));
4414 return item;
4415 }
4416 #endif
4417
4418 #if !USE_GTKMM_BUILDER
4419 void MainWindow::remove_instrument_from_menu(int index) {
4420 const std::vector<Gtk::Widget*> children =
4421 instrument_menu->get_children();
4422 Gtk::Widget* child = children[index];
4423 instrument_menu->remove(*child);
4424 delete child;
4425 }
4426 #endif
4427
4428 void MainWindow::add_instrument(gig::Instrument* instrument) {
4429 const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
4430
4431 // update instrument tree view
4432 instrument_name_connection.block();
4433 Gtk::TreeModel::iterator iterInstr = m_refInstrumentsTreeModel->append();
4434 Gtk::TreeModel::Row rowInstr = *iterInstr;
4435 const int index = m_refInstrumentsTreeModel->children().size() - 1;
4436 const int iScriptSlots = instrument->ScriptSlotCount();
4437 rowInstr[m_InstrumentsModel.m_col_nr] = index;
4438 rowInstr[m_InstrumentsModel.m_col_name] = name;
4439 rowInstr[m_InstrumentsModel.m_col_instr] = instrument;
4440 rowInstr[m_InstrumentsModel.m_col_scripts] = iScriptSlots ? ToString(iScriptSlots) : "";
4441 rowInstr[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
4442 instrument_name_connection.unblock();
4443
4444 #if !USE_GTKMM_BUILDER
4445 add_instrument_to_menu(name);
4446 #endif
4447 select_instrument(instrument);
4448 file_changed();
4449 }
4450
4451 void MainWindow::on_action_add_instrument() {
4452 static int __instrument_indexer = 0;
4453 if (!file) return;
4454 gig::Instrument* instrument = file->AddInstrument();
4455 __instrument_indexer++;
4456 instrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument ") +
4457 ToString(__instrument_indexer));
4458
4459 add_instrument(instrument);
4460 }
4461
4462 void MainWindow::on_action_duplicate_instrument() {
4463 if (!file) return;
4464
4465 // retrieve the currently selected instrument
4466 // (being the original instrument to be duplicated)
4467 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
4468 std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4469 for (int r = 0; r < rows.size(); ++r) {
4470 // convert index of visual selection (i.e. if filtered) to index of model
4471 Gtk::TreeModel::Path path = m_refInstrumentsModelFilter->convert_path_to_child_path(rows[r]);
4472 Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(path);
4473 if (it) {
4474 Gtk::TreeModel::Row row = *it;
4475 gig::Instrument* instrOrig = row[m_InstrumentsModel.m_col_instr];
4476 if (instrOrig) {
4477 // duplicate the orginal instrument
4478 gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
4479 instrNew->pInfo->Name =
4480 instrOrig->pInfo->Name +
4481 gig_from_utf8(Glib::ustring(" (") + _("Copy") + ")");
4482
4483 add_instrument(instrNew);
4484 }
4485 }
4486 }
4487 }
4488
4489 void MainWindow::on_action_remove_instrument() {
4490 if (!file) return;
4491 if (file_is_shared) {
4492 Gtk::MessageDialog msg(
4493 *this,
4494 _("You cannot delete an instrument from this file, since it's "
4495 "currently used by the sampler."),
4496 false, Gtk::MESSAGE_INFO
4497 );
4498 msg.run();
4499 return;
4500 }
4501
4502 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
4503 std::vector<Gtk::TreeModel::Path> rowsVisual = sel->get_selected_rows();
4504
4505 // convert indeces of visual selection (i.e. if filtered) to indeces of model
4506 std::vector<Gtk::TreeModel::Path> rows;
4507 for (int rv = 0; rv < rowsVisual.size(); ++rv) {
4508 Gtk::TreeModel::Path path = m_refInstrumentsModelFilter->convert_path_to_child_path(rowsVisual[rv]);
4509 if (path)
4510 rows.push_back(path);
4511 }
4512
4513 for (int r = rows.size() - 1; r >= 0; --r) {
4514 Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(rows[r]);
4515 if (!it) continue;
4516 Gtk::TreeModel::Row row = *it;
4517 gig::Instrument* instr = row[m_InstrumentsModel.m_col_instr];
4518 try {
4519 Gtk::TreePath path(it);
4520 int index = path[0];
4521
4522 // remove instrument from the gig file
4523 if (instr) file->DeleteInstrument(instr);
4524 file_changed();
4525
4526 #if !USE_GTKMM_BUILDER
4527 remove_instrument_from_menu(index);
4528 #endif
4529
4530 // remove row from instruments tree view
4531 m_refInstrumentsTreeModel->erase(it);
4532 // update "Nr" column of all instrument rows
4533 {
4534 int index = 0;
4535 for (Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->children().begin();
4536 it != m_refInstrumentsTreeModel->children().end(); ++it, ++index)
4537 {
4538 Gtk::TreeModel::Row row = *it;
4539 gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
4540 row[m_InstrumentsModel.m_col_nr] = index;
4541 row[m_InstrumentsModel.m_col_tooltip] = scriptTooltipFor(instrument, index);
4542 }
4543 }
4544
4545 #if GTKMM_MAJOR_VERSION < 3
4546 // select another instrument (in gtk3 this is done
4547 // automatically)
4548 if (!m_refInstrumentsTreeModel->children().empty()) {
4549 if (index == m_refInstrumentsTreeModel->children().size()) {
4550 index--;
4551 }
4552 m_TreeViewInstruments.get_selection()->select(
4553 Gtk::TreePath(ToString(index)));
4554 }
4555 #endif
4556 instr_props_set_instrument();
4557 instr = get_instrument();
4558 if (instr) {
4559 midiRules.set_instrument(instr);
4560 } else {
4561 midiRules.hide();
4562 }
4563 } catch (RIFF::Exception e) {
4564 Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
4565 msg.run();
4566 }
4567 }
4568 }
4569
4570 void MainWindow::on_action_sample_properties() {
4571 show_sample_props();
4572 }
4573
4574 void MainWindow::on_action_add_script_group() {
4575 static int __script_indexer = 0;
4576 if (!file) return;
4577 gig::ScriptGroup* group = file->AddScriptGroup();
4578 group->Name = gig_from_utf8(_("Unnamed Group"));
4579 if (__script_indexer) group->Name += " " + ToString(__script_indexer);
4580 __script_indexer++;
4581 // update sample tree view
4582 Gtk::TreeModel::iterator iterGroup = m_refScriptsTreeModel->append();
4583 Gtk::TreeModel::Row rowGroup = *iterGroup;
4584 rowGroup[m_ScriptsModel.m_col_name] = gig_to_utf8(group->Name);
4585 rowGroup[m_ScriptsModel.m_col_script] = NULL;
4586 rowGroup[m_ScriptsModel.m_col_group] = group;
4587 file_changed();
4588 }
4589
4590 void MainWindow::on_action_add_script() {
4591 if (!file) return;
4592 // get selected group
4593 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
4594 Gtk::TreeModel::iterator it = sel->get_selected();
4595 if (!it) return;
4596 Gtk::TreeModel::Row row = *it;
4597 gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
4598 if (!group) { // not a group, but a script is selected (probably)
4599 gig::Script* script = row[m_ScriptsModel.m_col_script];
4600 if (!script) return;
4601 it = row.parent(); // resolve parent (that is the script's group)
4602 if (!it) return;
4603 row = *it;
4604 group = row[m_ScriptsModel.m_col_group];
4605 if (!group) return;
4606 }
4607
4608 // add a new script to the .gig file
4609 gig::Script* script = group->AddScript();
4610 Glib::ustring name = _("Unnamed Script");
4611 script->Name = gig_from_utf8(name);
4612
4613 // add script to the tree view
4614 Gtk::TreeModel::iterator iterScript =
4615 m_refScriptsTreeModel->append(row.children());
4616 Gtk::TreeModel::Row rowScript = *iterScript;
4617 rowScript[m_ScriptsModel.m_col_name] = name;
4618 rowScript[m_ScriptsModel.m_col_script] = script;
4619 rowScript[m_ScriptsModel.m_col_group] = NULL;
4620
4621 // unfold group of new script item in treeview
4622 Gtk::TreeModel::Path path(iterScript);
4623 m_TreeViewScripts.expand_to_path(path);
4624 }
4625
4626 void MainWindow::on_action_edit_script() {
4627 if (!file) return;
4628 // get selected script
4629 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
4630 Gtk::TreeModel::iterator it = sel->get_selected();
4631 if (!it) return;
4632 Gtk::TreeModel::Row row = *it;
4633 gig::Script* script = row[m_ScriptsModel.m_col_script];
4634 editScript(script);
4635 }
4636
4637 void MainWindow::editScript(gig::Script* script) {
4638 if (!script) return;
4639 ScriptEditor* editor = new ScriptEditor;
4640 editor->signal_script_to_be_changed.connect(
4641 signal_script_to_be_changed.make_slot()
4642 );
4643 editor->signal_script_changed.connect([this](gig::Script* script) {
4644 // signal to sampler (which will reload the script due to this)
4645 signal_script_changed.emit(script);
4646 // force script 'patch' variables editor ("Script" tab) to be refreshed
4647 gig::Instrument* instr = get_instrument();
4648 dimreg_edit.scriptVars.setInstrument(instr, true/*force update*/);
4649 });
4650 editor->setScript(script);
4651 //editor->reparent(*this);
4652 editor->show();
4653 }
4654
4655 void MainWindow::on_action_remove_script() {
4656 if (!file) return;
4657 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
4658 Gtk::TreeModel::iterator it = sel->get_selected();
4659 if (it) {
4660 Gtk::TreeModel::Row row = *it;
4661 gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
4662 gig::Script* script = row[m_ScriptsModel.m_col_script];
4663 Glib::ustring name = row[m_ScriptsModel.m_col_name];
4664 try {
4665 // remove script group or script from the gig file
4666 if (group) {
4667 // notify everybody that we're going to remove these samples
4668 //TODO: scripts_to_be_removed_signal.emit(members);
4669 // delete the group in the .gig file including the
4670 // samples that belong to the group
4671 file->DeleteScriptGroup(group);
4672 // notify that we're done with removal
4673 //TODO: scripts_removed_signal.emit();
4674 file_changed();
4675 } else if (script) {
4676 // notify everybody that we're going to remove this sample
4677 //TODO: std::list<gig::Script*> lscripts;
4678 //TODO: lscripts.push_back(script);
4679 //TODO: scripts_to_be_removed_signal.emit(lscripts);
4680 // remove sample from the .gig file
4681 script->GetGroup()->DeleteScript(script);
4682 // notify that we're done with removal
4683 //TODO: scripts_removed_signal.emit();
4684 dimreg_changed();
4685 file_changed();
4686 }
4687 // remove respective row(s) from samples tree view
4688 m_refScriptsTreeModel->erase(it);
4689 } catch (RIFF::Exception e) {
4690 // pretend we're done with removal (i.e. to avoid dead locks)
4691 //TODO: scripts_removed_signal.emit();
4692 // show error message
4693 Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
4694 msg.run();
4695 }
4696 }
4697 }
4698
4699 void MainWindow::on_action_add_group() {
4700 static int __sample_indexer = 0;
4701 if (!file) return;
4702 gig::Group* group = file->AddGroup();
4703 group->Name = gig_from_utf8(_("Unnamed Group"));
4704 if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
4705 __sample_indexer++;
4706 // update sample tree view
4707 Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
4708 Gtk::TreeModel::Row rowGroup = *iterGroup;
4709 rowGroup[m_SamplesModel.m_col_name] = gig_to_utf8(group->Name);
4710 rowGroup[m_SamplesModel.m_col_sample] = NULL;
4711 rowGroup[m_SamplesModel.m_col_group] = group;
4712 file_changed();
4713 }
4714
4715 void MainWindow::on_action_replace_sample() {
4716 add_or_replace_sample(true);
4717 }
4718
4719 void MainWindow::on_action_add_sample() {
4720 add_or_replace_sample(false);
4721 }
4722
4723 void MainWindow::add_or_replace_sample(bool replace) {
4724 if (!file) return;
4725
4726 // get selected group (and probably selected sample)
4727 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
4728 std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
4729 if (rows.empty()) return;
4730 Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
4731 if (!it) return;
4732 Gtk::TreeModel::Row row = *it;
4733 gig::Sample* sample = NULL;
4734 gig::Group* group = row[m_SamplesModel.m_col_group];
4735 if (!group) { // not a group, but a sample is selected (probably)
4736 if (replace) sample = row[m_SamplesModel.m_col_sample];
4737 if (!row[m_SamplesModel.m_col_sample]) return;
4738 it = row.parent(); // resolve parent (that is the sample's group)
4739 if (!it) return;
4740 if (!replace) row = *it;
4741 group = (*it)[m_SamplesModel.m_col_group];
4742 if (!group) return;
4743 }
4744 if (replace && !sample) return;
4745
4746 // show 'browse for file' dialog
4747 Gtk::FileChooserDialog dialog(*this, replace ? _("Replace Sample with") : _("Add Sample(s)"));
4748 #if HAS_GTKMM_STOCK
4749 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4750 dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
4751 #else
4752 dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4753 dialog.add_button(_("_Open"), Gtk::RESPONSE_OK);
4754 #endif
4755 dialog.set_select_multiple(!replace); // allow multi audio file selection only when adding new samples, does not make sense when replacing a specific sample
4756
4757 // matches all file types supported by libsndfile
4758 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
4759 Gtk::FileFilter soundfilter;
4760 #else
4761 Glib::RefPtr<Gtk::FileFilter> soundfilter = Gtk::FileFilter::create();
4762 #endif
4763 const char* const supportedFileTypes[] = {
4764 "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",
4765 "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",
4766 "*.svx", "*.SVX", "*.sf", "*.SF", "*.voc", "*.VOC", "*.w64",
4767 "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",
4768 "*.caf", "*.CAF", NULL
4769 };
4770 const char* soundfiles = _("Sound Files");
4771 const char* allfiles = _("All Files");
4772 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
4773 for (int i = 0; supportedFileTypes[i]; i++)
4774 soundfilter.add_pattern(supportedFileTypes[i]);
4775 soundfilter.set_name(soundfiles);
4776
4777 // matches every file
4778 Gtk::FileFilter allpassfilter;
4779 allpassfilter.add_pattern("*.*");
4780 allpassfilter.set_name(allfiles);
4781 #else
4782 for (int i = 0; supportedFileTypes[i]; i++)
4783 soundfilter->add_pattern(supportedFileTypes[i]);
4784 soundfilter->set_name(soundfiles);
4785
4786 // matches every file
4787 Glib::RefPtr<Gtk::FileFilter> allpassfilter = Gtk::FileFilter::create();
4788 allpassfilter->add_pattern("*.*");
4789 allpassfilter->set_name(allfiles);
4790 #endif
4791 dialog.add_filter(soundfilter);
4792 dialog.add_filter(allpassfilter);
4793 if (current_sample_dir != "") {
4794 dialog.set_current_folder(current_sample_dir);
4795 }
4796 if (dialog.run() == Gtk::RESPONSE_OK) {
4797 dialog.hide();
4798 current_sample_dir = dialog.get_current_folder();
4799 Glib::ustring error_files;
4800 std::vector<std::string> filenames = dialog.get_filenames();
4801 for (std::vector<std::string>::iterator iter = filenames.begin();
4802 iter != filenames.end(); ++iter) {
4803 printf("Adding sample %s\n",(*iter).c_str());
4804 // use libsndfile to retrieve file information
4805 SF_INFO info;
4806 info.format = 0;
4807 SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
4808 try {
4809 if (!hFile) throw std::string(_("could not open file"));
4810 int bitdepth;
4811 switch (info.format & 0xff) {
4812 case SF_FORMAT_PCM_S8:
4813 case SF_FORMAT_PCM_16:
4814 case SF_FORMAT_PCM_U8:
4815 bitdepth = 16;
4816 break;
4817 case SF_FORMAT_PCM_24:
4818 case SF_FORMAT_PCM_32:
4819 case SF_FORMAT_FLOAT:
4820 case SF_FORMAT_DOUBLE:
4821 bitdepth = 24;
4822 break;
4823 default:
4824 sf_close(hFile); // close sound file
4825 throw std::string(_("format not supported")); // unsupported subformat (yet?)
4826 }
4827 // add a new sample to the .gig file (if adding is requested actually)
4828 if (!replace) sample = file->AddSample();
4829 // file name without path
4830 Glib::ustring filename = Glib::filename_display_basename(*iter);
4831 // remove file extension if there is one
4832 for (int i = 0; supportedFileTypes[i]; i++) {
4833 if (Glib::str_has_suffix(filename, supportedFileTypes[i] + 1)) {
4834 filename.erase(filename.length() - strlen(supportedFileTypes[i] + 1));
4835 break;
4836 }
4837 }
4838 sample->pInfo->Name = gig_from_utf8(filename);
4839 sample->Channels = info.channels;
4840 sample->BitDepth = bitdepth;
4841 sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;
4842 sample->SamplesPerSecond = info.samplerate;
4843 sample->AverageBytesPerSecond = sample->FrameSize * sample->SamplesPerSecond;
4844 sample->BlockAlign = sample->FrameSize;
4845 sample->SamplesTotal = info.frames;
4846
4847 SF_INSTRUMENT instrument;
4848 if (sf_command(hFile, SFC_GET_INSTRUMENT,
4849 &instrument, sizeof(instrument)) != SF_FALSE)
4850 {
4851 sample->MIDIUnityNote = instrument.basenote;
4852 sample->FineTune = instrument.detune;
4853
4854 if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {
4855 sample->Loops = 1;
4856
4857 switch (instrument.loops[0].mode) {
4858 case SF_LOOP_FORWARD:
4859 sample->LoopType = gig::loop_type_normal;
4860 break;
4861 case SF_LOOP_BACKWARD:
4862 sample->LoopType = gig::loop_type_backward;
4863 break;
4864 case SF_LOOP_ALTERNATING:
4865 sample->LoopType = gig::loop_type_bidirectional;
4866 break;
4867 }
4868 sample->LoopStart = instrument.loops[0].start;
4869 sample->LoopEnd = instrument.loops[0].end;
4870 sample->LoopPlayCount = instrument.loops[0].count;
4871 sample->LoopSize = sample->LoopEnd - sample->LoopStart + 1;
4872 }
4873 }
4874
4875 // schedule resizing the sample (which will be done
4876 // physically when File::Save() is called)
4877 sample->Resize(info.frames);
4878 // make sure sample is part of the selected group
4879 if (!replace) group->AddSample(sample);
4880 // schedule that physical resize and sample import
4881 // (data copying), performed when "Save" is requested
4882 SampleImportItem sched_item;
4883 sched_item.gig_sample = sample;
4884 sched_item.sample_path = *iter;
4885 m_SampleImportQueue[sample] = sched_item;
4886 // add sample to the tree view
4887 if (replace) {
4888 row[m_SamplesModel.m_col_name] = gig_to_utf8(sample->pInfo->Name);
4889 } else {
4890 Gtk::TreeModel::iterator iterSample =
4891 m_refSamplesTreeModel->append(row.children());
4892 Gtk::TreeModel::Row rowSample = *iterSample;
4893 rowSample[m_SamplesModel.m_col_name] =
4894 gig_to_utf8(sample->pInfo->Name);
4895 rowSample[m_SamplesModel.m_col_sample] = sample;
4896 rowSample[m_SamplesModel.m_col_group] = NULL;
4897 }
4898 // close sound file
4899 sf_close(hFile);
4900 file_changed();
4901 } catch (std::string what) { // remember the files that made trouble (and their cause)
4902 if (!error_files.empty()) error_files += "\n";
4903 error_files += *iter += " (" + what + ")";
4904 }
4905 }
4906 // show error message box when some file(s) could not be opened / added
4907 if (!error_files.empty()) {
4908 Glib::ustring txt =
4909 (replace
4910 ? _("Failed to replace sample with:\n")
4911 : _("Could not add the following sample(s):\n"))
4912 + error_files;
4913 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
4914 msg.run();
4915 }
4916 }
4917 }
4918
4919 void MainWindow::on_action_replace_all_samples_in_all_groups()
4920 {
4921 if (!file) return;
4922 Gtk::FileChooserDialog dialog(*this, _("Select Folder"),
4923 Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
4924 const char* str =
4925 _("This is a very specific function. It tries to replace all samples "
4926 "in the current gig file by samples located in the chosen "
4927 "directory.\n\n"
4928 "It works like this: For each sample in the gig file, it tries to "
4929 "find a sample file in the selected directory with the same name as "
4930 "the sample in the gig file. Optionally, you can add a filename "
4931 "extension below, which will be added to the filename expected to be "
4932 "found. That is, assume you have a gig file with a sample called "
4933 "'Snare', if you enter '.wav' below (like it's done by default), it "
4934 "expects to find a sample file called 'Snare.wav' and will replace "
4935 "the sample in the gig file accordingly. If you don't need an "
4936 "extension, blank the field below. Any gig sample where no "
4937 "appropriate sample file could be found will be reported and left "
4938 "untouched.\n");
4939 #if GTKMM_MAJOR_VERSION < 3
4940 view::WrapLabel description(str);
4941 #else
4942 Gtk::Label description(str);
4943 description.set_line_wrap();
4944 #endif
4945 HBox entryArea;
4946 Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
4947 Gtk::Entry postfixEntryBox;
4948 postfixEntryBox.set_text(".wav");
4949 entryArea.pack_start(entryLabel);
4950 entryArea.pack_start(postfixEntryBox);
4951 #if USE_GTKMM_BOX
4952 dialog.get_content_area()->pack_start(description, Gtk::PACK_SHRINK);
4953 dialog.get_content_area()->pack_start(entryArea, Gtk::PACK_SHRINK);
4954 #else
4955 dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);
4956 dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
4957 #endif
4958 description.show();
4959
4960 #if HAS_GTKMM_SHOW_ALL_CHILDREN
4961 entryArea.show_all();
4962 #else
4963 entryArea.show();
4964 #endif
4965
4966 #if HAS_GTKMM_STOCK
4967 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
4968 #else
4969 dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
4970 #endif
4971 dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
4972 dialog.set_select_multiple(false);
4973 if (current_sample_dir != "") {
4974 dialog.set_current_folder(current_sample_dir);
4975 }
4976 if (dialog.run() == Gtk::RESPONSE_OK)
4977 {
4978 dialog.hide();
4979 current_sample_dir = dialog.get_current_folder();
4980 Glib::ustring error_files;
4981 std::string folder = dialog.get_filename();
4982 for (gig::Sample* sample = file->GetFirstSample();
4983 sample; sample = file->GetNextSample())
4984 {
4985 std::string filename =
4986 folder + G_DIR_SEPARATOR_S +
4987 Glib::filename_from_utf8(gig_to_utf8(sample->pInfo->Name) +
4988 postfixEntryBox.get_text());
4989 SF_INFO info;
4990 info.format = 0;
4991 SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
4992 try
4993 {
4994 if (!hFile) throw std::string(_("could not open file"));
4995 switch (info.format & 0xff) {
4996 case SF_FORMAT_PCM_S8:
4997 case SF_FORMAT_PCM_16:
4998 case SF_FORMAT_PCM_U8:
4999 case SF_FORMAT_PCM_24:
5000 case SF_FORMAT_PCM_32:
5001 case SF_FORMAT_FLOAT:
5002 case SF_FORMAT_DOUBLE:
5003 break;
5004 default:
5005 sf_close(hFile);
5006 throw std::string(_("format not supported"));
5007 }
5008 SampleImportItem sched_item;
5009 sched_item.gig_sample = sample;
5010 sched_item.sample_path = filename;
5011 m_SampleImportQueue[sample] = sched_item;
5012 sf_close(hFile);
5013 file_changed();
5014 }
5015 catch (std::string what)
5016 {
5017 if (!error_files.empty()) error_files += "\n";
5018 error_files += Glib::filename_to_utf8(filename) +
5019 " (" + what + ")";
5020 }
5021 }
5022 // show error message box when some file(s) could not be opened / added
5023 if (!error_files.empty()) {
5024 Glib::ustring txt =
5025 _("Could not replace the following sample(s):\n") + error_files;
5026 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
5027 msg.run();
5028 }
5029 }
5030 }
5031
5032 void MainWindow::on_action_remove_sample() {
5033 if (!file) return;
5034 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
5035 std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5036 for (int r = rows.size() - 1; r >= 0; --r) {
5037 Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[r]);
5038 if (!it) continue;
5039 Gtk::TreeModel::Row row = *it;
5040 gig::Group* group = row[m_SamplesModel.m_col_group];
5041 gig::Sample* sample = row[m_SamplesModel.m_col_sample];
5042 Glib::ustring name = row[m_SamplesModel.m_col_name];
5043 try {
5044 // remove group or sample from the gig file
5045 if (group) {
5046 // temporarily remember the samples that belong to
5047 // that group (we need that to clean the queue)
5048 std::list<gig::Sample*> members;
5049 for (gig::Sample* pSample = group->GetFirstSample();
5050 pSample; pSample = group->GetNextSample()) {
5051 members.push_back(pSample);
5052 }
5053 // notify everybody that we're going to remove these samples
5054 samples_to_be_removed_signal.emit(members);
5055 // delete the group in the .gig file including the
5056 // samples that belong to the group
5057 file->DeleteGroup(group);
5058 // notify that we're done with removal
5059 samples_removed_signal.emit();
5060 // if sample(s) were just previously added, remove
5061 // them from the import queue
5062 for (std::list<gig::Sample*>::iterator member = members.begin();
5063 member != members.end(); ++member)
5064 {
5065 if (m_SampleImportQueue.count(*member)) {
5066 printf("Removing previously added sample '%s' from group '%s'\n",
5067 m_SampleImportQueue[sample].sample_path.c_str(), name.c_str());
5068 m_SampleImportQueue.erase(*member);
5069 }
5070 }
5071 file_changed();
5072 } else if (sample) {
5073 // notify everybody that we're going to remove this sample
5074 std::list<gig::Sample*> lsamples;
5075 lsamples.push_back(sample);
5076 samples_to_be_removed_signal.emit(lsamples);
5077 // remove sample from the .gig file
5078 file->DeleteSample(sample);
5079 // notify that we're done with removal
5080 samples_removed_signal.emit();
5081 // if sample was just previously added, remove it from
5082 // the import queue
5083 if (m_SampleImportQueue.count(sample)) {
5084 printf("Removing previously added sample '%s'\n",
5085 m_SampleImportQueue[sample].sample_path.c_str());
5086 m_SampleImportQueue.erase(sample);
5087 }
5088 dimreg_changed();
5089 file_changed();
5090 }
5091 // remove respective row(s) from samples tree view
5092 m_refSamplesTreeModel->erase(it);
5093 } catch (RIFF::Exception e) {
5094 // pretend we're done with removal (i.e. to avoid dead locks)
5095 samples_removed_signal.emit();
5096 // show error message
5097 Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
5098 msg.run();
5099 }
5100 }
5101 }
5102
5103 void MainWindow::on_action_remove_unused_samples() {
5104 if (!file) return;
5105
5106 // collect all samples that are not referenced by any instrument
5107 std::list<gig::Sample*> lsamples = unusedSamples(file);
5108 if (lsamples.empty()) return;
5109
5110 // notify everybody that we're going to remove these samples
5111 samples_to_be_removed_signal.emit(lsamples);
5112
5113 // remove collected samples
5114 try {
5115 for (std::list<gig::Sample*>::iterator itSample = lsamples.begin();
5116 itSample != lsamples.end(); ++itSample)
5117 {
5118 gig::Sample* sample = *itSample;
5119 // remove sample from the .gig file
5120 file->DeleteSample(sample);
5121 // if sample was just previously added, remove it from the import queue
5122 if (m_SampleImportQueue.count(sample)) {
5123 printf("Removing previously added sample '%s'\n",
5124 m_SampleImportQueue[sample].sample_path.c_str());
5125 m_SampleImportQueue.erase(sample);
5126 }
5127 }
5128 } catch (RIFF::Exception e) {
5129 // show error message
5130 Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
5131 msg.run();
5132 }
5133
5134 // notify everybody that we're done with removal
5135 samples_removed_signal.emit();
5136
5137 dimreg_changed();
5138 file_changed();
5139 __refreshEntireGUI();
5140 }
5141
5142 // see comment on on_sample_treeview_drag_begin()
5143 void MainWindow::on_scripts_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
5144 {
5145 first_call_to_drag_data_get = true;
5146 }
5147
5148 void MainWindow::on_scripts_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
5149 Gtk::SelectionData& selection_data, guint, guint)
5150 {
5151 if (!first_call_to_drag_data_get) return;
5152 first_call_to_drag_data_get = false;
5153
5154 // get selected script
5155 gig::Script* script = NULL;
5156 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewScripts.get_selection();
5157 Gtk::TreeModel::iterator it = sel->get_selected();
5158 if (it) {
5159 Gtk::TreeModel::Row row = *it;
5160 script = row[m_ScriptsModel.m_col_script];
5161 }
5162 // pass the gig::Script as pointer
5163 selection_data.set(selection_data.get_target(), 0/*unused*/,
5164 (const guchar*)&script,
5165 sizeof(script)/*length of data in bytes*/);
5166 }
5167
5168 // see comment on on_sample_treeview_drag_begin()
5169 void MainWindow::on_instruments_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
5170 {
5171 first_call_to_drag_data_get = true;
5172 }
5173
5174 void MainWindow::on_instruments_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
5175 Gtk::SelectionData& selection_data, guint, guint)
5176 {
5177 if (!first_call_to_drag_data_get) return;
5178 first_call_to_drag_data_get = false;
5179
5180 // get selected source instrument
5181 gig::Instrument* src = NULL;
5182 {
5183 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
5184 std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5185 if (!rows.empty()) {
5186 // convert index of visual selection (i.e. if filtered) to index of model
5187 Gtk::TreeModel::Path path = m_refInstrumentsModelFilter->convert_path_to_child_path(rows[0]);
5188 Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(path);
5189 if (it) {
5190 Gtk::TreeModel::Row row = *it;
5191 src = row[m_InstrumentsModel.m_col_instr];
5192 }
5193 }
5194 }
5195 if (!src) return;
5196
5197 // pass the source gig::Instrument as pointer
5198 selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&src,
5199 sizeof(src)/*length of data in bytes*/);
5200 }
5201
5202 void MainWindow::on_instruments_treeview_drop_drag_data_received(
5203 const Glib::RefPtr<Gdk::DragContext>& context, int x, int y,
5204 const Gtk::SelectionData& selection_data, guint, guint time)
5205 {
5206 gig::Instrument* src = *((gig::Instrument**) selection_data.get_data());
5207 if (!src || selection_data.get_length() != sizeof(gig::Instrument*))
5208 return;
5209
5210 gig::Instrument* dst = NULL;
5211 {
5212 Gtk::TreeModel::Path path;
5213 const bool found = m_TreeViewInstruments.get_path_at_pos(x, y, path);
5214 if (!found) return;
5215
5216 // convert index of visual selection (i.e. if filtered) to index of model
5217 path = m_refInstrumentsModelFilter->convert_path_to_child_path(path);
5218 if (!path) return;
5219
5220 Gtk::TreeModel::iterator iter = m_refInstrumentsTreeModel->get_iter(path);
5221 if (!iter) return;
5222 Gtk::TreeModel::Row row = *iter;
5223 dst = row[m_InstrumentsModel.m_col_instr];
5224 }
5225 if (!dst) return;
5226
5227 //printf("dragdrop received src=%s dst=%s\n", src->pInfo->Name.c_str(), dst->pInfo->Name.c_str());
5228 src->MoveTo(dst);
5229 __refreshEntireGUI();
5230 select_instrument(src);
5231 }
5232
5233 // For some reason drag_data_get gets called two times for each
5234 // drag'n'drop (at least when target is an Entry). This work-around
5235 // makes sure the code in drag_data_get and drop_drag_data_received is
5236 // only executed once, as drag_begin only gets called once.
5237 void MainWindow::on_sample_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
5238 {
5239 first_call_to_drag_data_get = true;
5240 }
5241
5242 void MainWindow::on_sample_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
5243 Gtk::SelectionData& selection_data, guint, guint)
5244 {
5245 if (!first_call_to_drag_data_get) return;
5246 first_call_to_drag_data_get = false;
5247
5248 // get selected sample
5249 gig::Sample* sample = NULL;
5250 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
5251 std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5252 if (!rows.empty()) {
5253 Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
5254 if (it) {
5255 Gtk::TreeModel::Row row = *it;
5256 sample = row[m_SamplesModel.m_col_sample];
5257 }
5258 }
5259 // pass the gig::Sample as pointer
5260 selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&sample,
5261 sizeof(sample)/*length of data in bytes*/);
5262 }
5263
5264 void MainWindow::on_sample_label_drop_drag_data_received(
5265 const Glib::RefPtr<Gdk::DragContext>& context, int, int,
5266 const Gtk::SelectionData& selection_data, guint, guint time)
5267 {
5268 gig::Sample* sample = *((gig::Sample**) selection_data.get_data());
5269
5270 if (sample && selection_data.get_length() == sizeof(gig::Sample*)) {
5271 std::cout << "Drop received sample \"" <<
5272 sample->pInfo->Name << "\"" << std::endl;
5273 // drop success
5274 context->drop_reply(true, time);
5275
5276 //TODO: we should better move most of the following code to DimRegionEdit::set_sample()
5277
5278 // notify everybody that we're going to alter the region
5279 gig::Region* region = m_RegionChooser.get_region();
5280 region_to_be_changed_signal.emit(region);
5281
5282 // find the samplechannel dimension
5283 gig::dimension_def_t* stereo_dimension = 0;
5284 for (int i = 0 ; i < region->Dimensions ; i++) {
5285 if (region->pDimensionDefinitions[i].dimension ==
5286 gig::dimension_samplechannel) {
5287 stereo_dimension = &region->pDimensionDefinitions[i];
5288 break;
5289 }
5290 }
5291 bool channels_changed = false;
5292 if (sample->Channels == 1 && stereo_dimension) {
5293 // remove the samplechannel dimension
5294 /* commented out, because it makes it impossible building up an instrument from scratch using two separate L/R samples
5295 region->DeleteDimension(stereo_dimension);
5296 channels_changed = true;
5297 region_changed();
5298 */
5299 }
5300 dimreg_edit.set_sample(
5301 sample,
5302 is_copy_samples_unity_note_enabled(),
5303 is_copy_samples_fine_tune_enabled(),
5304 is_copy_samples_loop_enabled()
5305 );
5306
5307 if (sample->Channels == 2 && !stereo_dimension) {
5308 // add samplechannel dimension
5309 gig::dimension_def_t dim;
5310 dim.dimension = gig::dimension_samplechannel;
5311 dim.bits = 1;
5312 dim.zones = 2;
5313 region->AddDimension(&dim);
5314 channels_changed = true;
5315 region_changed();
5316 }
5317 if (channels_changed) {
5318 // unmap all samples with wrong number of channels
5319 // TODO: maybe there should be a warning dialog for this
5320 for (int i = 0 ; i < region->DimensionRegions ; i++) {
5321 gig::DimensionRegion* d = region->pDimensionRegions[i];
5322 if (d->pSample && d->pSample->Channels != sample->Channels) {
5323 gig::Sample* oldref = d->pSample;
5324 d->pSample = NULL;
5325 sample_ref_changed_signal.emit(oldref, NULL);
5326 }
5327 }
5328 }
5329
5330 // notify we're done with altering
5331 region_changed_signal.emit(region);
5332
5333 file_changed();
5334
5335 return;
5336 }
5337 // drop failed
5338 context->drop_reply(false, time);
5339 }
5340
5341 void MainWindow::sample_name_changed(const Gtk::TreeModel::Path& path,
5342 const Gtk::TreeModel::iterator& iter) {
5343 if (!iter) return;
5344 Gtk::TreeModel::Row row = *iter;
5345 Glib::ustring name = row[m_SamplesModel.m_col_name];
5346 gig::Group* group = row[m_SamplesModel.m_col_group];
5347 gig::Sample* sample = row[m_SamplesModel.m_col_sample];
5348 gig::String gigname(gig_from_utf8(name));
5349 if (group) {
5350 if (group->Name != gigname) {
5351 group->Name = gigname;
5352 printf("group name changed\n");
5353 file_changed();
5354 }
5355 } else if (sample) {
5356 if (sample->pInfo->Name != gigname) {
5357 sample->pInfo->Name = gigname;
5358 printf("sample name changed\n");
5359 file_changed();
5360 }
5361 }
5362 // change name in the sample properties window
5363 if (sampleProps.get_sample() == sample && sample) {
5364 sampleProps.set_sample(sample);
5365 }
5366 }
5367
5368 void MainWindow::script_name_changed(const Gtk::TreeModel::Path& path,
5369 const Gtk::TreeModel::iterator& iter) {
5370 if (!iter) return;
5371 Gtk::TreeModel::Row row = *iter;
5372 Glib::ustring name = row[m_ScriptsModel.m_col_name];
5373 gig::ScriptGroup* group = row[m_ScriptsModel.m_col_group];
5374 gig::Script* script = row[m_ScriptsModel.m_col_script];
5375 gig::String gigname(gig_from_utf8(name));
5376 if (group) {
5377 if (group->Name != gigname) {
5378 group->Name = gigname;
5379 printf("script group name changed\n");
5380 file_changed();
5381 }
5382 } else if (script) {
5383 if (script->Name != gigname) {
5384 script->Name = gigname;
5385 printf("script name changed\n");
5386 file_changed();
5387 }
5388 }
5389 }
5390
5391 void MainWindow::script_double_clicked(const Gtk::TreeModel::Path& path,
5392 Gtk::TreeViewColumn* column)
5393 {
5394 Gtk::TreeModel::iterator iter = m_refScriptsTreeModel->get_iter(path);
5395 if (!iter) return;
5396 Gtk::TreeModel::Row row = *iter;
5397 gig::Script* script = row[m_ScriptsModel.m_col_script];
5398 editScript(script);
5399 }
5400
5401 void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,
5402 const Gtk::TreeModel::iterator& iter) {
5403 if (!iter) return;
5404 Gtk::TreeModel::Row row = *iter;
5405 Glib::ustring name = row[m_InstrumentsModel.m_col_name];
5406
5407 #if !USE_GTKMM_BUILDER
5408 // change name in instrument menu
5409 int index = path[0];
5410 const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
5411 if (index < children.size()) {
5412 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 16) || GTKMM_MAJOR_VERSION > 2
5413 static_cast<Gtk::RadioMenuItem*>(children[index])->set_label(name);
5414 #else
5415 remove_instrument_from_menu(index);
5416 Gtk::RadioMenuItem* item = add_instrument_to_menu(name, index);
5417 item->set_active();
5418 #endif
5419 }
5420 #endif
5421
5422 // change name in gig
5423 gig::Instrument* instrument = row[m_InstrumentsModel.m_col_instr];
5424 gig::String gigname(gig_from_utf8(name));
5425 if (instrument && instrument->pInfo->Name != gigname) {
5426 instrument->pInfo->Name = gigname;
5427
5428 // change name in the instrument properties window
5429 if (instrumentProps.get_instrument() == instrument) {
5430 instrumentProps.update_name();
5431 }
5432
5433 file_changed();
5434 }
5435 }
5436
5437 bool MainWindow::instrument_row_visible(const Gtk::TreeModel::const_iterator& iter) {
5438 if (!iter)
5439 return true;
5440
5441 Glib::ustring pattern = m_searchText.get_text().lowercase();
5442 trim(pattern);
5443 if (pattern.empty()) return true;
5444
5445 #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION > 24)
5446 //HACK: on GTKMM4 development branch const_iterator cannot be easily converted to iterator, probably going to be fixed before final GTKMM4 release though.
5447 Gtk::TreeModel::Row row = **(Gtk::TreeModel::iterator*)(&iter);
5448 #else
5449 Gtk::TreeModel::Row row = *iter;
5450 #endif
5451 Glib::ustring name = row[m_InstrumentsModel.m_col_name];
5452 name = name.lowercase();
5453
5454 std::vector<Glib::ustring> tokens = Glib::Regex::split_simple(" ", pattern);
5455 for (int t = 0; t < tokens.size(); ++t)
5456 if (name.find(tokens[t]) == Glib::ustring::npos)
5457 return false;
5458
5459 return true;
5460 }
5461
5462 void MainWindow::on_action_combine_instruments() {
5463 CombineInstrumentsDialog* d = new CombineInstrumentsDialog(*this, file);
5464
5465 // take over selection from instruments list view for the combine dialog's
5466 // list view as pre-selection
5467 std::set<int> indeces;
5468 {
5469 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewInstruments.get_selection();
5470 std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5471 for (int r = 0; r < rows.size(); ++r) {
5472 // convert index of visual selection (i.e. if filtered) to index of model
5473 Gtk::TreeModel::Path path = m_refInstrumentsModelFilter->convert_path_to_child_path(rows[r]);
5474 Gtk::TreeModel::iterator it = m_refInstrumentsTreeModel->get_iter(path);
5475 if (it) {
5476 Gtk::TreeModel::Row row = *it;
5477 int index = row[m_InstrumentsModel.m_col_nr];
5478 indeces.insert(index);
5479 }
5480 }
5481 }
5482 d->setSelectedInstruments(indeces);
5483
5484 #if HAS_GTKMM_SHOW_ALL_CHILDREN
5485 d->show_all();
5486 #else
5487 d->show();
5488 #endif
5489 d->run();
5490 if (d->fileWasChanged()) {
5491 // update GUI with new instrument just created
5492 add_instrument(d->newCombinedInstrument());
5493 }
5494 delete d;
5495 }
5496
5497 void MainWindow::on_action_view_references() {
5498 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
5499 std::vector<Gtk::TreeModel::Path> rows = sel->get_selected_rows();
5500 if (rows.empty()) return;
5501 Gtk::TreeModel::iterator it = m_refSamplesTreeModel->get_iter(rows[0]);
5502 if (!it) return;
5503 Gtk::TreeModel::Row row = *it;
5504 gig::Sample* sample = row[m_SamplesModel.m_col_sample];
5505 if (!sample) return;
5506
5507 ReferencesView* d = new ReferencesView(*this);
5508 d->setSample(sample);
5509 d->dimension_region_selected.connect(
5510 sigc::mem_fun(*this, &MainWindow::select_dimension_region)
5511 );
5512 #if HAS_GTKMM_SHOW_ALL_CHILDREN
5513 d->show_all();
5514 #else
5515 d->show();
5516 #endif
5517 d->resize(500, 400);
5518 d->run();
5519 delete d;
5520 }
5521
5522 void MainWindow::mergeFiles(const std::vector<std::string>& filenames) {
5523 struct _Source {
5524 std::vector<RIFF::File*> riffs;
5525 std::vector<gig::File*> gigs;
5526
5527 ~_Source() {
5528 for (int k = 0; k < gigs.size(); ++k) delete gigs[k];
5529 for (int k = 0; k < riffs.size(); ++k) delete riffs[k];
5530 riffs.clear();
5531 gigs.clear();
5532 }
5533 } sources;
5534
5535 if (filenames.empty())
5536 throw RIFF::Exception(_("No files selected, so nothing done."));
5537
5538 // first open all input files (to avoid output file corruption)
5539 int i;
5540 try {
5541 for (i = 0; i < filenames.size(); ++i) {
5542 const std::string& filename = filenames[i];
5543 printf("opening file=%s\n", filename.c_str());
5544
5545 RIFF::File* riff = new RIFF::File(filename);
5546 sources.riffs.push_back(riff);
5547
5548 gig::File* gig = new gig::File(riff);
5549 sources.gigs.push_back(gig);
5550 }
5551 } catch (RIFF::Exception e) {
5552 throw RIFF::Exception(
5553 _("Error occurred while opening '") +
5554 filenames[i] +
5555 "': " +
5556 e.Message
5557 );
5558 } catch (...) {
5559 throw RIFF::Exception(
5560 _("Unknown exception occurred while opening '") +
5561 filenames[i] + "'"
5562 );
5563 }
5564
5565 // now merge the opened .gig files to the main .gig file currently being
5566 // open in gigedit
5567 try {
5568 for (i = 0; i < filenames.size(); ++i) {
5569 const std::string& filename = filenames[i];
5570 printf("merging file=%s\n", filename.c_str());
5571 assert(i < sources.gigs.size());
5572
5573 this->file->AddContentOf(sources.gigs[i]);
5574 }
5575 } catch (RIFF::Exception e) {
5576 throw RIFF::Exception(
5577 _("Error occurred while merging '") +
5578 filenames[i] +
5579 "': " +
5580 e.Message
5581 );
5582 } catch (...) {
5583 throw RIFF::Exception(
5584 _("Unknown exception occurred while merging '") +
5585 filenames[i] + "'"
5586 );
5587 }
5588
5589 // Finally save gig file persistently to disk ...
5590 //NOTE: requires that this gig file already has a filename !
5591 {
5592 std::cout << "Saving file\n" << std::flush;
5593 file_structure_to_be_changed_signal.emit(this->file);
5594
5595 progress_dialog = new ProgressDialog( //FIXME: memory leak!
5596 _("Saving") + Glib::ustring(" '") +
5597 Glib::filename_display_basename(this->filename) + "' ...",
5598 *this
5599 );
5600 #if HAS_GTKMM_SHOW_ALL_CHILDREN
5601 progress_dialog->show_all();
5602 #else
5603 progress_dialog->show();
5604 #endif
5605 saver = new Saver(this->file); //FIXME: memory leak!
5606 saver->signal_progress().connect(
5607 sigc::mem_fun(*this, &MainWindow::on_saver_progress));
5608 saver->signal_finished().connect(
5609 sigc::mem_fun(*this, &MainWindow::on_saver_finished));
5610 saver->signal_error().connect(
5611 sigc::mem_fun(*this, &MainWindow::on_saver_error));
5612 saver->launch();
5613 }
5614 }
5615
5616 void MainWindow::on_action_merge_files() {
5617 if (this->file->GetFileName().empty()) {
5618 Glib::ustring txt = _(
5619 "You seem to have a new .gig file open that has not been saved "
5620 "yet. You must save it somewhere before starting to merge it with "
5621 "other .gig files though, because during the merge operation the "
5622 "other files' sample data must be written on file level to the "
5623 "target .gig file."
5624 );
5625 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
5626 msg.run();
5627 return;
5628 }
5629
5630 Gtk::FileChooserDialog dialog(*this, _("Merge .gig files"));
5631 #if HAS_GTKMM_STOCK
5632 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
5633 #else
5634 dialog.add_button(_("_Cancel"), Gtk::RESPONSE_CANCEL);
5635 #endif
5636 dialog.add_button(_("Merge"), Gtk::RESPONSE_OK);
5637 dialog.set_default_response(Gtk::RESPONSE_CANCEL);
5638 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
5639 Gtk::FileFilter filter;
5640 filter.add_pattern("*.gig");
5641 #else
5642 Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
5643 filter->add_pattern("*.gig");
5644 #endif
5645 dialog.set_filter(filter);
5646 if (current_gig_dir != "") {
5647 dialog.set_current_folder(current_gig_dir);
5648 }
5649 dialog.set_select_multiple(true);
5650
5651 // show warning in the file picker dialog
5652 HBox descriptionArea;
5653 descriptionArea.set_spacing(15);
5654 Gtk::Image warningIcon;
5655 warningIcon.set_from_icon_name("dialog-warning",
5656 Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
5657 descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
5658 #if GTKMM_MAJOR_VERSION < 3
5659 view::WrapLabel description;
5660 #else
5661 Gtk::Label description;
5662 description.set_line_wrap();
5663 #endif
5664 description.set_markup(_(
5665 "\nSelect at least one .gig file that shall be merged to the .gig file "
5666 "currently being open in gigedit.\n\n"
5667 "<b>Please Note:</b> Merging with other files will modify your "
5668 "currently open .gig file on file level! And be aware that the current "
5669 "merge algorithm does not detect duplicate samples yet. So if you are "
5670 "merging files which are using equivalent sample data, those "
5671 "equivalent samples will currently be treated as separate samples and "
5672 "will accordingly be stored separately in the target .gig file!"
5673 ));
5674 descriptionArea.pack_start(description);
5675 #if USE_GTKMM_BOX
5676 # warning No description area implemented for dialog on GTKMM 3
5677 #else
5678 dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
5679 #endif
5680 #if HAS_GTKMM_SHOW_ALL_CHILDREN
5681 descriptionArea.show_all();
5682 #else
5683 descriptionArea.show();
5684 #endif
5685
5686 if (dialog.run() == Gtk::RESPONSE_OK) {
5687 dialog.hide();
5688 #ifdef GLIB_THREADS
5689 printf("on_action_merge_files self=%p\n",
5690 static_cast<void*>(Glib::Threads::Thread::self()));
5691 #else
5692 std::cout << "on_action_merge_files self=" <<
5693 std::this_thread::get_id() << "\n";
5694 #endif
5695 std::vector<std::string> filenames = dialog.get_filenames();
5696
5697 // merge the selected files to the currently open .gig file
5698 try {
5699 mergeFiles(filenames);
5700 } catch (RIFF::Exception e) {
5701 Gtk::MessageDialog msg(*this, e.Message, false, Gtk::MESSAGE_ERROR);
5702 msg.run();
5703 }
5704
5705 // update GUI
5706 __refreshEntireGUI();
5707 }
5708 }
5709
5710 void MainWindow::set_file_is_shared(bool b) {
5711 this->file_is_shared = b;
5712
5713 if (file_is_shared) {
5714 m_AttachedStateLabel.set_label(_("live-mode"));
5715 m_AttachedStateImage.set(
5716 Gdk::Pixbuf::create_from_xpm_data(status_attached_xpm)
5717 );
5718 } else {
5719 m_AttachedStateLabel.set_label(_("stand-alone"));
5720 m_AttachedStateImage.set(
5721 Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)
5722 );
5723 }
5724
5725 {
5726 #if USE_GTKMM_BUILDER
5727 m_actionToggleSyncSamplerSelection->property_enabled() = b;
5728 #else
5729 Gtk::MenuItem* item = dynamic_cast<Gtk::MenuItem*>(
5730 uiManager->get_widget("/MenuBar/MenuSettings/SyncSamplerInstrumentSelection"));
5731 if (item) item->set_sensitive(b);
5732 #endif
5733 }
5734 }
5735
5736 void MainWindow::on_sample_ref_count_incremented(gig::Sample* sample, int offset) {
5737 if (!sample) return;
5738 sample_ref_count[sample] += offset;
5739 const int refcount = sample_ref_count[sample];
5740
5741 Glib::RefPtr<Gtk::TreeModel> model = m_TreeViewSamples.get_model();
5742 for (int g = 0; g < model->children().size(); ++g) {
5743 Gtk::TreeModel::Row rowGroup = model->children()[g];
5744 for (int s = 0; s < rowGroup.children().size(); ++s) {
5745 Gtk::TreeModel::Row rowSample = rowGroup.children()[s];
5746 if (rowSample[m_SamplesModel.m_col_sample] != sample) continue;
5747 rowSample[m_SamplesModel.m_col_refcount] = ToString(refcount) + " " + _("Refs.");
5748 rowSample[m_SamplesModel.m_color] = refcount ? "black" : "red";
5749 }
5750 }
5751 }
5752
5753 void MainWindow::on_sample_ref_changed(gig::Sample* oldSample, gig::Sample* newSample) {
5754 on_sample_ref_count_incremented(oldSample, -1);
5755 on_sample_ref_count_incremented(newSample, +1);
5756 }
5757
5758 void MainWindow::on_samples_to_be_removed(std::list<gig::Sample*> samples) {
5759 // just in case a new sample is added later with exactly the same memory
5760 // address, which would lead to incorrect refcount if not deleted here
5761 for (std::list<gig::Sample*>::const_iterator it = samples.begin();
5762 it != samples.end(); ++it)
5763 {
5764 sample_ref_count.erase(*it);
5765 }
5766 }
5767
5768 void MainWindow::show_samples_tab() {
5769 m_TreeViewNotebook.set_current_page(0);
5770 }
5771
5772 void MainWindow::show_intruments_tab() {
5773 m_TreeViewNotebook.set_current_page(1);
5774 }
5775
5776 void MainWindow::show_scripts_tab() {
5777 m_TreeViewNotebook.set_current_page(2);
5778 }
5779
5780 void MainWindow::select_instrument_by_dir(int dir) {
5781 if (!file) return;
5782 gig::Instrument* pInstrument = get_instrument();
5783 if (!pInstrument) {
5784 select_instrument( file->GetInstrument(0) );
5785 return;
5786 }
5787 for (int i = 0; file->GetInstrument(i); ++i) {
5788 if (file->GetInstrument(i) == pInstrument) {
5789 select_instrument( file->GetInstrument(i + dir) );
5790 return;
5791 }
5792 }
5793 }
5794
5795 void MainWindow::select_prev_instrument() {
5796 select_instrument_by_dir(-1);
5797 }
5798
5799 void MainWindow::select_next_instrument() {
5800 select_instrument_by_dir(1);
5801 }
5802
5803 void MainWindow::select_prev_region() {
5804 m_RegionChooser.select_prev_region();
5805 }
5806
5807 void MainWindow::select_next_region() {
5808 m_RegionChooser.select_next_region();
5809 }
5810
5811 void MainWindow::select_next_dim_rgn_zone() {
5812 if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5813 m_DimRegionChooser.select_next_dimzone();
5814 }
5815
5816 void MainWindow::select_prev_dim_rgn_zone() {
5817 if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5818 m_DimRegionChooser.select_prev_dimzone();
5819 }
5820
5821 void MainWindow::select_add_next_dim_rgn_zone() {
5822 m_DimRegionChooser.select_next_dimzone(true);
5823 }
5824
5825 void MainWindow::select_add_prev_dim_rgn_zone() {
5826 m_DimRegionChooser.select_prev_dimzone(true);
5827 }
5828
5829 void MainWindow::select_prev_dimension() {
5830 if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5831 m_DimRegionChooser.select_prev_dimension();
5832 }
5833
5834 void MainWindow::select_next_dimension() {
5835 if (m_DimRegionChooser.has_focus()) return; // avoid conflict with key stroke handler of DimenionRegionChooser
5836 m_DimRegionChooser.select_next_dimension();
5837 }
5838
5839 #define CLIPBOARD_DIMENSIONREGION_TARGET \
5840 ("libgig.DimensionRegion." + m_serializationArchive.rawDataFormat())
5841
5842 void MainWindow::copy_selected_dimrgn() {
5843 gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
5844 if (!pDimRgn) {
5845 updateClipboardPasteAvailable();
5846 updateClipboardCopyAvailable();
5847 return;
5848 }
5849
5850 std::vector<Gtk::TargetEntry> targets;
5851 targets.push_back( Gtk::TargetEntry(CLIPBOARD_DIMENSIONREGION_TARGET) );
5852
5853 Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5854 clipboard->set(
5855 targets,
5856 sigc::mem_fun(*this, &MainWindow::on_clipboard_get),
5857 sigc::mem_fun(*this, &MainWindow::on_clipboard_clear)
5858 );
5859
5860 m_serializationArchive.serialize(pDimRgn);
5861
5862 updateClipboardPasteAvailable();
5863 }
5864
5865 void MainWindow::paste_copied_dimrgn() {
5866 Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5867 clipboard->request_contents(
5868 CLIPBOARD_DIMENSIONREGION_TARGET,
5869 sigc::mem_fun(*this, &MainWindow::on_clipboard_received)
5870 );
5871 updateClipboardPasteAvailable();
5872 }
5873
5874 void MainWindow::adjust_clipboard_content() {
5875 MacroEditor* editor = new MacroEditor();
5876 editor->setMacro(&m_serializationArchive, true);
5877 editor->show();
5878 }
5879
5880 void MainWindow::updateClipboardPasteAvailable() {
5881 Glib::RefPtr<Gtk::Clipboard> clipboard = Gtk::Clipboard::get();
5882 clipboard->request_targets(
5883 sigc::mem_fun(*this, &MainWindow::on_clipboard_received_targets)
5884 );
5885 }
5886
5887 void MainWindow::updateClipboardCopyAvailable() {
5888 bool bDimensionRegionCopyIsPossible = m_DimRegionChooser.get_main_dimregion();
5889 #if USE_GTKMM_BUILDER
5890 m_actionCopyDimRgn->property_enabled() = bDimensionRegionCopyIsPossible;
5891 #else
5892 static_cast<Gtk::MenuItem*>(
5893 uiManager->get_widget("/MenuBar/MenuEdit/CopyDimRgn")
5894 )->set_sensitive(bDimensionRegionCopyIsPossible);
5895 #endif
5896 }
5897
5898 #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
5899 void MainWindow::on_clipboard_owner_change(Gdk::EventOwnerChange& event) {
5900 #else
5901 void MainWindow::on_clipboard_owner_change(GdkEventOwnerChange* event) {
5902 #endif
5903 updateClipboardPasteAvailable();
5904 }
5905
5906 void MainWindow::on_clipboard_get(Gtk::SelectionData& selection_data, guint /*info*/) {
5907 const std::string target = selection_data.get_target();
5908 if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
5909 selection_data.set(
5910 CLIPBOARD_DIMENSIONREGION_TARGET, 8 /* "format": probably unused*/,
5911 &m_serializationArchive.rawData()[0],
5912 m_serializationArchive.rawData().size()
5913 );
5914 } else {
5915 std::cerr << "Clipboard: content for unknown target '" << target << "' requested\n";
5916 }
5917 }
5918
5919 void MainWindow::on_clipboard_clear() {
5920 m_serializationArchive.clear();
5921 updateClipboardPasteAvailable();
5922 updateClipboardCopyAvailable();
5923 }
5924
5925 //NOTE: Might throw exception !!!
5926 void MainWindow::applyMacro(Serialization::Archive& macro) {
5927 gig::DimensionRegion* pDimRgn = m_DimRegionChooser.get_main_dimregion();
5928 if (!pDimRgn) return;
5929
5930 for (std::set<gig::DimensionRegion*>::iterator itDimReg = dimreg_edit.dimregs.begin();
5931 itDimReg != dimreg_edit.dimregs.end(); ++itDimReg)
5932 {
5933 gig::DimensionRegion* pDimRgn = *itDimReg;
5934 DimRegionChangeGuard(this, pDimRgn);
5935 macro.deserialize(pDimRgn);
5936 }
5937 //region_changed()
5938 file_changed();
5939 dimreg_changed();
5940 }
5941
5942 void MainWindow::on_clipboard_received(const Gtk::SelectionData& selection_data) {
5943 const std::string target = selection_data.get_target();
5944 if (target == CLIPBOARD_DIMENSIONREGION_TARGET) {
5945 Glib::ustring errorText;
5946 try {
5947 m_serializationArchive.decode(
5948 selection_data.get_data(), selection_data.get_length()
5949 );
5950 applyMacro(m_serializationArchive);
5951 } catch (Serialization::Exception e) {
5952 errorText = e.Message;
5953 } catch (...) {
5954 errorText = _("Unknown exception while pasting DimensionRegion");
5955 }
5956 if (!errorText.empty()) {
5957 Glib::ustring txt = _("Pasting DimensionRegion failed:\n") + errorText;
5958 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
5959 msg.run();
5960 }
5961 }
5962 }
5963
5964 void MainWindow::on_clipboard_received_targets(const std::vector<Glib::ustring>& targets) {
5965 const bool bDimensionRegionPasteIsPossible =
5966 std::find(targets.begin(), targets.end(),
5967 CLIPBOARD_DIMENSIONREGION_TARGET) != targets.end();
5968
5969 #if USE_GTKMM_BUILDER
5970 m_actionPasteDimRgn->property_enabled() = bDimensionRegionPasteIsPossible;
5971 m_actionAdjustClipboard->property_enabled() = bDimensionRegionPasteIsPossible;
5972 #else
5973 static_cast<Gtk::MenuItem*>(
5974 uiManager->get_widget("/MenuBar/MenuEdit/PasteDimRgn")
5975 )->set_sensitive(bDimensionRegionPasteIsPossible);
5976
5977 static_cast<Gtk::MenuItem*>(
5978 uiManager->get_widget("/MenuBar/MenuEdit/AdjustClipboard")
5979 )->set_sensitive(bDimensionRegionPasteIsPossible);
5980 #endif
5981 }
5982
5983 sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {
5984 return file_structure_to_be_changed_signal;
5985 }
5986
5987 sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_changed() {
5988 return file_structure_changed_signal;
5989 }
5990
5991 sigc::signal<void, std::list<gig::Sample*> >& MainWindow::signal_samples_to_be_removed() {
5992 return samples_to_be_removed_signal;
5993 }
5994
5995 sigc::signal<void>& MainWindow::signal_samples_removed() {
5996 return samples_removed_signal;
5997 }
5998
5999 sigc::signal<void, gig::Region*>& MainWindow::signal_region_to_be_changed() {
6000 return region_to_be_changed_signal;
6001 }
6002
6003 sigc::signal<void, gig::Region*>& MainWindow::signal_region_changed() {
6004 return region_changed_signal;
6005 }
6006
6007 sigc::signal<void, gig::Sample*>& MainWindow::signal_sample_changed() {
6008 return sample_changed_signal;
6009 }
6010
6011 sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& MainWindow::signal_sample_ref_changed() {
6012 return sample_ref_changed_signal;
6013 }
6014
6015 sigc::signal<void, gig::DimensionRegion*>& MainWindow::signal_dimreg_to_be_changed() {
6016 return dimreg_to_be_changed_signal;
6017 }
6018
6019 sigc::signal<void, gig::DimensionRegion*>& MainWindow::signal_dimreg_changed() {
6020 return dimreg_changed_signal;
6021 }
6022
6023 sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_note_on() {
6024 return note_on_signal;
6025 }
6026
6027 sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_note_off() {
6028 return note_off_signal;
6029 }
6030
6031 sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_hit() {
6032 return m_RegionChooser.signal_keyboard_key_hit();
6033 }
6034
6035 sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {
6036 return m_RegionChooser.signal_keyboard_key_released();
6037 }
6038
6039 sigc::signal<void, gig::Instrument*>& MainWindow::signal_switch_sampler_instrument() {
6040 return switch_sampler_instrument_signal;
6041 }

  ViewVC Help
Powered by ViewVC