2005-09-25 18:42:24 +00:00
|
|
|
/*
|
|
|
|
|
Copyright (C) 2002 Paul Davis
|
|
|
|
|
|
|
|
|
|
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_ui__
|
|
|
|
|
#define __ardour_route_ui__
|
|
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
|
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "pbd/xml++.h"
|
2009-12-19 20:26:31 +00:00
|
|
|
#include "pbd/signals.h"
|
2009-12-17 18:24:23 +00:00
|
|
|
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "ardour/ardour.h"
|
2009-06-09 20:21:19 +00:00
|
|
|
#include "ardour/mute_master.h"
|
2009-12-07 21:37:35 +00:00
|
|
|
#include "ardour/session_event.h"
|
|
|
|
|
#include "ardour/session.h"
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "ardour/route.h"
|
2009-12-08 01:52:49 +00:00
|
|
|
#include "ardour/route_group.h"
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "ardour/track.h"
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
#include "axis_view.h"
|
|
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
|
class AudioTrack;
|
2006-07-05 19:47:25 +00:00
|
|
|
class MidiTrack;
|
2005-09-25 18:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
2005-11-29 04:41:15 +00:00
|
|
|
namespace Gtk {
|
|
|
|
|
class Menu;
|
|
|
|
|
class CheckMenuItem;
|
|
|
|
|
class Widget;
|
|
|
|
|
}
|
|
|
|
|
|
2006-07-14 03:43:32 +00:00
|
|
|
class BindableToggleButton;
|
2010-05-05 20:29:46 +00:00
|
|
|
class LED;
|
2006-07-14 03:43:32 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
class RouteUI : public virtual AxisView
|
|
|
|
|
{
|
|
|
|
|
public:
|
2009-12-17 18:24:23 +00:00
|
|
|
RouteUI(ARDOUR::Session*);
|
|
|
|
|
RouteUI(boost::shared_ptr<ARDOUR::Route>, ARDOUR::Session*);
|
2008-12-08 16:07:28 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
virtual ~RouteUI();
|
|
|
|
|
|
2011-08-31 19:14:12 +00:00
|
|
|
Gdk::Color color () const;
|
|
|
|
|
|
2008-12-08 16:07:28 +00:00
|
|
|
virtual void set_route (boost::shared_ptr<ARDOUR::Route>);
|
2009-06-23 20:02:15 +00:00
|
|
|
virtual void set_button_names () = 0;
|
2008-12-08 16:07:28 +00:00
|
|
|
|
2006-07-23 12:03:19 +00:00
|
|
|
bool is_track() const;
|
2005-09-25 18:42:24 +00:00
|
|
|
bool is_audio_track() const;
|
2006-07-05 19:47:25 +00:00
|
|
|
bool is_midi_track() const;
|
2010-08-10 00:09:25 +00:00
|
|
|
bool has_audio_outputs () const;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2006-07-28 01:08:57 +00:00
|
|
|
boost::shared_ptr<ARDOUR::Route> route() const { return _route; }
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2007-06-15 22:05:07 +00:00
|
|
|
boost::shared_ptr<ARDOUR::Track> track() const;
|
|
|
|
|
boost::shared_ptr<ARDOUR::AudioTrack> audio_track() const;
|
|
|
|
|
boost::shared_ptr<ARDOUR::MidiTrack> midi_track() const;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-05-12 17:03:42 +00:00
|
|
|
std::string name() const;
|
2006-07-28 01:08:57 +00:00
|
|
|
|
|
|
|
|
// protected: XXX sigh this should be here
|
|
|
|
|
|
|
|
|
|
boost::shared_ptr<ARDOUR::Route> _route;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2011-07-07 00:37:13 +00:00
|
|
|
void request_redraw ();
|
|
|
|
|
|
2011-02-23 01:03:37 +00:00
|
|
|
virtual void set_color (const Gdk::Color & c);
|
2011-02-23 01:03:51 +00:00
|
|
|
void choose_color ();
|
2005-09-25 18:42:24 +00:00
|
|
|
|
|
|
|
|
bool ignore_toggle;
|
|
|
|
|
bool wait_for_release;
|
2008-12-12 14:43:24 +00:00
|
|
|
bool multiple_mute_change;
|
|
|
|
|
bool multiple_solo_change;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2010-08-13 21:33:01 +00:00
|
|
|
Gtk::HBox _invert_button_box;
|
2006-07-14 03:43:32 +00:00
|
|
|
BindableToggleButton* mute_button;
|
|
|
|
|
BindableToggleButton* solo_button;
|
2009-05-17 02:08:13 +00:00
|
|
|
BindableToggleButton* rec_enable_button; /* audio tracks */
|
|
|
|
|
BindableToggleButton* show_sends_button; /* busses */
|
2009-05-17 17:05:56 +00:00
|
|
|
|
2010-05-05 20:29:46 +00:00
|
|
|
LED* solo_safe_led;
|
|
|
|
|
LED* solo_isolated_led;
|
|
|
|
|
|
2009-06-23 20:02:15 +00:00
|
|
|
Gtk::Label solo_button_label;
|
|
|
|
|
Gtk::Label mute_button_label;
|
|
|
|
|
Gtk::Label rec_enable_button_label;
|
|
|
|
|
|
2009-05-17 17:05:56 +00:00
|
|
|
void send_blink (bool);
|
|
|
|
|
sigc::connection send_blink_connection;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-05-12 17:03:42 +00:00
|
|
|
virtual std::string solo_button_name () const { return "SoloButton"; }
|
|
|
|
|
virtual std::string safe_solo_button_name () const { return "SafeSoloButton"; }
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
Gtk::Menu* mute_menu;
|
|
|
|
|
Gtk::Menu* solo_menu;
|
2009-05-17 02:08:13 +00:00
|
|
|
Gtk::Menu* sends_menu;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2006-09-19 03:29:16 +00:00
|
|
|
bool mute_press(GdkEventButton*);
|
|
|
|
|
bool mute_release(GdkEventButton*);
|
|
|
|
|
bool solo_press(GdkEventButton*);
|
|
|
|
|
bool solo_release(GdkEventButton*);
|
|
|
|
|
bool rec_enable_press(GdkEventButton*);
|
2007-03-18 06:07:08 +00:00
|
|
|
bool rec_enable_release(GdkEventButton*);
|
2009-05-17 02:08:13 +00:00
|
|
|
bool show_sends_press(GdkEventButton*);
|
|
|
|
|
bool show_sends_release(GdkEventButton*);
|
|
|
|
|
|
2009-07-13 23:09:16 +00:00
|
|
|
void step_gain_up ();
|
|
|
|
|
void step_gain_down ();
|
|
|
|
|
void page_gain_up ();
|
|
|
|
|
void page_gain_down ();
|
|
|
|
|
|
2009-05-17 02:08:13 +00:00
|
|
|
void build_sends_menu ();
|
|
|
|
|
void set_sends_gain_from_track ();
|
|
|
|
|
void set_sends_gain_to_zero ();
|
|
|
|
|
void set_sends_gain_to_unity ();
|
2010-12-29 22:07:34 +00:00
|
|
|
void create_sends (ARDOUR::Placement, bool);
|
|
|
|
|
void create_selected_sends (ARDOUR::Placement, bool);
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2010-04-27 03:10:53 +00:00
|
|
|
void solo_changed(bool, void*);
|
2007-03-18 06:07:08 +00:00
|
|
|
void solo_changed_so_update_mute ();
|
2005-09-25 18:42:24 +00:00
|
|
|
void mute_changed(void*);
|
2009-07-01 13:36:50 +00:00
|
|
|
void listen_changed(void*);
|
2009-11-30 23:16:28 +00:00
|
|
|
virtual void processors_changed (ARDOUR::RouteProcessorChange) {}
|
2006-08-01 17:19:38 +00:00
|
|
|
void route_rec_enable_changed();
|
2005-09-25 18:42:24 +00:00
|
|
|
void session_rec_enable_changed();
|
|
|
|
|
|
2009-08-29 23:31:59 +00:00
|
|
|
void build_solo_menu ();
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2009-06-09 20:21:19 +00:00
|
|
|
void solo_isolated_toggle (void*, Gtk::CheckMenuItem*);
|
|
|
|
|
void toggle_solo_isolated (Gtk::CheckMenuItem*);
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2010-05-05 20:29:46 +00:00
|
|
|
bool solo_isolate_button_release (GdkEventButton*);
|
|
|
|
|
bool solo_safe_button_release (GdkEventButton*);
|
|
|
|
|
|
2009-11-21 19:33:09 +00:00
|
|
|
void solo_safe_toggle (void*, Gtk::CheckMenuItem*);
|
|
|
|
|
void toggle_solo_safe (Gtk::CheckMenuItem*);
|
|
|
|
|
|
2009-11-18 13:25:13 +00:00
|
|
|
Gtk::CheckMenuItem* pre_fader_mute_check;
|
|
|
|
|
Gtk::CheckMenuItem* post_fader_mute_check;
|
|
|
|
|
Gtk::CheckMenuItem* listen_mute_check;
|
|
|
|
|
Gtk::CheckMenuItem* main_mute_check;
|
2010-04-20 12:38:37 +00:00
|
|
|
Gtk::CheckMenuItem* solo_safe_check;
|
|
|
|
|
Gtk::CheckMenuItem* solo_isolated_check;
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2009-11-18 13:25:13 +00:00
|
|
|
void toggle_mute_menu(ARDOUR::MuteMaster::MutePoint, Gtk::CheckMenuItem*);
|
|
|
|
|
void muting_change ();
|
2005-09-25 18:42:24 +00:00
|
|
|
void build_mute_menu(void);
|
2009-06-09 20:21:19 +00:00
|
|
|
void init_mute_menu(ARDOUR::MuteMaster::MutePoint, Gtk::CheckMenuItem*);
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
int set_color_from_route ();
|
|
|
|
|
|
2011-03-07 13:05:45 +00:00
|
|
|
void remove_this_route (bool apply_to_selection = false);
|
2005-09-25 18:42:24 +00:00
|
|
|
static gint idle_remove_this_route (RouteUI *);
|
|
|
|
|
|
|
|
|
|
void route_rename();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2010-02-19 18:09:08 +00:00
|
|
|
virtual void property_changed (const PBD::PropertyChange&);
|
2005-09-25 18:42:24 +00:00
|
|
|
void route_removed ();
|
|
|
|
|
|
2011-03-07 13:04:46 +00:00
|
|
|
virtual void route_active_changed () {}
|
|
|
|
|
void set_route_active (bool, bool);
|
2005-09-25 18:42:24 +00:00
|
|
|
|
2010-07-24 16:40:56 +00:00
|
|
|
Gtk::Menu* record_menu;
|
|
|
|
|
void build_record_menu ();
|
|
|
|
|
|
|
|
|
|
Gtk::CheckMenuItem *step_edit_item;
|
2010-08-03 21:50:15 +00:00
|
|
|
void toggle_step_edit ();
|
2010-07-24 16:40:56 +00:00
|
|
|
virtual void step_edit_changed (bool);
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2006-03-30 15:50:08 +00:00
|
|
|
virtual void polarity_changed ();
|
|
|
|
|
|
2007-06-01 02:27:21 +00:00
|
|
|
Gtk::CheckMenuItem *denormal_menu_item;
|
|
|
|
|
void toggle_denormal_protection();
|
|
|
|
|
virtual void denormal_protection_changed ();
|
|
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
void disconnect_input ();
|
|
|
|
|
void disconnect_output ();
|
|
|
|
|
|
2007-04-29 17:23:11 +00:00
|
|
|
virtual void update_rec_display ();
|
2005-09-25 18:42:24 +00:00
|
|
|
void update_mute_display ();
|
2007-03-18 06:07:08 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
void update_solo_display ();
|
2007-03-18 06:07:08 +00:00
|
|
|
|
2005-09-25 18:42:24 +00:00
|
|
|
virtual void map_frozen ();
|
|
|
|
|
|
2007-06-27 22:06:35 +00:00
|
|
|
void adjust_latency ();
|
2009-03-02 18:08:15 +00:00
|
|
|
void save_as_template ();
|
2009-08-29 23:31:59 +00:00
|
|
|
void open_remote_control_id_dialog ();
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-11-26 03:02:16 +00:00
|
|
|
static int solo_visual_state (boost::shared_ptr<ARDOUR::Route>);
|
2009-12-10 20:51:35 +00:00
|
|
|
static int solo_visual_state_with_isolate (boost::shared_ptr<ARDOUR::Route>);
|
|
|
|
|
static int solo_isolate_visual_state (boost::shared_ptr<ARDOUR::Route>);
|
2010-04-05 20:08:37 +00:00
|
|
|
static int solo_safe_visual_state (boost::shared_ptr<ARDOUR::Route>);
|
2009-12-17 18:24:23 +00:00
|
|
|
static int mute_visual_state (ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>);
|
2009-11-26 03:02:16 +00:00
|
|
|
|
2008-12-08 16:07:28 +00:00
|
|
|
protected:
|
2009-12-19 20:26:31 +00:00
|
|
|
PBD::ScopedConnectionList route_connections;
|
2009-04-15 18:04:23 +00:00
|
|
|
bool self_destruct;
|
|
|
|
|
|
2008-12-08 16:07:28 +00:00
|
|
|
void init ();
|
|
|
|
|
void reset ();
|
2009-06-14 17:56:29 +00:00
|
|
|
|
2009-12-17 18:24:23 +00:00
|
|
|
void self_delete ();
|
2010-08-03 21:50:15 +00:00
|
|
|
virtual void start_step_editing () {}
|
|
|
|
|
virtual void stop_step_editing() {}
|
2009-12-08 01:52:49 +00:00
|
|
|
|
2011-01-29 15:28:58 +00:00
|
|
|
void set_invert_sensitive (bool);
|
2011-07-26 02:07:59 +00:00
|
|
|
bool verify_new_route_name (const std::string& name);
|
2011-01-29 15:28:58 +00:00
|
|
|
|
2011-08-30 15:44:00 +00:00
|
|
|
void route_gui_changed (std::string);
|
|
|
|
|
virtual void route_color_changed () {}
|
|
|
|
|
|
2009-06-14 17:56:29 +00:00
|
|
|
private:
|
|
|
|
|
void check_rec_enable_sensitivity ();
|
|
|
|
|
void parameter_changed (std::string const &);
|
2009-06-23 20:02:15 +00:00
|
|
|
void relabel_solo_button ();
|
2009-12-07 21:37:35 +00:00
|
|
|
|
2011-08-30 15:44:00 +00:00
|
|
|
std::string route_state_id () const;
|
|
|
|
|
|
2009-12-10 17:45:18 +00:00
|
|
|
struct SoloMuteRelease {
|
2011-06-01 17:00:29 +00:00
|
|
|
SoloMuteRelease (bool was_active)
|
2009-12-10 17:45:18 +00:00
|
|
|
: active (was_active)
|
|
|
|
|
, exclusive (false) {}
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2009-12-10 17:45:18 +00:00
|
|
|
boost::shared_ptr<ARDOUR::RouteList> routes;
|
|
|
|
|
boost::shared_ptr<ARDOUR::RouteList> routes_on;
|
|
|
|
|
boost::shared_ptr<ARDOUR::RouteList> routes_off;
|
|
|
|
|
boost::shared_ptr<ARDOUR::Route> route;
|
|
|
|
|
bool active;
|
|
|
|
|
bool exclusive;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
SoloMuteRelease* _solo_release;
|
|
|
|
|
SoloMuteRelease* _mute_release;
|
2009-12-17 18:24:23 +00:00
|
|
|
|
2010-08-13 21:33:01 +00:00
|
|
|
void setup_invert_buttons ();
|
|
|
|
|
void set_invert_button_state ();
|
|
|
|
|
void invert_toggled (uint32_t, BindableToggleButton *);
|
|
|
|
|
void invert_menu_toggled (uint32_t);
|
|
|
|
|
bool invert_press (GdkEventButton *);
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2010-08-13 21:33:01 +00:00
|
|
|
int _i_am_the_modifier;
|
|
|
|
|
std::list<BindableToggleButton*> _invert_buttons;
|
|
|
|
|
Gtk::Menu* _invert_menu;
|
|
|
|
|
|
|
|
|
|
static uint32_t _max_invert_buttons;
|
2005-09-25 18:42:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_route_ui__ */
|