2007-04-26 16:54:31 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2005-2018 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2009-2010 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2009 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2015-2019 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2007-04-26 16:54:31 -04:00
|
|
|
|
2005-10-17 11:12:50 -04:00
|
|
|
#ifndef __ardour_gtk_actions_h__
|
|
|
|
#define __ardour_gtk_actions_h__
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2009-12-04 15:52:04 -05:00
|
|
|
#include "gtkmm2ext/actions.h"
|
2009-05-13 20:13:27 -04:00
|
|
|
#include "ardour/rc_configuration.h"
|
2007-10-11 21:54:35 -04:00
|
|
|
|
2014-12-22 13:39:41 -05:00
|
|
|
#include "ui_config.h"
|
|
|
|
|
2009-12-04 15:52:04 -05:00
|
|
|
namespace ActionManager {
|
|
|
|
|
|
|
|
/* Ardour specific */
|
|
|
|
|
2014-04-10 04:10:50 -04:00
|
|
|
extern void load_menus (const std::string& menus_file_name); /* not path, just name */
|
2009-12-04 15:52:04 -05:00
|
|
|
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > session_sensitive_actions;
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > write_sensitive_actions;
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > region_list_selection_sensitive_actions;
|
2015-08-31 22:31:33 -04:00
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > plugin_selection_sensitive_actions;
|
2009-12-04 15:52:04 -05:00
|
|
|
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > track_selection_sensitive_actions;
|
2017-08-07 11:34:03 -04:00
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > stripable_selection_sensitive_actions;
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > bus_selection_sensitive_actions;
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > route_selection_sensitive_actions;
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > vca_selection_sensitive_actions;
|
2009-12-04 15:52:04 -05:00
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > point_selection_sensitive_actions;
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > time_selection_sensitive_actions;
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > line_selection_sensitive_actions;
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > playlist_selection_sensitive_actions;
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > mouse_edit_point_requires_canvas_actions;
|
|
|
|
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > range_sensitive_actions;
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > transport_sensitive_actions;
|
2013-09-04 12:49:52 -04:00
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > engine_sensitive_actions;
|
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > engine_opposite_sensitive_actions;
|
2016-09-06 16:56:46 -04:00
|
|
|
extern std::vector<Glib::RefPtr<Gtk::Action> > rec_sensitive_actions;
|
2009-12-04 15:52:04 -05:00
|
|
|
|
|
|
|
extern void map_some_state (const char* group, const char* action, bool (ARDOUR::RCConfiguration::*get)() const);
|
2014-12-22 13:39:41 -05:00
|
|
|
extern void map_some_state (const char* group, const char* action, bool (UIConfiguration::*get)() const);
|
2009-12-04 15:52:04 -05:00
|
|
|
extern void map_some_state (const char* group, const char* action, sigc::slot<bool>);
|
2014-12-22 13:39:41 -05:00
|
|
|
extern void toggle_config_state (const char* group, const char* action, bool (UIConfiguration::*set)(bool), bool (UIConfiguration::*get)(void) const);
|
2009-12-04 15:52:04 -05:00
|
|
|
extern void toggle_config_state (const char* group, const char* action, bool (ARDOUR::RCConfiguration::*set)(bool), bool (ARDOUR::RCConfiguration::*get)(void) const);
|
|
|
|
extern void toggle_config_state_foo (const char* group, const char* action, sigc::slot<bool, bool>, sigc::slot<bool>);
|
2005-10-17 11:12:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_actions_h__ */
|