(Source List) Implement remove_selected_sources when the user clicks Delete key.
[ardour.git] / gtk2_ardour / editor_sources.h
1 /*
2     Copyright (C) 2000-2009 Paul Davis
3
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.
8
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.
13
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.
17
18 */
19 #ifndef __gtk_ardour_editor_sources_h__
20 #define __gtk_ardour_editor_sources_h__
21
22 #include <boost/unordered_map.hpp>
23
24 #include <gtkmm/scrolledwindow.h>
25 #include <gtkmm/treemodel.h>
26 #include <gtkmm/treerowreference.h>
27 #include <gtkmm/treestore.h>
28
29 #include "editor_component.h"
30
31 #include "selection.h"
32
33 class EditorSources : public EditorComponent, public ARDOUR::SessionHandlePtr
34 {
35 public:
36         EditorSources (Editor *);
37
38         void set_session (ARDOUR::Session *);
39
40         void set_selection (Selection *sel) { _selection = sel; }
41
42         Gtk::Widget& widget () {
43                 return _scroller;
44         }
45
46         void clear ();
47         
48         void remove_selected_sources ();
49
50         void selection_mapover (sigc::slot<void,boost::shared_ptr<ARDOUR::Region> >);
51
52         boost::shared_ptr<ARDOUR::Source> get_dragged_source ();
53         boost::shared_ptr<ARDOUR::Source> get_single_selection ();
54
55         void block_change_connection (bool b) {
56                 _change_connection.block (b);
57         }
58
59         void unselect_all () {
60                 _display.get_selection()->unselect_all ();
61         }
62
63         XMLNode& get_state () const;
64         void set_state (const XMLNode &);
65
66 private:
67
68         struct Columns : public Gtk::TreeModel::ColumnRecord {
69                 Columns () {
70                         add (name);
71                         add (take_id);
72                         add (natural_pos);
73                         add (path);
74                         add (color_);
75                         add (source);
76                         add (natural_s);
77                 }
78
79                 Gtk::TreeModelColumn<std::string> name;
80                 Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Source> > source;
81                 Gtk::TreeModelColumn<Gdk::Color> color_;
82                 Gtk::TreeModelColumn<std::string> natural_pos;
83                 Gtk::TreeModelColumn<std::string> path;
84                 Gtk::TreeModelColumn<std::string> take_id;
85                 Gtk::TreeModelColumn<samplepos_t> natural_s;
86         };
87
88         Columns _columns;
89
90         Gtk::TreeModel::RowReference last_row;
91
92         void freeze_tree_model ();
93         void thaw_tree_model ();
94         void source_changed (boost::shared_ptr<ARDOUR::Source>);
95         void populate_row (Gtk::TreeModel::Row row, boost::shared_ptr<ARDOUR::Source> source);
96         void selection_changed ();
97
98         sigc::connection _change_connection;
99
100         bool selection_filter (const Glib::RefPtr<Gtk::TreeModel>& model, const Gtk::TreeModel::Path& path, bool yn);
101
102         Gtk::Widget* old_focus;
103
104         bool key_press (GdkEventKey *);
105         bool button_press (GdkEventButton *);
106
107         bool focus_in (GdkEventFocus*);
108         bool focus_out (GdkEventFocus*);
109         bool enter_notify (GdkEventCrossing*);
110         bool leave_notify (GdkEventCrossing*);
111
112         void show_context_menu (int button, int time);
113
114         void format_position (ARDOUR::samplepos_t pos, char* buf, size_t bufsize, bool onoff = true);
115
116         void add_source (boost::shared_ptr<ARDOUR::Source>);
117         void remove_source (boost::shared_ptr<ARDOUR::Source>);
118
119         void clock_format_changed ();
120
121         void drag_data_received (
122                 Glib::RefPtr<Gdk::DragContext> const &, gint, gint, Gtk::SelectionData const &, guint, guint
123                 );
124
125         Gtk::Menu* _menu;
126         Gtk::ScrolledWindow _scroller;
127         Gtk::Frame _frame;
128
129         Gtkmm2ext::DnDTreeView<boost::shared_ptr<ARDOUR::Source> > _display;
130
131         Glib::RefPtr<Gtk::TreeStore> _model;
132
133         PBD::ScopedConnection source_property_connection;
134
135         PBD::ScopedConnection source_added_connection;
136         PBD::ScopedConnection source_removed_connection;
137
138         PBD::ScopedConnection editor_freeze_connection;
139         PBD::ScopedConnection editor_thaw_connection;
140
141         Selection* _selection;
142
143 };
144
145 #endif /* __gtk_ardour_editor_regions_h__ */