2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2005-2017 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2005 Taybin Rutkin <taybin@taybin.com>
|
|
|
|
* Copyright (C) 2009-2012 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2009-2012 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2014-2017 Robin Gareus <robin@gareus.org>
|
|
|
|
* Copyright (C) 2016 Tim Mayberry <mojofunk@gmail.com>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#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>
|
2020-01-20 17:03:22 -05:00
|
|
|
#include <gtkmm/table.h>
|
2005-11-28 23:41:15 -05:00
|
|
|
#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"
|
2006-06-20 14:50:38 -04:00
|
|
|
#include "selectable.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2017-05-05 07:31:49 -04:00
|
|
|
namespace PBD {
|
|
|
|
class Controllable;
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
namespace ARDOUR {
|
|
|
|
class Session;
|
2016-07-06 13:37:30 -04:00
|
|
|
class Stripable;
|
|
|
|
class PresentationInfo;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-07-06 13:37:30 -04:00
|
|
|
* AxisView defines the abstract base class for horizontal and vertical
|
|
|
|
* presentations of Stripables.
|
2005-09-25 14:42:24 -04:00
|
|
|
*
|
|
|
|
*/
|
2016-06-05 20:50:40 -04:00
|
|
|
class AxisView : public virtual PBD::ScopedConnectionList, public virtual ARDOUR::SessionHandlePtr, public virtual Selectable
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2017-07-01 15:11:14 -04:00
|
|
|
public:
|
2009-05-12 13:03:42 -04:00
|
|
|
virtual std::string name() const = 0;
|
2016-06-05 15:39:22 -04:00
|
|
|
virtual Gdk::Color color() const = 0;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
sigc::signal<void> Hiding;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2016-07-06 13:37:30 -04:00
|
|
|
virtual boost::shared_ptr<ARDOUR::Stripable> stripable() const = 0;
|
2017-05-05 07:31:49 -04:00
|
|
|
virtual boost::shared_ptr<ARDOUR::AutomationControl> control() const { return boost::shared_ptr<ARDOUR::AutomationControl>(); }
|
2016-07-06 13:37:30 -04:00
|
|
|
|
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.
|
2017-07-01 15:11:14 -04:00
|
|
|
*/
|
2011-07-06 20:37:13 -04:00
|
|
|
std::string gui_property (const std::string& property_name) const;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2016-08-30 07:07:24 -04:00
|
|
|
bool get_gui_property (const std::string& property_name, std::string& value) const;
|
|
|
|
|
|
|
|
template <typename T>
|
2017-07-01 15:11:14 -04:00
|
|
|
bool get_gui_property (const std::string& property_name, T& value) const
|
|
|
|
{
|
|
|
|
std::string str = gui_property (property_name);
|
|
|
|
|
|
|
|
if (!str.empty ()) {
|
|
|
|
return PBD::string_to<T>(str, value);
|
|
|
|
}
|
|
|
|
return false;
|
2016-08-30 07:07:24 -04:00
|
|
|
}
|
2016-08-30 06:02:26 -04:00
|
|
|
|
2020-02-27 20:25:57 -05:00
|
|
|
template <typename T>
|
|
|
|
bool get_gui_property (const std::string& state_id, const std::string& property_name, T& value) const
|
|
|
|
{
|
|
|
|
std::string str = gui_object_state().get_string (state_id, property_name);
|
|
|
|
|
|
|
|
if (!str.empty ()) {
|
|
|
|
return PBD::string_to<T>(str, value);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-08-30 07:07:24 -04:00
|
|
|
void set_gui_property (const std::string& property_name, const std::string& value);
|
2020-02-06 16:39:30 -05:00
|
|
|
void remove_gui_property (const std::string& property_name);
|
2016-08-30 07:07:24 -04:00
|
|
|
|
|
|
|
void set_gui_property (const std::string& property_name, const char* value) {
|
|
|
|
set_gui_property (property_name, std::string(value));
|
2016-08-30 06:02:26 -04:00
|
|
|
}
|
|
|
|
|
2016-08-30 07:07:24 -04:00
|
|
|
template <typename T>
|
|
|
|
void set_gui_property (const std::string& property_name, const T& value)
|
|
|
|
{
|
|
|
|
set_gui_property (property_name, PBD::to_string(value));
|
2011-07-11 16:32:33 -04:00
|
|
|
}
|
2015-10-04 14:51:05 -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
|
|
|
|
2016-07-06 13:37:30 -04:00
|
|
|
void set_selected (bool yn);
|
|
|
|
|
2016-06-05 15:19:54 -04:00
|
|
|
virtual bool marked_for_display () const;
|
2011-07-06 20:37:13 -04:00
|
|
|
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(); }
|
2015-10-05 10:17:49 -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
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
protected:
|
2016-06-05 15:47:39 -04:00
|
|
|
AxisView ();
|
|
|
|
virtual ~AxisView();
|
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;
|
2020-12-07 17:41:55 -05:00
|
|
|
void set_name_ellipsize_mode ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2020-01-20 17:03:22 -05:00
|
|
|
Gtk::Label inactive_label;
|
|
|
|
Gtk::Table inactive_table;
|
|
|
|
|
2014-06-28 15:45:52 -04:00
|
|
|
mutable boost::unordered_map<std::string, std::string> property_hashtable;
|
2005-09-25 14:42:24 -04:00
|
|
|
}; /* class AxisView */
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_axis_view_h__ */
|