6e941476047e4e72974bbf96a572acee80809ad3
[ardour.git] / gtk2_ardour / mixer_actor.h
1 /*
2     Copyright (C) 2000 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 __gtk2_ardour_mixer_actor_h__
21 #define __gtk2_ardour_mixer_actor_h__
22
23 #include <glibmm/refptr.h>
24 #include <gtkmm2ext/bindings.h>
25
26 #include "route_processor_selection.h"
27
28 namespace Gtk {
29         class ActionGroup;
30 }
31
32 class MixerActor : virtual public sigc::trackable
33 {
34   public:
35         MixerActor ();
36         virtual ~MixerActor ();
37
38         RouteProcessorSelection& selection() { return _selection; }
39         void register_actions ();
40
41         void load_bindings ();
42         Gtkmm2ext::Bindings*  bindings;
43
44   protected:
45         Gtkmm2ext::ActionMap myactions;
46         RouteProcessorSelection _selection;
47         RouteUISelection _route_targets;
48
49         virtual void set_route_targets_for_operation () = 0;
50
51         void solo_action ();
52         void mute_action ();
53         void rec_enable_action ();
54         void step_gain_up_action ();
55         void step_gain_down_action ();
56         void unity_gain_action ();
57
58         void copy_processors ();
59         void cut_processors ();
60         void paste_processors ();
61         void select_all_processors ();
62         void toggle_processors ();
63         void ab_plugins ();
64
65         //this op is different because it checks _all_ mixer strips, and deletes selected plugins on any of them (ignores track selections)
66         //BUT... note that we have used mixerstrip's "Enter" to enforce the rule that only one strip will have an active selection
67         virtual void delete_processors () = 0;
68
69         virtual void select_none () = 0;
70
71
72         /* these actions need access to a Session, do defer to
73            a derived class
74         */
75         virtual void toggle_midi_input_active (bool flip_others) = 0;
76
77         /* these actions don't apply to the selection, so defer to
78            a derived class.
79         */
80         virtual void scroll_left () {}
81         virtual void scroll_right () {}
82 };
83
84 #endif /* __gtk2_ardour_mixer_actor_h__ */