2005-09-25 14:42:24 -04: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 13:26:51 -05:00
|
|
|
#include "pbd/xml++.h"
|
2009-12-19 15:26:31 -05:00
|
|
|
#include "pbd/signals.h"
|
2009-12-17 13:24:23 -05:00
|
|
|
|
2011-11-02 12:46:49 -04:00
|
|
|
#include "gtkmm2ext/widget_state.h"
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/ardour.h"
|
2009-06-09 16:21:19 -04:00
|
|
|
#include "ardour/mute_master.h"
|
2009-12-07 16:37:35 -05:00
|
|
|
#include "ardour/session_event.h"
|
|
|
|
#include "ardour/session.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/route.h"
|
2009-12-07 20:52:49 -05:00
|
|
|
#include "ardour/route_group.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/track.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "axis_view.h"
|
2011-11-04 13:53:21 -04:00
|
|
|
#include "selectable.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class AudioTrack;
|
2006-07-05 15:47:25 -04:00
|
|
|
class MidiTrack;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2005-11-28 23:41:15 -05:00
|
|
|
namespace Gtk {
|
|
|
|
class Menu;
|
|
|
|
class CheckMenuItem;
|
|
|
|
class Widget;
|
|
|
|
}
|
|
|
|
|
2006-07-13 23:43:32 -04:00
|
|
|
class BindableToggleButton;
|
2011-10-26 17:01:14 -04:00
|
|
|
class ArdourButton;
|
2006-07-13 23:43:32 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
class RouteUI : public virtual AxisView
|
|
|
|
{
|
|
|
|
public:
|
2009-12-17 13:24:23 -05:00
|
|
|
RouteUI(ARDOUR::Session*);
|
|
|
|
RouteUI(boost::shared_ptr<ARDOUR::Route>, ARDOUR::Session*);
|
2008-12-08 11:07:28 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
virtual ~RouteUI();
|
|
|
|
|
2011-08-31 15:14:12 -04:00
|
|
|
Gdk::Color color () const;
|
|
|
|
|
2008-12-08 11:07:28 -05:00
|
|
|
virtual void set_route (boost::shared_ptr<ARDOUR::Route>);
|
2009-06-23 16:02:15 -04:00
|
|
|
virtual void set_button_names () = 0;
|
2008-12-08 11:07:28 -05:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
bool is_track() const;
|
2005-09-25 14:42:24 -04:00
|
|
|
bool is_audio_track() const;
|
2006-07-05 15:47:25 -04:00
|
|
|
bool is_midi_track() const;
|
2010-08-09 20:09:25 -04:00
|
|
|
bool has_audio_outputs () const;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-07-27 21:08:57 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Route> route() const { return _route; }
|
2011-11-04 13:53:21 -04:00
|
|
|
ARDOUR::RouteGroup* route_group() const;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-15 18:05:07 -04: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 12:10:01 -04:00
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
std::string name() const;
|
2006-07-27 21:08:57 -04:00
|
|
|
|
|
|
|
// protected: XXX sigh this should be here
|
|
|
|
|
|
|
|
boost::shared_ptr<ARDOUR::Route> _route;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-07-06 20:37:13 -04:00
|
|
|
void request_redraw ();
|
|
|
|
|
2011-02-22 20:03:37 -05:00
|
|
|
virtual void set_color (const Gdk::Color & c);
|
2011-02-22 20:03:51 -05:00
|
|
|
void choose_color ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
bool ignore_toggle;
|
|
|
|
bool wait_for_release;
|
2008-12-12 09:43:24 -05:00
|
|
|
bool multiple_mute_change;
|
|
|
|
bool multiple_solo_change;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-08-13 17:33:01 -04:00
|
|
|
Gtk::HBox _invert_button_box;
|
2011-11-02 12:46:49 -04:00
|
|
|
ArdourButton* mute_button;
|
2011-11-02 14:48:32 -04:00
|
|
|
ArdourButton* solo_button;
|
2011-11-02 15:51:59 -04:00
|
|
|
ArdourButton* rec_enable_button; /* audio tracks */
|
2011-11-02 12:46:49 -04:00
|
|
|
ArdourButton* show_sends_button; /* busses */
|
2011-10-26 17:01:14 -04:00
|
|
|
ArdourButton* monitor_input_button;
|
|
|
|
ArdourButton* monitor_disk_button;
|
2009-05-17 13:05:56 -04:00
|
|
|
|
2011-11-02 14:48:32 -04:00
|
|
|
Glib::RefPtr<Gdk::Pixbuf> solo_safe_pixbuf;
|
2011-10-26 17:01:14 -04:00
|
|
|
|
|
|
|
ArdourButton* solo_safe_led;
|
|
|
|
ArdourButton* solo_isolated_led;
|
2010-05-05 16:29:46 -04:00
|
|
|
|
2011-10-20 14:50:29 -04:00
|
|
|
Gtk::Label monitor_input_button_label;
|
|
|
|
Gtk::Label monitor_disk_button_label;
|
2009-06-23 16:02:15 -04:00
|
|
|
|
2009-05-17 13:05:56 -04:00
|
|
|
void send_blink (bool);
|
|
|
|
sigc::connection send_blink_connection;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
Gtk::Menu* mute_menu;
|
|
|
|
Gtk::Menu* solo_menu;
|
2009-05-16 22:08:13 -04:00
|
|
|
Gtk::Menu* sends_menu;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-09-18 23:29:16 -04: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 02:07:08 -04:00
|
|
|
bool rec_enable_release(GdkEventButton*);
|
2009-05-16 22:08:13 -04:00
|
|
|
bool show_sends_press(GdkEventButton*);
|
|
|
|
bool show_sends_release(GdkEventButton*);
|
|
|
|
|
2011-10-20 14:50:29 -04:00
|
|
|
bool monitor_release(GdkEventButton*, ARDOUR::MonitorChoice);
|
|
|
|
bool monitor_input_press(GdkEventButton*);
|
|
|
|
bool monitor_input_release(GdkEventButton*);
|
|
|
|
bool monitor_disk_press(GdkEventButton*);
|
|
|
|
bool monitor_disk_release(GdkEventButton*);
|
|
|
|
void monitoring_changed ();
|
2011-10-21 08:40:06 -04:00
|
|
|
void update_monitoring_display ();
|
2011-10-20 14:50:29 -04:00
|
|
|
|
2009-07-13 19:09:16 -04:00
|
|
|
void step_gain_up ();
|
|
|
|
void step_gain_down ();
|
|
|
|
void page_gain_up ();
|
|
|
|
void page_gain_down ();
|
|
|
|
|
2009-05-16 22:08:13 -04: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 17:07:34 -05:00
|
|
|
void create_sends (ARDOUR::Placement, bool);
|
|
|
|
void create_selected_sends (ARDOUR::Placement, bool);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-04-26 23:10:53 -04:00
|
|
|
void solo_changed(bool, void*);
|
2007-03-18 02:07:08 -04:00
|
|
|
void solo_changed_so_update_mute ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void mute_changed(void*);
|
2009-07-01 09:36:50 -04:00
|
|
|
void listen_changed(void*);
|
2009-11-30 18:16:28 -05:00
|
|
|
virtual void processors_changed (ARDOUR::RouteProcessorChange) {}
|
2006-08-01 13:19:38 -04:00
|
|
|
void route_rec_enable_changed();
|
2005-09-25 14:42:24 -04:00
|
|
|
void session_rec_enable_changed();
|
|
|
|
|
2009-08-29 19:31:59 -04:00
|
|
|
void build_solo_menu ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-06-09 16:21:19 -04:00
|
|
|
void solo_isolated_toggle (void*, Gtk::CheckMenuItem*);
|
|
|
|
void toggle_solo_isolated (Gtk::CheckMenuItem*);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-05-05 16:29:46 -04:00
|
|
|
bool solo_isolate_button_release (GdkEventButton*);
|
|
|
|
bool solo_safe_button_release (GdkEventButton*);
|
|
|
|
|
2009-11-21 14:33:09 -05:00
|
|
|
void solo_safe_toggle (void*, Gtk::CheckMenuItem*);
|
|
|
|
void toggle_solo_safe (Gtk::CheckMenuItem*);
|
|
|
|
|
2009-11-18 08:25:13 -05: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 08:38:37 -04:00
|
|
|
Gtk::CheckMenuItem* solo_safe_check;
|
|
|
|
Gtk::CheckMenuItem* solo_isolated_check;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-11-18 08:25:13 -05:00
|
|
|
void toggle_mute_menu(ARDOUR::MuteMaster::MutePoint, Gtk::CheckMenuItem*);
|
|
|
|
void muting_change ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void build_mute_menu(void);
|
2009-06-09 16:21:19 -04:00
|
|
|
void init_mute_menu(ARDOUR::MuteMaster::MutePoint, Gtk::CheckMenuItem*);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
int set_color_from_route ();
|
|
|
|
|
2011-03-07 08:05:45 -05:00
|
|
|
void remove_this_route (bool apply_to_selection = false);
|
2005-09-25 14:42:24 -04:00
|
|
|
static gint idle_remove_this_route (RouteUI *);
|
|
|
|
|
|
|
|
void route_rename();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-02-19 13:09:08 -05:00
|
|
|
virtual void property_changed (const PBD::PropertyChange&);
|
2005-09-25 14:42:24 -04:00
|
|
|
void route_removed ();
|
|
|
|
|
2011-03-07 08:04:46 -05:00
|
|
|
virtual void route_active_changed () {}
|
|
|
|
void set_route_active (bool, bool);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-07-24 12:40:56 -04:00
|
|
|
Gtk::Menu* record_menu;
|
|
|
|
void build_record_menu ();
|
|
|
|
|
|
|
|
Gtk::CheckMenuItem *step_edit_item;
|
2010-08-03 17:50:15 -04:00
|
|
|
void toggle_step_edit ();
|
2010-07-24 12:40:56 -04:00
|
|
|
virtual void step_edit_changed (bool);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2006-03-30 10:50:08 -05:00
|
|
|
virtual void polarity_changed ();
|
|
|
|
|
2007-05-31 22:27:21 -04:00
|
|
|
Gtk::CheckMenuItem *denormal_menu_item;
|
|
|
|
void toggle_denormal_protection();
|
|
|
|
virtual void denormal_protection_changed ();
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void disconnect_input ();
|
|
|
|
void disconnect_output ();
|
|
|
|
|
2007-04-29 13:23:11 -04:00
|
|
|
virtual void update_rec_display ();
|
2005-09-25 14:42:24 -04:00
|
|
|
void update_mute_display ();
|
2007-03-18 02:07:08 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void update_solo_display ();
|
2007-03-18 02:07:08 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
virtual void map_frozen ();
|
|
|
|
|
2007-06-27 18:06:35 -04:00
|
|
|
void adjust_latency ();
|
2009-03-02 13:08:15 -05:00
|
|
|
void save_as_template ();
|
2009-08-29 19:31:59 -04:00
|
|
|
void open_remote_control_id_dialog ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-11-02 14:48:32 -04:00
|
|
|
static Gtkmm2ext::ActiveState solo_active_state (boost::shared_ptr<ARDOUR::Route>);
|
|
|
|
static Gtkmm2ext::ActiveState solo_isolate_active_state (boost::shared_ptr<ARDOUR::Route>);
|
|
|
|
static Gtkmm2ext::ActiveState solo_safe_active_state (boost::shared_ptr<ARDOUR::Route>);
|
2011-11-02 12:46:49 -04:00
|
|
|
static Gtkmm2ext::ActiveState mute_active_state (ARDOUR::Session*, boost::shared_ptr<ARDOUR::Route>);
|
2009-11-25 22:02:16 -05:00
|
|
|
|
2011-11-02 20:42:16 -04:00
|
|
|
/** Emitted when a bus has been set or unset from `display sends to this bus' mode
|
|
|
|
* by a click on the `Sends' button. The parameter is the route that the sends are
|
|
|
|
* to, or 0 if no route is now in this mode.
|
|
|
|
*/
|
2013-07-30 09:12:32 -04:00
|
|
|
static PBD::Signal1<void, boost::shared_ptr<ARDOUR::Route> > BusSendDisplayChanged;
|
2011-11-02 20:42:16 -04:00
|
|
|
|
2008-12-08 11:07:28 -05:00
|
|
|
protected:
|
2009-12-19 15:26:31 -05:00
|
|
|
PBD::ScopedConnectionList route_connections;
|
2009-04-15 14:04:23 -04:00
|
|
|
bool self_destruct;
|
|
|
|
|
2008-12-08 11:07:28 -05:00
|
|
|
void init ();
|
|
|
|
void reset ();
|
2009-06-14 13:56:29 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
void self_delete ();
|
2010-08-03 17:50:15 -04:00
|
|
|
virtual void start_step_editing () {}
|
|
|
|
virtual void stop_step_editing() {}
|
2009-12-07 20:52:49 -05:00
|
|
|
|
2011-01-29 10:28:58 -05:00
|
|
|
void set_invert_sensitive (bool);
|
2011-07-25 22:07:59 -04:00
|
|
|
bool verify_new_route_name (const std::string& name);
|
2011-01-29 10:28:58 -05:00
|
|
|
|
2011-08-30 11:44:00 -04:00
|
|
|
void route_gui_changed (std::string);
|
|
|
|
virtual void route_color_changed () {}
|
|
|
|
|
2011-11-02 20:42:16 -04:00
|
|
|
virtual void bus_send_display_changed (boost::shared_ptr<ARDOUR::Route>);
|
|
|
|
|
2009-06-14 13:56:29 -04:00
|
|
|
private:
|
|
|
|
void check_rec_enable_sensitivity ();
|
|
|
|
void parameter_changed (std::string const &);
|
2009-06-23 16:02:15 -04:00
|
|
|
void relabel_solo_button ();
|
2009-12-07 16:37:35 -05:00
|
|
|
|
2011-08-30 11:44:00 -04:00
|
|
|
std::string route_state_id () const;
|
|
|
|
|
2009-12-10 12:45:18 -05:00
|
|
|
struct SoloMuteRelease {
|
2011-06-01 13:00:29 -04:00
|
|
|
SoloMuteRelease (bool was_active)
|
2009-12-10 12:45:18 -05:00
|
|
|
: active (was_active)
|
|
|
|
, exclusive (false) {}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2009-12-10 12:45:18 -05: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 13:24:23 -05:00
|
|
|
|
2010-08-13 17:33:01 -04:00
|
|
|
void setup_invert_buttons ();
|
|
|
|
void set_invert_button_state ();
|
|
|
|
void invert_menu_toggled (uint32_t);
|
|
|
|
bool invert_press (GdkEventButton *);
|
2011-11-30 11:40:05 -05:00
|
|
|
bool invert_release (GdkEventButton *, uint32_t i);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-08-13 17:33:01 -04:00
|
|
|
int _i_am_the_modifier;
|
2011-11-30 11:40:05 -05:00
|
|
|
std::vector<ArdourButton*> _invert_buttons;
|
2010-08-13 17:33:01 -04:00
|
|
|
Gtk::Menu* _invert_menu;
|
|
|
|
|
2011-11-02 20:42:16 -04:00
|
|
|
static void set_showing_sends_to (boost::shared_ptr<ARDOUR::Route>);
|
|
|
|
static boost::weak_ptr<ARDOUR::Route> _showing_sends_to;
|
|
|
|
|
2010-08-13 17:33:01 -04:00
|
|
|
static uint32_t _max_invert_buttons;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_route_ui__ */
|