2006-07-31 23:23:35 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2006 Paul Davis
|
2006-07-31 23:23:35 -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_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
|
|
|
|
|
|
|
#include <gtkmm2ext/selector.h>
|
2008-02-16 17:43:18 -05:00
|
|
|
#include <gtkmm2ext/slider_controller.h>
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/playlist.h"
|
|
|
|
#include "ardour/types.h"
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2011-11-11 12:24:05 -05:00
|
|
|
#include "ardour_button.h"
|
2006-07-31 23:23:35 -04:00
|
|
|
#include "ardour_dialog.h"
|
|
|
|
#include "route_ui.h"
|
|
|
|
#include "enums.h"
|
|
|
|
#include "time_axis_view.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;
|
2007-06-27 16:23:48 -04:00
|
|
|
class ProcessorAutomationLine;
|
2006-07-31 23:23:35 -04:00
|
|
|
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
|
|
|
|
|
|
|
class RouteTimeAxisView : public RouteUI, public TimeAxisView
|
|
|
|
{
|
|
|
|
public:
|
2011-07-06 20:37:13 -04:00
|
|
|
RouteTimeAxisView (PublicEditor&, ARDOUR::Session*, ArdourCanvas::Canvas& canvas);
|
2006-07-31 23:23:35 -04:00
|
|
|
virtual ~RouteTimeAxisView ();
|
|
|
|
|
2011-07-06 20:37:13 -04:00
|
|
|
void set_route (boost::shared_ptr<ARDOUR::Route>);
|
|
|
|
|
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);
|
2015-03-19 16:47:34 -04:00
|
|
|
void set_height (uint32_t h, TrackHeightMode m = OnlySelf);
|
2012-05-27 16:07:13 -04:00
|
|
|
void show_timestretch (framepos_t start, framepos_t 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&);
|
2015-01-09 13:20:02 -05:00
|
|
|
void get_selectables (ARDOUR::framepos_t start, ARDOUR::framepos_t end, 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*>&);
|
2011-02-22 21:08:57 -05:00
|
|
|
void set_layer_display (LayerDisplay d, bool apply_to_selection = false);
|
2009-01-05 22:18:09 -05:00
|
|
|
LayerDisplay layer_display () const;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-12-03 17:26:29 -05:00
|
|
|
boost::shared_ptr<ARDOUR::Region> find_next_region (framepos_t pos, ARDOUR::RegionPoint, int32_t dir);
|
2010-09-17 14:20:37 -04:00
|
|
|
framepos_t find_next_region_boundary (framepos_t 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);
|
2014-12-06 12:20:52 -05:00
|
|
|
bool paste (ARDOUR::framepos_t, 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
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
/* The editor calls these when mapping an operation across multiple tracks */
|
2009-05-12 13:03:42 -04: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-07-31 23:23:35 -04:00
|
|
|
void clear_playlist ();
|
2008-10-06 14:04:12 -04:00
|
|
|
|
|
|
|
/* group playlist name resolving */
|
2009-05-12 13:03:42 -04:00
|
|
|
std::string resolve_new_group_playlist_name(std::string &, std::vector<boost::shared_ptr<ARDOUR::Playlist> > const &);
|
2008-10-06 14:04:12 -04:00
|
|
|
|
2010-08-10 22:04:49 -04:00
|
|
|
void build_playlist_menu ();
|
2008-02-10 13:16:25 -05:00
|
|
|
|
|
|
|
void add_underlay (StreamView*, bool update_xml = true);
|
|
|
|
void remove_underlay (StreamView*);
|
|
|
|
void build_underlay_menu(Gtk::Menu*);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2009-10-15 14:56:11 -04:00
|
|
|
int set_state (const XMLNode&, int version);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2008-09-29 18:47:40 -04:00
|
|
|
virtual void create_automation_child (const Evoral::Parameter& param, bool show) = 0;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-05-25 10:50:45 -04: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 13:25:20 -04:00
|
|
|
|
2008-09-29 18:47:40 -04:00
|
|
|
boost::shared_ptr<AutomationTimeAxisView> automation_child(Evoral::Parameter param);
|
2010-06-08 17:48:38 -04:00
|
|
|
virtual Gtk::CheckMenuItem* automation_child_menu_item (Evoral::Parameter);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
std::string name() const;
|
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;
|
2006-12-14 09:15:43 -05:00
|
|
|
boost::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 *);
|
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(); }
|
|
|
|
|
2011-07-06 20:37:13 -04:00
|
|
|
std::string state_id() const;
|
|
|
|
|
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;
|
2007-06-30 14:41:50 -04:00
|
|
|
boost::shared_ptr<AutomationTimeAxisView> view;
|
2009-05-12 13:03:42 -04:00
|
|
|
RouteTimeAxisView& parent;
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2008-09-29 18:47:40 -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
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
~ProcessorAutomationNode ();
|
2006-07-31 23:23:35 -04:00
|
|
|
};
|
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
struct ProcessorAutomationInfo {
|
2007-06-27 16:23:48 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Processor> processor;
|
|
|
|
bool valid;
|
|
|
|
Gtk::Menu* menu;
|
2009-05-12 13:03:42 -04:00
|
|
|
std::vector<ProcessorAutomationNode*> lines;
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
ProcessorAutomationInfo (boost::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
|
|
|
|
2007-06-30 14:41:50 -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
|
|
|
|
2010-08-10 22:04:49 -04:00
|
|
|
gint route_group_click (GdkEventButton *);
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2009-11-30 18:16:28 -05:00
|
|
|
void processors_changed (ARDOUR::RouteProcessorChange);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-05-26 19:16:53 -04:00
|
|
|
virtual void add_processor_to_subplugin_menu (boost::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*,
|
2007-06-27 16:23:48 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Processor>);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-09-29 18:47:40 -04:00
|
|
|
void automation_track_hidden (Evoral::Parameter param);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
ProcessorAutomationNode*
|
2008-09-29 18:47:40 -04:00
|
|
|
find_processor_automation_node (boost::shared_ptr<ARDOUR::Processor> i, Evoral::Parameter);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
boost::shared_ptr<AutomationLine>
|
2008-09-29 18:47:40 -04:00
|
|
|
find_processor_automation_curve (boost::shared_ptr<ARDOUR::Processor> i, Evoral::Parameter);
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2008-09-29 18:47:40 -04:00
|
|
|
void add_processor_automation_curve (boost::shared_ptr<ARDOUR::Processor> r, Evoral::Parameter);
|
2008-12-16 18:21:01 -05:00
|
|
|
void add_existing_processor_automation_curves (boost::weak_ptr<ARDOUR::Processor>);
|
2007-06-27 11:51:50 -04:00
|
|
|
|
2008-09-29 18:47:40 -04:00
|
|
|
void add_automation_child(Evoral::Parameter param, boost::shared_ptr<AutomationTimeAxisView> track, bool show=true);
|
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&);
|
2006-07-31 23:23:35 -04:00
|
|
|
void name_entry_changed ();
|
|
|
|
|
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
|
|
|
|
2013-04-12 11:31:50 -04:00
|
|
|
void reset_samples_per_pixel ();
|
2006-07-31 23:23:35 -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
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
void playlist_click ();
|
|
|
|
void show_playlist_selector ();
|
|
|
|
void playlist_changed ();
|
|
|
|
|
|
|
|
void rename_current_playlist ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
void automation_click ();
|
2011-03-07 08:04:36 -05: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-07-31 23:23:35 -04:00
|
|
|
|
2010-12-03 17:26:29 -05:00
|
|
|
void timestretch (framepos_t start, framepos_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 ();
|
2012-12-27 09:08:38 -05:00
|
|
|
bool can_edit_name() const;
|
2011-08-30 11:44:00 -04:00
|
|
|
|
2010-09-26 22:04:16 -04:00
|
|
|
boost::shared_ptr<AutomationTimeAxisView> gain_track;
|
2015-04-25 14:17:58 -04:00
|
|
|
boost::shared_ptr<AutomationTimeAxisView> trim_track;
|
2014-07-01 14:36:58 -04:00
|
|
|
boost::shared_ptr<AutomationTimeAxisView> mute_track;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
StreamView* _view;
|
|
|
|
ArdourCanvas::Canvas& parent_canvas;
|
|
|
|
bool no_redraw;
|
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;
|
2011-11-11 12:24:05 -05:00
|
|
|
ArdourButton route_group_button;
|
|
|
|
ArdourButton playlist_button;
|
|
|
|
ArdourButton automation_button;
|
2014-06-26 13:21:05 -04:00
|
|
|
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;
|
2006-07-31 23:23:35 -04:00
|
|
|
Gtk::Menu* playlist_action_menu;
|
|
|
|
Gtk::MenuItem* playlist_item;
|
2007-07-06 23:19:04 -04:00
|
|
|
Gtk::Menu* mode_menu;
|
2008-12-23 20:24:49 -05:00
|
|
|
Gtk::Menu* color_mode_menu;
|
2007-07-06 23:19:04 -04:00
|
|
|
|
2008-12-23 20:24:49 -05:00
|
|
|
virtual Gtk::Menu* build_color_mode_menu() { return 0; }
|
2006-07-31 23:23:35 -04:00
|
|
|
|
2010-03-16 11:33:04 -04:00
|
|
|
void use_playlist (Gtk::RadioMenuItem *item, boost::weak_ptr<ARDOUR::Playlist> wpl);
|
2006-11-09 15:38:39 -05:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
ArdourCanvas::Rectangle* timestretch_rect;
|
2006-11-09 15:38:39 -05:00
|
|
|
|
2011-03-01 10:05:05 -05:00
|
|
|
void set_track_mode (ARDOUR::TrackMode, bool apply_to_selection = false);
|
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
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
typedef std::vector<boost::shared_ptr<AutomationLine> > ProcessorAutomationCurves;
|
2007-06-30 14:41:50 -04:00
|
|
|
ProcessorAutomationCurves processor_automation_curves;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
AutomationTracks _automation_tracks;
|
2010-05-25 10:50:45 -04:00
|
|
|
typedef std::map<Evoral::Parameter, Gtk::CheckMenuItem*> ParameterMenuMap;
|
2010-06-08 17:48:38 -04: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-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
|
|
|
|
2008-02-10 13:16:25 -05:00
|
|
|
XMLNode* underlay_xml_node;
|
|
|
|
bool set_underlay_state();
|
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
typedef std::list<StreamView*> UnderlayList;
|
2008-02-10 13:16:25 -05:00
|
|
|
UnderlayList _underlay_streams;
|
2009-05-12 13:03:42 -04:00
|
|
|
typedef std::list<RouteTimeAxisView*> UnderlayMirrorList;
|
2008-02-10 13:16:25 -05:00
|
|
|
UnderlayMirrorList _underlay_mirrors;
|
2010-03-23 09:11:14 -04:00
|
|
|
|
2012-06-13 16:37:07 -04:00
|
|
|
bool _ignore_set_layer_display;
|
2011-12-11 21:17:17 -05:00
|
|
|
|
2014-11-30 16:24:18 -05:00
|
|
|
protected:
|
|
|
|
void update_gain_track_visibility ();
|
2015-04-25 14:17:58 -04:00
|
|
|
void update_trim_track_visibility ();
|
2014-11-30 16:24:18 -05:00
|
|
|
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;
|
2015-04-25 14:17:58 -04:00
|
|
|
Gtk::CheckMenuItem* trim_automation_item;
|
2014-11-30 16:24:18 -05:00
|
|
|
Gtk::CheckMenuItem* mute_automation_item;
|
|
|
|
std::list<boost::shared_ptr<AutomationTimeAxisView> > pan_tracks;
|
|
|
|
Gtk::CheckMenuItem* pan_automation_item;
|
|
|
|
|
2011-12-11 21:17:17 -05:00
|
|
|
private:
|
|
|
|
|
|
|
|
void remove_child (boost::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();
|
2006-07-31 23:23:35 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_route_time_axis_h__ */
|
|
|
|
|