X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Feditor_selection_list.cc;h=73ceb59c377544b86360947c5e3a94b417d4b000;hb=40e2a6b16b47acf1f19a31f5e6d1cd463c45e1b6;hp=7f818ebe2be30f2c654178b868482f6cbdcec65f;hpb=e0aaed6d65f160c328cb8b56d7c6552ee15d65e2;p=ardour.git diff --git a/gtk2_ardour/editor_selection_list.cc b/gtk2_ardour/editor_selection_list.cc index 7f818ebe2b..73ceb59c37 100644 --- a/gtk2_ardour/editor_selection_list.cc +++ b/gtk2_ardour/editor_selection_list.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2000 Paul Davis + Copyright (C) 2000 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 @@ -27,8 +27,6 @@ #include "ardour/session_selection.h" #include "ardour/playlist.h" -#include - #include "editor.h" #include "keyboard.h" #include "selection.h" @@ -38,7 +36,7 @@ #include "i18n.h" -using namespace sigc; +using namespace std; using namespace ARDOUR; using namespace PBD; using namespace Gtk; @@ -47,15 +45,15 @@ using namespace Gtkmm2ext; void Editor::handle_new_named_selection () { - ARDOUR_UI::instance()->call_slot (mem_fun(*this, &Editor::redisplay_named_selections)); + ARDOUR_UI::instance()->call_slot (boost::bind (&Editor::redisplay_named_selections, this)); } void -Editor::add_named_selection_to_named_selection_display (NamedSelection& selection) +Editor::add_named_selection_to_named_selection_display (boost::shared_ptr selection) { TreeModel::Row row = *(named_selection_model->append()); row[named_selection_columns.text] = selection.name; - row[named_selection_columns.selection] = &selection; + row[named_selection_columns.selection] = selection; } void @@ -153,7 +151,7 @@ Editor::create_named_selection () if (selection->time.empty()) { return; } - + TrackViewList *views = get_valid_views (selection->time.track, selection->time.group); if (views->empty()) { @@ -165,9 +163,9 @@ Editor::create_named_selection () list > thelist; for (TrackViewList::iterator i = views->begin(); i != views->end(); ++i) { - + boost::shared_ptr pl = (*i)->playlist(); - + if (pl && (what_we_found = pl->copy (selection->time, false)) != 0) { thelist.push_back (what_we_found); } @@ -176,32 +174,33 @@ Editor::create_named_selection () if (!thelist.empty()) { ArdourPrompter p; - + p.set_prompt (_("Name for Chunk:")); p.add_button (Gtk::Stock::NEW, Gtk::RESPONSE_ACCEPT); p.set_response_sensitive (Gtk::RESPONSE_ACCEPT, false); p.change_labels (_("Create Chunk"), _("Forget it")); p.show_all (); - + switch (p.run ()) { - + case Gtk::RESPONSE_ACCEPT: p.get_result (name); if (name.empty()) { return; - } + } break; default: return; } - new NamedSelection (name, thelist); // creation will add it to the model - - /* make the one we just added be selected */ + boost::shared_ptr ns (new NamedSelection (name, thelist)); + /* make the one we just added be selected */ + TreeModel::Children::iterator added = named_selection_model->children().end(); --added; named_selection_display.get_selection()->select (*added); + } else { error << _("No selectable material found in the currently selected time range") << endmsg; }