2005-09-25 18:42:24 +00:00
|
|
|
/*
|
|
|
|
|
Copyright (C) 2001 Paul Davis
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __ardour_opts_h__
|
|
|
|
|
#define __ardour_opts_h__
|
|
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
2007-10-11 22:07:47 +00:00
|
|
|
namespace ARDOUR_COMMAND_LINE {
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2009-05-12 17:03:42 +00:00
|
|
|
extern std::string session_name;
|
2005-09-25 18:42:24 +00:00
|
|
|
extern bool show_key_actions;
|
|
|
|
|
extern bool no_splash;
|
|
|
|
|
extern bool just_version;
|
2009-05-12 17:03:42 +00:00
|
|
|
extern std::string jack_client_name;
|
2005-09-25 18:42:24 +00:00
|
|
|
extern bool use_vst;
|
|
|
|
|
extern bool new_session;
|
|
|
|
|
extern char* curvetest_file;
|
|
|
|
|
extern bool try_hw_optimization;
|
2010-06-02 16:21:02 +00:00
|
|
|
extern bool no_connect_ports;
|
2006-01-18 02:56:51 +00:00
|
|
|
extern bool use_gtk_theme;
|
2009-05-12 17:03:42 +00:00
|
|
|
extern std::string keybindings_path;
|
2010-09-14 16:51:02 +00:00
|
|
|
extern std::string menus_file;
|
2008-01-10 21:20:59 +00:00
|
|
|
extern bool finder_invoked_ardour;
|
2009-10-15 00:57:55 +00:00
|
|
|
extern std::string immediate_save;
|
2010-04-02 18:48:50 +00:00
|
|
|
extern std::string jack_session_uuid;
|
2010-06-02 14:36:10 +00:00
|
|
|
extern std::string load_template;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
extern int32_t parse_opts (int argc, char *argv[]);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_opts_h__ */
|