new tempo handling from drmoore; don't follow playhead when doing requested_return...
[ardour.git] / libs / ardour / ardour / configuration_variable.h
index 4327fa69b1df9b195a24c708e4c958cf179d828d..fa149672be2920c1d5a1f6008e4fef01726332cb 100644 (file)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2000-2007 Paul Davis 
+
+    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_configuration_variable_h__
 #define __ardour_configuration_variable_h__
 
@@ -27,10 +46,13 @@ class ConfigVariableBase {
        virtual void add_to_node (XMLNode& node) = 0;
        virtual bool set_from_node (const XMLNode& node, Owner owner) = 0;
 
+       void show_stored_value (const std::string&);
+       static void set_show_stored_values (bool yn);
 
   protected:
        std::string _name;
        Owner _owner;
+       static bool show_stores;
 
        void notify ();
        void miss ();
@@ -61,6 +83,7 @@ class ConfigVariable : public ConfigVariableBase
        void add_to_node (XMLNode& node) {
                std::stringstream ss;
                ss << value;
+               show_stored_value (ss.str());
                XMLNode* child = new XMLNode ("Option");
                child->add_property ("name", _name);
                child->add_property ("value", ss.str());