Remove erroneous assert which I added earlier.
[ardour2.git] / gtk2_ardour / actions.h
blobfd9af9992aba2daccab7b1f1370a8da445a7521e
1 /*
2 Copyright (C) 2000-2007 Paul Davis
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.
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.
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.
20 #ifndef __ardour_gtk_actions_h__
21 #define __ardour_gtk_actions_h__
23 #include <vector>
25 #include "gtkmm2ext/actions.h"
26 #include "ardour/rc_configuration.h"
28 namespace ActionManager {
30 /* Ardour specific */
32 extern void init ();
34 extern std::vector<Glib::RefPtr<Gtk::Action> > session_sensitive_actions;
35 extern std::vector<Glib::RefPtr<Gtk::Action> > write_sensitive_actions;
36 extern std::vector<Glib::RefPtr<Gtk::Action> > region_list_selection_sensitive_actions;
37 extern std::vector<Glib::RefPtr<Gtk::Action> > plugin_selection_sensitive_actions;
39 extern std::vector<Glib::RefPtr<Gtk::Action> > track_selection_sensitive_actions;
40 extern std::vector<Glib::RefPtr<Gtk::Action> > point_selection_sensitive_actions;
41 extern std::vector<Glib::RefPtr<Gtk::Action> > time_selection_sensitive_actions;
42 extern std::vector<Glib::RefPtr<Gtk::Action> > line_selection_sensitive_actions;
43 extern std::vector<Glib::RefPtr<Gtk::Action> > playlist_selection_sensitive_actions;
44 extern std::vector<Glib::RefPtr<Gtk::Action> > mouse_edit_point_requires_canvas_actions;
46 extern std::vector<Glib::RefPtr<Gtk::Action> > range_sensitive_actions;
47 extern std::vector<Glib::RefPtr<Gtk::Action> > transport_sensitive_actions;
48 extern std::vector<Glib::RefPtr<Gtk::Action> > jack_sensitive_actions;
49 extern std::vector<Glib::RefPtr<Gtk::Action> > jack_opposite_sensitive_actions;
50 extern std::vector<Glib::RefPtr<Gtk::Action> > edit_point_in_region_sensitive_actions;
52 extern void map_some_state (const char* group, const char* action, bool (ARDOUR::RCConfiguration::*get)() const);
53 extern void map_some_state (const char* group, const char* action, sigc::slot<bool>);
54 extern void toggle_config_state (const char* group, const char* action, bool (ARDOUR::RCConfiguration::*set)(bool), bool (ARDOUR::RCConfiguration::*get)(void) const);
55 extern void toggle_config_state_foo (const char* group, const char* action, sigc::slot<bool, bool>, sigc::slot<bool>);
59 #endif /* __ardour_gtk_actions_h__ */