2005-09-25 18:42:24 +00:00
|
|
|
/*
|
2019-08-02 23:26:43 +02: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 18:42:24 +00:00
|
|
|
|
2024-09-25 18:38:59 -06:00
|
|
|
#pragma once
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
#include <list>
|
2024-10-19 02:23:13 +02:00
|
|
|
#include <unordered_map>
|
2005-11-29 04:41:15 +00:00
|
|
|
|
|
|
|
|
#include <gtkmm/label.h>
|
2020-01-20 16:03:22 -06:00
|
|
|
#include <gtkmm/table.h>
|
2005-11-29 04:41:15 +00:00
|
|
|
#include <gdkmm/color.h>
|
|
|
|
|
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "pbd/xml++.h"
|
2009-12-22 20:21:43 +00:00
|
|
|
#include "pbd/signals.h"
|
2009-12-17 18:24:23 +00:00
|
|
|
|
2024-10-19 15:54:24 +02:00
|
|
|
#include "ardour/automation_control.h"
|
2009-12-17 18:24:23 +00:00
|
|
|
#include "ardour/session_handle.h"
|
|
|
|
|
|
2011-07-11 20:32:33 +00:00
|
|
|
#include "gui_object.h"
|
2006-06-20 18:50:38 +00:00
|
|
|
#include "selectable.h"
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2017-05-05 12:31:49 +01:00
|
|
|
namespace PBD {
|
|
|
|
|
class Controllable;
|
|
|
|
|
}
|
|
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
namespace ARDOUR {
|
|
|
|
|
class Session;
|
2016-07-06 13:37:30 -04:00
|
|
|
class Stripable;
|
|
|
|
|
class PresentationInfo;
|
2005-09-25 18:42:24 +00: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 18:42:24 +00: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 18:42:24 +00:00
|
|
|
{
|
2017-07-01 21:11:14 +02:00
|
|
|
public:
|
2009-05-12 17:03:42 +00:00
|
|
|
virtual std::string name() const = 0;
|
2016-06-05 15:39:22 -04:00
|
|
|
virtual Gdk::Color color() const = 0;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2005-09-25 20:33:00 +00:00
|
|
|
sigc::signal<void> Hiding;
|
2015-10-05 16:17:49 +02:00
|
|
|
|
2023-02-16 16:33:28 -07:00
|
|
|
virtual std::shared_ptr<ARDOUR::Stripable> stripable() const = 0;
|
|
|
|
|
virtual std::shared_ptr<ARDOUR::AutomationControl> control() const { return std::shared_ptr<ARDOUR::AutomationControl>(); }
|
2016-07-06 13:37:30 -04:00
|
|
|
|
2011-07-07 00:37:13 +00:00
|
|
|
virtual std::string state_id() const = 0;
|
2011-07-11 20:32:33 +00:00
|
|
|
/* for now, we always return properties in string form.
|
2017-07-01 21:11:14 +02:00
|
|
|
*/
|
2011-07-07 00:37:13 +00:00
|
|
|
std::string gui_property (const std::string& property_name) const;
|
2015-10-05 16:17:49 +02:00
|
|
|
|
2016-08-30 21:07:24 +10:00
|
|
|
bool get_gui_property (const std::string& property_name, std::string& value) const;
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
2017-07-01 21:11:14 +02: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 21:07:24 +10:00
|
|
|
}
|
2016-08-30 20:02:26 +10:00
|
|
|
|
2020-02-28 02:25:57 +01: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 21:07:24 +10:00
|
|
|
void set_gui_property (const std::string& property_name, const std::string& value);
|
2020-02-06 14:39:30 -07:00
|
|
|
void remove_gui_property (const std::string& property_name);
|
2016-08-30 21:07:24 +10:00
|
|
|
|
|
|
|
|
void set_gui_property (const std::string& property_name, const char* value) {
|
|
|
|
|
set_gui_property (property_name, std::string(value));
|
2016-08-30 20:02:26 +10:00
|
|
|
}
|
|
|
|
|
|
2016-08-30 21:07:24 +10: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 20:32:33 +00: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-07 00:37:13 +00: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-07 00:37:13 +00:00
|
|
|
virtual bool set_marked_for_display (bool);
|
2012-01-20 18:02:48 +00:00
|
|
|
|
|
|
|
|
static GUIObjectState& gui_object_state();
|
2015-03-21 16:50:47 +01:00
|
|
|
void clear_property_cache() { property_hashtable.clear(); }
|
2015-10-05 16:17:49 +02:00
|
|
|
|
2023-04-18 02:18:02 +02:00
|
|
|
static Gdk::Color round_robin_palette_color ();
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2017-07-01 21:11:14 +02:00
|
|
|
protected:
|
2016-06-05 15:47:39 -04:00
|
|
|
AxisView ();
|
|
|
|
|
virtual ~AxisView();
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
Gtk::Label name_label;
|
2020-12-07 23:41:55 +01:00
|
|
|
void set_name_ellipsize_mode ();
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2020-01-20 16:03:22 -06:00
|
|
|
Gtk::Label inactive_label;
|
|
|
|
|
Gtk::Table inactive_table;
|
|
|
|
|
|
2024-10-19 02:23:13 +02:00
|
|
|
mutable std::unordered_map<std::string, std::string> property_hashtable;
|
2005-09-25 18:42:24 +00:00
|
|
|
}; /* class AxisView */
|
|
|
|
|
|