add alt-i as a binding in both the editor and mixer windows to toggle the state of...
[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         RouteProcessorSelection _selection;
46         RouteUISelection _route_targets;
47         Gtkmm2ext::ActionMap myactions;
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 delete_processors ();
63         void toggle_processors ();
64         void ab_plugins ();
65
66         /* these actions need access to a Session, do defer to
67            a derived class
68         */
69         virtual void toggle_midi_input_active (bool flip_others) = 0;
70
71         /* these actions don't apply to the selection, so defer to
72            a derived class.
73         */
74         virtual void scroll_left () {}
75         virtual void scroll_right () {}
76 };
77
78 #endif /* __gtk2_ardour_mixer_actor_h__ */