/[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 2476 - (show annotations) (download)
Mon Sep 16 13:20:46 2013 UTC (10 years, 6 months ago) by schoenebeck
File size: 77568 byte(s)
* show build date and libgig version number in about dialog

1 /*
2 * Copyright (C) 2006-2013 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 <glibmm/convert.h>
24 #include <glibmm/dispatcher.h>
25 #include <glibmm/miscutils.h>
26 #include <glibmm/stringutils.h>
27 #include <gtkmm/aboutdialog.h>
28 #include <gtkmm/filechooserdialog.h>
29 #include <gtkmm/messagedialog.h>
30 #include <gtkmm/stock.h>
31 #include <gtkmm/targetentry.h>
32 #include <gtkmm/main.h>
33 #include <gtkmm/toggleaction.h>
34 #if GTKMM_MAJOR_VERSION < 3
35 #include "wrapLabel.hh"
36 #endif
37
38 #include "global.h"
39 #include "compat.h"
40
41 #include <stdio.h>
42 #include <sndfile.h>
43
44 #include "mainwindow.h"
45
46 #include "../../gfx/status_attached.xpm"
47 #include "../../gfx/status_detached.xpm"
48
49
50 MainWindow::MainWindow() :
51 dimreg_label(_("Changes apply to:")),
52 dimreg_all_regions(_("all regions")),
53 dimreg_all_dimregs(_("all dimension splits")),
54 dimreg_stereo(_("both channels"))
55 {
56 // set_border_width(5);
57 // set_default_size(400, 200);
58
59
60 add(m_VBox);
61
62 // Handle selection
63 m_TreeView.get_selection()->signal_changed().connect(
64 sigc::mem_fun(*this, &MainWindow::on_sel_change));
65
66 // m_TreeView.set_reorderable();
67
68 m_TreeView.signal_button_press_event().connect_notify(
69 sigc::mem_fun(*this, &MainWindow::on_button_release));
70
71 // Add the TreeView tab, inside a ScrolledWindow, with the button underneath:
72 m_ScrolledWindow.add(m_TreeView);
73 // m_ScrolledWindow.set_size_request(200, 600);
74 m_ScrolledWindow.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
75
76 m_ScrolledWindowSamples.add(m_TreeViewSamples);
77 m_ScrolledWindowSamples.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
78
79
80 m_TreeViewNotebook.set_size_request(300);
81
82 m_HPaned.add1(m_TreeViewNotebook);
83 dimreg_hbox.add(dimreg_label);
84 dimreg_hbox.add(dimreg_all_regions);
85 dimreg_hbox.add(dimreg_all_dimregs);
86 dimreg_stereo.set_active();
87 dimreg_hbox.add(dimreg_stereo);
88 dimreg_vbox.add(dimreg_edit);
89 dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);
90 m_HPaned.add2(dimreg_vbox);
91
92
93 m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, _("Samples"));
94 m_TreeViewNotebook.append_page(m_ScrolledWindow, _("Instruments"));
95
96
97 actionGroup = Gtk::ActionGroup::create();
98
99 actionGroup->add(Gtk::Action::create("MenuFile", _("_File")));
100 actionGroup->add(Gtk::Action::create("New", Gtk::Stock::NEW),
101 sigc::mem_fun(
102 *this, &MainWindow::on_action_file_new));
103 Glib::RefPtr<Gtk::Action> action =
104 Gtk::Action::create("Open", Gtk::Stock::OPEN);
105 action->property_label() = action->property_label() + "...";
106 actionGroup->add(action,
107 sigc::mem_fun(
108 *this, &MainWindow::on_action_file_open));
109 actionGroup->add(Gtk::Action::create("Save", Gtk::Stock::SAVE),
110 sigc::mem_fun(
111 *this, &MainWindow::on_action_file_save));
112 action = Gtk::Action::create("SaveAs", Gtk::Stock::SAVE_AS);
113 action->property_label() = action->property_label() + "...";
114 actionGroup->add(action,
115 Gtk::AccelKey("<shift><control>s"),
116 sigc::mem_fun(
117 *this, &MainWindow::on_action_file_save_as));
118 actionGroup->add(Gtk::Action::create("Properties",
119 Gtk::Stock::PROPERTIES),
120 sigc::mem_fun(
121 *this, &MainWindow::on_action_file_properties));
122 actionGroup->add(Gtk::Action::create("InstrProperties",
123 Gtk::Stock::PROPERTIES),
124 sigc::mem_fun(
125 *this, &MainWindow::show_instr_props));
126 actionGroup->add(Gtk::Action::create("Quit", Gtk::Stock::QUIT),
127 sigc::mem_fun(
128 *this, &MainWindow::on_action_quit));
129 actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument")));
130
131
132 actionGroup->add(Gtk::Action::create("MenuEdit", _("_Edit")));
133
134 Glib::RefPtr<Gtk::ToggleAction> toggle_action =
135 Gtk::ToggleAction::create("CopySampleUnity", _("Copy Sample's _Unity Note"), "ffaga");
136 toggle_action->set_active(true);
137 //FIXME: doesn't work, why?
138 toggle_action->set_tooltip(_("Used when dragging a sample to a region's sample reference field."));
139 actionGroup->add(toggle_action);
140
141 toggle_action =
142 Gtk::ToggleAction::create("CopySampleTune", _("Copy Sample's _Fine Tune"));
143 toggle_action->set_active(true);
144 //FIXME: doesn't work, why?
145 toggle_action->set_tooltip(_("Used when dragging a sample to a region's sample reference field."));
146 actionGroup->add(toggle_action);
147
148 toggle_action =
149 Gtk::ToggleAction::create("CopySampleLoop", _("Copy Sample's _Loop Points"));
150 toggle_action->set_active(true);
151 //FIXME: doesn't work, why?
152 toggle_action->set_tooltip(_("Used when dragging a sample to a region's sample reference field."));
153 actionGroup->add(toggle_action);
154
155
156 actionGroup->add(Gtk::Action::create("MenuView", _("_View")));
157 toggle_action =
158 Gtk::ToggleAction::create("Statusbar", _("_Statusbar"));
159 toggle_action->set_active(true);
160 actionGroup->add(toggle_action,
161 sigc::mem_fun(
162 *this, &MainWindow::on_action_view_status_bar));
163
164 action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP);
165 actionGroup->add(Gtk::Action::create("MenuHelp",
166 action->property_label()));
167 actionGroup->add(Gtk::Action::create("About", Gtk::Stock::ABOUT),
168 sigc::mem_fun(
169 *this, &MainWindow::on_action_help_about));
170 actionGroup->add(
171 Gtk::Action::create("AddInstrument", _("Add _Instrument")),
172 sigc::mem_fun(*this, &MainWindow::on_action_add_instrument)
173 );
174 actionGroup->add(
175 Gtk::Action::create("DupInstrument", _("_Duplicate Instrument")),
176 sigc::mem_fun(*this, &MainWindow::on_action_duplicate_instrument)
177 );
178 actionGroup->add(
179 Gtk::Action::create("RemoveInstrument", Gtk::Stock::REMOVE),
180 sigc::mem_fun(*this, &MainWindow::on_action_remove_instrument)
181 );
182
183 // sample right-click popup actions
184 actionGroup->add(
185 Gtk::Action::create("SampleProperties", Gtk::Stock::PROPERTIES),
186 sigc::mem_fun(*this, &MainWindow::on_action_sample_properties)
187 );
188 actionGroup->add(
189 Gtk::Action::create("AddGroup", _("Add _Group")),
190 sigc::mem_fun(*this, &MainWindow::on_action_add_group)
191 );
192 actionGroup->add(
193 Gtk::Action::create("AddSample", _("Add _Sample(s)...")),
194 sigc::mem_fun(*this, &MainWindow::on_action_add_sample)
195 );
196 actionGroup->add(
197 Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE),
198 sigc::mem_fun(*this, &MainWindow::on_action_remove_sample)
199 );
200 actionGroup->add(
201 Gtk::Action::create("ReplaceAllSamplesInAllGroups",
202 _("Replace All Samples in All Groups...")),
203 sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups)
204 );
205
206 uiManager = Gtk::UIManager::create();
207 uiManager->insert_action_group(actionGroup);
208 add_accel_group(uiManager->get_accel_group());
209
210 Glib::ustring ui_info =
211 "<ui>"
212 " <menubar name='MenuBar'>"
213 " <menu action='MenuFile'>"
214 " <menuitem action='New'/>"
215 " <menuitem action='Open'/>"
216 " <separator/>"
217 " <menuitem action='Save'/>"
218 " <menuitem action='SaveAs'/>"
219 " <separator/>"
220 " <menuitem action='Properties'/>"
221 " <separator/>"
222 " <menuitem action='Quit'/>"
223 " </menu>"
224 " <menu action='MenuEdit'>"
225 " <menuitem action='CopySampleUnity'/>"
226 " <menuitem action='CopySampleTune'/>"
227 " <menuitem action='CopySampleLoop'/>"
228 " </menu>"
229 " <menu action='MenuInstrument'>"
230 " </menu>"
231 " <menu action='MenuView'>"
232 " <menuitem action='Statusbar'/>"
233 " </menu>"
234 " <menu action='MenuHelp'>"
235 " <menuitem action='About'/>"
236 " </menu>"
237 " </menubar>"
238 " <popup name='PopupMenu'>"
239 " <menuitem action='InstrProperties'/>"
240 " <menuitem action='AddInstrument'/>"
241 " <menuitem action='DupInstrument'/>"
242 " <separator/>"
243 " <menuitem action='RemoveInstrument'/>"
244 " </popup>"
245 " <popup name='SamplePopupMenu'>"
246 " <menuitem action='SampleProperties'/>"
247 " <menuitem action='AddGroup'/>"
248 " <menuitem action='AddSample'/>"
249 " <menuitem action='ReplaceAllSamplesInAllGroups' />"
250 " <separator/>"
251 " <menuitem action='RemoveSample'/>"
252 " </popup>"
253 "</ui>";
254 uiManager->add_ui_from_string(ui_info);
255
256 popup_menu = dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/PopupMenu"));
257
258 instrument_menu = static_cast<Gtk::MenuItem*>(
259 uiManager->get_widget("/MenuBar/MenuInstrument"))->get_submenu();
260
261 Gtk::Widget* menuBar = uiManager->get_widget("/MenuBar");
262 m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK);
263 m_VBox.pack_start(m_HPaned);
264 m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK);
265 m_VBox.pack_start(m_RegionChooser.m_VirtKeybPropsBox, Gtk::PACK_SHRINK);
266 m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK);
267 m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK);
268
269 set_file_is_shared(false);
270
271 // Status Bar:
272 m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK);
273 m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK);
274 m_StatusBar.show();
275
276 m_RegionChooser.signal_region_selected().connect(
277 sigc::mem_fun(*this, &MainWindow::region_changed) );
278 m_DimRegionChooser.signal_dimregion_selected().connect(
279 sigc::mem_fun(*this, &MainWindow::dimreg_changed) );
280
281
282 // Create the Tree model:
283 m_refTreeModel = Gtk::ListStore::create(m_Columns);
284 m_TreeView.set_model(m_refTreeModel);
285 instrument_name_connection = m_refTreeModel->signal_row_changed().connect(
286 sigc::mem_fun(*this, &MainWindow::instrument_name_changed)
287 );
288
289 // Add the TreeView's view columns:
290 m_TreeView.append_column_editable("Instrument", m_Columns.m_col_name);
291 m_TreeView.set_headers_visible(false);
292
293 // create samples treeview (including its data model)
294 m_refSamplesTreeModel = SamplesTreeStore::create(m_SamplesModel);
295 m_TreeViewSamples.set_model(m_refSamplesTreeModel);
296 // m_TreeViewSamples.set_reorderable();
297 m_TreeViewSamples.append_column_editable("Samples", m_SamplesModel.m_col_name);
298 m_TreeViewSamples.set_headers_visible(false);
299 m_TreeViewSamples.signal_button_press_event().connect_notify(
300 sigc::mem_fun(*this, &MainWindow::on_sample_treeview_button_release)
301 );
302 m_refSamplesTreeModel->signal_row_changed().connect(
303 sigc::mem_fun(*this, &MainWindow::sample_name_changed)
304 );
305
306 // establish drag&drop between samples tree view and dimension region 'Sample' text entry
307 std::vector<Gtk::TargetEntry> drag_target_gig_sample;
308 drag_target_gig_sample.push_back(Gtk::TargetEntry("gig::Sample"));
309 m_TreeViewSamples.drag_source_set(drag_target_gig_sample);
310 m_TreeViewSamples.signal_drag_begin().connect(
311 sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_begin)
312 );
313 m_TreeViewSamples.signal_drag_data_get().connect(
314 sigc::mem_fun(*this, &MainWindow::on_sample_treeview_drag_data_get)
315 );
316 dimreg_edit.wSample->drag_dest_set(drag_target_gig_sample);
317 dimreg_edit.wSample->signal_drag_data_received().connect(
318 sigc::mem_fun(*this, &MainWindow::on_sample_label_drop_drag_data_received)
319 );
320 dimreg_edit.signal_dimreg_changed().connect(
321 sigc::hide(sigc::mem_fun(*this, &MainWindow::file_changed)));
322 m_RegionChooser.signal_instrument_changed().connect(
323 sigc::mem_fun(*this, &MainWindow::file_changed));
324 m_DimRegionChooser.signal_region_changed().connect(
325 sigc::mem_fun(*this, &MainWindow::file_changed));
326 instrumentProps.signal_changed().connect(
327 sigc::mem_fun(*this, &MainWindow::file_changed));
328 propDialog.signal_changed().connect(
329 sigc::mem_fun(*this, &MainWindow::file_changed));
330
331 dimreg_edit.signal_dimreg_to_be_changed().connect(
332 dimreg_to_be_changed_signal.make_slot());
333 dimreg_edit.signal_dimreg_changed().connect(
334 dimreg_changed_signal.make_slot());
335 dimreg_edit.signal_sample_ref_changed().connect(
336 sample_ref_changed_signal.make_slot());
337
338 m_RegionChooser.signal_instrument_struct_to_be_changed().connect(
339 sigc::hide(
340 sigc::bind(
341 file_structure_to_be_changed_signal.make_slot(),
342 sigc::ref(this->file)
343 )
344 )
345 );
346 m_RegionChooser.signal_instrument_struct_changed().connect(
347 sigc::hide(
348 sigc::bind(
349 file_structure_changed_signal.make_slot(),
350 sigc::ref(this->file)
351 )
352 )
353 );
354 m_RegionChooser.signal_region_to_be_changed().connect(
355 region_to_be_changed_signal.make_slot());
356 m_RegionChooser.signal_region_changed_signal().connect(
357 region_changed_signal.make_slot());
358
359 note_on_signal.connect(
360 sigc::mem_fun(m_RegionChooser, &RegionChooser::on_note_on_event));
361 note_off_signal.connect(
362 sigc::mem_fun(m_RegionChooser, &RegionChooser::on_note_off_event));
363
364 dimreg_all_regions.signal_toggled().connect(
365 sigc::mem_fun(*this, &MainWindow::update_dimregs));
366 dimreg_all_dimregs.signal_toggled().connect(
367 sigc::mem_fun(*this, &MainWindow::dimreg_all_dimregs_toggled));
368 dimreg_stereo.signal_toggled().connect(
369 sigc::mem_fun(*this, &MainWindow::update_dimregs));
370
371 file = 0;
372 file_is_changed = false;
373
374 show_all_children();
375
376 // start with a new gig file by default
377 on_action_file_new();
378 }
379
380 MainWindow::~MainWindow()
381 {
382 }
383
384 bool MainWindow::on_delete_event(GdkEventAny* event)
385 {
386 return !file_is_shared && file_is_changed && !close_confirmation_dialog();
387 }
388
389 void MainWindow::on_action_quit()
390 {
391 if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;
392 hide();
393 }
394
395 void MainWindow::region_changed()
396 {
397 m_DimRegionChooser.set_region(m_RegionChooser.get_region());
398 }
399
400 gig::Instrument* MainWindow::get_instrument()
401 {
402 gig::Instrument* instrument = 0;
403 Gtk::TreeModel::const_iterator it =
404 m_TreeView.get_selection()->get_selected();
405 if (it) {
406 Gtk::TreeModel::Row row = *it;
407 instrument = row[m_Columns.m_col_instr];
408 }
409 return instrument;
410 }
411
412 void MainWindow::add_region_to_dimregs(gig::Region* region, bool stereo, bool all_dimregs)
413 {
414 if (all_dimregs) {
415 for (int i = 0 ; i < region->DimensionRegions ; i++) {
416 if (region->pDimensionRegions[i]) {
417 dimreg_edit.dimregs.insert(region->pDimensionRegions[i]);
418 }
419 }
420 } else {
421 m_DimRegionChooser.get_dimregions(region, stereo, dimreg_edit.dimregs);
422 }
423 }
424
425 void MainWindow::update_dimregs()
426 {
427 dimreg_edit.dimregs.clear();
428 bool all_regions = dimreg_all_regions.get_active();
429 bool stereo = dimreg_stereo.get_active();
430 bool all_dimregs = dimreg_all_dimregs.get_active();
431
432 if (all_regions) {
433 gig::Instrument* instrument = get_instrument();
434 if (instrument) {
435 for (gig::Region* region = instrument->GetFirstRegion() ;
436 region ;
437 region = instrument->GetNextRegion()) {
438 add_region_to_dimregs(region, stereo, all_dimregs);
439 }
440 }
441 } else {
442 gig::Region* region = m_RegionChooser.get_region();
443 if (region) {
444 add_region_to_dimregs(region, stereo, all_dimregs);
445 }
446 }
447 }
448
449 void MainWindow::dimreg_all_dimregs_toggled()
450 {
451 dimreg_stereo.set_sensitive(!dimreg_all_dimregs.get_active());
452 update_dimregs();
453 }
454
455 void MainWindow::dimreg_changed()
456 {
457 update_dimregs();
458 dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion());
459 }
460
461 void MainWindow::on_sel_change()
462 {
463 // select item in instrument menu
464 Gtk::TreeModel::iterator it = m_TreeView.get_selection()->get_selected();
465 if (it) {
466 Gtk::TreePath path(it);
467 int index = path[0];
468 const std::vector<Gtk::Widget*> children =
469 instrument_menu->get_children();
470 static_cast<Gtk::RadioMenuItem*>(children[index])->set_active();
471 }
472
473 m_RegionChooser.set_instrument(get_instrument());
474 }
475
476 void loader_progress_callback(gig::progress_t* progress)
477 {
478 Loader* loader = static_cast<Loader*>(progress->custom);
479 loader->progress_callback(progress->factor);
480 }
481
482 void Loader::progress_callback(float fraction)
483 {
484 {
485 Glib::Threads::Mutex::Lock lock(progressMutex);
486 progress = fraction;
487 }
488 progress_dispatcher();
489 }
490
491 void Loader::thread_function()
492 {
493 printf("thread_function self=%x\n", Glib::Threads::Thread::self());
494 printf("Start %s\n", filename);
495 RIFF::File* riff = new RIFF::File(filename);
496 gig = new gig::File(riff);
497 gig::progress_t progress;
498 progress.callback = loader_progress_callback;
499 progress.custom = this;
500
501 gig->GetInstrument(0, &progress);
502 printf("End\n");
503 finished_dispatcher();
504 }
505
506 Loader::Loader(const char* filename)
507 : filename(filename), thread(0)
508 {
509 }
510
511 void Loader::launch()
512 {
513 #ifdef OLD_THREADS
514 thread = Glib::Thread::create(sigc::mem_fun(*this, &Loader::thread_function), true);
515 #else
516 thread = Glib::Threads::Thread::create(sigc::mem_fun(*this, &Loader::thread_function));
517 #endif
518 printf("launch thread=%x\n", thread);
519 }
520
521 float Loader::get_progress()
522 {
523 float res;
524 {
525 Glib::Threads::Mutex::Lock lock(progressMutex);
526 res = progress;
527 }
528 return res;
529 }
530
531 Glib::Dispatcher& Loader::signal_progress()
532 {
533 return progress_dispatcher;
534 }
535
536 Glib::Dispatcher& Loader::signal_finished()
537 {
538 return finished_dispatcher;
539 }
540
541 LoadDialog::LoadDialog(const Glib::ustring& title, Gtk::Window& parent)
542 : Gtk::Dialog(title, parent, true)
543 {
544 get_vbox()->pack_start(progressBar);
545 show_all_children();
546 }
547
548 // Clear all GUI elements / controls. This method is typically called
549 // before a new .gig file is to be created or to be loaded.
550 void MainWindow::__clear() {
551 // forget all samples that ought to be imported
552 m_SampleImportQueue.clear();
553 // clear the samples and instruments tree views
554 m_refTreeModel->clear();
555 m_refSamplesTreeModel->clear();
556 // remove all entries from "Instrument" menu
557 while (!instrument_menu->get_children().empty()) {
558 remove_instrument_from_menu(0);
559 }
560 // free libgig's gig::File instance
561 if (file && !file_is_shared) delete file;
562 file = NULL;
563 set_file_is_shared(false);
564 }
565
566 void MainWindow::on_action_file_new()
567 {
568 if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;
569
570 if (file_is_shared && !leaving_shared_mode_dialog()) return;
571
572 // clear all GUI elements
573 __clear();
574 // create a new .gig file (virtually yet)
575 gig::File* pFile = new gig::File;
576 // already add one new instrument by default
577 gig::Instrument* pInstrument = pFile->AddInstrument();
578 pInstrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument"));
579 // update GUI with that new gig::File
580 load_gig(pFile, 0 /*no file name yet*/);
581 }
582
583 bool MainWindow::close_confirmation_dialog()
584 {
585 gchar* msg = g_strdup_printf(_("Save changes to \"%s\" before closing?"),
586 Glib::filename_display_basename(filename).c_str());
587 Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
588 g_free(msg);
589 dialog.set_secondary_text(_("If you close without saving, your changes will be lost."));
590 dialog.add_button(_("Close _Without Saving"), Gtk::RESPONSE_NO);
591 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
592 dialog.add_button(file_has_name ? Gtk::Stock::SAVE : Gtk::Stock::SAVE_AS, Gtk::RESPONSE_YES);
593 dialog.set_default_response(Gtk::RESPONSE_YES);
594 int response = dialog.run();
595 dialog.hide();
596 if (response == Gtk::RESPONSE_YES) return file_save();
597 return response != Gtk::RESPONSE_CANCEL;
598 }
599
600 bool MainWindow::leaving_shared_mode_dialog() {
601 Glib::ustring msg = _("Detach from sampler and proceed working stand-alone?");
602 Gtk::MessageDialog dialog(*this, msg, false, Gtk::MESSAGE_WARNING, Gtk::BUTTONS_NONE);
603 dialog.set_secondary_text(
604 _("If you proceed to work on another instrument file, it won't be "
605 "used by the sampler until you tell the sampler explicitly to "
606 "load it."));
607 dialog.add_button(_("_Yes, Detach"), Gtk::RESPONSE_YES);
608 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
609 dialog.set_default_response(Gtk::RESPONSE_CANCEL);
610 int response = dialog.run();
611 dialog.hide();
612 return response == Gtk::RESPONSE_YES;
613 }
614
615 void MainWindow::on_action_file_open()
616 {
617 if (!file_is_shared && file_is_changed && !close_confirmation_dialog()) return;
618
619 if (file_is_shared && !leaving_shared_mode_dialog()) return;
620
621 Gtk::FileChooserDialog dialog(*this, _("Open file"));
622 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
623 dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
624 dialog.set_default_response(Gtk::RESPONSE_OK);
625 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
626 Gtk::FileFilter filter;
627 filter.add_pattern("*.gig");
628 #else
629 Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
630 filter->add_pattern("*.gig");
631 #endif
632 dialog.set_filter(filter);
633 if (current_gig_dir != "") {
634 dialog.set_current_folder(current_gig_dir);
635 }
636 if (dialog.run() == Gtk::RESPONSE_OK) {
637 std::string filename = dialog.get_filename();
638 printf("filename=%s\n", filename.c_str());
639 printf("on_action_file_open self=%x\n", Glib::Threads::Thread::self());
640 load_file(filename.c_str());
641 current_gig_dir = Glib::path_get_dirname(filename);
642 }
643 }
644
645 void MainWindow::load_file(const char* name)
646 {
647 __clear();
648 load_dialog = new LoadDialog(_("Loading..."), *this);
649 load_dialog->show_all();
650 loader = new Loader(strdup(name));
651 loader->signal_progress().connect(
652 sigc::mem_fun(*this, &MainWindow::on_loader_progress));
653 loader->signal_finished().connect(
654 sigc::mem_fun(*this, &MainWindow::on_loader_finished));
655 loader->launch();
656 }
657
658 void MainWindow::load_instrument(gig::Instrument* instr) {
659 if (!instr) {
660 Glib::ustring txt = "Provided instrument is NULL!\n";
661 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
662 msg.run();
663 Gtk::Main::quit();
664 }
665 // clear all GUI elements
666 __clear();
667 // load the instrument
668 gig::File* pFile = (gig::File*) instr->GetParent();
669 load_gig(pFile, 0 /*file name*/, true /*shared instrument*/);
670 //TODO: automatically select the given instrument
671 }
672
673 void MainWindow::on_loader_progress()
674 {
675 load_dialog->set_fraction(loader->get_progress());
676 }
677
678 void MainWindow::on_loader_finished()
679 {
680 printf("Loader finished!\n");
681 printf("on_loader_finished self=%x\n", Glib::Threads::Thread::self());
682 load_gig(loader->gig, loader->filename);
683 load_dialog->hide();
684 }
685
686 void MainWindow::on_action_file_save()
687 {
688 file_save();
689 }
690
691 bool MainWindow::check_if_savable()
692 {
693 if (!file) return false;
694
695 if (!file->GetFirstSample()) {
696 Gtk::MessageDialog(*this, _("The file could not be saved "
697 "because it contains no samples"),
698 false, Gtk::MESSAGE_ERROR).run();
699 return false;
700 }
701
702 for (gig::Instrument* instrument = file->GetFirstInstrument() ; instrument ;
703 instrument = file->GetNextInstrument()) {
704 if (!instrument->GetFirstRegion()) {
705 Gtk::MessageDialog(*this, _("The file could not be saved "
706 "because there are instruments "
707 "that have no regions"),
708 false, Gtk::MESSAGE_ERROR).run();
709 return false;
710 }
711 }
712 return true;
713 }
714
715 bool MainWindow::file_save()
716 {
717 if (!check_if_savable()) return false;
718 if (!file_is_shared && !file_has_name) return file_save_as();
719
720 std::cout << "Saving file\n" << std::flush;
721 file_structure_to_be_changed_signal.emit(this->file);
722 try {
723 file->Save();
724 if (file_is_changed) {
725 set_title(get_title().substr(1));
726 file_is_changed = false;
727 }
728 } catch (RIFF::Exception e) {
729 file_structure_changed_signal.emit(this->file);
730 Glib::ustring txt = _("Could not save file: ") + e.Message;
731 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
732 msg.run();
733 return false;
734 }
735 std::cout << "Saving file done\n" << std::flush;
736 __import_queued_samples();
737 file_structure_changed_signal.emit(this->file);
738 return true;
739 }
740
741 void MainWindow::on_action_file_save_as()
742 {
743 if (!check_if_savable()) return;
744 file_save_as();
745 }
746
747 bool MainWindow::file_save_as()
748 {
749 Gtk::FileChooserDialog dialog(*this, _("Save as"), Gtk::FILE_CHOOSER_ACTION_SAVE);
750 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
751 dialog.add_button(Gtk::Stock::SAVE, Gtk::RESPONSE_OK);
752 dialog.set_default_response(Gtk::RESPONSE_OK);
753 dialog.set_do_overwrite_confirmation();
754
755 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
756 Gtk::FileFilter filter;
757 filter.add_pattern("*.gig");
758 #else
759 Glib::RefPtr<Gtk::FileFilter> filter = Gtk::FileFilter::create();
760 filter->add_pattern("*.gig");
761 #endif
762 dialog.set_filter(filter);
763
764 // set initial dir and filename of the Save As dialog
765 // and prepare that initial filename as a copy of the gig
766 {
767 std::string basename = Glib::path_get_basename(filename);
768 std::string dir = Glib::path_get_dirname(filename);
769 basename = std::string(_("copy_of_")) + basename;
770 Glib::ustring copyFileName = Glib::build_filename(dir, basename);
771 if (Glib::path_is_absolute(filename)) {
772 dialog.set_filename(copyFileName);
773 } else {
774 if (current_gig_dir != "") dialog.set_current_folder(current_gig_dir);
775 }
776 dialog.set_current_name(Glib::filename_display_basename(copyFileName));
777 }
778
779 // show warning in the dialog
780 Gtk::HBox descriptionArea;
781 descriptionArea.set_spacing(15);
782 Gtk::Image warningIcon(Gtk::Stock::DIALOG_WARNING, Gtk::IconSize(Gtk::ICON_SIZE_DIALOG));
783 descriptionArea.pack_start(warningIcon, Gtk::PACK_SHRINK);
784 #if GTKMM_MAJOR_VERSION < 3
785 view::WrapLabel description;
786 #else
787 Gtk::Label description;
788 description.set_line_wrap();
789 #endif
790 description.set_markup(
791 _("\n<b>CAUTION:</b> You <b>MUST</b> use the "
792 "<span style=\"italic\">\"Save\"</span> dialog instead of "
793 "<span style=\"italic\">\"Save As...\"</span> if you want to save "
794 "to the same .gig file. Using "
795 "<span style=\"italic\">\"Save As...\"</span> for writing to the "
796 "same .gig file will end up in corrupted sample wave data!\n")
797 );
798 descriptionArea.pack_start(description);
799 dialog.get_vbox()->pack_start(descriptionArea, Gtk::PACK_SHRINK);
800 descriptionArea.show_all();
801
802 if (dialog.run() == Gtk::RESPONSE_OK) {
803 file_structure_to_be_changed_signal.emit(this->file);
804 try {
805 std::string filename = dialog.get_filename();
806 if (!Glib::str_has_suffix(filename, ".gig")) {
807 filename += ".gig";
808 }
809 printf("filename=%s\n", filename.c_str());
810 file->Save(filename);
811 this->filename = filename;
812 current_gig_dir = Glib::path_get_dirname(filename);
813 set_title(Glib::filename_display_basename(filename));
814 file_has_name = true;
815 file_is_changed = false;
816 } catch (RIFF::Exception e) {
817 file_structure_changed_signal.emit(this->file);
818 Glib::ustring txt = _("Could not save file: ") + e.Message;
819 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
820 msg.run();
821 return false;
822 }
823 __import_queued_samples();
824 file_structure_changed_signal.emit(this->file);
825 return true;
826 }
827 return false;
828 }
829
830 // actually write the sample(s)' data to the gig file
831 void MainWindow::__import_queued_samples() {
832 std::cout << "Starting sample import\n" << std::flush;
833 Glib::ustring error_files;
834 printf("Samples to import: %d\n", m_SampleImportQueue.size());
835 for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
836 iter != m_SampleImportQueue.end(); ) {
837 printf("Importing sample %s\n",(*iter).sample_path.c_str());
838 SF_INFO info;
839 info.format = 0;
840 SNDFILE* hFile = sf_open((*iter).sample_path.c_str(), SFM_READ, &info);
841 sf_command(hFile, SFC_SET_SCALE_FLOAT_INT_READ, 0, SF_TRUE);
842 try {
843 if (!hFile) throw std::string(_("could not open file"));
844 // determine sample's bit depth
845 int bitdepth;
846 switch (info.format & 0xff) {
847 case SF_FORMAT_PCM_S8:
848 case SF_FORMAT_PCM_16:
849 case SF_FORMAT_PCM_U8:
850 bitdepth = 16;
851 break;
852 case SF_FORMAT_PCM_24:
853 case SF_FORMAT_PCM_32:
854 case SF_FORMAT_FLOAT:
855 case SF_FORMAT_DOUBLE:
856 bitdepth = 24;
857 break;
858 default:
859 sf_close(hFile); // close sound file
860 throw std::string(_("format not supported")); // unsupported subformat (yet?)
861 }
862
863 const int bufsize = 10000;
864 switch (bitdepth) {
865 case 16: {
866 short* buffer = new short[bufsize * info.channels];
867 sf_count_t cnt = info.frames;
868 while (cnt) {
869 // libsndfile does the conversion for us (if needed)
870 int n = sf_readf_short(hFile, buffer, bufsize);
871 // write from buffer directly (physically) into .gig file
872 iter->gig_sample->Write(buffer, n);
873 cnt -= n;
874 }
875 delete[] buffer;
876 break;
877 }
878 case 24: {
879 int* srcbuf = new int[bufsize * info.channels];
880 uint8_t* dstbuf = new uint8_t[bufsize * 3 * info.channels];
881 sf_count_t cnt = info.frames;
882 while (cnt) {
883 // libsndfile returns 32 bits, convert to 24
884 int n = sf_readf_int(hFile, srcbuf, bufsize);
885 int j = 0;
886 for (int i = 0 ; i < n * info.channels ; i++) {
887 dstbuf[j++] = srcbuf[i] >> 8;
888 dstbuf[j++] = srcbuf[i] >> 16;
889 dstbuf[j++] = srcbuf[i] >> 24;
890 }
891 // write from buffer directly (physically) into .gig file
892 iter->gig_sample->Write(dstbuf, n);
893 cnt -= n;
894 }
895 delete[] srcbuf;
896 delete[] dstbuf;
897 break;
898 }
899 }
900 // cleanup
901 sf_close(hFile);
902 // let the sampler re-cache the sample if needed
903 sample_changed_signal.emit(iter->gig_sample);
904 // on success we remove the sample from the import queue,
905 // otherwise keep it, maybe it works the next time ?
906 std::list<SampleImportItem>::iterator cur = iter;
907 ++iter;
908 m_SampleImportQueue.erase(cur);
909 } catch (std::string what) {
910 // remember the files that made trouble (and their cause)
911 if (!error_files.empty()) error_files += "\n";
912 error_files += (*iter).sample_path += " (" + what + ")";
913 ++iter;
914 }
915 }
916 // show error message box when some sample(s) could not be imported
917 if (!error_files.empty()) {
918 Glib::ustring txt = _("Could not import the following sample(s):\n") + error_files;
919 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
920 msg.run();
921 }
922 }
923
924 void MainWindow::on_action_file_properties()
925 {
926 propDialog.show();
927 propDialog.deiconify();
928 }
929
930 void MainWindow::on_action_help_about()
931 {
932 Gtk::AboutDialog dialog;
933 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 12) || GTKMM_MAJOR_VERSION > 2
934 dialog.set_program_name("Gigedit");
935 #else
936 dialog.set_name("Gigedit");
937 #endif
938 dialog.set_version(VERSION);
939 dialog.set_copyright("Copyright (C) 2006-2013 Andreas Persson");
940 const std::string sComment =
941 _("Built " __DATE__ "\nUsing ") +
942 ::gig::libraryName() + " " + ::gig::libraryVersion() + "\n\n" +
943 _(
944 "Gigedit is released under the GNU General Public License.\n"
945 "\n"
946 "Please notice that this is still a very young instrument editor. "
947 "So better backup your Gigasampler files before editing them with "
948 "this application.\n"
949 "\n"
950 "Please report bugs to: http://bugs.linuxsampler.org"
951 );
952 dialog.set_comments(sComment.c_str());
953 dialog.set_website("http://www.linuxsampler.org");
954 dialog.set_website_label("http://www.linuxsampler.org");
955 dialog.run();
956 }
957
958 PropDialog::PropDialog()
959 : eName(_("Name")),
960 eCreationDate(_("Creation date")),
961 eComments(_("Comments")),
962 eProduct(_("Product")),
963 eCopyright(_("Copyright")),
964 eArtists(_("Artists")),
965 eGenre(_("Genre")),
966 eKeywords(_("Keywords")),
967 eEngineer(_("Engineer")),
968 eTechnician(_("Technician")),
969 eSoftware(_("Software")),
970 eMedium(_("Medium")),
971 eSource(_("Source")),
972 eSourceForm(_("Source form")),
973 eCommissioned(_("Commissioned")),
974 eSubject(_("Subject")),
975 quitButton(Gtk::Stock::CLOSE),
976 table(2, 1)
977 {
978 set_title(_("File Properties"));
979 eName.set_width_chars(50);
980
981 connect(eName, &DLS::Info::Name);
982 connect(eCreationDate, &DLS::Info::CreationDate);
983 connect(eComments, &DLS::Info::Comments);
984 connect(eProduct, &DLS::Info::Product);
985 connect(eCopyright, &DLS::Info::Copyright);
986 connect(eArtists, &DLS::Info::Artists);
987 connect(eGenre, &DLS::Info::Genre);
988 connect(eKeywords, &DLS::Info::Keywords);
989 connect(eEngineer, &DLS::Info::Engineer);
990 connect(eTechnician, &DLS::Info::Technician);
991 connect(eSoftware, &DLS::Info::Software);
992 connect(eMedium, &DLS::Info::Medium);
993 connect(eSource, &DLS::Info::Source);
994 connect(eSourceForm, &DLS::Info::SourceForm);
995 connect(eCommissioned, &DLS::Info::Commissioned);
996 connect(eSubject, &DLS::Info::Subject);
997
998 table.add(eName);
999 table.add(eCreationDate);
1000 table.add(eComments);
1001 table.add(eProduct);
1002 table.add(eCopyright);
1003 table.add(eArtists);
1004 table.add(eGenre);
1005 table.add(eKeywords);
1006 table.add(eEngineer);
1007 table.add(eTechnician);
1008 table.add(eSoftware);
1009 table.add(eMedium);
1010 table.add(eSource);
1011 table.add(eSourceForm);
1012 table.add(eCommissioned);
1013 table.add(eSubject);
1014
1015 table.set_col_spacings(5);
1016 add(vbox);
1017 table.set_border_width(5);
1018 vbox.add(table);
1019 vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
1020 buttonBox.set_layout(Gtk::BUTTONBOX_END);
1021 buttonBox.set_border_width(5);
1022 buttonBox.show();
1023 buttonBox.pack_start(quitButton);
1024 quitButton.set_can_default();
1025 quitButton.grab_focus();
1026 quitButton.signal_clicked().connect(
1027 sigc::mem_fun(*this, &PropDialog::hide));
1028
1029 quitButton.show();
1030 vbox.show();
1031 show_all_children();
1032 }
1033
1034 void PropDialog::set_info(DLS::Info* info)
1035 {
1036 update(info);
1037 }
1038
1039
1040 void InstrumentProps::set_Name(const gig::String& name)
1041 {
1042 m->pInfo->Name = name;
1043 }
1044
1045 void InstrumentProps::update_name()
1046 {
1047 update_model++;
1048 eName.set_value(m->pInfo->Name);
1049 update_model--;
1050 }
1051
1052 void InstrumentProps::set_IsDrum(bool value)
1053 {
1054 m->IsDrum = value;
1055 }
1056
1057 void InstrumentProps::set_MIDIBank(uint16_t value)
1058 {
1059 m->MIDIBank = value;
1060 }
1061
1062 void InstrumentProps::set_MIDIProgram(uint32_t value)
1063 {
1064 m->MIDIProgram = value;
1065 }
1066
1067 InstrumentProps::InstrumentProps() :
1068 quitButton(Gtk::Stock::CLOSE),
1069 table(2,1),
1070 eName(_("Name")),
1071 eIsDrum(_("Is drum")),
1072 eMIDIBank(_("MIDI bank"), 0, 16383),
1073 eMIDIProgram(_("MIDI program")),
1074 eAttenuation(_("Attenuation"), 0, 96, 0, 1),
1075 eGainPlus6(_("Gain +6dB"), eAttenuation, -6),
1076 eEffectSend(_("Effect send"), 0, 65535),
1077 eFineTune(_("Fine tune"), -8400, 8400),
1078 ePitchbendRange(_("Pitchbend range"), 0, 12),
1079 ePianoReleaseMode(_("Piano release mode")),
1080 eDimensionKeyRangeLow(_("Keyswitching range low")),
1081 eDimensionKeyRangeHigh(_("Keyswitching range high"))
1082 {
1083 set_title(_("Instrument Properties"));
1084
1085 eDimensionKeyRangeLow.set_tip(
1086 _("start of the keyboard area which should switch the "
1087 "\"keyswitching\" dimension")
1088 );
1089 eDimensionKeyRangeHigh.set_tip(
1090 _("end of the keyboard area which should switch the "
1091 "\"keyswitching\" dimension")
1092 );
1093
1094 connect(eName, &InstrumentProps::set_Name);
1095 connect(eIsDrum, &InstrumentProps::set_IsDrum);
1096 connect(eMIDIBank, &InstrumentProps::set_MIDIBank);
1097 connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram);
1098 connect(eAttenuation, &gig::Instrument::Attenuation);
1099 connect(eGainPlus6, &gig::Instrument::Attenuation);
1100 connect(eEffectSend, &gig::Instrument::EffectSend);
1101 connect(eFineTune, &gig::Instrument::FineTune);
1102 connect(ePitchbendRange, &gig::Instrument::PitchbendRange);
1103 connect(ePianoReleaseMode, &gig::Instrument::PianoReleaseMode);
1104 connect(eDimensionKeyRangeLow, eDimensionKeyRangeHigh,
1105 &gig::Instrument::DimensionKeyRange);
1106
1107 eName.signal_value_changed().connect(sig_name_changed.make_slot());
1108
1109 table.set_col_spacings(5);
1110
1111 table.add(eName);
1112 table.add(eIsDrum);
1113 table.add(eMIDIBank);
1114 table.add(eMIDIProgram);
1115 table.add(eAttenuation);
1116 table.add(eGainPlus6);
1117 table.add(eEffectSend);
1118 table.add(eFineTune);
1119 table.add(ePitchbendRange);
1120 table.add(ePianoReleaseMode);
1121 table.add(eDimensionKeyRangeLow);
1122 table.add(eDimensionKeyRangeHigh);
1123
1124 add(vbox);
1125 table.set_border_width(5);
1126 vbox.pack_start(table);
1127 table.show();
1128 vbox.pack_start(buttonBox, Gtk::PACK_SHRINK);
1129 buttonBox.set_layout(Gtk::BUTTONBOX_END);
1130 buttonBox.set_border_width(5);
1131 buttonBox.show();
1132 buttonBox.pack_start(quitButton);
1133 quitButton.set_can_default();
1134 quitButton.grab_focus();
1135
1136 quitButton.signal_clicked().connect(
1137 sigc::mem_fun(*this, &InstrumentProps::hide));
1138
1139 quitButton.show();
1140 vbox.show();
1141 show_all_children();
1142 }
1143
1144 void InstrumentProps::set_instrument(gig::Instrument* instrument)
1145 {
1146 update(instrument);
1147
1148 update_model++;
1149 eName.set_value(instrument->pInfo->Name);
1150 eIsDrum.set_value(instrument->IsDrum);
1151 eMIDIBank.set_value(instrument->MIDIBank);
1152 eMIDIProgram.set_value(instrument->MIDIProgram);
1153 update_model--;
1154 }
1155
1156
1157 void MainWindow::file_changed()
1158 {
1159 if (file && !file_is_changed) {
1160 set_title("*" + get_title());
1161 file_is_changed = true;
1162 }
1163 }
1164
1165 void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument)
1166 {
1167 file = 0;
1168 set_file_is_shared(isSharedInstrument);
1169
1170 this->filename = filename ? filename : _("Unsaved Gig File");
1171 set_title(Glib::filename_display_basename(this->filename));
1172 file_has_name = filename;
1173 file_is_changed = false;
1174
1175 propDialog.set_info(gig->pInfo);
1176
1177 instrument_name_connection.block();
1178 for (gig::Instrument* instrument = gig->GetFirstInstrument() ; instrument ;
1179 instrument = gig->GetNextInstrument()) {
1180 Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
1181
1182 Gtk::TreeModel::iterator iter = m_refTreeModel->append();
1183 Gtk::TreeModel::Row row = *iter;
1184 row[m_Columns.m_col_name] = name;
1185 row[m_Columns.m_col_instr] = instrument;
1186
1187 add_instrument_to_menu(name);
1188 }
1189 instrument_name_connection.unblock();
1190 uiManager->get_widget("/MenuBar/MenuInstrument")->show();
1191
1192 for (gig::Group* group = gig->GetFirstGroup(); group; group = gig->GetNextGroup()) {
1193 if (group->Name != "") {
1194 Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
1195 Gtk::TreeModel::Row rowGroup = *iterGroup;
1196 rowGroup[m_SamplesModel.m_col_name] = gig_to_utf8(group->Name);
1197 rowGroup[m_SamplesModel.m_col_group] = group;
1198 rowGroup[m_SamplesModel.m_col_sample] = NULL;
1199 for (gig::Sample* sample = group->GetFirstSample();
1200 sample; sample = group->GetNextSample()) {
1201 Gtk::TreeModel::iterator iterSample =
1202 m_refSamplesTreeModel->append(rowGroup.children());
1203 Gtk::TreeModel::Row rowSample = *iterSample;
1204 rowSample[m_SamplesModel.m_col_name] =
1205 gig_to_utf8(sample->pInfo->Name);
1206 rowSample[m_SamplesModel.m_col_sample] = sample;
1207 rowSample[m_SamplesModel.m_col_group] = NULL;
1208 }
1209 }
1210 }
1211
1212 file = gig;
1213
1214 // select the first instrument
1215 m_TreeView.get_selection()->select(Gtk::TreePath("0"));
1216
1217 instr_props_set_instrument();
1218 }
1219
1220 bool MainWindow::instr_props_set_instrument()
1221 {
1222 instrumentProps.signal_name_changed().clear();
1223
1224 Gtk::TreeModel::const_iterator it =
1225 m_TreeView.get_selection()->get_selected();
1226 if (it) {
1227 Gtk::TreeModel::Row row = *it;
1228 gig::Instrument* instrument = row[m_Columns.m_col_instr];
1229
1230 instrumentProps.set_instrument(instrument);
1231
1232 // make sure instrument tree is updated when user changes the
1233 // instrument name in instrument properties window
1234 instrumentProps.signal_name_changed().connect(
1235 sigc::bind(
1236 sigc::mem_fun(*this,
1237 &MainWindow::instr_name_changed_by_instr_props),
1238 it));
1239 } else {
1240 instrumentProps.hide();
1241 }
1242 return it;
1243 }
1244
1245 void MainWindow::show_instr_props()
1246 {
1247 if (instr_props_set_instrument()) {
1248 instrumentProps.show();
1249 instrumentProps.deiconify();
1250 }
1251 }
1252
1253 void MainWindow::instr_name_changed_by_instr_props(Gtk::TreeModel::iterator& it)
1254 {
1255 Gtk::TreeModel::Row row = *it;
1256 Glib::ustring name = row[m_Columns.m_col_name];
1257
1258 gig::Instrument* instrument = row[m_Columns.m_col_instr];
1259 Glib::ustring gigname(gig_to_utf8(instrument->pInfo->Name));
1260 if (gigname != name) {
1261 row[m_Columns.m_col_name] = gigname;
1262 }
1263 }
1264
1265 void MainWindow::on_action_view_status_bar() {
1266 Gtk::CheckMenuItem* item =
1267 dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuView/Statusbar"));
1268 if (!item) {
1269 std::cerr << "/MenuBar/MenuView/Statusbar == NULL\n";
1270 return;
1271 }
1272 if (item->get_active()) m_StatusBar.show();
1273 else m_StatusBar.hide();
1274 }
1275
1276 bool MainWindow::is_copy_samples_unity_note_enabled() const {
1277 Gtk::CheckMenuItem* item =
1278 dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleUnity"));
1279 if (!item) {
1280 std::cerr << "/MenuBar/MenuEdit/CopySampleUnity == NULL\n";
1281 return true;
1282 }
1283 return item->get_active();
1284 }
1285
1286 bool MainWindow::is_copy_samples_fine_tune_enabled() const {
1287 Gtk::CheckMenuItem* item =
1288 dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleTune"));
1289 if (!item) {
1290 std::cerr << "/MenuBar/MenuEdit/CopySampleTune == NULL\n";
1291 return true;
1292 }
1293 return item->get_active();
1294 }
1295
1296 bool MainWindow::is_copy_samples_loop_enabled() const {
1297 Gtk::CheckMenuItem* item =
1298 dynamic_cast<Gtk::CheckMenuItem*>(uiManager->get_widget("/MenuBar/MenuEdit/CopySampleLoop"));
1299 if (!item) {
1300 std::cerr << "/MenuBar/MenuEdit/CopySampleLoop == NULL\n";
1301 return true;
1302 }
1303 return item->get_active();
1304 }
1305
1306 void MainWindow::on_button_release(GdkEventButton* button)
1307 {
1308 if (button->type == GDK_2BUTTON_PRESS) {
1309 show_instr_props();
1310 } else if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
1311 popup_menu->popup(button->button, button->time);
1312 }
1313 }
1314
1315 void MainWindow::on_instrument_selection_change(Gtk::RadioMenuItem* item) {
1316 if (item->get_active()) {
1317 const std::vector<Gtk::Widget*> children =
1318 instrument_menu->get_children();
1319 std::vector<Gtk::Widget*>::const_iterator it =
1320 find(children.begin(), children.end(), item);
1321 if (it != children.end()) {
1322 int index = it - children.begin();
1323 m_TreeView.get_selection()->select(Gtk::TreePath(ToString(index)));
1324
1325 m_RegionChooser.set_instrument(file->GetInstrument(index));
1326 }
1327 }
1328 }
1329
1330 void MainWindow::on_sample_treeview_button_release(GdkEventButton* button) {
1331 if (button->type == GDK_BUTTON_PRESS && button->button == 3) {
1332 Gtk::Menu* sample_popup =
1333 dynamic_cast<Gtk::Menu*>(uiManager->get_widget("/SamplePopupMenu"));
1334 // update enabled/disabled state of sample popup items
1335 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
1336 Gtk::TreeModel::iterator it = sel->get_selected();
1337 bool group_selected = false;
1338 bool sample_selected = false;
1339 if (it) {
1340 Gtk::TreeModel::Row row = *it;
1341 group_selected = row[m_SamplesModel.m_col_group];
1342 sample_selected = row[m_SamplesModel.m_col_sample];
1343 }
1344 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/SampleProperties"))->
1345 set_sensitive(group_selected || sample_selected);
1346 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddSample"))->
1347 set_sensitive(group_selected || sample_selected);
1348 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/AddGroup"))->
1349 set_sensitive(file);
1350 dynamic_cast<Gtk::MenuItem*>(uiManager->get_widget("/SamplePopupMenu/RemoveSample"))->
1351 set_sensitive(group_selected || sample_selected);
1352 // show sample popup
1353 sample_popup->popup(button->button, button->time);
1354 }
1355 }
1356
1357
1358 Gtk::RadioMenuItem* MainWindow::add_instrument_to_menu(
1359 const Glib::ustring& name, int position) {
1360
1361 Gtk::RadioMenuItem::Group instrument_group;
1362 const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
1363 if (!children.empty()) {
1364 instrument_group =
1365 static_cast<Gtk::RadioMenuItem*>(children[0])->get_group();
1366 }
1367 Gtk::RadioMenuItem* item =
1368 new Gtk::RadioMenuItem(instrument_group, name);
1369 if (position < 0) {
1370 instrument_menu->append(*item);
1371 } else {
1372 instrument_menu->insert(*item, position);
1373 }
1374 item->show();
1375 item->signal_activate().connect(
1376 sigc::bind(
1377 sigc::mem_fun(*this, &MainWindow::on_instrument_selection_change),
1378 item));
1379 return item;
1380 }
1381
1382 void MainWindow::remove_instrument_from_menu(int index) {
1383 const std::vector<Gtk::Widget*> children =
1384 instrument_menu->get_children();
1385 Gtk::Widget* child = children[index];
1386 instrument_menu->remove(*child);
1387 delete child;
1388 }
1389
1390 void MainWindow::add_instrument(gig::Instrument* instrument) {
1391 const Glib::ustring name(gig_to_utf8(instrument->pInfo->Name));
1392
1393 // update instrument tree view
1394 instrument_name_connection.block();
1395 Gtk::TreeModel::iterator iterInstr = m_refTreeModel->append();
1396 Gtk::TreeModel::Row rowInstr = *iterInstr;
1397 rowInstr[m_Columns.m_col_name] = name;
1398 rowInstr[m_Columns.m_col_instr] = instrument;
1399 instrument_name_connection.unblock();
1400
1401 add_instrument_to_menu(name);
1402
1403 m_TreeView.get_selection()->select(iterInstr);
1404
1405 file_changed();
1406 }
1407
1408 void MainWindow::on_action_add_instrument() {
1409 static int __instrument_indexer = 0;
1410 if (!file) return;
1411 gig::Instrument* instrument = file->AddInstrument();
1412 __instrument_indexer++;
1413 instrument->pInfo->Name = gig_from_utf8(_("Unnamed Instrument ") +
1414 ToString(__instrument_indexer));
1415
1416 add_instrument(instrument);
1417 }
1418
1419 void MainWindow::on_action_duplicate_instrument() {
1420 if (!file) return;
1421
1422 // retrieve the currently selected instrument
1423 // (being the original instrument to be duplicated)
1424 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
1425 Gtk::TreeModel::iterator itSelection = sel->get_selected();
1426 if (!itSelection) return;
1427 Gtk::TreeModel::Row row = *itSelection;
1428 gig::Instrument* instrOrig = row[m_Columns.m_col_instr];
1429 if (!instrOrig) return;
1430
1431 // duplicate the orginal instrument
1432 gig::Instrument* instrNew = file->AddDuplicateInstrument(instrOrig);
1433 instrNew->pInfo->Name =
1434 instrOrig->pInfo->Name +
1435 gig_from_utf8(Glib::ustring(" (") + _("Copy") + ")");
1436
1437 add_instrument(instrNew);
1438 }
1439
1440 void MainWindow::on_action_remove_instrument() {
1441 if (!file) return;
1442 if (file_is_shared) {
1443 Gtk::MessageDialog msg(
1444 *this,
1445 _("You cannot delete an instrument from this file, since it's "
1446 "currently used by the sampler."),
1447 false, Gtk::MESSAGE_INFO
1448 );
1449 msg.run();
1450 return;
1451 }
1452
1453 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeView.get_selection();
1454 Gtk::TreeModel::iterator it = sel->get_selected();
1455 if (it) {
1456 Gtk::TreeModel::Row row = *it;
1457 gig::Instrument* instr = row[m_Columns.m_col_instr];
1458 try {
1459 Gtk::TreePath path(it);
1460 int index = path[0];
1461
1462 // remove instrument from the gig file
1463 if (instr) file->DeleteInstrument(instr);
1464 file_changed();
1465
1466 remove_instrument_from_menu(index);
1467
1468 // remove row from instruments tree view
1469 m_refTreeModel->erase(it);
1470
1471 #if GTKMM_MAJOR_VERSION < 3
1472 // select another instrument (in gtk3 this is done
1473 // automatically)
1474 if (!m_refTreeModel->children().empty()) {
1475 if (index == m_refTreeModel->children().size()) {
1476 index--;
1477 }
1478 m_TreeView.get_selection()->select(
1479 Gtk::TreePath(ToString(index)));
1480 }
1481 #endif
1482 instr_props_set_instrument();
1483 } catch (RIFF::Exception e) {
1484 Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
1485 msg.run();
1486 }
1487 }
1488 }
1489
1490 void MainWindow::on_action_sample_properties() {
1491 //TODO: show a dialog where the selected sample's properties can be edited
1492 Gtk::MessageDialog msg(
1493 *this, _("Sorry, yet to be implemented!"), false, Gtk::MESSAGE_INFO
1494 );
1495 msg.run();
1496 }
1497
1498 void MainWindow::on_action_add_group() {
1499 static int __sample_indexer = 0;
1500 if (!file) return;
1501 gig::Group* group = file->AddGroup();
1502 group->Name = gig_from_utf8(_("Unnamed Group"));
1503 if (__sample_indexer) group->Name += " " + ToString(__sample_indexer);
1504 __sample_indexer++;
1505 // update sample tree view
1506 Gtk::TreeModel::iterator iterGroup = m_refSamplesTreeModel->append();
1507 Gtk::TreeModel::Row rowGroup = *iterGroup;
1508 rowGroup[m_SamplesModel.m_col_name] = gig_to_utf8(group->Name);
1509 rowGroup[m_SamplesModel.m_col_sample] = NULL;
1510 rowGroup[m_SamplesModel.m_col_group] = group;
1511 file_changed();
1512 }
1513
1514 void MainWindow::on_action_add_sample() {
1515 if (!file) return;
1516 // get selected group
1517 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
1518 Gtk::TreeModel::iterator it = sel->get_selected();
1519 if (!it) return;
1520 Gtk::TreeModel::Row row = *it;
1521 gig::Group* group = row[m_SamplesModel.m_col_group];
1522 if (!group) { // not a group, but a sample is selected (probably)
1523 gig::Sample* sample = row[m_SamplesModel.m_col_sample];
1524 if (!sample) return;
1525 it = row.parent(); // resolve parent (that is the sample's group)
1526 if (!it) return;
1527 row = *it;
1528 group = row[m_SamplesModel.m_col_group];
1529 if (!group) return;
1530 }
1531 // show 'browse for file' dialog
1532 Gtk::FileChooserDialog dialog(*this, _("Add Sample(s)"));
1533 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1534 dialog.add_button(Gtk::Stock::OPEN, Gtk::RESPONSE_OK);
1535 dialog.set_select_multiple(true);
1536
1537 // matches all file types supported by libsndfile
1538 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1539 Gtk::FileFilter soundfilter;
1540 #else
1541 Glib::RefPtr<Gtk::FileFilter> soundfilter = Gtk::FileFilter::create();
1542 #endif
1543 const char* const supportedFileTypes[] = {
1544 "*.wav", "*.WAV", "*.aiff", "*.AIFF", "*.aifc", "*.AIFC", "*.snd",
1545 "*.SND", "*.au", "*.AU", "*.paf", "*.PAF", "*.iff", "*.IFF",
1546 "*.svx", "*.SVX", "*.sf", "*.SF", "*.voc", "*.VOC", "*.w64",
1547 "*.W64", "*.pvf", "*.PVF", "*.xi", "*.XI", "*.htk", "*.HTK",
1548 "*.caf", "*.CAF", NULL
1549 };
1550 const char* soundfiles = _("Sound Files");
1551 const char* allfiles = _("All Files");
1552 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
1553 for (int i = 0; supportedFileTypes[i]; i++)
1554 soundfilter.add_pattern(supportedFileTypes[i]);
1555 soundfilter.set_name(soundfiles);
1556
1557 // matches every file
1558 Gtk::FileFilter allpassfilter;
1559 allpassfilter.add_pattern("*.*");
1560 allpassfilter.set_name(allfiles);
1561 #else
1562 for (int i = 0; supportedFileTypes[i]; i++)
1563 soundfilter->add_pattern(supportedFileTypes[i]);
1564 soundfilter->set_name(soundfiles);
1565
1566 // matches every file
1567 Glib::RefPtr<Gtk::FileFilter> allpassfilter = Gtk::FileFilter::create();
1568 allpassfilter->add_pattern("*.*");
1569 allpassfilter->set_name(allfiles);
1570 #endif
1571 dialog.add_filter(soundfilter);
1572 dialog.add_filter(allpassfilter);
1573 if (current_sample_dir != "") {
1574 dialog.set_current_folder(current_sample_dir);
1575 }
1576 if (dialog.run() == Gtk::RESPONSE_OK) {
1577 current_sample_dir = dialog.get_current_folder();
1578 Glib::ustring error_files;
1579 std::vector<std::string> filenames = dialog.get_filenames();
1580 for (std::vector<std::string>::iterator iter = filenames.begin();
1581 iter != filenames.end(); ++iter) {
1582 printf("Adding sample %s\n",(*iter).c_str());
1583 // use libsndfile to retrieve file informations
1584 SF_INFO info;
1585 info.format = 0;
1586 SNDFILE* hFile = sf_open((*iter).c_str(), SFM_READ, &info);
1587 try {
1588 if (!hFile) throw std::string(_("could not open file"));
1589 int bitdepth;
1590 switch (info.format & 0xff) {
1591 case SF_FORMAT_PCM_S8:
1592 case SF_FORMAT_PCM_16:
1593 case SF_FORMAT_PCM_U8:
1594 bitdepth = 16;
1595 break;
1596 case SF_FORMAT_PCM_24:
1597 case SF_FORMAT_PCM_32:
1598 case SF_FORMAT_FLOAT:
1599 case SF_FORMAT_DOUBLE:
1600 bitdepth = 24;
1601 break;
1602 default:
1603 sf_close(hFile); // close sound file
1604 throw std::string(_("format not supported")); // unsupported subformat (yet?)
1605 }
1606 // add a new sample to the .gig file
1607 gig::Sample* sample = file->AddSample();
1608 // file name without path
1609 Glib::ustring filename = Glib::filename_display_basename(*iter);
1610 // remove file extension if there is one
1611 for (int i = 0; supportedFileTypes[i]; i++) {
1612 if (Glib::str_has_suffix(filename, supportedFileTypes[i] + 1)) {
1613 filename.erase(filename.length() - strlen(supportedFileTypes[i] + 1));
1614 break;
1615 }
1616 }
1617 sample->pInfo->Name = gig_from_utf8(filename);
1618 sample->Channels = info.channels;
1619 sample->BitDepth = bitdepth;
1620 sample->FrameSize = bitdepth / 8/*1 byte are 8 bits*/ * info.channels;
1621 sample->SamplesPerSecond = info.samplerate;
1622 sample->AverageBytesPerSecond = sample->FrameSize * sample->SamplesPerSecond;
1623 sample->BlockAlign = sample->FrameSize;
1624 sample->SamplesTotal = info.frames;
1625
1626 SF_INSTRUMENT instrument;
1627 if (sf_command(hFile, SFC_GET_INSTRUMENT,
1628 &instrument, sizeof(instrument)) != SF_FALSE)
1629 {
1630 sample->MIDIUnityNote = instrument.basenote;
1631 sample->FineTune = instrument.detune;
1632
1633 if (instrument.loop_count && instrument.loops[0].mode != SF_LOOP_NONE) {
1634 sample->Loops = 1;
1635
1636 switch (instrument.loops[0].mode) {
1637 case SF_LOOP_FORWARD:
1638 sample->LoopType = gig::loop_type_normal;
1639 break;
1640 case SF_LOOP_BACKWARD:
1641 sample->LoopType = gig::loop_type_backward;
1642 break;
1643 case SF_LOOP_ALTERNATING:
1644 sample->LoopType = gig::loop_type_bidirectional;
1645 break;
1646 }
1647 sample->LoopStart = instrument.loops[0].start;
1648 sample->LoopEnd = instrument.loops[0].end;
1649 sample->LoopPlayCount = instrument.loops[0].count;
1650 sample->LoopSize = sample->LoopEnd - sample->LoopStart + 1;
1651 }
1652 }
1653
1654 // schedule resizing the sample (which will be done
1655 // physically when File::Save() is called)
1656 sample->Resize(info.frames);
1657 // make sure sample is part of the selected group
1658 group->AddSample(sample);
1659 // schedule that physical resize and sample import
1660 // (data copying), performed when "Save" is requested
1661 SampleImportItem sched_item;
1662 sched_item.gig_sample = sample;
1663 sched_item.sample_path = *iter;
1664 m_SampleImportQueue.push_back(sched_item);
1665 // add sample to the tree view
1666 Gtk::TreeModel::iterator iterSample =
1667 m_refSamplesTreeModel->append(row.children());
1668 Gtk::TreeModel::Row rowSample = *iterSample;
1669 rowSample[m_SamplesModel.m_col_name] =
1670 gig_to_utf8(sample->pInfo->Name);
1671 rowSample[m_SamplesModel.m_col_sample] = sample;
1672 rowSample[m_SamplesModel.m_col_group] = NULL;
1673 // close sound file
1674 sf_close(hFile);
1675 file_changed();
1676 } catch (std::string what) { // remember the files that made trouble (and their cause)
1677 if (!error_files.empty()) error_files += "\n";
1678 error_files += *iter += " (" + what + ")";
1679 }
1680 }
1681 // show error message box when some file(s) could not be opened / added
1682 if (!error_files.empty()) {
1683 Glib::ustring txt = _("Could not add the following sample(s):\n") + error_files;
1684 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1685 msg.run();
1686 }
1687 }
1688 }
1689
1690 void MainWindow::on_action_replace_all_samples_in_all_groups()
1691 {
1692 if (!file) return;
1693 Gtk::FileChooserDialog dialog(*this, _("Select Folder"),
1694 Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER);
1695 const char* str =
1696 _("This is a very specific function. It tries to replace all samples "
1697 "in the current gig file by samples located in the chosen "
1698 "directory.\n\n"
1699 "It works like this: For each sample in the gig file, it tries to "
1700 "find a sample file in the selected directory with the same name as "
1701 "the sample in the gig file. Optionally, you can add a filename "
1702 "extension below, which will be added to the filename expected to be "
1703 "found. That is, assume you have a gig file with a sample called "
1704 "'Snare', if you enter '.wav' below (like it's done by default), it "
1705 "expects to find a sample file called 'Snare.wav' and will replace "
1706 "the sample in the gig file accordingly. If you don't need an "
1707 "extension, blank the field below. Any gig sample where no "
1708 "appropriate sample file could be found will be reported and left "
1709 "untouched.\n");
1710 #if GTKMM_MAJOR_VERSION < 3
1711 view::WrapLabel description(str);
1712 #else
1713 Gtk::Label description(str);
1714 description.set_line_wrap();
1715 #endif
1716 Gtk::HBox entryArea;
1717 Gtk::Label entryLabel( _("Add filename extension: "), Gtk::ALIGN_START);
1718 Gtk::Entry postfixEntryBox;
1719 postfixEntryBox.set_text(".wav");
1720 entryArea.pack_start(entryLabel);
1721 entryArea.pack_start(postfixEntryBox);
1722 dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK);
1723 dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK);
1724 description.show();
1725 entryArea.show_all();
1726 dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
1727 dialog.add_button(_("Select"), Gtk::RESPONSE_OK);
1728 dialog.set_select_multiple(false);
1729 if (current_sample_dir != "") {
1730 dialog.set_current_folder(current_sample_dir);
1731 }
1732 if (dialog.run() == Gtk::RESPONSE_OK)
1733 {
1734 current_sample_dir = dialog.get_current_folder();
1735 Glib::ustring error_files;
1736 std::string folder = dialog.get_filename();
1737 for (gig::Sample* sample = file->GetFirstSample();
1738 sample; sample = file->GetNextSample())
1739 {
1740 std::string filename =
1741 folder + G_DIR_SEPARATOR_S +
1742 Glib::filename_from_utf8(gig_to_utf8(sample->pInfo->Name) +
1743 postfixEntryBox.get_text());
1744 SF_INFO info;
1745 info.format = 0;
1746 SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info);
1747 try
1748 {
1749 if (!hFile) throw std::string(_("could not open file"));
1750 int bitdepth;
1751 switch (info.format & 0xff) {
1752 case SF_FORMAT_PCM_S8:
1753 case SF_FORMAT_PCM_16:
1754 case SF_FORMAT_PCM_U8:
1755 bitdepth = 16;
1756 break;
1757 case SF_FORMAT_PCM_24:
1758 case SF_FORMAT_PCM_32:
1759 case SF_FORMAT_FLOAT:
1760 case SF_FORMAT_DOUBLE:
1761 bitdepth = 24;
1762 break;
1763 default:
1764 sf_close(hFile);
1765 throw std::string(_("format not supported"));
1766 }
1767 SampleImportItem sched_item;
1768 sched_item.gig_sample = sample;
1769 sched_item.sample_path = filename;
1770 m_SampleImportQueue.push_back(sched_item);
1771 sf_close(hFile);
1772 file_changed();
1773 }
1774 catch (std::string what)
1775 {
1776 if (!error_files.empty()) error_files += "\n";
1777 error_files += Glib::filename_to_utf8(filename) +
1778 " (" + what + ")";
1779 }
1780 }
1781 // show error message box when some file(s) could not be opened / added
1782 if (!error_files.empty()) {
1783 Glib::ustring txt =
1784 _("Could not replace the following sample(s):\n") + error_files;
1785 Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR);
1786 msg.run();
1787 }
1788 }
1789 }
1790
1791 void MainWindow::on_action_remove_sample() {
1792 if (!file) return;
1793 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
1794 Gtk::TreeModel::iterator it = sel->get_selected();
1795 if (it) {
1796 Gtk::TreeModel::Row row = *it;
1797 gig::Group* group = row[m_SamplesModel.m_col_group];
1798 gig::Sample* sample = row[m_SamplesModel.m_col_sample];
1799 Glib::ustring name = row[m_SamplesModel.m_col_name];
1800 try {
1801 // remove group or sample from the gig file
1802 if (group) {
1803 // temporarily remember the samples that belong to
1804 // that group (we need that to clean the queue)
1805 std::list<gig::Sample*> members;
1806 for (gig::Sample* pSample = group->GetFirstSample();
1807 pSample; pSample = group->GetNextSample()) {
1808 members.push_back(pSample);
1809 }
1810 // notify everybody that we're going to remove these samples
1811 samples_to_be_removed_signal.emit(members);
1812 // delete the group in the .gig file including the
1813 // samples that belong to the group
1814 file->DeleteGroup(group);
1815 // notify that we're done with removal
1816 samples_removed_signal.emit();
1817 // if sample(s) were just previously added, remove
1818 // them from the import queue
1819 for (std::list<gig::Sample*>::iterator member = members.begin();
1820 member != members.end(); ++member) {
1821 for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
1822 iter != m_SampleImportQueue.end(); ++iter) {
1823 if ((*iter).gig_sample == *member) {
1824 printf("Removing previously added sample '%s' from group '%s'\n",
1825 (*iter).sample_path.c_str(), name.c_str());
1826 m_SampleImportQueue.erase(iter);
1827 break;
1828 }
1829 }
1830 }
1831 file_changed();
1832 } else if (sample) {
1833 // notify everybody that we're going to remove this sample
1834 std::list<gig::Sample*> lsamples;
1835 lsamples.push_back(sample);
1836 samples_to_be_removed_signal.emit(lsamples);
1837 // remove sample from the .gig file
1838 file->DeleteSample(sample);
1839 // notify that we're done with removal
1840 samples_removed_signal.emit();
1841 // if sample was just previously added, remove it from
1842 // the import queue
1843 for (std::list<SampleImportItem>::iterator iter = m_SampleImportQueue.begin();
1844 iter != m_SampleImportQueue.end(); ++iter) {
1845 if ((*iter).gig_sample == sample) {
1846 printf("Removing previously added sample '%s'\n",
1847 (*iter).sample_path.c_str());
1848 m_SampleImportQueue.erase(iter);
1849 break;
1850 }
1851 }
1852 dimreg_changed();
1853 file_changed();
1854 }
1855 // remove respective row(s) from samples tree view
1856 m_refSamplesTreeModel->erase(it);
1857 } catch (RIFF::Exception e) {
1858 // pretend we're done with removal (i.e. to avoid dead locks)
1859 samples_removed_signal.emit();
1860 // show error message
1861 Gtk::MessageDialog msg(*this, e.Message.c_str(), false, Gtk::MESSAGE_ERROR);
1862 msg.run();
1863 }
1864 }
1865 }
1866
1867 // For some reason drag_data_get gets called two times for each
1868 // drag'n'drop (at least when target is an Entry). This work-around
1869 // makes sure the code in drag_data_get and drop_drag_data_received is
1870 // only executed once, as drag_begin only gets called once.
1871 void MainWindow::on_sample_treeview_drag_begin(const Glib::RefPtr<Gdk::DragContext>& context)
1872 {
1873 first_call_to_drag_data_get = true;
1874 }
1875
1876 void MainWindow::on_sample_treeview_drag_data_get(const Glib::RefPtr<Gdk::DragContext>&,
1877 Gtk::SelectionData& selection_data, guint, guint)
1878 {
1879 if (!first_call_to_drag_data_get) return;
1880 first_call_to_drag_data_get = false;
1881
1882 // get selected sample
1883 gig::Sample* sample = NULL;
1884 Glib::RefPtr<Gtk::TreeSelection> sel = m_TreeViewSamples.get_selection();
1885 Gtk::TreeModel::iterator it = sel->get_selected();
1886 if (it) {
1887 Gtk::TreeModel::Row row = *it;
1888 sample = row[m_SamplesModel.m_col_sample];
1889 }
1890 // pass the gig::Sample as pointer
1891 selection_data.set(selection_data.get_target(), 0/*unused*/, (const guchar*)&sample,
1892 sizeof(sample)/*length of data in bytes*/);
1893 }
1894
1895 void MainWindow::on_sample_label_drop_drag_data_received(
1896 const Glib::RefPtr<Gdk::DragContext>& context, int, int,
1897 const Gtk::SelectionData& selection_data, guint, guint time)
1898 {
1899 gig::Sample* sample = *((gig::Sample**) selection_data.get_data());
1900
1901 if (sample && selection_data.get_length() == sizeof(gig::Sample*)) {
1902 std::cout << "Drop received sample \"" <<
1903 sample->pInfo->Name << "\"" << std::endl;
1904 // drop success
1905 context->drop_reply(true, time);
1906
1907 //TODO: we should better move most of the following code to DimRegionEdit::set_sample()
1908
1909 // notify everybody that we're going to alter the region
1910 gig::Region* region = m_RegionChooser.get_region();
1911 region_to_be_changed_signal.emit(region);
1912
1913 // find the samplechannel dimension
1914 gig::dimension_def_t* stereo_dimension = 0;
1915 for (int i = 0 ; i < region->Dimensions ; i++) {
1916 if (region->pDimensionDefinitions[i].dimension ==
1917 gig::dimension_samplechannel) {
1918 stereo_dimension = &region->pDimensionDefinitions[i];
1919 break;
1920 }
1921 }
1922 bool channels_changed = false;
1923 if (sample->Channels == 1 && stereo_dimension) {
1924 // remove the samplechannel dimension
1925 region->DeleteDimension(stereo_dimension);
1926 channels_changed = true;
1927 region_changed();
1928 }
1929 dimreg_edit.set_sample(
1930 sample,
1931 is_copy_samples_unity_note_enabled(),
1932 is_copy_samples_fine_tune_enabled(),
1933 is_copy_samples_loop_enabled()
1934 );
1935
1936 if (sample->Channels == 2 && !stereo_dimension) {
1937 // add samplechannel dimension
1938 gig::dimension_def_t dim;
1939 dim.dimension = gig::dimension_samplechannel;
1940 dim.bits = 1;
1941 dim.zones = 2;
1942 region->AddDimension(&dim);
1943 channels_changed = true;
1944 region_changed();
1945 }
1946 if (channels_changed) {
1947 // unmap all samples with wrong number of channels
1948 // TODO: maybe there should be a warning dialog for this
1949 for (int i = 0 ; i < region->DimensionRegions ; i++) {
1950 gig::DimensionRegion* d = region->pDimensionRegions[i];
1951 if (d->pSample && d->pSample->Channels != sample->Channels) {
1952 gig::Sample* oldref = d->pSample;
1953 d->pSample = NULL;
1954 sample_ref_changed_signal.emit(oldref, NULL);
1955 }
1956 }
1957 }
1958
1959 // notify we're done with altering
1960 region_changed_signal.emit(region);
1961
1962 file_changed();
1963
1964 return;
1965 }
1966 // drop failed
1967 context->drop_reply(false, time);
1968 }
1969
1970 void MainWindow::sample_name_changed(const Gtk::TreeModel::Path& path,
1971 const Gtk::TreeModel::iterator& iter) {
1972 if (!iter) return;
1973 Gtk::TreeModel::Row row = *iter;
1974 Glib::ustring name = row[m_SamplesModel.m_col_name];
1975 gig::Group* group = row[m_SamplesModel.m_col_group];
1976 gig::Sample* sample = row[m_SamplesModel.m_col_sample];
1977 gig::String gigname(gig_from_utf8(name));
1978 if (group) {
1979 if (group->Name != gigname) {
1980 group->Name = gigname;
1981 printf("group name changed\n");
1982 file_changed();
1983 }
1984 } else if (sample) {
1985 if (sample->pInfo->Name != gigname) {
1986 sample->pInfo->Name = gigname;
1987 printf("sample name changed\n");
1988 file_changed();
1989 }
1990 }
1991 }
1992
1993 void MainWindow::instrument_name_changed(const Gtk::TreeModel::Path& path,
1994 const Gtk::TreeModel::iterator& iter) {
1995 if (!iter) return;
1996 Gtk::TreeModel::Row row = *iter;
1997 Glib::ustring name = row[m_Columns.m_col_name];
1998
1999 // change name in instrument menu
2000 int index = path[0];
2001 const std::vector<Gtk::Widget*> children = instrument_menu->get_children();
2002 if (index < children.size()) {
2003 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION >= 16) || GTKMM_MAJOR_VERSION > 2
2004 static_cast<Gtk::RadioMenuItem*>(children[index])->set_label(name);
2005 #else
2006 remove_instrument_from_menu(index);
2007 Gtk::RadioMenuItem* item = add_instrument_to_menu(name, index);
2008 item->set_active();
2009 #endif
2010 }
2011
2012 // change name in gig
2013 gig::Instrument* instrument = row[m_Columns.m_col_instr];
2014 gig::String gigname(gig_from_utf8(name));
2015 if (instrument && instrument->pInfo->Name != gigname) {
2016 instrument->pInfo->Name = gigname;
2017
2018 // change name in the instrument properties window
2019 if (instrumentProps.get_instrument() == instrument) {
2020 instrumentProps.update_name();
2021 }
2022
2023 file_changed();
2024 }
2025 }
2026
2027 void MainWindow::set_file_is_shared(bool b) {
2028 this->file_is_shared = b;
2029
2030 if (file_is_shared) {
2031 m_AttachedStateLabel.set_label(_("live-mode"));
2032 m_AttachedStateImage.set(
2033 Gdk::Pixbuf::create_from_xpm_data(status_attached_xpm)
2034 );
2035 } else {
2036 m_AttachedStateLabel.set_label(_("stand-alone"));
2037 m_AttachedStateImage.set(
2038 Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm)
2039 );
2040 }
2041 }
2042
2043 sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_to_be_changed() {
2044 return file_structure_to_be_changed_signal;
2045 }
2046
2047 sigc::signal<void, gig::File*>& MainWindow::signal_file_structure_changed() {
2048 return file_structure_changed_signal;
2049 }
2050
2051 sigc::signal<void, std::list<gig::Sample*> >& MainWindow::signal_samples_to_be_removed() {
2052 return samples_to_be_removed_signal;
2053 }
2054
2055 sigc::signal<void>& MainWindow::signal_samples_removed() {
2056 return samples_removed_signal;
2057 }
2058
2059 sigc::signal<void, gig::Region*>& MainWindow::signal_region_to_be_changed() {
2060 return region_to_be_changed_signal;
2061 }
2062
2063 sigc::signal<void, gig::Region*>& MainWindow::signal_region_changed() {
2064 return region_changed_signal;
2065 }
2066
2067 sigc::signal<void, gig::Sample*>& MainWindow::signal_sample_changed() {
2068 return sample_changed_signal;
2069 }
2070
2071 sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& MainWindow::signal_sample_ref_changed() {
2072 return sample_ref_changed_signal;
2073 }
2074
2075 sigc::signal<void, gig::DimensionRegion*>& MainWindow::signal_dimreg_to_be_changed() {
2076 return dimreg_to_be_changed_signal;
2077 }
2078
2079 sigc::signal<void, gig::DimensionRegion*>& MainWindow::signal_dimreg_changed() {
2080 return dimreg_changed_signal;
2081 }
2082
2083 sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_note_on() {
2084 return note_on_signal;
2085 }
2086
2087 sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_note_off() {
2088 return note_off_signal;
2089 }
2090
2091 sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_hit() {
2092 return m_RegionChooser.signal_keyboard_key_hit();
2093 }
2094
2095 sigc::signal<void, int/*key*/, int/*velocity*/>& MainWindow::signal_keyboard_key_released() {
2096 return m_RegionChooser.signal_keyboard_key_released();
2097 }

  ViewVC Help
Powered by ViewVC