2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2004 Paul Davis
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ardour_playlist_selector_h__
|
|
|
|
#define __ardour_playlist_selector_h__
|
|
|
|
|
2006-12-14 09:15:43 -05:00
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
2005-09-28 12:22:43 -04:00
|
|
|
#include <gtkmm/box.h>
|
|
|
|
#include <gtkmm/scrolledwindow.h>
|
|
|
|
#include <gtkmm/button.h>
|
|
|
|
#include <gtkmm/treeview.h>
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/selector.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-12-15 18:28:47 -05:00
|
|
|
#include "ardour_dialog.h"
|
2009-12-17 13:24:23 -05:00
|
|
|
#include "ardour/session_handle.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Session;
|
|
|
|
class PluginManager;
|
|
|
|
class Plugin;
|
|
|
|
}
|
|
|
|
|
|
|
|
class RouteUI;
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
class PlaylistSelector : public ArdourDialog
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PlaylistSelector ();
|
|
|
|
~PlaylistSelector ();
|
|
|
|
|
|
|
|
void show_for (RouteUI*);
|
|
|
|
|
2006-12-14 09:15:43 -05:00
|
|
|
protected:
|
|
|
|
bool on_unmap_event (GdkEventAny*);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
private:
|
2010-04-21 16:42:22 -04:00
|
|
|
typedef std::map<PBD::ID,std::list<boost::shared_ptr<ARDOUR::Playlist> >*> TrackPlaylistMap;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
Gtk::ScrolledWindow scroller;
|
2010-04-21 16:42:22 -04:00
|
|
|
TrackPlaylistMap trpl_map;
|
2005-09-25 14:42:24 -04:00
|
|
|
RouteUI* rui;
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
sigc::connection select_connection;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-12-14 09:15:43 -05:00
|
|
|
void add_playlist_to_map (boost::shared_ptr<ARDOUR::Playlist>);
|
2005-09-25 14:42:24 -04:00
|
|
|
void clear_map ();
|
|
|
|
void close_button_click ();
|
2005-09-28 12:22:43 -04:00
|
|
|
void selection_changed ();
|
|
|
|
|
|
|
|
struct ModelColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
ModelColumns () {
|
|
|
|
add (text);
|
|
|
|
add (playlist);
|
|
|
|
}
|
|
|
|
Gtk::TreeModelColumn<std::string> text;
|
2006-12-14 09:15:43 -05:00
|
|
|
Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Playlist> > playlist;
|
2005-09-28 12:22:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
ModelColumns columns;
|
|
|
|
Glib::RefPtr<Gtk::TreeStore> model;
|
|
|
|
Gtk::TreeView tree;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __ardour_playlist_selector_h__
|