summaryrefslogtreecommitdiff
path: root/gtk2_ardour/playlist_selector.h
blob: 5c36d6b0a38c08bf38a3cc611b9bad063c0ed658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
    Copyright (C) 2004 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.

*/

#ifndef __ardour_playlist_selector_h__
#define __ardour_playlist_selector_h__

#include <gtk--.h>
#include <gtk--/ctree.h>
#include <gtkmmext/selector.h>

#include <ardour_dialog.h>

namespace ARDOUR {
	class Session;
	class PluginManager;
	class Plugin;
}

class RouteUI;

class PlaylistSelector : public ArdourDialog 
{
  public:
	PlaylistSelector ();
	~PlaylistSelector ();

	void set_session (ARDOUR::Session*);
	void show_for (RouteUI*);

  private:
	typedef std::map<ARDOUR::id_t,std::list<ARDOUR::Playlist*>*> DSPL_Map;

	ARDOUR::Session* session;
	Gtk::VBox vpacker;
	Gtk::ScrolledWindow scroller;
	Gtk::CTree tree;
	Gtk::Button close_button;
	DSPL_Map dspl_map;
	RouteUI* rui;

	SigC::Connection select_connection;

	void add_playlist_to_map (ARDOUR::Playlist*);
	void clear_map ();
	void close_button_click ();
	void row_selected (Gtk::CTree::Row, int32_t col);
};

#endif // __ardour_playlist_selector_h__