2006-08-01 03:23:35 +00:00
|
|
|
/*
|
2009-10-14 16:10:01 +00:00
|
|
|
Copyright (C) 2006 Paul Davis
|
2006-08-01 03:23:35 +00: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_route_time_axis_h__
|
|
|
|
|
#define __ardour_route_time_axis_h__
|
|
|
|
|
|
2009-01-30 20:18:31 +00:00
|
|
|
#include <list>
|
|
|
|
|
#include <set>
|
|
|
|
|
|
2006-08-01 03:23:35 +00: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 22:43:18 +00:00
|
|
|
#include <gtkmm/adjustment.h>
|
2006-08-01 03:23:35 +00:00
|
|
|
|
|
|
|
|
#include <gtkmm2ext/selector.h>
|
2008-02-16 22:43:18 +00:00
|
|
|
#include <gtkmm2ext/slider_controller.h>
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "ardour/playlist.h"
|
|
|
|
|
#include "ardour/types.h"
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2011-11-11 17:24:05 +00:00
|
|
|
#include "ardour_button.h"
|
2006-08-01 03:23:35 +00:00
|
|
|
#include "ardour_dialog.h"
|
|
|
|
|
#include "route_ui.h"
|
|
|
|
|
#include "enums.h"
|
|
|
|
|
#include "time_axis_view.h"
|
2008-09-10 15:03:30 +00:00
|
|
|
#include "gain_meter.h"
|
2006-08-01 03:23:35 +00:00
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
|
class Session;
|
|
|
|
|
class Region;
|
|
|
|
|
class RouteGroup;
|
2007-06-27 20:23:48 +00:00
|
|
|
class IOProcessor;
|
|
|
|
|
class Processor;
|
2006-08-01 03:23:35 +00:00
|
|
|
class Location;
|
|
|
|
|
class Playlist;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
namespace ArdourCanvas {
|
|
|
|
|
class Rectangle;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
class PublicEditor;
|
|
|
|
|
class RegionView;
|
|
|
|
|
class StreamView;
|
|
|
|
|
class Selection;
|
|
|
|
|
class RegionSelection;
|
|
|
|
|
class Selectable;
|
|
|
|
|
class AutomationTimeAxisView;
|
|
|
|
|
class AutomationLine;
|
2007-06-27 20:23:48 +00:00
|
|
|
class ProcessorAutomationLine;
|
2006-08-01 03:23:35 +00:00
|
|
|
class TimeSelection;
|
2009-06-29 00:38:58 +00:00
|
|
|
class RouteGroupMenu;
|
2014-11-16 17:04:27 -05:00
|
|
|
class ItemCounts;
|
2006-08-01 03:23:35 +00:00
|
|
|
|
|
|
|
|
class RouteTimeAxisView : public RouteUI, public TimeAxisView
|
|
|
|
|
{
|
|
|
|
|
public:
|
2011-07-07 00:37:13 +00:00
|
|
|
RouteTimeAxisView (PublicEditor&, ARDOUR::Session*, ArdourCanvas::Canvas& canvas);
|
2006-08-01 03:23:35 +00:00
|
|
|
virtual ~RouteTimeAxisView ();
|
|
|
|
|
|
2011-07-07 00:37:13 +00:00
|
|
|
void set_route (boost::shared_ptr<ARDOUR::Route>);
|
|
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
void show_selection (TimeSelection&);
|
2009-06-23 20:02:15 +00:00
|
|
|
void set_button_names ();
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2013-04-12 11:31:50 -04:00
|
|
|
void set_samples_per_pixel (double);
|
2008-09-10 15:03:30 +00:00
|
|
|
void set_height (uint32_t h);
|
2012-05-27 20:07:13 +00:00
|
|
|
void show_timestretch (framepos_t start, framepos_t end, int layers, int layer);
|
2006-08-01 03:23:35 +00:00
|
|
|
void hide_timestretch ();
|
|
|
|
|
void selection_click (GdkEventButton*);
|
|
|
|
|
void set_selected_points (PointSelection&);
|
|
|
|
|
void set_selected_regionviews (RegionSelection&);
|
2010-08-06 23:28:44 +00:00
|
|
|
void get_selectables (ARDOUR::framepos_t start, ARDOUR::framepos_t end, double top, double bot, std::list<Selectable *>&);
|
2009-05-12 17:03:42 +00:00
|
|
|
void get_inverted_selectables (Selection&, std::list<Selectable*>&);
|
2011-02-23 02:08:57 +00:00
|
|
|
void set_layer_display (LayerDisplay d, bool apply_to_selection = false);
|
2009-01-06 03:18:09 +00:00
|
|
|
LayerDisplay layer_display () const;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2010-12-03 22:26:29 +00:00
|
|
|
boost::shared_ptr<ARDOUR::Region> find_next_region (framepos_t pos, ARDOUR::RegionPoint, int32_t dir);
|
2010-09-17 18:20:37 +00:00
|
|
|
framepos_t find_next_region_boundary (framepos_t pos, int32_t dir);
|
2006-08-01 03:23:35 +00:00
|
|
|
|
|
|
|
|
/* Editing operations */
|
2010-08-05 13:35:43 +00:00
|
|
|
void cut_copy_clear (Selection&, Editing::CutCopyOp);
|
2014-11-16 17:04:27 -05:00
|
|
|
bool paste (ARDOUR::framepos_t, unsigned paste_count, float times, const Selection&, ItemCounts&);
|
2011-05-25 00:40:32 +00:00
|
|
|
RegionView* combine_regions ();
|
2011-05-22 16:11:00 +00:00
|
|
|
void uncombine_regions ();
|
|
|
|
|
void uncombine_region (RegionView*);
|
2010-01-09 02:36:47 +00:00
|
|
|
void toggle_automation_track (const Evoral::Parameter& param);
|
2014-07-10 08:17:22 -04:00
|
|
|
void fade_range (TimeSelection&);
|
2010-01-09 02:36:47 +00:00
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
/* The editor calls these when mapping an operation across multiple tracks */
|
2009-05-12 17:03:42 +00:00
|
|
|
void use_new_playlist (bool prompt, std::vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
|
|
|
|
|
void use_copy_playlist (bool prompt, std::vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
|
2006-08-01 03:23:35 +00:00
|
|
|
void clear_playlist ();
|
2008-10-06 18:04:12 +00:00
|
|
|
|
|
|
|
|
/* group playlist name resolving */
|
2009-05-12 17:03:42 +00:00
|
|
|
std::string resolve_new_group_playlist_name(std::string &, std::vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
|
2008-10-06 18:04:12 +00:00
|
|
|
|
2010-08-11 02:04:49 +00:00
|
|
|
void build_playlist_menu ();
|
2008-02-10 18:16:25 +00:00
|
|
|
|
|
|
|
|
void add_underlay (StreamView*, bool update_xml = true);
|
|
|
|
|
void remove_underlay (StreamView*);
|
|
|
|
|
void build_underlay_menu(Gtk::Menu*);
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2009-10-15 18:56:11 +00:00
|
|
|
int set_state (const XMLNode&, int version);
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2008-09-29 22:47:40 +00:00
|
|
|
virtual void create_automation_child (const Evoral::Parameter& param, bool show) = 0;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2010-05-25 14:50:45 +00:00
|
|
|
typedef std::map<Evoral::Parameter, boost::shared_ptr<AutomationTimeAxisView> > AutomationTracks;
|
2014-11-16 17:04:27 -05:00
|
|
|
const AutomationTracks& automation_tracks() const { return _automation_tracks; }
|
2007-08-17 17:25:20 +00:00
|
|
|
|
2008-09-29 22:47:40 +00:00
|
|
|
boost::shared_ptr<AutomationTimeAxisView> automation_child(Evoral::Parameter param);
|
2010-06-08 21:48:38 +00:00
|
|
|
virtual Gtk::CheckMenuItem* automation_child_menu_item (Evoral::Parameter);
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2009-05-12 17:03:42 +00:00
|
|
|
std::string name() const;
|
2006-08-01 03:23:35 +00:00
|
|
|
StreamView* view() const { return _view; }
|
2009-06-21 19:59:56 +00:00
|
|
|
ARDOUR::RouteGroup* route_group() const;
|
2006-12-14 14:15:43 +00:00
|
|
|
boost::shared_ptr<ARDOUR::Playlist> playlist() const;
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2007-12-20 23:25:19 +00:00
|
|
|
void fast_update ();
|
|
|
|
|
void hide_meter ();
|
|
|
|
|
void show_meter ();
|
|
|
|
|
void reset_meter ();
|
|
|
|
|
void clear_meter ();
|
|
|
|
|
void io_changed (ARDOUR::IOChange, void *);
|
2010-04-03 13:40:34 +00:00
|
|
|
void meter_changed ();
|
2008-09-10 15:03:30 +00:00
|
|
|
void effective_gain_display () { gm.effective_gain_display(); }
|
|
|
|
|
|
2011-07-07 00:37:13 +00:00
|
|
|
std::string state_id() const;
|
|
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
protected:
|
|
|
|
|
friend class StreamView;
|
2007-06-27 15:51:50 +00:00
|
|
|
|
2007-06-30 18:41:50 +00:00
|
|
|
struct ProcessorAutomationNode {
|
2008-09-29 22:47:40 +00:00
|
|
|
Evoral::Parameter what;
|
2009-05-12 17:03:42 +00:00
|
|
|
Gtk::CheckMenuItem* menu_item;
|
2007-06-30 18:41:50 +00:00
|
|
|
boost::shared_ptr<AutomationTimeAxisView> view;
|
2009-05-12 17:03:42 +00:00
|
|
|
RouteTimeAxisView& parent;
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2008-09-29 22:47:40 +00:00
|
|
|
ProcessorAutomationNode (Evoral::Parameter w, Gtk::CheckMenuItem* mitem, RouteTimeAxisView& p)
|
2007-06-30 18:41:50 +00:00
|
|
|
: what (w), menu_item (mitem), parent (p) {}
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2007-06-30 18:41:50 +00:00
|
|
|
~ProcessorAutomationNode ();
|
2006-08-01 03:23:35 +00:00
|
|
|
};
|
|
|
|
|
|
2007-06-30 18:41:50 +00:00
|
|
|
struct ProcessorAutomationInfo {
|
2007-06-27 20:23:48 +00:00
|
|
|
boost::shared_ptr<ARDOUR::Processor> processor;
|
|
|
|
|
bool valid;
|
|
|
|
|
Gtk::Menu* menu;
|
2009-05-12 17:03:42 +00:00
|
|
|
std::vector<ProcessorAutomationNode*> lines;
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2009-10-14 16:10:01 +00:00
|
|
|
ProcessorAutomationInfo (boost::shared_ptr<ARDOUR::Processor> i)
|
2007-06-27 20:23:48 +00:00
|
|
|
: processor (i), valid (true), menu (0) {}
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2007-06-30 18:41:50 +00:00
|
|
|
~ProcessorAutomationInfo ();
|
2006-08-01 03:23:35 +00:00
|
|
|
};
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
|
|
|
|
|
void update_diskstream_display ();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2010-08-11 02:04:49 +00:00
|
|
|
gint route_group_click (GdkEventButton *);
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2009-11-30 23:16:28 +00:00
|
|
|
void processors_changed (ARDOUR::RouteProcessorChange);
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2010-05-26 23:16:53 +00:00
|
|
|
virtual void add_processor_to_subplugin_menu (boost::weak_ptr<ARDOUR::Processor>);
|
2007-06-30 18:41:50 +00:00
|
|
|
void remove_processor_automation_node (ProcessorAutomationNode* pan);
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2007-06-30 18:41:50 +00:00
|
|
|
void processor_menu_item_toggled (RouteTimeAxisView::ProcessorAutomationInfo*,
|
|
|
|
|
RouteTimeAxisView::ProcessorAutomationNode*);
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2007-06-30 18:41:50 +00:00
|
|
|
void processor_automation_track_hidden (ProcessorAutomationNode*,
|
2007-06-27 20:23:48 +00:00
|
|
|
boost::shared_ptr<ARDOUR::Processor>);
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2008-09-29 22:47:40 +00:00
|
|
|
void automation_track_hidden (Evoral::Parameter param);
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2007-06-30 18:41:50 +00:00
|
|
|
ProcessorAutomationNode*
|
2008-09-29 22:47:40 +00:00
|
|
|
find_processor_automation_node (boost::shared_ptr<ARDOUR::Processor> i, Evoral::Parameter);
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2007-06-30 18:41:50 +00:00
|
|
|
boost::shared_ptr<AutomationLine>
|
2008-09-29 22:47:40 +00:00
|
|
|
find_processor_automation_curve (boost::shared_ptr<ARDOUR::Processor> i, Evoral::Parameter);
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2008-09-29 22:47:40 +00:00
|
|
|
void add_processor_automation_curve (boost::shared_ptr<ARDOUR::Processor> r, Evoral::Parameter);
|
2008-12-16 23:21:01 +00:00
|
|
|
void add_existing_processor_automation_curves (boost::weak_ptr<ARDOUR::Processor>);
|
2007-06-27 15:51:50 +00:00
|
|
|
|
2008-09-29 22:47:40 +00:00
|
|
|
void add_automation_child(Evoral::Parameter param, boost::shared_ptr<AutomationTimeAxisView> track, bool show=true);
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2007-06-27 20:23:48 +00:00
|
|
|
void reset_processor_automation_curves ();
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2007-06-23 20:13:13 +00:00
|
|
|
void take_name_changed (void *src);
|
2010-02-19 18:09:08 +00:00
|
|
|
void route_property_changed (const PBD::PropertyChange&);
|
2006-08-01 03:23:35 +00:00
|
|
|
void name_entry_changed ();
|
|
|
|
|
|
2014-08-22 11:45:34 -05:00
|
|
|
void blink_rec_display (bool onoff);
|
2007-04-26 20:54:31 +00:00
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
virtual void label_view ();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2013-04-12 11:31:50 -04:00
|
|
|
void reset_samples_per_pixel ();
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2011-03-07 13:04:36 +00:00
|
|
|
virtual void build_automation_action_menu (bool);
|
2006-08-01 03:23:35 +00:00
|
|
|
virtual void append_extra_display_menu_items () {}
|
|
|
|
|
void build_display_menu ();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2011-03-09 05:19:44 +00:00
|
|
|
void set_align_choice (Gtk::RadioMenuItem*, ARDOUR::AlignChoice, bool apply_to_selection = false);
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
void playlist_click ();
|
|
|
|
|
void show_playlist_selector ();
|
|
|
|
|
void playlist_changed ();
|
|
|
|
|
|
|
|
|
|
void rename_current_playlist ();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
void automation_click ();
|
2011-03-07 13:04:36 +00:00
|
|
|
|
|
|
|
|
virtual void show_all_automation (bool apply_to_selection = false);
|
|
|
|
|
virtual void show_existing_automation (bool apply_to_selection = false);
|
|
|
|
|
virtual void hide_all_automation (bool apply_to_selection = false);
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2010-12-03 22:26:29 +00:00
|
|
|
void timestretch (framepos_t start, framepos_t end);
|
2006-08-01 03:23:35 +00:00
|
|
|
void speed_changed ();
|
|
|
|
|
void map_frozen ();
|
2007-06-15 22:08:27 +00:00
|
|
|
void color_handler ();
|
2006-08-01 03:23:35 +00:00
|
|
|
void region_view_added (RegionView*);
|
2010-09-27 02:04:16 +00:00
|
|
|
void create_gain_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 23:36:01 +00:00
|
|
|
void setup_processor_menu_and_curves ();
|
2011-08-30 15:44:00 +00:00
|
|
|
void route_color_changed ();
|
2012-12-27 14:08:38 +00:00
|
|
|
bool can_edit_name() const;
|
2011-08-30 15:44:00 +00:00
|
|
|
|
2010-09-27 02:04:16 +00:00
|
|
|
boost::shared_ptr<AutomationTimeAxisView> gain_track;
|
2014-07-01 14:36:58 -04:00
|
|
|
boost::shared_ptr<AutomationTimeAxisView> mute_track;
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
StreamView* _view;
|
|
|
|
|
ArdourCanvas::Canvas& parent_canvas;
|
|
|
|
|
bool no_redraw;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
Gtk::HBox other_button_hbox;
|
|
|
|
|
Gtk::Table button_table;
|
2011-11-11 17:24:05 +00:00
|
|
|
ArdourButton route_group_button;
|
|
|
|
|
ArdourButton playlist_button;
|
|
|
|
|
ArdourButton automation_button;
|
2014-06-26 19:21:05 +02:00
|
|
|
ArdourButton number_label;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2006-08-01 03:23:35 +00:00
|
|
|
Gtk::Menu subplugin_menu;
|
|
|
|
|
Gtk::Menu* automation_action_menu;
|
2010-01-09 02:36:47 +00:00
|
|
|
Gtk::MenuItem* plugins_submenu_item;
|
2009-06-29 00:38:58 +00:00
|
|
|
RouteGroupMenu* route_group_menu;
|
2006-08-01 03:23:35 +00:00
|
|
|
Gtk::Menu* playlist_action_menu;
|
|
|
|
|
Gtk::MenuItem* playlist_item;
|
2007-07-07 03:19:04 +00:00
|
|
|
Gtk::Menu* mode_menu;
|
2008-12-24 01:24:49 +00:00
|
|
|
Gtk::Menu* color_mode_menu;
|
2007-07-07 03:19:04 +00:00
|
|
|
|
2008-12-24 01:24:49 +00:00
|
|
|
virtual Gtk::Menu* build_color_mode_menu() { return 0; }
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2010-03-16 15:33:04 +00:00
|
|
|
void use_playlist (Gtk::RadioMenuItem *item, boost::weak_ptr<ARDOUR::Playlist> wpl);
|
2006-11-09 20:38:39 +00:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
ArdourCanvas::Rectangle* timestretch_rect;
|
2006-11-09 20:38:39 +00:00
|
|
|
|
2011-03-01 15:05:05 +00:00
|
|
|
void set_track_mode (ARDOUR::TrackMode, bool apply_to_selection = false);
|
2006-11-09 20:38:39 +00:00
|
|
|
|
2011-07-02 23:36:01 +00:00
|
|
|
/** Information about all automatable processor parameters that apply to
|
|
|
|
|
* this route. The Amp processor is not included in this list.
|
|
|
|
|
*/
|
2009-05-12 17:03:42 +00:00
|
|
|
std::list<ProcessorAutomationInfo*> processor_automation;
|
2007-06-30 18:41:50 +00:00
|
|
|
|
2009-05-12 17:03:42 +00:00
|
|
|
typedef std::vector<boost::shared_ptr<AutomationLine> > ProcessorAutomationCurves;
|
2007-06-30 18:41:50 +00:00
|
|
|
ProcessorAutomationCurves processor_automation_curves;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2007-06-30 18:41:50 +00:00
|
|
|
AutomationTracks _automation_tracks;
|
2010-05-25 14:50:45 +00:00
|
|
|
typedef std::map<Evoral::Parameter, Gtk::CheckMenuItem*> ParameterMenuMap;
|
2010-06-08 21:48:38 +00:00
|
|
|
/** parameter -> menu item map for the main automation menu */
|
|
|
|
|
ParameterMenuMap _main_automation_menu_map;
|
|
|
|
|
/** parameter -> menu item map for the plugin automation menu */
|
|
|
|
|
ParameterMenuMap _subplugin_menu_map;
|
2006-08-01 03:23:35 +00:00
|
|
|
|
2006-12-14 16:21:43 +00:00
|
|
|
void post_construct ();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2008-09-10 15:03:30 +00:00
|
|
|
GainMeterBase gm;
|
2007-12-20 23:25:19 +00:00
|
|
|
|
2008-02-10 18:16:25 +00:00
|
|
|
XMLNode* underlay_xml_node;
|
|
|
|
|
bool set_underlay_state();
|
|
|
|
|
|
2009-05-12 17:03:42 +00:00
|
|
|
typedef std::list<StreamView*> UnderlayList;
|
2008-02-10 18:16:25 +00:00
|
|
|
UnderlayList _underlay_streams;
|
2009-05-12 17:03:42 +00:00
|
|
|
typedef std::list<RouteTimeAxisView*> UnderlayMirrorList;
|
2008-02-10 18:16:25 +00:00
|
|
|
UnderlayMirrorList _underlay_mirrors;
|
2010-03-23 13:11:14 +00:00
|
|
|
|
2012-06-13 20:37:07 +00:00
|
|
|
bool _ignore_set_layer_display;
|
2011-12-12 02:17:17 +00:00
|
|
|
|
2014-11-30 16:24:18 -05:00
|
|
|
protected:
|
|
|
|
|
void update_gain_track_visibility ();
|
|
|
|
|
void update_mute_track_visibility ();
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
|
|
Gtk::CheckMenuItem* gain_automation_item;
|
|
|
|
|
Gtk::CheckMenuItem* mute_automation_item;
|
|
|
|
|
std::list<boost::shared_ptr<AutomationTimeAxisView> > pan_tracks;
|
|
|
|
|
Gtk::CheckMenuItem* pan_automation_item;
|
|
|
|
|
|
2011-12-12 02:17:17 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
void remove_child (boost::shared_ptr<TimeAxisView>);
|
2012-06-11 23:15:17 +00:00
|
|
|
void update_playlist_tip ();
|
2014-06-26 19:21:05 +02:00
|
|
|
void parameter_changed (std::string const & p);
|
|
|
|
|
void update_track_number_visibility();
|
2006-08-01 03:23:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_route_time_axis_h__ */
|
|
|
|
|
|