2005-09-25 14:42:24 -04:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cmath>
|
|
|
|
#include <vector>
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include <ardour/named_selection.h>
|
|
|
|
#include <ardour/session_selection.h>
|
|
|
|
#include <ardour/playlist.h>
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/stop_signal.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "editor.h"
|
|
|
|
#include "selection.h"
|
|
|
|
#include "time_axis_view.h"
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "prompter.h"
|
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
using namespace sigc;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace ARDOUR;
|
2006-06-21 19:01:03 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Gtk;
|
2005-09-25 16:33:00 -04:00
|
|
|
using namespace Gtkmm2ext;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
Editor::handle_new_named_selection ()
|
|
|
|
{
|
2005-09-25 17:19:23 -04:00
|
|
|
ARDOUR_UI::instance()->call_slot (mem_fun(*this, &Editor::redisplay_named_selections));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Editor::add_named_selection_to_named_selection_display (NamedSelection& selection)
|
|
|
|
{
|
2005-10-26 14:12:00 -04:00
|
|
|
TreeModel::Row row = *(named_selection_model->append());
|
|
|
|
row[named_selection_columns.text] = selection.name;
|
|
|
|
row[named_selection_columns.selection] = &selection;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Editor::redisplay_named_selections ()
|
|
|
|
{
|
2005-11-28 17:36:26 -05:00
|
|
|
named_selection_model->clear ();
|
2005-09-25 14:42:24 -04:00
|
|
|
session->foreach_named_selection (*this, &Editor::add_named_selection_to_named_selection_display);
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
|
|
|
Editor::named_selection_display_button_press (GdkEventButton *ev)
|
|
|
|
{
|
2005-10-26 14:12:00 -04:00
|
|
|
|
|
|
|
TreeModel::Children rows = named_selection_model->children();
|
|
|
|
TreeModel::Children::iterator i;
|
|
|
|
Glib::RefPtr<TreeSelection> selection = named_selection_display.get_selection();
|
|
|
|
|
|
|
|
for (i = rows.begin(); i != rows.end(); ++i) {
|
|
|
|
if (selection->is_selected (i)) {
|
|
|
|
switch (ev->button) {
|
|
|
|
case 1:
|
|
|
|
if (Keyboard::is_delete_event (ev)) {
|
|
|
|
session->remove_named_selection ((*i)[named_selection_columns.selection]);
|
2005-09-25 14:42:24 -04:00
|
|
|
return stop_signal (named_selection_display, "button_press_event");
|
|
|
|
}
|
2005-10-26 14:12:00 -04:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2005-10-26 14:12:00 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2005-10-26 14:12:00 -04:00
|
|
|
Editor::named_selection_display_selection_changed ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Editor::name_selection ()
|
|
|
|
{
|
|
|
|
ArdourPrompter p;
|
|
|
|
|
2006-04-19 16:42:17 -04:00
|
|
|
p.set_prompt (_("Name for Chunk:"));
|
|
|
|
p.add_button (Gtk::Stock::NEW, Gtk::RESPONSE_ACCEPT);
|
2006-04-22 11:28:59 -04:00
|
|
|
p.set_response_sensitive (Gtk::RESPONSE_ACCEPT, false);
|
2006-04-19 16:42:17 -04:00
|
|
|
p.change_labels (_("Create Chunk"), _("Forget it"));
|
2005-09-25 14:42:24 -04:00
|
|
|
p.show_all ();
|
|
|
|
|
2005-10-26 14:12:00 -04:00
|
|
|
switch (p.run ()) {
|
2006-01-13 14:48:55 -05:00
|
|
|
case Gtk::RESPONSE_ACCEPT:
|
2005-10-26 14:12:00 -04:00
|
|
|
string name;
|
2005-09-25 14:42:24 -04:00
|
|
|
p.get_result (name);
|
2005-10-26 14:12:00 -04:00
|
|
|
if (name.length()) {
|
|
|
|
create_named_selection (name);
|
|
|
|
}
|
|
|
|
break;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2005-10-26 14:12:00 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Editor::named_selection_name_chosen ()
|
|
|
|
{
|
|
|
|
Gtk::Main::quit ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-12-22 07:23:54 -05:00
|
|
|
Editor::create_named_selection (const string & name)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
if (session == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check for a range-based selection */
|
|
|
|
|
|
|
|
if (selection->time.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
TrackViewList *views = get_valid_views (selection->time.track, selection->time.group);
|
|
|
|
|
|
|
|
if (views->empty()) {
|
|
|
|
delete views;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Playlist* what_we_found;
|
|
|
|
list<Playlist*> thelist;
|
|
|
|
|
|
|
|
for (TrackViewList::iterator i = views->begin(); i != views->end(); ++i) {
|
|
|
|
|
|
|
|
Playlist *pl = (*i)->playlist();
|
|
|
|
|
|
|
|
if (pl) {
|
|
|
|
|
|
|
|
if ((what_we_found = pl->copy (selection->time, false)) != 0) {
|
|
|
|
|
|
|
|
thelist.push_back (what_we_found);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NamedSelection* ns;
|
2005-10-26 14:12:00 -04:00
|
|
|
TreeModel::Row row = *(named_selection_model->append());
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
ns = new NamedSelection (name, thelist);
|
2005-10-26 14:12:00 -04:00
|
|
|
row[named_selection_columns.selection] = ns;
|
|
|
|
row[named_selection_columns.text] = name;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* make the one we just added be selected */
|
|
|
|
|
2005-10-26 14:12:00 -04:00
|
|
|
named_selection_display.get_selection()->select (row);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|