/[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 3737 - (show annotations) (download)
Sat Feb 1 20:39:39 2020 UTC (4 years, 2 months ago) by schoenebeck
File size: 231124 byte(s)
* NKSP: Added support for managing script 'patch' variables for each
  instrument; added a dedicated "Script" tab on right-hand side of Gigedit's
  main window with a list view to manage these variables.

* Bumped version (1.1.1.svn14).

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

  ViewVC Help
Powered by ViewVC