2 Copyright (C) 2000 Paul Davis
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 #include "ardour/named_selection.h"
27 #include "ardour/session_selection.h"
28 #include "ardour/playlist.h"
32 #include "selection.h"
33 #include "time_axis_view.h"
34 #include "ardour_ui.h"
40 using namespace ARDOUR
;
43 using namespace Gtkmm2ext
;
46 Editor::handle_new_named_selection ()
48 ARDOUR_UI::instance()->call_slot (boost::bind (&Editor::redisplay_named_selections
, this));
52 Editor::add_named_selection_to_named_selection_display (boost::shared_ptr
<NamedSelection
> selection
)
54 TreeModel::Row row
= *(named_selection_model
->append());
55 row
[named_selection_columns
.text
] = selection
.name
;
56 row
[named_selection_columns
.selection
] = selection
;
60 Editor::redisplay_named_selections ()
62 named_selection_model
->clear ();
63 session
->foreach_named_selection (*this, &Editor::add_named_selection_to_named_selection_display
);
67 Editor::named_selection_display_key_release (GdkEventKey
* ev
)
75 remove_selected_named_selections ();
86 Editor::remove_selected_named_selections ()
88 Glib::RefPtr
<TreeSelection
> selection
= named_selection_display
.get_selection();
89 TreeView::Selection::ListHandle_Path rows
= selection
->get_selected_rows ();
91 if (selection
->count_selected_rows() == 0) {
95 for (TreeView::Selection::ListHandle_Path::iterator i
= rows
.begin(); i
!= rows
.end(); ++i
) {
99 if ((iter
= named_selection_model
->get_iter (*i
))) {
100 session
->remove_named_selection ((*iter
)[named_selection_columns
.selection
]);
106 Editor::named_selection_display_button_release (GdkEventButton
*ev
)
108 TreeModel::Children rows
= named_selection_model
->children();
109 TreeModel::Children::iterator i
;
110 Glib::RefPtr
<TreeSelection
> selection
= named_selection_display
.get_selection();
112 for (i
= rows
.begin(); i
!= rows
.end(); ++i
) {
113 if (selection
->is_selected (i
)) {
114 switch (ev
->button
) {
116 if (Keyboard::is_delete_event (ev
)) {
117 session
->remove_named_selection ((*i
)[named_selection_columns
.selection
]);
136 Editor::named_selection_display_selection_changed ()
141 Editor::create_named_selection ()
149 /* check for a range-based selection */
151 if (selection
->time
.empty()) {
155 TrackViewList
*views
= get_valid_views (selection
->time
.track
, selection
->time
.group
);
157 if (views
->empty()) {
162 boost::shared_ptr
<Playlist
> what_we_found
;
163 list
<boost::shared_ptr
<Playlist
> > thelist
;
165 for (TrackViewList::iterator i
= views
->begin(); i
!= views
->end(); ++i
) {
167 boost::shared_ptr
<Playlist
> pl
= (*i
)->playlist();
169 if (pl
&& (what_we_found
= pl
->copy (selection
->time
, false)) != 0) {
170 thelist
.push_back (what_we_found
);
174 if (!thelist
.empty()) {
178 p
.set_prompt (_("Name for Chunk:"));
179 p
.add_button (Gtk::Stock::NEW
, Gtk::RESPONSE_ACCEPT
);
180 p
.set_response_sensitive (Gtk::RESPONSE_ACCEPT
, false);
181 p
.change_labels (_("Create Chunk"), _("Forget it"));
186 case Gtk::RESPONSE_ACCEPT
:
196 boost::shared_ptr
<NamedSelection
> ns (new NamedSelection (name
, thelist
));
198 /* make the one we just added be selected */
200 TreeModel::Children::iterator added
= named_selection_model
->children().end();
202 named_selection_display
.get_selection()->select (*added
);
205 error
<< _("No selectable material found in the currently selected time range") << endmsg
;