radically change Keyboard/Binding API design to disconnect Gtk::Action lookup from...
[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
48         virtual void set_route_targets_for_operation () = 0;
49
50         void solo_action ();
51         void mute_action ();
52         void rec_enable_action ();
53         void step_gain_up_action ();
54         void step_gain_down_action ();
55         void unity_gain_action ();
56
57         void copy_processors ();
58         void cut_processors ();
59         void paste_processors ();
60         void select_all_processors ();
61         void toggle_processors ();
62         void ab_plugins ();
63
64         //this op is different because it checks _all_ mixer strips, and deletes selected plugins on any of them (ignores track selections)
65         //BUT... note that we have used mixerstrip's "Enter" to enforce the rule that only one strip will have an active selection
66         virtual void delete_processors () = 0;
67
68         virtual void select_none () = 0;
69
70
71         /* these actions need access to a Session, do defer to
72            a derived class
73         */
74         virtual void toggle_midi_input_active (bool flip_others) = 0;
75
76         /* these actions don't apply to the selection, so defer to
77            a derived class.
78         */
79         virtual void scroll_left () {}
80         virtual void scroll_right () {}
81 };
82
83 #endif /* __gtk2_ardour_mixer_actor_h__ */