--- gigedit/trunk/src/gigedit/mainwindow.cpp 2007/10/10 15:48:54 1396 +++ gigedit/trunk/src/gigedit/mainwindow.cpp 2008/02/06 22:08:29 1673 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2006, 2007 Andreas Persson + * Copyright (C) 2006 - 2008 Andreas Persson * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -24,6 +24,7 @@ #include #include #include +#include #include "global.h" @@ -49,13 +50,45 @@ #include "mainwindow.h" +#include "../../gfx/status_attached.xpm" +#include "../../gfx/status_detached.xpm" + template inline std::string ToString(T o) { std::stringstream ss; ss << o; return ss.str(); } -MainWindow::MainWindow() +Table::Table(int x, int y) : Gtk::Table(x, y), rowno(0) { } + +void Table::add(BoolEntry& boolentry) +{ + attach(boolentry.widget, 0, 2, rowno, rowno + 1, + Gtk::FILL, Gtk::SHRINK); + rowno++; +} + +void Table::add(BoolEntryPlus6& boolentry) +{ + attach(boolentry.widget, 0, 2, rowno, rowno + 1, + Gtk::FILL, Gtk::SHRINK); + rowno++; +} + +void Table::add(LabelWidget& prop) +{ + attach(prop.label, 1, 2, rowno, rowno + 1, + Gtk::FILL, Gtk::SHRINK); + attach(prop.widget, 2, 3, rowno, rowno + 1, + Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK); + rowno++; +} + +MainWindow::MainWindow() : + dimreg_label(_("Changes apply to:")), + dimreg_all_regions(_("all regions")), + dimreg_all_dimregs(_("all dimension splits")), + dimreg_stereo(_("both channels")) { // set_border_width(5); // set_default_size(400, 200); @@ -85,7 +118,14 @@ m_TreeViewNotebook.set_size_request(300); m_HPaned.add1(m_TreeViewNotebook); - m_HPaned.add2(dimreg_edit); + dimreg_hbox.add(dimreg_label); + dimreg_hbox.add(dimreg_all_regions); + dimreg_hbox.add(dimreg_all_dimregs); + dimreg_stereo.set_active(); + dimreg_hbox.add(dimreg_stereo); + dimreg_vbox.add(dimreg_edit); + dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK); + m_HPaned.add2(dimreg_vbox); m_TreeViewNotebook.append_page(m_ScrolledWindowSamples, "Samples"); @@ -126,6 +166,14 @@ *this, &MainWindow::on_action_quit)); actionGroup->add(Gtk::Action::create("MenuInstrument", _("_Instrument"))); + actionGroup->add(Gtk::Action::create("MenuView", _("_View"))); + Glib::RefPtr toggle_action = + Gtk::ToggleAction::create("Statusbar", _("_Statusbar")); + toggle_action->set_active(true); + actionGroup->add(toggle_action, + sigc::mem_fun( + *this, &MainWindow::on_action_view_status_bar)); + action = Gtk::Action::create("MenuHelp", Gtk::Stock::HELP); actionGroup->add(Gtk::Action::create("MenuHelp", action->property_label())); @@ -160,6 +208,10 @@ Gtk::Action::create("RemoveSample", Gtk::Stock::REMOVE), sigc::mem_fun(*this, &MainWindow::on_action_remove_sample) ); + actionGroup->add( + Gtk::Action::create("ReplaceAllSamplesInAllGroups", _("Replace All Samples In All Groups")), + sigc::mem_fun(*this, &MainWindow::on_action_replace_all_samples_in_all_groups) + ); uiManager = Gtk::UIManager::create(); uiManager->insert_action_group(actionGroup); @@ -181,6 +233,9 @@ " " " " " " + " " + " " + " " #ifdef ABOUT_DIALOG " " " " @@ -197,6 +252,7 @@ " " " " " " + " " " " " " " " @@ -209,7 +265,14 @@ m_VBox.pack_start(*menuBar, Gtk::PACK_SHRINK); m_VBox.pack_start(m_HPaned); m_VBox.pack_start(m_RegionChooser, Gtk::PACK_SHRINK); + m_VBox.pack_start(m_RegionChooser.m_VirtKeybPropsBox, Gtk::PACK_SHRINK); m_VBox.pack_start(m_DimRegionChooser, Gtk::PACK_SHRINK); + m_VBox.pack_start(m_StatusBar, Gtk::PACK_SHRINK); + + // Status Bar: + m_StatusBar.pack_start(m_AttachedStateLabel, Gtk::PACK_SHRINK); + m_StatusBar.pack_start(m_AttachedStateImage, Gtk::PACK_SHRINK); + m_StatusBar.show(); m_RegionChooser.signal_region_selected().connect( sigc::mem_fun(*this, &MainWindow::region_changed) ); @@ -263,6 +326,8 @@ sigc::mem_fun(*this, &MainWindow::file_changed)); instrumentProps.signal_instrument_changed().connect( sigc::mem_fun(*this, &MainWindow::file_changed)); + propDialog.signal_info_changed().connect( + sigc::mem_fun(*this, &MainWindow::file_changed)); dimreg_edit.signal_dimreg_to_be_changed().connect( dimreg_to_be_changed_signal.make_slot()); @@ -292,9 +357,21 @@ m_RegionChooser.signal_region_changed_signal().connect( region_changed_signal.make_slot()); + note_on_signal.connect( + sigc::mem_fun(m_RegionChooser, &RegionChooser::on_note_on_event)); + note_off_signal.connect( + sigc::mem_fun(m_RegionChooser, &RegionChooser::on_note_off_event)); + + dimreg_all_regions.signal_toggled().connect( + sigc::mem_fun(*this, &MainWindow::update_dimregs)); + dimreg_all_dimregs.signal_toggled().connect( + sigc::mem_fun(*this, &MainWindow::dimreg_all_dimregs_toggled)); + dimreg_stereo.signal_toggled().connect( + sigc::mem_fun(*this, &MainWindow::update_dimregs)); + file = 0; file_is_changed = false; - file_is_shared = false; + set_file_is_shared(false); show_all_children(); @@ -322,26 +399,73 @@ m_DimRegionChooser.set_region(m_RegionChooser.get_region()); } -void MainWindow::dimreg_changed() -{ - dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion()); -} - -void MainWindow::on_sel_change() +gig::Instrument* MainWindow::get_instrument() { + gig::Instrument* instrument = 0; Glib::RefPtr tree_sel_ref = m_TreeView.get_selection(); Gtk::TreeModel::iterator it = tree_sel_ref->get_selected(); if (it) { Gtk::TreeModel::Row row = *it; - std::cout << row[m_Columns.m_col_name] << std::endl; + instrument = row[m_Columns.m_col_instr]; + } + return instrument; +} + +void MainWindow::add_region_to_dimregs(gig::Region* region, bool stereo, bool all_dimregs) +{ + if (all_dimregs) { + for (int i = 0 ; i < region->DimensionRegions ; i++) { + if (region->pDimensionRegions[i]) { + dimreg_edit.dimregs.insert(region->pDimensionRegions[i]); + } + } + } else { + m_DimRegionChooser.get_dimregions(region, stereo, dimreg_edit.dimregs); + } +} + +void MainWindow::update_dimregs() +{ + dimreg_edit.dimregs.clear(); + bool all_regions = dimreg_all_regions.get_active(); + bool stereo = dimreg_stereo.get_active(); + bool all_dimregs = dimreg_all_dimregs.get_active(); - m_RegionChooser.set_instrument(row[m_Columns.m_col_instr]); + if (all_regions) { + gig::Instrument* instrument = get_instrument(); + if (instrument) { + for (gig::Region* region = instrument->GetFirstRegion() ; + region ; + region = instrument->GetNextRegion()) { + add_region_to_dimregs(region, stereo, all_dimregs); + } + } } else { - m_RegionChooser.set_instrument(0); + gig::Region* region = m_RegionChooser.get_region(); + if (region) { + add_region_to_dimregs(region, stereo, all_dimregs); + } } } +void MainWindow::dimreg_all_dimregs_toggled() +{ + dimreg_stereo.set_sensitive(!dimreg_all_dimregs.get_active()); + update_dimregs(); +} + +void MainWindow::dimreg_changed() +{ + update_dimregs(); + dimreg_edit.set_dim_region(m_DimRegionChooser.get_dimregion()); +} + +void MainWindow::on_sel_change() +{ + m_RegionChooser.set_instrument(get_instrument()); +} + void loader_progress_callback(gig::progress_t* progress) { Loader* loader = static_cast(progress->custom); @@ -429,7 +553,7 @@ // free libgig's gig::File instance if (file && !file_is_shared) delete file; file = NULL; - file_is_shared = false; + set_file_is_shared(false); } void MainWindow::on_action_file_new() @@ -765,90 +889,156 @@ #ifdef ABOUT_DIALOG Gtk::AboutDialog dialog; dialog.set_version(VERSION); + dialog.set_copyright("Copyright (C) 2006,2007 Andreas Persson"); + dialog.set_comments( + "Released under the GNU General Public License.\n" + "\n" + "Please notice that this is still a very young instrument editor. " + "So better backup your Gigasampler files before editing them with " + "this application.\n" + "\n" + "Please report bugs to: http://bugs.linuxsampler.org" + ); + dialog.set_website("http://www.linuxsampler.org"); + dialog.set_website_label("http://www.linuxsampler.org"); dialog.run(); #endif } PropDialog::PropDialog() - : table(2,1) + : table(2,1), + eName("Name"), + eCreationDate("Creation date"), + eComments("Comments"), + eProduct("Product"), + eCopyright("Copyright"), + eArtists("Artists"), + eGenre("Genre"), + eKeywords("Keywords"), + eEngineer("Engineer"), + eTechnician("Technician"), + eSoftware("Software"), + eMedium("Medium"), + eSource("Source"), + eSourceForm("Source form"), + eCommissioned("Commissioned"), + eSubject("Subject"), + quitButton(Gtk::Stock::CLOSE), + update_model(0) { + set_title("File Properties"); + eName.set_width_chars(50); + + connect(eName, &DLS::Info::Name); + connect(eCreationDate, &DLS::Info::CreationDate); + connect(eComments, &DLS::Info::Comments); + connect(eProduct, &DLS::Info::Product); + connect(eCopyright, &DLS::Info::Copyright); + connect(eArtists, &DLS::Info::Artists); + connect(eGenre, &DLS::Info::Genre); + connect(eKeywords, &DLS::Info::Keywords); + connect(eEngineer, &DLS::Info::Engineer); + connect(eTechnician, &DLS::Info::Technician); + connect(eSoftware, &DLS::Info::Software); + connect(eMedium, &DLS::Info::Medium); + connect(eSource, &DLS::Info::Source); + connect(eSourceForm, &DLS::Info::SourceForm); + connect(eCommissioned, &DLS::Info::Commissioned); + connect(eSubject, &DLS::Info::Subject); + + table.add(eName); + table.add(eCreationDate); + table.add(eComments); + table.add(eProduct); + table.add(eCopyright); + table.add(eArtists); + table.add(eGenre); + table.add(eKeywords); + table.add(eEngineer); + table.add(eTechnician); + table.add(eSoftware); + table.add(eMedium); + table.add(eSource); + table.add(eSourceForm); + table.add(eCommissioned); + table.add(eSubject); + table.set_col_spacings(5); - const char* propLabels[] = { - "Name:", - "CreationDate:", - "Comments:", // TODO: multiline - "Product:", - "Copyright:", - "Artists:", - "Genre:", - "Keywords:", - "Engineer:", - "Technician:", - "Software:", // TODO: readonly - "Medium:", - "Source:", - "SourceForm:", - "Commissioned:", - "Subject:" - }; - for (int i = 0 ; i < sizeof(propLabels) / sizeof(char*) ; i++) { - label[i].set_text(propLabels[i]); - label[i].set_alignment(Gtk::ALIGN_LEFT); - table.attach(label[i], 0, 1, i, i + 1, Gtk::FILL, Gtk::SHRINK); - table.attach(entry[i], 1, 2, i, i + 1, Gtk::FILL | Gtk::EXPAND, - Gtk::SHRINK); - } + add(vbox); + table.set_border_width(5); + vbox.add(table); + vbox.pack_start(buttonBox, Gtk::PACK_SHRINK); + buttonBox.set_layout(Gtk::BUTTONBOX_END); + buttonBox.set_border_width(5); + buttonBox.show(); + buttonBox.pack_start(quitButton); + quitButton.set_flags(Gtk::CAN_DEFAULT); + quitButton.grab_focus(); + quitButton.signal_clicked().connect( + sigc::mem_fun(*this, &PropDialog::hide)); - add(table); - // add_button(Gtk::Stock::CANCEL, 0); - // add_button(Gtk::Stock::OK, 1); + quitButton.show(); + vbox.show(); show_all_children(); } void PropDialog::set_info(DLS::Info* info) { - entry[0].set_text(info->Name); - entry[1].set_text(info->CreationDate); - entry[2].set_text(Glib::convert(info->Comments, "UTF-8", "ISO-8859-1")); - entry[3].set_text(info->Product); - entry[4].set_text(info->Copyright); - entry[5].set_text(info->Artists); - entry[6].set_text(info->Genre); - entry[7].set_text(info->Keywords); - entry[8].set_text(info->Engineer); - entry[9].set_text(info->Technician); - entry[10].set_text(info->Software); - entry[11].set_text(info->Medium); - entry[12].set_text(info->Source); - entry[13].set_text(info->SourceForm); - entry[14].set_text(info->Commissioned); - entry[15].set_text(info->Subject); + this->info = info; + update_model++; + eName.set_value(info->Name); + eCreationDate.set_value(info->CreationDate); + eComments.set_value(info->Comments); + eProduct.set_value(info->Product); + eCopyright.set_value(info->Copyright); + eArtists.set_value(info->Artists); + eGenre.set_value(info->Genre); + eKeywords.set_value(info->Keywords); + eEngineer.set_value(info->Engineer); + eTechnician.set_value(info->Technician); + eSoftware.set_value(info->Software); + eMedium.set_value(info->Medium); + eSource.set_value(info->Source); + eSourceForm.set_value(info->SourceForm); + eCommissioned.set_value(info->Commissioned); + eSubject.set_value(info->Subject); + update_model--; } -void InstrumentProps::add_prop(BoolEntry& boolentry) +sigc::signal& PropDialog::signal_info_changed() { - table.attach(boolentry.widget, 0, 2, rowno, rowno + 1, - Gtk::FILL, Gtk::SHRINK); - rowno++; - boolentry.signal_changed_by_user().connect(instrument_changed.make_slot()); + return info_changed; } -void InstrumentProps::add_prop(BoolEntryPlus6& boolentry) +void InstrumentProps::set_IsDrum(bool value) { - table.attach(boolentry.widget, 0, 2, rowno, rowno + 1, - Gtk::FILL, Gtk::SHRINK); - rowno++; - boolentry.signal_changed_by_user().connect(instrument_changed.make_slot()); + instrument->IsDrum = value; } -void InstrumentProps::add_prop(LabelWidget& prop) +void InstrumentProps::set_MIDIBank(uint16_t value) { - table.attach(prop.label, 0, 1, rowno, rowno + 1, - Gtk::FILL, Gtk::SHRINK); - table.attach(prop.widget, 1, 2, rowno, rowno + 1, - Gtk::FILL | Gtk::EXPAND, Gtk::SHRINK); - rowno++; - prop.signal_changed_by_user().connect(instrument_changed.make_slot()); + instrument->MIDIBank = value; +} + +void InstrumentProps::set_MIDIProgram(uint32_t value) +{ + instrument->MIDIProgram = value; +} + +void InstrumentProps::set_DimensionKeyRange_low(uint8_t value) +{ + instrument->DimensionKeyRange.low = value; + if (value > instrument->DimensionKeyRange.high) { + eDimensionKeyRangeHigh.set_value(value); + } +} + +void InstrumentProps::set_DimensionKeyRange_high(uint8_t value) +{ + instrument->DimensionKeyRange.high = value; + if (value < instrument->DimensionKeyRange.low) { + eDimensionKeyRangeLow.set_value(value); + } } InstrumentProps::InstrumentProps() @@ -864,31 +1054,49 @@ eFineTune("Fine tune", -8400, 8400), ePitchbendRange("Pitchbend range", 0, 12), ePianoReleaseMode("Piano release mode"), - eDimensionKeyRangeLow("Dimension key range low"), - eDimensionKeyRangeHigh("Dimension key range high") -{ - set_title("Instrument properties"); + eDimensionKeyRangeLow("Keyswitching range low"), + eDimensionKeyRangeHigh("Keyswitching range high"), + update_model(0) +{ + set_title("Instrument Properties"); + + eDimensionKeyRangeLow.set_tip( + _("start of the keyboard area which should switch the " + "\"keyswitching\" dimension") + ); + eDimensionKeyRangeHigh.set_tip( + _("end of the keyboard area which should switch the " + "\"keyswitching\" dimension") + ); + + connect(eIsDrum, &InstrumentProps::set_IsDrum); + connect(eMIDIBank, &InstrumentProps::set_MIDIBank); + connect(eMIDIProgram, &InstrumentProps::set_MIDIProgram); + connect(eAttenuation, &gig::Instrument::Attenuation); + connect(eGainPlus6, &gig::Instrument::Attenuation); + connect(eEffectSend, &gig::Instrument::EffectSend); + connect(eFineTune, &gig::Instrument::FineTune); + connect(ePitchbendRange, &gig::Instrument::PitchbendRange); + connect(ePianoReleaseMode, &gig::Instrument::PianoReleaseMode); + connect(eDimensionKeyRangeLow, + &InstrumentProps::set_DimensionKeyRange_low); + connect(eDimensionKeyRangeHigh, + &InstrumentProps::set_DimensionKeyRange_high); - rowno = 0; table.set_col_spacings(5); - add_prop(eName); - add_prop(eIsDrum); - add_prop(eMIDIBank); - add_prop(eMIDIProgram); - add_prop(eAttenuation); - add_prop(eGainPlus6); - add_prop(eEffectSend); - add_prop(eFineTune); - add_prop(ePitchbendRange); - add_prop(ePianoReleaseMode); - add_prop(eDimensionKeyRangeLow); - add_prop(eDimensionKeyRangeHigh); - - eDimensionKeyRangeLow.signal_changed_by_user().connect( - sigc::mem_fun(*this, &InstrumentProps::key_range_low_changed)); - eDimensionKeyRangeHigh.signal_changed_by_user().connect( - sigc::mem_fun(*this, &InstrumentProps::key_range_high_changed)); + table.add(eName); + table.add(eIsDrum); + table.add(eMIDIBank); + table.add(eMIDIProgram); + table.add(eAttenuation); + table.add(eGainPlus6); + table.add(eEffectSend); + table.add(eFineTune); + table.add(ePitchbendRange); + table.add(ePianoReleaseMode); + table.add(eDimensionKeyRangeLow); + table.add(eDimensionKeyRangeHigh); add(vbox); table.set_border_width(5); @@ -912,34 +1120,22 @@ void InstrumentProps::set_instrument(gig::Instrument* instrument) { - eName.set_ptr(&instrument->pInfo->Name); - eIsDrum.set_ptr(&instrument->IsDrum); - eMIDIBank.set_ptr(&instrument->MIDIBank); - eMIDIProgram.set_ptr(&instrument->MIDIProgram); - eAttenuation.set_ptr(&instrument->Attenuation); - eGainPlus6.set_ptr(&instrument->Attenuation); - eEffectSend.set_ptr(&instrument->EffectSend); - eFineTune.set_ptr(&instrument->FineTune); - ePitchbendRange.set_ptr(&instrument->PitchbendRange); - ePianoReleaseMode.set_ptr(&instrument->PianoReleaseMode); - eDimensionKeyRangeLow.set_ptr(0); - eDimensionKeyRangeHigh.set_ptr(0); - eDimensionKeyRangeLow.set_ptr(&instrument->DimensionKeyRange.low); - eDimensionKeyRangeHigh.set_ptr(&instrument->DimensionKeyRange.high); -} - -void InstrumentProps::key_range_low_changed() -{ - double l = eDimensionKeyRangeLow.get_value(); - double h = eDimensionKeyRangeHigh.get_value(); - if (h < l) eDimensionKeyRangeHigh.set_value(l); -} - -void InstrumentProps::key_range_high_changed() -{ - double l = eDimensionKeyRangeLow.get_value(); - double h = eDimensionKeyRangeHigh.get_value(); - if (h < l) eDimensionKeyRangeLow.set_value(h); + this->instrument = instrument; + + update_model++; + eName.set_value(instrument->pInfo->Name); + eIsDrum.set_value(instrument->IsDrum); + eMIDIBank.set_value(instrument->MIDIBank); + eMIDIProgram.set_value(instrument->MIDIProgram); + eAttenuation.set_value(instrument->Attenuation); + eGainPlus6.set_value(instrument->Attenuation); + eEffectSend.set_value(instrument->EffectSend); + eFineTune.set_value(instrument->FineTune); + ePitchbendRange.set_value(instrument->PitchbendRange); + ePianoReleaseMode.set_value(instrument->PianoReleaseMode); + eDimensionKeyRangeLow.set_value(instrument->DimensionKeyRange.low); + eDimensionKeyRangeHigh.set_value(instrument->DimensionKeyRange.high); + update_model--; } sigc::signal& InstrumentProps::signal_instrument_changed() @@ -958,7 +1154,7 @@ void MainWindow::load_gig(gig::File* gig, const char* filename, bool isSharedInstrument) { file = 0; - file_is_shared = isSharedInstrument; + set_file_is_shared(isSharedInstrument); this->filename = filename ? filename : _("Unsaved Gig File"); set_title(Glib::filename_display_basename(this->filename)); @@ -1021,18 +1217,24 @@ void MainWindow::show_instr_props() { - Glib::RefPtr tree_sel_ref = m_TreeView.get_selection(); - Gtk::TreeModel::iterator it = tree_sel_ref->get_selected(); - if (it) + gig::Instrument* instrument = get_instrument(); + if (instrument) { - Gtk::TreeModel::Row row = *it; - if (row[m_Columns.m_col_instr]) - { - instrumentProps.set_instrument(row[m_Columns.m_col_instr]); - instrumentProps.show(); - instrumentProps.deiconify(); - } + instrumentProps.set_instrument(instrument); + instrumentProps.show(); + instrumentProps.deiconify(); + } +} + +void MainWindow::on_action_view_status_bar() { + Gtk::CheckMenuItem* item = + dynamic_cast(uiManager->get_widget("/MenuBar/MenuView/Statusbar")); + if (!item) { + std::cerr << "/MenuBar/MenuView/Statusbar == NULL\n"; + return; } + if (item->get_active()) m_StatusBar.show(); + else m_StatusBar.hide(); } void MainWindow::on_button_release(GdkEventButton* button) @@ -1296,6 +1498,108 @@ } } +void MainWindow::on_action_replace_all_samples_in_all_groups() +{ + if (!file) return; + Gtk::FileChooserDialog dialog(*this, _("Select Folder"), + Gtk::FILE_CHOOSER_ACTION_SELECT_FOLDER); + Gtk::Label description( + _("This is a very specific function. It tries to replace all samples " + "in the current gig file by samples located in the directory chosen " + "by you above.\n\n" + "It works like this: For each sample in the gig file it tries to " + "find a sample file in the selected directory with the same name as " + "the sample in the gig file. Optionally you can add a filename " + "postfix below, which will be added to the filename expected to be " + "found. That is, assume you have a gig file with a sample called " + "'Snare', if you enter '.wav' below (like it's done by default), it " + "assumes to find a sample file called 'Snare.wav' and will replace " + "the sample in the gig file accordingly. If you don't need such a " + "postfix, blank the field below. Any gig sample where no " + "appropriate sample file could be found, will be reported and left " + "untouched.\n\n") + ); + description.set_line_wrap(true); + Gtk::HBox entryArea; + Gtk::Label entryLabel( _("Add Filename Extension: "), Gtk::ALIGN_RIGHT); + Gtk::Entry postfixEntryBox; + postfixEntryBox.set_text(".wav"); + entryArea.pack_start(entryLabel); + entryArea.pack_start(postfixEntryBox); + dialog.get_vbox()->pack_start(description, Gtk::PACK_SHRINK); + dialog.get_vbox()->pack_start(entryArea, Gtk::PACK_SHRINK); + description.show(); + entryLabel.show(); + postfixEntryBox.show(); + entryArea.show(); + dialog.add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); + dialog.add_button(_("Select"), Gtk::RESPONSE_OK); + dialog.set_select_multiple(false); + // fix label width (because Gtk by design doesn't + // know anything about the parent's size) +#if 0 //FIXME: doesn't work + int dialogW, dialogH, labelW, labelH; + dialog.get_size_request(dialogW, dialogH); + description.get_size_request(labelW, labelH); + std::cout << "dialog(" << dialogW << "," << dialogH << ")\nlabel(" << labelW << "," << labelH << ")\n" << std::flush; + description.set_size_request(dialogW, labelH); +#endif + if (dialog.run() == Gtk::RESPONSE_OK) + { + Glib::ustring error_files; + Glib::ustring folder = dialog.get_filename(); + for (gig::Sample* sample = file->GetFirstSample(); + sample; sample = file->GetNextSample()) + { + std::string filename = + folder + G_DIR_SEPARATOR_S + sample->pInfo->Name + + postfixEntryBox.get_text().raw(); + SF_INFO info; + info.format = 0; + SNDFILE* hFile = sf_open(filename.c_str(), SFM_READ, &info); + try + { + if (!hFile) throw std::string("could not open file"); + int bitdepth; + switch (info.format & 0xff) { + case SF_FORMAT_PCM_S8: + case SF_FORMAT_PCM_16: + case SF_FORMAT_PCM_U8: + bitdepth = 16; + break; + case SF_FORMAT_PCM_24: + case SF_FORMAT_PCM_32: + case SF_FORMAT_FLOAT: + case SF_FORMAT_DOUBLE: + bitdepth = 24; + break; + default: + sf_close(hFile); + throw std::string("format not supported"); + } + SampleImportItem sched_item; + sched_item.gig_sample = sample; + sched_item.sample_path = filename; + m_SampleImportQueue.push_back(sched_item); + sf_close(hFile); + file_changed(); + } + catch (std::string what) + { + if (error_files.size()) error_files += "\n"; + error_files += filename += " (" + what + ")"; + } + } + // show error message box when some file(s) could not be opened / added + if (error_files.size()) { + Glib::ustring txt = + _("Could not replace the following sample(s):\n") + error_files; + Gtk::MessageDialog msg(*this, txt, false, Gtk::MESSAGE_ERROR); + msg.run(); + } + } +} + void MainWindow::on_action_remove_sample() { if (!file) return; Glib::RefPtr sel = m_TreeViewSamples.get_selection(); @@ -1462,6 +1766,8 @@ // notify we're done with altering region_changed_signal.emit(region); + file_changed(); + return; } // drop failed @@ -1502,6 +1808,22 @@ } } +void MainWindow::set_file_is_shared(bool b) { + this->file_is_shared = b; + + if (file_is_shared) { + m_AttachedStateLabel.set_label(_("live-mode")); + m_AttachedStateImage.set( + Gdk::Pixbuf::create_from_xpm_data(status_attached_xpm) + ); + } else { + m_AttachedStateLabel.set_label(_("stand-alone")); + m_AttachedStateImage.set( + Gdk::Pixbuf::create_from_xpm_data(status_detached_xpm) + ); + } +} + sigc::signal& MainWindow::signal_file_structure_to_be_changed() { return file_structure_to_be_changed_signal; } @@ -1537,3 +1859,19 @@ sigc::signal& MainWindow::signal_dimreg_changed() { return dimreg_changed_signal; } + +sigc::signal& MainWindow::signal_note_on() { + return note_on_signal; +} + +sigc::signal& MainWindow::signal_note_off() { + return note_off_signal; +} + +sigc::signal& MainWindow::signal_keyboard_key_hit() { + return m_RegionChooser.signal_keyboard_key_hit(); +} + +sigc::signal& MainWindow::signal_keyboard_key_released() { + return m_RegionChooser.signal_keyboard_key_released(); +}