Make DnD copy processors using their XML representations. Remove unused
[ardour.git] / gtk2_ardour / processor_box.h
1 /*
2     Copyright (C) 2004 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
20 #ifndef __ardour_gtk_processor_box__
21 #define __ardour_gtk_processor_box__
22
23 #include <vector>
24
25 #include <cmath>
26 #include <gtkmm/box.h>
27 #include <gtkmm/eventbox.h>
28 #include <gtkmm/menu.h>
29 #include <gtkmm/scrolledwindow.h>
30 #include <gtkmm2ext/dndtreeview.h>
31 #include <gtkmm2ext/auto_spin.h>
32 #include <gtkmm2ext/click_box.h>
33 #include <gtkmm2ext/dndtreeview.h>
34
35 #include <pbd/stateful.h>
36
37 #include <ardour/types.h>
38 #include <ardour/ardour.h>
39 #include <ardour/plugin_insert.h>
40 #include <ardour/port_insert.h>
41 #include <ardour/processor.h>
42
43 #include <pbd/fastlog.h>
44
45 #include "plugin_interest.h"
46 #include "route_ui.h"
47 #include "io_selector.h"
48 #include "send_ui.h"
49 #include "enums.h"
50
51 class MotionController;
52 class PluginSelector;
53 class PluginUIWindow;
54 class RouteRedirectSelection;
55
56 namespace ARDOUR {
57         class Connection;
58         class IO;
59         class Insert;
60         class Plugin;
61         class PluginInsert;
62         class PortInsert;
63         class Route;
64         class Send;
65         class Session;
66 }
67
68 class ProcessorBox : public Gtk::HBox, public PluginInterestedObject
69 {
70   public:
71         ProcessorBox (ARDOUR::Placement, ARDOUR::Session&, PluginSelector &, RouteRedirectSelection &, bool owner_is_mixer = false);
72         ~ProcessorBox ();
73
74         void set_route (boost::shared_ptr<ARDOUR::Route>);
75         void set_width (Width);
76
77         void update();
78
79         void select_all_processors ();
80         void deselect_all_processors ();
81         void select_all_plugins ();
82         void select_all_inserts ();
83         void select_all_sends ();
84         
85         sigc::signal<void,boost::shared_ptr<ARDOUR::Processor> > ProcessorSelected;
86         sigc::signal<void,boost::shared_ptr<ARDOUR::Processor> > ProcessorUnselected;
87         
88         static void register_actions();
89
90   private:
91         boost::shared_ptr<ARDOUR::Route>  _route;
92         ARDOUR::Session &   _session;
93         bool                _owner_is_mixer;
94         bool                 ab_direction;
95         std::vector<sigc::connection> connections;
96
97         /// a send that is in the process of creation
98         boost::shared_ptr<ARDOUR::Send> _send_being_created;
99
100         ARDOUR::Placement   _placement;
101
102         PluginSelector     & _plugin_selector;
103         RouteRedirectSelection  & _rr_selection;
104
105         void route_going_away ();
106
107         struct ModelColumns : public Gtk::TreeModel::ColumnRecord {
108             ModelColumns () {
109                     add (text);
110                     add (processor);
111                     add (color);
112             }
113             Gtk::TreeModelColumn<std::string>       text;
114             Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::Processor> > processor;
115             Gtk::TreeModelColumn<Gdk::Color>        color;
116         };
117
118         ModelColumns columns;
119         Glib::RefPtr<Gtk::ListStore> model;
120         
121         void selection_changed ();
122
123         static bool get_colors;
124         static Gdk::Color* active_processor_color;
125         static Gdk::Color* inactive_processor_color;
126         
127         Gtk::EventBox          processor_eventbox;
128         Gtk::HBox              processor_hpacker;
129         Gtkmm2ext::DnDTreeView<boost::shared_ptr<ARDOUR::Processor> > processor_display;
130         Gtk::ScrolledWindow    processor_scroller;
131
132         void object_drop (const std::list<boost::shared_ptr<ARDOUR::Processor> >&);
133
134         Width _width;
135         
136         Gtk::Menu *send_action_menu;
137         void build_send_action_menu ();
138
139         void new_send ();
140         void show_send_controls ();
141
142         Gtk::Menu *processor_menu;
143         gint processor_menu_map_handler (GdkEventAny *ev);
144         Gtk::Menu * build_processor_menu ();
145         void build_processor_tooltip (Gtk::EventBox&, string);
146         void show_processor_menu (gint arg);
147
148         void choose_send ();
149         void send_io_finished (IOSelector::Result, boost::weak_ptr<ARDOUR::Processor>, IOSelectorWindow*);
150         void choose_insert ();
151         void choose_plugin ();
152         void use_plugins (const SelectedPlugins&);
153
154         bool no_processor_redisplay;
155         bool ignore_delete;
156
157         bool processor_button_press_event (GdkEventButton *);
158         bool processor_button_release_event (GdkEventButton *);
159         void redisplay_processors ();
160         void add_processor_to_display (boost::weak_ptr<ARDOUR::Processor>);
161         void row_deleted (const Gtk::TreeModel::Path& path);
162         void show_processor_active (boost::weak_ptr<ARDOUR::Processor>);
163         void show_processor_name (boost::weak_ptr<ARDOUR::Processor>);
164         string processor_name (boost::weak_ptr<ARDOUR::Processor>);
165
166         void remove_processor_gui (boost::shared_ptr<ARDOUR::Processor>);
167
168         void processors_reordered (const Gtk::TreeModel::Path&, const Gtk::TreeModel::iterator&, int*);
169         void compute_processor_sort_keys ();
170         std::vector<sigc::connection> processor_active_connections;
171         std::vector<sigc::connection> processor_name_connections;
172         
173         bool processor_drag_in_progress;
174         void processor_drag_begin (GdkDragContext*);
175         void processor_drag_end (GdkDragContext*);
176         void all_processors_active(bool state);
177         void all_plugins_active(bool state);
178         void ab_plugins ();
179
180         void cut_processors ();
181         void copy_processors ();
182         void paste_processors ();
183         void delete_processors ();
184         void clear_processors ();
185         void rename_processors ();
186
187         void for_selected_processors (void (ProcessorBox::*pmf)(boost::shared_ptr<ARDOUR::Processor>));
188         void get_selected_processors (vector<boost::shared_ptr<ARDOUR::Processor> >&);
189
190         static Glib::RefPtr<Gtk::Action> paste_action;
191         void paste_processor_state (const XMLNodeList&);
192         
193         void activate_processor (boost::shared_ptr<ARDOUR::Processor>);
194         void deactivate_processor (boost::shared_ptr<ARDOUR::Processor>);
195         void edit_processor (boost::shared_ptr<ARDOUR::Processor>);
196         void hide_processor_editor (boost::shared_ptr<ARDOUR::Processor>);
197         void rename_processor (boost::shared_ptr<ARDOUR::Processor>);
198
199         gint idle_delete_processor (boost::weak_ptr<ARDOUR::Processor>);
200
201         void weird_plugin_dialog (ARDOUR::Plugin& p, ARDOUR::Route::ProcessorStreams streams, boost::shared_ptr<ARDOUR::IO> io);
202
203         static ProcessorBox* _current_processor_box;
204         static bool enter_box (GdkEventCrossing*, ProcessorBox*);
205         static bool leave_box (GdkEventCrossing*, ProcessorBox*);
206
207         static void rb_choose_plugin ();
208         static void rb_choose_insert ();
209         static void rb_choose_send ();
210         static void rb_clear ();
211         static void rb_cut ();
212         static void rb_copy ();
213         static void rb_paste ();
214         static void rb_delete ();
215         static void rb_rename ();
216         static void rb_select_all ();
217         static void rb_deselect_all ();
218         static void rb_activate ();
219         static void rb_deactivate ();
220         static void rb_activate_all ();
221         static void rb_deactivate_all ();
222         static void rb_ab_plugins ();
223         static void rb_edit ();
224         
225         void route_name_changed (PluginUIWindow* plugin_ui, boost::weak_ptr<ARDOUR::PluginInsert> pi);
226         std::string generate_processor_title (boost::shared_ptr<ARDOUR::PluginInsert> pi);
227 };
228
229 #endif /* __ardour_gtk_processor_box__ */