2007-06-29 13:33:35 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 1999-2006 Paul Davis
|
2007-06-29 13:33:35 -04: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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <unistd.h>
|
2011-10-26 17:01:14 -04:00
|
|
|
#include <cstdlib>
|
2007-06-29 13:33:35 -04:00
|
|
|
#include <cstdio> /* for snprintf, grrr */
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
#include <glibmm/miscutils.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/failed_constructor.h"
|
|
|
|
#include "pbd/xml++.h"
|
|
|
|
#include "pbd/file_utils.h"
|
|
|
|
#include "pbd/error.h"
|
|
|
|
|
2011-10-26 17:01:14 -04:00
|
|
|
#include "gtkmm2ext/rgb_macros.h"
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/filesystem_paths.h"
|
2007-06-29 13:33:35 -04:00
|
|
|
|
|
|
|
#include "ui_config.h"
|
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace PBD;
|
|
|
|
using namespace ARDOUR;
|
|
|
|
|
2014-09-07 10:25:46 -04:00
|
|
|
static const char* ui_config_file_name = "ui_config";
|
|
|
|
static const char* default_ui_config_file_name = "default_ui_config";
|
|
|
|
|
2007-06-29 13:33:35 -04:00
|
|
|
UIConfiguration::UIConfiguration ()
|
|
|
|
:
|
|
|
|
#undef UI_CONFIG_VARIABLE
|
|
|
|
#undef CANVAS_VARIABLE
|
|
|
|
#define UI_CONFIG_VARIABLE(Type,var,name,val) var (name,val),
|
2014-06-13 12:21:10 -04:00
|
|
|
#define CANVAS_VARIABLE(var,name) var (name),
|
|
|
|
#define CANVAS_STRING_VARIABLE(var,name) var (name),
|
2014-06-19 11:18:37 -04:00
|
|
|
#define CANVAS_FONT_VARIABLE(var,name) var (name),
|
2007-06-29 13:33:35 -04:00
|
|
|
#include "ui_config_vars.h"
|
|
|
|
#include "canvas_vars.h"
|
|
|
|
#undef UI_CONFIG_VARIABLE
|
|
|
|
#undef CANVAS_VARIABLE
|
2014-06-13 10:54:12 -04:00
|
|
|
#undef CANVAS_STRING_VARIABLE
|
2014-06-19 11:18:37 -04:00
|
|
|
#undef CANVAS_FONT_VARIABLE
|
2011-10-26 17:01:14 -04:00
|
|
|
_dirty (false)
|
2007-06-29 13:33:35 -04:00
|
|
|
{
|
|
|
|
load_state();
|
|
|
|
}
|
|
|
|
|
|
|
|
UIConfiguration::~UIConfiguration ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-06-21 17:15:56 -04:00
|
|
|
void
|
|
|
|
UIConfiguration::map_parameters (boost::function<void (std::string)>& functor)
|
|
|
|
{
|
|
|
|
#undef UI_CONFIG_VARIABLE
|
|
|
|
#define UI_CONFIG_VARIABLE(Type,var,Name,value) functor (Name);
|
|
|
|
#include "ui_config_vars.h"
|
|
|
|
#undef UI_CONFIG_VARIABLE
|
|
|
|
}
|
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
int
|
|
|
|
UIConfiguration::load_defaults ()
|
|
|
|
{
|
|
|
|
int found = 0;
|
2014-09-07 10:25:46 -04:00
|
|
|
std::string rcfile;
|
2008-12-12 09:43:24 -05:00
|
|
|
|
2014-09-07 10:25:46 -04:00
|
|
|
if (find_file (ardour_config_search_path(), default_ui_config_file_name, rcfile) ) {
|
2008-02-01 22:57:35 -05:00
|
|
|
XMLTree tree;
|
|
|
|
found = 1;
|
|
|
|
|
2009-10-22 16:36:38 -04:00
|
|
|
info << string_compose (_("Loading default ui configuration file %1"), rcfile) << endl;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2014-09-07 11:53:52 -04:00
|
|
|
if (!tree.read (rcfile.c_str())) {
|
2010-08-16 20:28:20 -04:00
|
|
|
error << string_compose(_("cannot read default ui configuration file \"%1\""), rcfile) << endmsg;
|
2008-02-01 22:57:35 -05:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-10-15 14:56:11 -04:00
|
|
|
if (set_state (*tree.root(), Stateful::loading_state_version)) {
|
2010-08-16 20:28:20 -04:00
|
|
|
error << string_compose(_("default ui configuration file \"%1\" not loaded successfully."), rcfile) << endmsg;
|
2008-02-01 22:57:35 -05:00
|
|
|
return -1;
|
|
|
|
}
|
2011-10-26 17:01:14 -04:00
|
|
|
|
|
|
|
_dirty = false;
|
2008-02-01 22:57:35 -05:00
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
return found;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-29 13:33:35 -04:00
|
|
|
int
|
|
|
|
UIConfiguration::load_state ()
|
|
|
|
{
|
|
|
|
bool found = false;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2014-09-07 10:25:46 -04:00
|
|
|
std::string rcfile;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2014-09-07 10:25:46 -04:00
|
|
|
if ( find_file (ardour_config_search_path(), default_ui_config_file_name, rcfile)) {
|
2007-06-29 13:33:35 -04:00
|
|
|
XMLTree tree;
|
|
|
|
found = true;
|
|
|
|
|
2009-10-22 16:36:38 -04:00
|
|
|
info << string_compose (_("Loading default ui configuration file %1"), rcfile) << endl;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-29 13:33:35 -04:00
|
|
|
if (!tree.read (rcfile.c_str())) {
|
2010-08-16 20:28:20 -04:00
|
|
|
error << string_compose(_("cannot read default ui configuration file \"%1\""), rcfile) << endmsg;
|
2007-06-29 13:33:35 -04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-10-15 14:56:11 -04:00
|
|
|
if (set_state (*tree.root(), Stateful::loading_state_version)) {
|
2010-08-16 20:28:20 -04:00
|
|
|
error << string_compose(_("default ui configuration file \"%1\" not loaded successfully."), rcfile) << endmsg;
|
2007-06-29 13:33:35 -04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-07 10:25:46 -04:00
|
|
|
if (find_file (ardour_config_search_path(), ui_config_file_name, rcfile)) {
|
2007-06-29 13:33:35 -04:00
|
|
|
XMLTree tree;
|
|
|
|
found = true;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-08-26 19:25:44 -04:00
|
|
|
info << string_compose (_("Loading user ui configuration file %1"), rcfile) << endmsg;
|
2007-06-29 13:33:35 -04:00
|
|
|
|
|
|
|
if (!tree.read (rcfile)) {
|
2010-08-16 20:28:20 -04:00
|
|
|
error << string_compose(_("cannot read ui configuration file \"%1\""), rcfile) << endmsg;
|
2007-06-29 13:33:35 -04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2009-10-15 14:56:11 -04:00
|
|
|
if (set_state (*tree.root(), Stateful::loading_state_version)) {
|
2010-08-16 20:28:20 -04:00
|
|
|
error << string_compose(_("user ui configuration file \"%1\" not loaded successfully."), rcfile) << endmsg;
|
2007-06-29 13:33:35 -04:00
|
|
|
return -1;
|
|
|
|
}
|
2011-10-26 17:01:14 -04:00
|
|
|
|
|
|
|
_dirty = false;
|
2007-06-29 13:33:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!found)
|
2010-08-16 20:28:20 -04:00
|
|
|
error << _("could not find any ui configuration file, canvas will look broken.") << endmsg;
|
2007-06-29 13:33:35 -04:00
|
|
|
|
|
|
|
pack_canvasvars();
|
2011-10-26 17:01:14 -04:00
|
|
|
|
2007-06-29 13:33:35 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
UIConfiguration::save_state()
|
|
|
|
{
|
|
|
|
XMLTree tree;
|
|
|
|
|
2012-06-23 01:09:48 -04:00
|
|
|
std::string rcfile(user_config_directory());
|
2014-09-07 10:25:46 -04:00
|
|
|
rcfile = Glib::build_filename (rcfile, ui_config_file_name);
|
2007-06-29 13:33:35 -04:00
|
|
|
|
|
|
|
// this test seems bogus?
|
|
|
|
if (rcfile.length()) {
|
|
|
|
tree.set_root (&get_state());
|
|
|
|
if (!tree.write (rcfile.c_str())){
|
|
|
|
error << string_compose (_("Config file %1 not saved"), rcfile) << endmsg;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-26 17:01:14 -04:00
|
|
|
_dirty = false;
|
|
|
|
|
2007-06-29 13:33:35 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
XMLNode&
|
|
|
|
UIConfiguration::get_state ()
|
|
|
|
{
|
|
|
|
XMLNode* root;
|
|
|
|
LocaleGuard lg (X_("POSIX"));
|
|
|
|
|
|
|
|
root = new XMLNode("Ardour");
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-29 13:33:35 -04:00
|
|
|
root->add_child_nocopy (get_variables ("UI"));
|
|
|
|
root->add_child_nocopy (get_variables ("Canvas"));
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-29 13:33:35 -04:00
|
|
|
if (_extra_xml) {
|
|
|
|
root->add_child_copy (*_extra_xml);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-29 13:33:35 -04:00
|
|
|
return *root;
|
|
|
|
}
|
|
|
|
|
|
|
|
XMLNode&
|
|
|
|
UIConfiguration::get_variables (std::string which_node)
|
|
|
|
{
|
|
|
|
XMLNode* node;
|
|
|
|
LocaleGuard lg (X_("POSIX"));
|
|
|
|
|
|
|
|
node = new XMLNode(which_node);
|
|
|
|
|
|
|
|
#undef UI_CONFIG_VARIABLE
|
|
|
|
#undef CANVAS_VARIABLE
|
|
|
|
#define UI_CONFIG_VARIABLE(Type,var,Name,value) if (node->name() == "UI") { var.add_to_node (*node); }
|
|
|
|
#define CANVAS_VARIABLE(var,Name) if (node->name() == "Canvas") { var.add_to_node (*node); }
|
2014-06-13 10:54:12 -04:00
|
|
|
#define CANVAS_STRING_VARIABLE(var,Name) if (node->name() == "Canvas") { var.add_to_node (*node); }
|
2014-06-19 11:18:37 -04:00
|
|
|
#define CANVAS_FONT_VARIABLE(var,Name) if (node->name() == "Canvas") { var.add_to_node (*node); }
|
2007-06-29 13:33:35 -04:00
|
|
|
#include "ui_config_vars.h"
|
|
|
|
#include "canvas_vars.h"
|
|
|
|
#undef UI_CONFIG_VARIABLE
|
|
|
|
#undef CANVAS_VARIABLE
|
2014-06-13 10:54:12 -04:00
|
|
|
#undef CANVAS_STRING_VARIABLE
|
2014-06-19 11:18:37 -04:00
|
|
|
#undef CANVAS_FONT_VARIABLE
|
2007-06-29 13:33:35 -04:00
|
|
|
|
|
|
|
return *node;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2009-10-20 20:15:42 -04:00
|
|
|
UIConfiguration::set_state (const XMLNode& root, int /*version*/)
|
2007-06-29 13:33:35 -04:00
|
|
|
{
|
|
|
|
if (root.name() != "Ardour") {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-06-11 11:35:34 -04:00
|
|
|
Stateful::save_extra_xml (root);
|
|
|
|
|
2007-06-29 13:33:35 -04:00
|
|
|
XMLNodeList nlist = root.children();
|
|
|
|
XMLNodeConstIterator niter;
|
|
|
|
XMLNode *node;
|
|
|
|
|
|
|
|
for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
|
|
|
|
|
|
|
|
node = *niter;
|
2011-06-11 11:35:34 -04:00
|
|
|
|
2007-06-29 13:33:35 -04:00
|
|
|
if (node->name() == "Canvas" || node->name() == "UI") {
|
|
|
|
set_variables (*node);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2011-10-26 17:01:14 -04:00
|
|
|
|
2007-06-29 13:33:35 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UIConfiguration::set_variables (const XMLNode& node)
|
|
|
|
{
|
|
|
|
#undef UI_CONFIG_VARIABLE
|
|
|
|
#undef CANVAS_VARIABLE
|
|
|
|
#define UI_CONFIG_VARIABLE(Type,var,name,val) \
|
|
|
|
if (var.set_from_node (node)) { \
|
|
|
|
ParameterChanged (name); \
|
|
|
|
}
|
|
|
|
#define CANVAS_VARIABLE(var,name) \
|
|
|
|
if (var.set_from_node (node)) { \
|
|
|
|
ParameterChanged (name); \
|
|
|
|
}
|
2014-06-13 10:54:12 -04:00
|
|
|
#define CANVAS_STRING_VARIABLE(var,name) \
|
|
|
|
if (var.set_from_node (node)) { \
|
|
|
|
ParameterChanged (name); \
|
|
|
|
}
|
2014-06-19 11:18:37 -04:00
|
|
|
#define CANVAS_FONT_VARIABLE(var,name) \
|
|
|
|
if (var.set_from_node (node)) { \
|
|
|
|
ParameterChanged (name); \
|
|
|
|
}
|
2007-06-29 13:33:35 -04:00
|
|
|
#include "ui_config_vars.h"
|
|
|
|
#include "canvas_vars.h"
|
|
|
|
#undef UI_CONFIG_VARIABLE
|
|
|
|
#undef CANVAS_VARIABLE
|
2014-06-13 10:54:12 -04:00
|
|
|
#undef CANVAS_STRING_VARIABLE
|
2014-06-19 11:18:37 -04:00
|
|
|
#undef CANVAS_FONT_VARIABLE
|
2007-06-29 13:33:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UIConfiguration::pack_canvasvars ()
|
|
|
|
{
|
|
|
|
#undef CANVAS_VARIABLE
|
2014-06-13 10:54:12 -04:00
|
|
|
#define CANVAS_VARIABLE(var,name) canvas_colors.insert (std::pair<std::string,ColorVariable<uint32_t>* >(name,&var));
|
|
|
|
#define CANVAS_STRING_VARIABLE(var,name)
|
2014-06-19 11:18:37 -04:00
|
|
|
#define CANVAS_FONT_VARIABLE(var,name)
|
2007-06-29 13:33:35 -04:00
|
|
|
#include "canvas_vars.h"
|
|
|
|
#undef CANVAS_VARIABLE
|
2014-06-13 10:54:12 -04:00
|
|
|
#undef CANVAS_STRING_VARIABLE
|
2014-06-19 11:18:37 -04:00
|
|
|
#undef CANVAS_FONT_VARIABLE
|
2007-06-29 13:33:35 -04:00
|
|
|
}
|
|
|
|
|
2011-10-26 17:01:14 -04:00
|
|
|
uint32_t
|
|
|
|
UIConfiguration::color_by_name (const std::string& name)
|
|
|
|
{
|
2014-06-13 10:54:12 -04:00
|
|
|
map<std::string,ColorVariable<uint32_t>* >::iterator i = canvas_colors.find (name);
|
2011-10-26 17:01:14 -04:00
|
|
|
|
|
|
|
if (i != canvas_colors.end()) {
|
|
|
|
return i->second->get();
|
|
|
|
}
|
2014-09-06 21:02:28 -04:00
|
|
|
#if 0 // yet unsed experimental style postfix
|
|
|
|
/* Idea: use identical colors but different font/sizes
|
|
|
|
* for variants of the same 'widget'.
|
|
|
|
*
|
|
|
|
* example:
|
|
|
|
* set_name("mute button"); // in route_ui.cc
|
|
|
|
* set_name("mute button small"); // in mixer_strip.cc
|
|
|
|
*
|
|
|
|
* ardour3_widget_list.rc:
|
|
|
|
* widget "*mute button" style:highest "small_button"
|
|
|
|
* widget "*mute button small" style:highest "very_small_text"
|
|
|
|
*
|
|
|
|
* both use color-schema of defined in
|
|
|
|
* BUTTON_VARS(MuteButton, "mute button")
|
|
|
|
*
|
|
|
|
* (in this particular example the widgets should be packed
|
|
|
|
* vertically shinking the mixer strip ones are currently not)
|
|
|
|
*/
|
|
|
|
const size_t name_len = name.size();
|
|
|
|
const size_t name_sep = name.find(':');
|
|
|
|
for (i = canvas_colors.begin(); i != canvas_colors.end(), name_sep != string::npos; ++i) {
|
|
|
|
const size_t cmp_len = i->first.size();
|
|
|
|
const size_t cmp_sep = i->first.find(':');
|
|
|
|
if (cmp_len >= name_len || cmp_sep == string::npos) continue;
|
|
|
|
if (name.substr(name_sep) != i->first.substr(cmp_sep)) continue;
|
|
|
|
if (name.substr(0, cmp_sep) != i->first.substr(0, cmp_sep)) continue;
|
|
|
|
return i->second->get();
|
|
|
|
}
|
|
|
|
#endif
|
2011-10-26 17:01:14 -04:00
|
|
|
|
2011-11-02 14:48:32 -04:00
|
|
|
// cerr << string_compose (_("Color %1 not found"), name) << endl;
|
2013-07-11 11:38:46 -04:00
|
|
|
return RGBA_TO_UINT (g_random_int()%256,g_random_int()%256,g_random_int()%256,0xff);
|
2011-10-26 17:01:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
UIConfiguration::set_dirty ()
|
|
|
|
{
|
|
|
|
_dirty = true;
|
|
|
|
}
|
2007-06-29 13:33:35 -04:00
|
|
|
|
2011-10-26 17:01:14 -04:00
|
|
|
bool
|
|
|
|
UIConfiguration::dirty () const
|
|
|
|
{
|
|
|
|
return _dirty;
|
|
|
|
}
|