2006-07-31 23:23:35 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2006-2008 Sampo Savolainen <v2@iki.fi>
|
|
|
|
* Copyright (C) 2006-2014 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2006-2017 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2007 Doug McLain <doug@nostar.net>
|
|
|
|
* Copyright (C) 2008-2012 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2014-2015 Ben Loftis <ben@harrisonconsoles.com>
|
|
|
|
* Copyright (C) 2014-2019 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2006-07-31 23:23:35 -04:00
|
|
|
|
|
|
|
#ifndef __ardour_route_time_axis_h__
|
|
|
|
#define __ardour_route_time_axis_h__
|
|
|
|
|
2009-01-30 15:18:31 -05:00
|
|
|
#include <list>
|
|
|
|
#include <set>
|
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
#include <gtkmm/table.h>
|
|
|
|
#include <gtkmm/button.h>
|
|
|
|
#include <gtkmm/box.h>
|
|
|
|
#include <gtkmm/menu.h>
|
|
|
|
#include <gtkmm/menuitem.h>
|
|
|
|
#include <gtkmm/radiomenuitem.h>
|
|
|
|
#include <gtkmm/checkmenuitem.h>
|
2008-02-16 17:43:18 -05:00
|
|
|
#include <gtkmm/adjustment.h>
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2017-07-15 11:38:28 -04:00
|
|
|
#include "widgets/ardour_button.h"
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/playlist.h"
|
|
|
|
#include "ardour/types.h"
|
2006-07-31 23:23:35 -04:00
|
|
|
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
#include "route_ui.h"
|
|
|
|
#include "enums.h"
|
2017-06-09 08:48:33 -04:00
|
|
|
#include "stripable_time_axis.h"
|
2008-09-10 11:03:30 -04:00
|
|
|
#include "gain_meter.h"
|
2006-07-31 23:23:35 -04:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Session;
|
|
|
|
class Region;
|
|
|
|
class RouteGroup;
|
2007-06-27 16:23:48 -04:00
|
|
|
class IOProcessor;
|
|
|
|
class Processor;
|
2006-07-31 23:23:35 -04:00
|
|
|
class Location;
|
|
|
|
class Playlist;
|
|
|
|
}
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
namespace ArdourCanvas {
|
|
|
|
class Rectangle;
|
|
|
|
}
|
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
class PublicEditor;
|
|
|
|
class RegionView;
|
|
|
|
class StreamView;
|
|
|
|
class Selection;
|
|
|
|
class RegionSelection;
|
|
|
|
class Selectable;
|
|
|
|
class AutomationTimeAxisView;
|
|
|
|
class AutomationLine;
|
|
|
|
class TimeSelection;
|
2009-06-28 20:38:58 -04:00
|
|
|
class RouteGroupMenu;
|
2014-11-16 17:04:27 -05:00
|
|
|
class ItemCounts;
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2017-06-09 08:48:33 -04:00
|
|
|
class RouteTimeAxisView : public RouteUI, public StripableTimeAxisView
|
2006-07-31 23:23:35 -04:00
|
|
|
{
|
|
|
|
public:
|
2016-06-02 08:54:33 -04:00
|
|
|
RouteTimeAxisView (PublicEditor&, ARDOUR::Session*, ArdourCanvas::Canvas& canvas);
|
|
|
|
virtual ~RouteTimeAxisView ();
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2016-06-05 15:39:22 -04:00
|
|
|
std::string name() const;
|
|
|
|
Gdk::Color color () const;
|
|
|
|
bool marked_for_display () const;
|
|
|
|
bool set_marked_for_display (bool);
|
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<ARDOUR::Stripable> stripable() const { return RouteUI::stripable(); }
|
2011-07-06 20:37:13 -04:00
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
void set_route (std::shared_ptr<ARDOUR::Route>);
|
2016-06-02 08:54:33 -04:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
void show_selection (TimeSelection&);
|
2009-06-23 16:02:15 -04:00
|
|
|
void set_button_names ();
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2013-04-12 11:31:50 -04:00
|
|
|
void set_samples_per_pixel (double);
|
2022-04-05 22:50:44 -04:00
|
|
|
void set_height (uint32_t h, TrackHeightMode m = OnlySelf, bool from_idle = false);
|
2020-10-15 01:09:22 -04:00
|
|
|
void show_timestretch (Temporal::timepos_t const & start, Temporal::timepos_t const & end, int layers, int layer);
|
2006-07-31 23:23:35 -04:00
|
|
|
void hide_timestretch ();
|
|
|
|
void selection_click (GdkEventButton*);
|
|
|
|
void set_selected_points (PointSelection&);
|
|
|
|
void set_selected_regionviews (RegionSelection&);
|
2020-10-02 23:26:17 -04:00
|
|
|
void get_selectables (Temporal::timepos_t const &, Temporal::timepos_t const &, double top, double bot, std::list<Selectable *>&, bool within = false);
|
2009-05-12 13:03:42 -04:00
|
|
|
void get_inverted_selectables (Selection&, std::list<Selectable*>&);
|
2021-07-16 16:12:00 -04:00
|
|
|
void get_regionviews_at_or_after (Temporal::timepos_t const &, RegionSelection&);
|
2022-03-28 19:30:29 -04:00
|
|
|
|
|
|
|
virtual void set_layer_display (LayerDisplay d);
|
2020-04-03 19:58:39 -04:00
|
|
|
void toggle_layer_display ();
|
2009-01-05 22:18:09 -05:00
|
|
|
LayerDisplay layer_display () const;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<ARDOUR::Region> find_next_region (ARDOUR::timepos_t const & pos, ARDOUR::RegionPoint, int32_t dir);
|
2020-09-26 11:14:59 -04:00
|
|
|
ARDOUR::timepos_t find_next_region_boundary (ARDOUR::timepos_t const & pos, int32_t dir);
|
2006-07-31 23:23:35 -04:00
|
|
|
|
|
|
|
/* Editing operations */
|
2010-08-05 09:35:43 -04:00
|
|
|
void cut_copy_clear (Selection&, Editing::CutCopyOp);
|
2020-09-26 11:14:59 -04:00
|
|
|
bool paste (Temporal::timepos_t const &, const Selection&, PasteContext& ctx);
|
2011-05-24 20:40:32 -04:00
|
|
|
RegionView* combine_regions ();
|
2011-05-22 12:11:00 -04:00
|
|
|
void uncombine_regions ();
|
|
|
|
void uncombine_region (RegionView*);
|
2010-01-08 21:36:47 -05:00
|
|
|
void toggle_automation_track (const Evoral::Parameter& param);
|
2014-07-10 08:17:22 -04:00
|
|
|
void fade_range (TimeSelection&);
|
2010-01-08 21:36:47 -05:00
|
|
|
|
2009-10-15 14:56:11 -04:00
|
|
|
int set_state (const XMLNode&, int version);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-06-08 17:48:38 -04:00
|
|
|
virtual Gtk::CheckMenuItem* automation_child_menu_item (Evoral::Parameter);
|
2023-02-16 18:33:28 -05:00
|
|
|
virtual std::shared_ptr<AutomationTimeAxisView> automation_child(Evoral::Parameter param, PBD::ID ctrl_id = PBD::ID(0));
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
StreamView* view() const { return _view; }
|
2009-06-21 15:59:56 -04:00
|
|
|
ARDOUR::RouteGroup* route_group() const;
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<ARDOUR::Playlist> playlist() const;
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2007-12-20 18:25:19 -05:00
|
|
|
void fast_update ();
|
|
|
|
void hide_meter ();
|
|
|
|
void show_meter ();
|
|
|
|
void reset_meter ();
|
|
|
|
void clear_meter ();
|
|
|
|
void io_changed (ARDOUR::IOChange, void *);
|
2020-04-12 07:45:45 -04:00
|
|
|
void chan_count_changed ();
|
2010-04-03 09:40:34 -04:00
|
|
|
void meter_changed ();
|
2008-09-10 11:03:30 -04:00
|
|
|
void effective_gain_display () { gm.effective_gain_display(); }
|
|
|
|
|
2021-03-02 13:00:23 -05:00
|
|
|
static sigc::signal<void, bool> signal_ctrl_touched;
|
2021-02-09 11:36:38 -05:00
|
|
|
|
2011-07-06 20:37:13 -04:00
|
|
|
std::string state_id() const;
|
|
|
|
|
2020-04-03 15:22:43 -04:00
|
|
|
void show_all_automation (bool apply_to_selection = false);
|
|
|
|
void show_existing_automation (bool apply_to_selection = false);
|
|
|
|
void hide_all_automation (bool apply_to_selection = false);
|
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
protected:
|
|
|
|
friend class StreamView;
|
2007-06-27 11:51:50 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
struct ProcessorAutomationNode {
|
2008-09-29 18:47:40 -04:00
|
|
|
Evoral::Parameter what;
|
2009-05-12 13:03:42 -04:00
|
|
|
Gtk::CheckMenuItem* menu_item;
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<AutomationTimeAxisView> view;
|
2009-05-12 13:03:42 -04:00
|
|
|
RouteTimeAxisView& parent;
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2017-07-01 12:42:24 -04:00
|
|
|
ProcessorAutomationNode (Evoral::Parameter w, Gtk::CheckMenuItem* mitem, RouteTimeAxisView& p)
|
2007-06-30 14:41:50 -04:00
|
|
|
: what (w), menu_item (mitem), parent (p) {}
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2017-07-01 12:42:24 -04:00
|
|
|
~ProcessorAutomationNode ();
|
2006-07-31 23:23:35 -04:00
|
|
|
};
|
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
struct ProcessorAutomationInfo {
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<ARDOUR::Processor> processor;
|
2019-03-07 10:40:16 -05:00
|
|
|
bool valid;
|
|
|
|
Gtk::Menu* menu;
|
|
|
|
std::vector<ProcessorAutomationNode*> lines;
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
ProcessorAutomationInfo (std::shared_ptr<ARDOUR::Processor> i)
|
2007-06-27 16:23:48 -04:00
|
|
|
: processor (i), valid (true), menu (0) {}
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2017-07-01 12:42:24 -04:00
|
|
|
~ProcessorAutomationInfo ();
|
2006-07-31 23:23:35 -04:00
|
|
|
};
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
|
|
|
|
void update_diskstream_display ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2016-08-18 04:42:43 -04:00
|
|
|
bool route_group_click (GdkEventButton *);
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2017-09-09 12:25:36 -04:00
|
|
|
virtual void processors_changed (ARDOUR::RouteProcessorChange);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
virtual void add_processor_to_subplugin_menu (std::weak_ptr<ARDOUR::Processor>);
|
2007-06-30 14:41:50 -04:00
|
|
|
void remove_processor_automation_node (ProcessorAutomationNode* pan);
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
void processor_menu_item_toggled (RouteTimeAxisView::ProcessorAutomationInfo*,
|
|
|
|
RouteTimeAxisView::ProcessorAutomationNode*);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
void processor_automation_track_hidden (ProcessorAutomationNode*,
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<ARDOUR::Processor>);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
ProcessorAutomationNode*
|
2023-02-16 18:33:28 -05:00
|
|
|
find_processor_automation_node (std::shared_ptr<ARDOUR::Processor> i, Evoral::Parameter);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2021-03-15 15:57:47 -04:00
|
|
|
/* O(log(N)) lookup of menu-item by AC */
|
|
|
|
Gtk::CheckMenuItem*
|
2023-02-16 18:33:28 -05:00
|
|
|
find_menu_item_by_ctrl (std::shared_ptr<ARDOUR::AutomationControl>);
|
2021-03-15 15:57:47 -04:00
|
|
|
|
|
|
|
/* O(1) IFF route_owned_only == true, O(N) otherwise */
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<AutomationTimeAxisView>
|
|
|
|
find_atav_by_ctrl (std::shared_ptr<ARDOUR::AutomationControl>, bool route_owned_only = true);
|
2021-02-08 13:04:33 -05:00
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<AutomationLine>
|
|
|
|
find_processor_automation_curve (std::shared_ptr<ARDOUR::Processor> i, Evoral::Parameter);
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
void add_processor_automation_curve (std::shared_ptr<ARDOUR::Processor> r, Evoral::Parameter);
|
|
|
|
void add_existing_processor_automation_curves (std::weak_ptr<ARDOUR::Processor>);
|
2007-06-27 11:51:50 -04:00
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
std::shared_ptr<AutomationLine> automation_child_by_alist_id (PBD::ID);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-27 16:23:48 -04:00
|
|
|
void reset_processor_automation_curves ();
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2007-06-23 16:13:13 -04:00
|
|
|
void take_name_changed (void *src);
|
2010-02-19 13:09:08 -05:00
|
|
|
void route_property_changed (const PBD::PropertyChange&);
|
2020-01-21 19:35:18 -05:00
|
|
|
void route_active_changed ();
|
2016-05-21 19:17:11 -04:00
|
|
|
bool name_entry_changed (std::string const&);
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2016-12-17 12:58:44 -05:00
|
|
|
virtual void toggle_channel_selector () {}
|
|
|
|
|
2014-08-22 12:45:34 -04:00
|
|
|
void blink_rec_display (bool onoff);
|
2007-04-26 16:54:31 -04:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
virtual void label_view ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-03-07 08:04:36 -05:00
|
|
|
virtual void build_automation_action_menu (bool);
|
2006-07-31 23:23:35 -04:00
|
|
|
virtual void append_extra_display_menu_items () {}
|
|
|
|
void build_display_menu ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-03-09 00:19:44 -05:00
|
|
|
void set_align_choice (Gtk::RadioMenuItem*, ARDOUR::AlignChoice, bool apply_to_selection = false);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2016-08-18 04:42:43 -04:00
|
|
|
bool playlist_click (GdkEventButton *);
|
2006-07-31 23:23:35 -04:00
|
|
|
void playlist_changed ();
|
|
|
|
|
2016-08-18 04:42:43 -04:00
|
|
|
bool automation_click (GdkEventButton *);
|
2011-03-07 08:04:36 -05:00
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
void timestretch (samplepos_t start, samplepos_t end);
|
2006-07-31 23:23:35 -04:00
|
|
|
void speed_changed ();
|
|
|
|
void map_frozen ();
|
2007-06-15 18:08:27 -04:00
|
|
|
void color_handler ();
|
2006-07-31 23:23:35 -04:00
|
|
|
void region_view_added (RegionView*);
|
2010-09-26 22:04:16 -04:00
|
|
|
void create_gain_automation_child (const Evoral::Parameter &, bool);
|
2015-04-25 14:17:58 -04:00
|
|
|
void create_trim_automation_child (const Evoral::Parameter &, bool);
|
2014-07-01 14:36:58 -04:00
|
|
|
void create_mute_automation_child (const Evoral::Parameter &, bool);
|
2011-07-02 19:36:01 -04:00
|
|
|
void setup_processor_menu_and_curves ();
|
2011-08-30 11:44:00 -04:00
|
|
|
void route_color_changed ();
|
2016-12-21 15:57:39 -05:00
|
|
|
bool can_edit_name() const;
|
2011-08-30 11:44:00 -04:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
StreamView* _view;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
Gtk::HBox other_button_hbox;
|
|
|
|
Gtk::Table button_table;
|
2017-07-15 11:38:28 -04:00
|
|
|
ArdourWidgets::ArdourButton route_group_button;
|
|
|
|
ArdourWidgets::ArdourButton playlist_button;
|
|
|
|
ArdourWidgets::ArdourButton automation_button;
|
|
|
|
ArdourWidgets::ArdourButton number_label;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
Gtk::Menu subplugin_menu;
|
|
|
|
Gtk::Menu* automation_action_menu;
|
2010-01-08 21:36:47 -05:00
|
|
|
Gtk::MenuItem* plugins_submenu_item;
|
2009-06-28 20:38:58 -04:00
|
|
|
RouteGroupMenu* route_group_menu;
|
2020-04-03 19:53:21 -04:00
|
|
|
Gtk::MenuItem* overlaid_menu_item;
|
|
|
|
Gtk::MenuItem* stacked_menu_item;
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
ArdourCanvas::Rectangle* timestretch_rect;
|
2006-11-09 15:38:39 -05:00
|
|
|
|
2011-07-02 19:36:01 -04:00
|
|
|
/** Information about all automatable processor parameters that apply to
|
|
|
|
* this route. The Amp processor is not included in this list.
|
|
|
|
*/
|
2009-05-12 13:03:42 -04:00
|
|
|
std::list<ProcessorAutomationInfo*> processor_automation;
|
2007-06-30 14:41:50 -04:00
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
std::map<std::shared_ptr<PBD::Controllable>, Gtk::CheckMenuItem*> ctrl_item_map;
|
2021-02-08 13:04:33 -05:00
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
typedef std::vector<std::shared_ptr<AutomationLine> > ProcessorAutomationCurves;
|
2007-06-30 14:41:50 -04:00
|
|
|
ProcessorAutomationCurves processor_automation_curves;
|
2010-06-08 17:48:38 -04:00
|
|
|
/** parameter -> menu item map for the plugin automation menu */
|
|
|
|
ParameterMenuMap _subplugin_menu_map;
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2006-12-14 11:21:43 -05:00
|
|
|
void post_construct ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
GainMeterBase gm;
|
2007-12-20 18:25:19 -05:00
|
|
|
|
2012-06-13 16:37:07 -04:00
|
|
|
bool _ignore_set_layer_display;
|
2020-04-03 20:48:34 -04:00
|
|
|
void layer_display_menu_change (Gtk::MenuItem* item);
|
2011-12-11 21:17:17 -05:00
|
|
|
|
2014-11-30 16:24:18 -05:00
|
|
|
protected:
|
|
|
|
void update_pan_track_visibility ();
|
|
|
|
|
|
|
|
/** Ensure that we have the appropriate automation lanes for panners.
|
|
|
|
*
|
|
|
|
* @param show true to show any new views that we create, otherwise false.
|
|
|
|
*/
|
|
|
|
void ensure_pan_views (bool show = true);
|
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
std::list<std::shared_ptr<AutomationTimeAxisView> > pan_tracks;
|
2014-11-30 16:24:18 -05:00
|
|
|
Gtk::CheckMenuItem* pan_automation_item;
|
|
|
|
|
2011-12-11 21:17:17 -05:00
|
|
|
private:
|
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
void remove_child (std::shared_ptr<TimeAxisView>);
|
2012-06-11 19:15:17 -04:00
|
|
|
void update_playlist_tip ();
|
2014-06-26 13:21:05 -04:00
|
|
|
void parameter_changed (std::string const & p);
|
|
|
|
void update_track_number_visibility();
|
2023-02-16 18:33:28 -05:00
|
|
|
void show_touched_automation (std::weak_ptr<PBD::Controllable>);
|
2024-01-18 20:23:15 -05:00
|
|
|
void maybe_hide_automation (bool, ARDOUR::WeakAutomationControlList);
|
2017-09-09 12:25:36 -04:00
|
|
|
|
|
|
|
void drop_instrument_ref ();
|
|
|
|
void reread_midnam ();
|
|
|
|
PBD::ScopedConnectionList midnam_connection;
|
2021-02-08 13:04:33 -05:00
|
|
|
|
|
|
|
PBD::ScopedConnection ctrl_touched_connection;
|
|
|
|
sigc::connection ctrl_autohide_connection;
|
2006-07-31 23:23:35 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_route_time_axis_h__ */
|