/[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 3821 - (show annotations) (download)
Tue Sep 1 16:45:06 2020 UTC (3 years, 6 months ago) by schoenebeck
File size: 234578 byte(s)
* Fixed double selection if instrument name filter was active while clicking
  an instrument from the list.

* Bumped version (1.1.1.svn32).

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

  ViewVC Help
Powered by ViewVC