X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fsfdb_ui.cc;h=3084844f7898c8d8fd5654fcba6d64727c65de70;hb=b529cbc5dc0b92f01ff01d5f40786ff025fbb63b;hp=574e94ca274f99600a82b476c431679a9c0fd4f6;hpb=6039331bea9afb0ce8888659832a04b39ff6be7a;p=ardour.git diff --git a/gtk2_ardour/sfdb_ui.cc b/gtk2_ardour/sfdb_ui.cc index 574e94ca27..3084844f78 100644 --- a/gtk2_ardour/sfdb_ui.cc +++ b/gtk2_ardour/sfdb_ui.cc @@ -1,6 +1,5 @@ /* - Copyright (C) 2005 Paul Davis - Written by Taybin Rutkin + Copyright (C) 2005-2006 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -16,29 +15,49 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - */ +#include +#include +#include + #include #include -#include +#include +#include +#include + +#include +#include +#include +#include +#include + +#include "ardour_ui.h" +#include "editing.h" +#include "gui_thread.h" +#include "prompter.h" #include "sfdb_ui.h" +#include "utils.h" #include "i18n.h" -SoundFileBox::SoundFileBox (ARDOUR::Session* session) +using namespace ARDOUR; +using namespace PBD; +using namespace std; + +SoundFileBox::SoundFileBox () : + _session(0), current_pid(0), - fields(Gtk::ListStore::create(label_columns)), main_box (false, 3), top_box (true, 4), bottom_box (true, 4), play_btn(_("Play")), stop_btn(_("Stop")), - add_field_btn(_("Add Field...")), - remove_field_btn(_("Remove Field")) + apply_btn(_("Apply")) { set_name (X_("SoundFileBox")); border_frame.set_label (_("Soundfile Info")); @@ -47,148 +66,356 @@ SoundFileBox::SoundFileBox (ARDOUR::Session* session) pack_start (border_frame); set_border_width (4); - path_box.set_spacing (4); - path_box.pack_start (path, false, false); - path_box.pack_start (path_entry, true, true); + main_box.set_border_width (4); + + main_box.pack_start(length, false, false); + main_box.pack_start(format, false, false); + main_box.pack_start(channels, false, false); + main_box.pack_start(samplerate, false, false); + main_box.pack_start(timecode, false, false); + main_box.pack_start(tags_entry, true, true); + main_box.pack_start(top_box, false, false); + main_box.pack_start(bottom_box, false, false); + + top_box.set_homogeneous(true); + top_box.pack_start(apply_btn); - main_box.set_border_width (4); + bottom_box.set_homogeneous(true); + bottom_box.pack_start(play_btn); + bottom_box.pack_start(stop_btn); - main_box.pack_start(label, false, false); - main_box.pack_start(path_box, false, false); - main_box.pack_start(length, false, false); - main_box.pack_start(format, false, false); - main_box.pack_start(channels, false, false); - main_box.pack_start(samplerate, false, false); - main_box.pack_start(field_view, true, true); - main_box.pack_start(top_box, false, false); - main_box.pack_start(bottom_box, false, false); +// tags_entry.signal_focus_out_event().connect (mem_fun (*this, &SoundFileBox::tags_entry_left)); + play_btn.signal_clicked().connect (mem_fun (*this, &SoundFileBox::play_btn_clicked)); + stop_btn.signal_clicked().connect (mem_fun (*this, &SoundFileBox::stop_btn_clicked)); + apply_btn.signal_clicked().connect (mem_fun (*this, &SoundFileBox::apply_btn_clicked)); + + show_all(); + stop_btn.hide(); +} - field_view.set_size_request(200, 150); - top_box.set_homogeneous(true); - top_box.pack_start(add_field_btn); - top_box.pack_start(remove_field_btn); +void +SoundFileBox::set_session(Session* s) +{ + _session = s; - remove_field_btn.set_sensitive(false); + if (!_session) { + play_btn.set_sensitive(false); + } else { + _session->AuditionActive.connect(mem_fun (*this, &SoundFileBox::audition_status_changed)); + } +} - bottom_box.set_homogeneous(true); - bottom_box.pack_start(play_btn); - bottom_box.pack_start(stop_btn); +bool +SoundFileBox::setup_labels (string filename) +{ + path = filename; - play_btn.signal_clicked().connect (mem_fun (*this, &SoundFileBox::play_btn_clicked)); - stop_btn.signal_clicked().connect (mem_fun (*this, &SoundFileBox::stop_btn_clicked)); + string error_msg; - if (!session) { - play_btn.set_sensitive(false); - } else { - session->AuditionActive.connect(mem_fun (*this, &SoundFileBox::audition_status_changed)); - } + if(!AudioFileSource::get_soundfile_info (filename, sf_info, error_msg)) { + return false; + } - add_field_btn.signal_clicked().connect - (mem_fun (*this, &SoundFileBox::add_field_clicked)); - remove_field_btn.signal_clicked().connect - (mem_fun (*this, &SoundFileBox::remove_field_clicked)); + length.set_alignment (0.0f, 0.0f); + length.set_text (string_compose(_("Length: %1"), length2string(sf_info.length, sf_info.samplerate))); - field_view.get_selection()->signal_changed().connect (mem_fun (*this, &SoundFileBox::field_selected)); - ARDOUR::Library->fields_changed.connect (mem_fun (*this, &SoundFileBox::setup_fields)); + format.set_alignment (0.0f, 0.0f); + format.set_text (sf_info.format_name); - show_all(); - stop_btn.hide(); -} + channels.set_alignment (0.0f, 0.0f); + channels.set_text (string_compose(_("Channels: %1"), sf_info.channels)); -int -SoundFileBox::setup_labels (string filename) -{return 0;} + samplerate.set_alignment (0.0f, 0.0f); + samplerate.set_text (string_compose(_("Samplerate: %1"), sf_info.samplerate)); -void -SoundFileBox::setup_fields () -{} + timecode.set_alignment (0.0f, 0.0f); + timecode.set_text (string_compose (_("Timecode: %1"), length2string(sf_info.timecode, sf_info.samplerate))); + + vector tags = Library->get_tags (filename); + + stringstream tag_string; + for (vector::iterator i = tags.begin(); i != tags.end(); ++i) { + if (i != tags.begin()) { + tag_string << ", "; + } + tag_string << *i; + } + tags_entry.set_text (tag_string.str()); + + return true; +} + +bool +SoundFileBox::tags_entry_left (GdkEventFocus* event) +{ + apply_btn_clicked (); + + return true; +} void SoundFileBox::play_btn_clicked () -{} +{ + if (!_session) { + return; + } -void -SoundFileBox::stop_btn_clicked () -{} + _session->cancel_audition(); -void -SoundFileBox::add_field_clicked () -{} + if (access(path.c_str(), R_OK)) { + warning << string_compose(_("Could not read file: %1 (%2)."), path, strerror(errno)) << endmsg; + return; + } -void -SoundFileBox::remove_field_clicked () -{} + typedef std::map > RegionCache; + static RegionCache region_cache; + RegionCache::iterator the_region; + + if ((the_region = region_cache.find (path)) == region_cache.end()) { + SourceList srclist; + boost::shared_ptr afs; + + for (int n = 0; n < sf_info.channels; ++n) { + try { + afs = boost::dynamic_pointer_cast (SourceFactory::createReadable (*_session, path+":"+string_compose("%1", n), AudioFileSource::Flag (0))); + srclist.push_back(afs); + + } catch (failed_constructor& err) { + error << _("Could not access soundfile: ") << path << endmsg; + return; + } + } + + if (srclist.empty()) { + return; + } + + string rname; + + _session->region_name (rname, Glib::path_get_basename(srclist[0]->name()), false); + + pair > newpair; + pair res; + + newpair.first = path; + newpair.second = boost::dynamic_pointer_cast (RegionFactory::create (srclist, 0, srclist[0]->length(), rname, 0, Region::DefaultFlags, false)); + + res = region_cache.insert (newpair); + the_region = res.first; + } + + play_btn.hide(); + stop_btn.show(); + + boost::shared_ptr r = boost::static_pointer_cast (the_region->second); + + _session->audition_region(r); +} void -SoundFileBox::audition_status_changed (bool state) -{} +SoundFileBox::stop_btn_clicked () +{ + if (_session) { + _session->cancel_audition(); + play_btn.show(); + stop_btn.hide(); + } +} void -SoundFileBox::field_selected () -{} +SoundFileBox::apply_btn_clicked () +{ + string tag_string = tags_entry.get_text (); + + vector tags; + + static const string DELIMITERS = ","; + + // Skip delimiters at beginning. + string::size_type last_pos = tag_string.find_first_not_of(DELIMITERS, 0); + // Find first "non-delimiter". + string::size_type pos = tag_string.find_first_of(DELIMITERS, last_pos); + + while (string::npos != pos || string::npos != last_pos) { + string x = tag_string.substr(last_pos, pos - last_pos); + strip_whitespace_edges (x); + if (x.length()) { + tags.push_back (x); + } + // Skip delimiters. Note the "not_of" + last_pos = tag_string.find_first_not_of(DELIMITERS, pos); + // Find next "non-delimiter" + pos = tag_string.find_first_of(DELIMITERS, last_pos); + } + + Library->set_tags (path, tags); + Library->save_changes (); +} -bool -SoundFileBox::update (std::string filename) -{return true;} +void +SoundFileBox::audition_status_changed (bool active) +{ + ENSURE_GUI_THREAD(bind (mem_fun (*this, &SoundFileBox::audition_status_changed), active)); + + if (!active) { + stop_btn_clicked (); + } +} -SoundFileBrowser::SoundFileBrowser (std::string title) - : - ArdourDialog(title), - chooser(Gtk::FILE_CHOOSER_ACTION_OPEN), - preview(session) +// this needs to be kept in sync with the ImportMode enum defined in editing.h and editing_syms.h. +static const char *import_mode_strings[] = { + N_("Add to Region list"), + N_("Add to selected Track(s)"), + N_("Add as new Track(s)"), + N_("Add as new Tape Track(s)"), + 0 +}; + +SoundFileBrowser::SoundFileBrowser (string title, ARDOUR::Session* s) + : ArdourDialog (title, false), + chooser (Gtk::FILE_CHOOSER_ACTION_OPEN) { + set_default_size (700, 500); get_vbox()->pack_start(chooser); chooser.set_preview_widget(preview); + chooser.set_select_multiple (true); chooser.signal_update_preview().connect(mem_fun(*this, &SoundFileBrowser::update_preview)); - show_all(); + set_session (s); +} + +void +SoundFileBrowser::set_session (Session* s) +{ + preview.set_session(s); } void SoundFileBrowser::update_preview () { - chooser.set_preview_widget_active(preview.update(chooser.get_filename())); + chooser.set_preview_widget_active(preview.setup_labels(chooser.get_filename())); } -SoundFileChooser::SoundFileChooser (std::string title) +SoundFileChooser::SoundFileChooser (string title, ARDOUR::Session* s) : - SoundFileBrowser(title) + SoundFileBrowser(title, s) { add_button (Gtk::Stock::OPEN, Gtk::RESPONSE_OK); add_button (Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL); - - show_all(); + show_all (); } -SoundFileOmega::SoundFileOmega (std::string title) - : - SoundFileBrowser(title), - embed_btn (_("Embed")), - import_btn (_("Import")), - split_check (_("Split Channels")) +vector SoundFileOmega::mode_strings; + +SoundFileOmega::SoundFileOmega (string title, ARDOUR::Session* s) + : SoundFileBrowser (title, s), + split_check (_("Split Channels")) { - get_action_area()->pack_start(embed_btn); - get_action_area()->pack_start(import_btn); + if (mode_strings.empty()) { + mode_strings = I18N (import_mode_strings); + } + + ARDOUR_UI::instance()->tooltips().set_tip(split_check, + _("Create a region for each channel")); + + Gtk::Button* btn = add_button (_("Embed"), ResponseEmbed); + ARDOUR_UI::instance()->tooltips().set_tip(*btn, + _("Link to an external file")); + add_button (Gtk::Stock::CLOSE, Gtk::RESPONSE_CLOSE); - chooser.set_extra_widget(split_check); + btn = add_button (_("Import"), ResponseImport); + ARDOUR_UI::instance()->tooltips().set_tip(*btn, + _("Copy a file to the session folder")); - embed_btn.signal_clicked().connect (mem_fun (*this, &SoundFileOmega::embed_clicked)); - import_btn.signal_clicked().connect (mem_fun (*this, &SoundFileOmega::import_clicked)); + Gtk::HBox *box = manage (new Gtk::HBox()); - show_all(); + Gtkmm2ext::set_popdown_strings (mode_combo, mode_strings); + + set_mode (Editing::ImportAsRegion); + + box->pack_start (split_check); + box->pack_start (mode_combo); + + mode_combo.signal_changed().connect (mem_fun (*this, &SoundFileOmega::mode_changed)); + + chooser.set_extra_widget (*box); + + show_all (); } -void -SoundFileOmega::embed_clicked () +bool +SoundFileOmega::get_split () { - Embedded (chooser.get_filenames(), split_check.get_active()); + return split_check.get_active(); +} + +vector +SoundFileOmega::get_paths () +{ + return chooser.get_filenames(); } void -SoundFileOmega::import_clicked () +SoundFileOmega::set_mode (Editing::ImportMode mode) +{ + mode_combo.set_active_text (mode_strings[(int)mode]); + + switch (mode) { + case Editing::ImportAsRegion: + split_check.set_sensitive (true); + break; + case Editing::ImportAsTrack: + split_check.set_sensitive (true); + break; + case Editing::ImportToTrack: + split_check.set_sensitive (false); + break; + case Editing::ImportAsTapeTrack: + split_check.set_sensitive (true); + break; + } +} + +Editing::ImportMode +SoundFileOmega::get_mode () { - Imported (chooser.get_filenames(), split_check.get_active()); + vector::iterator i; + uint32_t n; + string str = mode_combo.get_active_text (); + + for (n = 0, i = mode_strings.begin (); i != mode_strings.end(); ++i, ++n) { + if (str == (*i)) { + break; + } + } + + if (i == mode_strings.end()) { + fatal << string_compose (_("programming error: %1"), X_("unknown import mode string")) << endmsg; + /*NOTREACHED*/ + } + + return (Editing::ImportMode) (n); } +void +SoundFileOmega::mode_changed () +{ + Editing::ImportMode mode = get_mode(); + + switch (mode) { + case Editing::ImportAsRegion: + split_check.set_sensitive (true); + break; + case Editing::ImportAsTrack: + split_check.set_sensitive (true); + break; + case Editing::ImportToTrack: + split_check.set_sensitive (false); + break; + case Editing::ImportAsTapeTrack: + split_check.set_sensitive (true); + break; + } +}