2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2003 Paul Davis
|
2005-09-25 14:42:24 -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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ardour_gtk_axis_view_h__
|
|
|
|
#define __ardour_gtk_axis_view_h__
|
|
|
|
|
|
|
|
#include <list>
|
2014-06-28 15:45:52 -04:00
|
|
|
#include <boost/unordered_map.hpp>
|
2005-11-28 23:41:15 -05:00
|
|
|
|
|
|
|
#include <gtkmm/label.h>
|
|
|
|
#include <gdkmm/color.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/xml++.h"
|
2009-12-22 15:21:43 -05:00
|
|
|
#include "pbd/signals.h"
|
2009-12-17 13:24:23 -05:00
|
|
|
|
|
|
|
#include "ardour/session_handle.h"
|
|
|
|
|
2011-07-11 16:32:33 -04:00
|
|
|
#include "gui_object.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "prompter.h"
|
2006-06-20 14:50:38 -04:00
|
|
|
#include "selectable.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Session;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AxisView defines the abstract base class for time-axis trackviews and routes.
|
|
|
|
*
|
|
|
|
*/
|
2009-12-22 15:21:43 -05:00
|
|
|
class AxisView : public virtual Selectable, public PBD::ScopedConnectionList, public ARDOUR::SessionHandlePtr
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
2011-08-30 11:44:00 -04:00
|
|
|
/** @return the track's own color */
|
|
|
|
Gdk::Color color () const { return _color; }
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
ARDOUR::Session* session() const { return _session; }
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
virtual std::string name() const = 0;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
sigc::signal<void> Hiding;
|
2011-07-06 20:37:13 -04:00
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
void set_old_order_key (uint32_t ok) { _old_order_key = ok; }
|
|
|
|
uint32_t old_order_key() const { return _old_order_key; }
|
|
|
|
|
2011-07-06 20:37:13 -04:00
|
|
|
virtual std::string state_id() const = 0;
|
2011-07-11 16:32:33 -04:00
|
|
|
/* for now, we always return properties in string form.
|
|
|
|
*/
|
2011-07-06 20:37:13 -04:00
|
|
|
std::string gui_property (const std::string& property_name) const;
|
2011-07-11 16:32:33 -04:00
|
|
|
|
|
|
|
template<typename T> void set_gui_property (const std::string& property_name, const T& value) {
|
2014-06-28 15:45:52 -04:00
|
|
|
std::stringstream s;
|
|
|
|
s << value;
|
|
|
|
property_hashtable.erase(property_name);
|
|
|
|
property_hashtable.emplace(property_name, s.str());
|
2012-05-23 22:54:10 -04:00
|
|
|
gui_object_state().set_property<T> (state_id(), property_name, value);
|
2011-07-11 16:32:33 -04:00
|
|
|
}
|
2015-03-30 15:27:18 -04:00
|
|
|
|
|
|
|
void cleanup_gui_properties () {
|
|
|
|
/* remove related property node from the GUI state */
|
|
|
|
gui_object_state().remove_node (state_id());
|
|
|
|
property_hashtable.clear ();
|
|
|
|
}
|
2011-07-06 20:37:13 -04:00
|
|
|
|
|
|
|
bool marked_for_display () const;
|
|
|
|
virtual bool set_marked_for_display (bool);
|
2012-01-20 13:02:48 -05:00
|
|
|
|
|
|
|
static GUIObjectState& gui_object_state();
|
2015-03-21 11:50:47 -04:00
|
|
|
void clear_property_cache() { property_hashtable.clear(); }
|
2011-07-06 20:37:13 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
protected:
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
AxisView (ARDOUR::Session* sess);
|
2005-09-25 14:42:24 -04:00
|
|
|
virtual ~AxisView();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/**
|
|
|
|
* Generate a new random TrackView color, unique from those colors already used.
|
|
|
|
*
|
|
|
|
* @return the unique random color.
|
|
|
|
*/
|
2005-10-05 09:48:09 -04:00
|
|
|
static Gdk::Color unique_random_color();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-26 14:24:59 -04:00
|
|
|
Gdk::Color _color;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
static std::list<Gdk::Color> used_colors;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
Gtk::Label name_label;
|
|
|
|
|
2014-06-28 15:45:52 -04:00
|
|
|
mutable boost::unordered_map<std::string, std::string> property_hashtable;
|
2007-10-11 18:07:47 -04:00
|
|
|
uint32_t _old_order_key;
|
2005-09-25 14:42:24 -04:00
|
|
|
}; /* class AxisView */
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_axis_view_h__ */
|
|
|
|
|