8eef1bc442d5ea607f1a0e11a32e4a9989eb88ed
[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 selection_mapover (sigc::slot<void,boost::shared_ptr<ARDOUR::Region> >);
49
50         boost::shared_ptr<ARDOUR::Source> get_dragged_source ();
51         boost::shared_ptr<ARDOUR::Source> get_single_selection ();
52
53         void block_change_connection (bool b) {
54                 _change_connection.block (b);
55         }
56
57         void unselect_all () {
58                 _display.get_selection()->unselect_all ();
59         }
60
61         void remove_unused_regions ();
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         Glib::RefPtr<Gtk::Action> remove_unused_regions_action () const;  //TODO: what is the equivalent?
126
127         Gtk::Menu* _menu;
128         Gtk::ScrolledWindow _scroller;
129         Gtk::Frame _frame;
130
131         Gtkmm2ext::DnDTreeView<boost::shared_ptr<ARDOUR::Source> > _display;  //TODO .. try changing this to region
132
133         Glib::RefPtr<Gtk::TreeStore> _model;
134
135         PBD::ScopedConnection source_property_connection;
136
137         PBD::ScopedConnection source_added_connection;
138         PBD::ScopedConnection source_removed_connection;
139
140         PBD::ScopedConnection editor_freeze_connection;
141         PBD::ScopedConnection editor_thaw_connection;
142
143         Selection* _selection;
144
145 };
146
147 #endif /* __gtk_ardour_editor_regions_h__ */