/[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 3749 - (show annotations) (download)
Sun Feb 16 18:39:53 2020 UTC (4 years, 1 month ago) by schoenebeck
File size: 231343 byte(s)
* Script 'patch' variables editor: double click anywhere on a script's
  title row (or hitting <enter> while that row is selected) opens
  script source code editor for that double clicked script.

* Also show a tooltip and a pencil icon on such rows to make user
  visually aware about this feature.

* Bumped version (1.1.1.svn17).

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

  ViewVC Help
Powered by ViewVC