2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2000 Paul Davis
|
2005-09-25 14:42:24 -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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* This file contains any ARDOUR_UI methods that require knowledge of
|
2009-10-14 12:10:01 -04:00
|
|
|
the various dialog boxes, and exists so that no compilation dependency
|
2005-09-25 14:42:24 -04:00
|
|
|
exists between the main ARDOUR_UI modules and their respective classes.
|
|
|
|
This is to cut down on the compile times. It also helps with my sanity.
|
|
|
|
*/
|
|
|
|
|
2015-07-22 21:14:08 -04:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "pbd/convert.h"
|
|
|
|
|
2010-04-02 14:48:50 -04:00
|
|
|
#include "ardour/audioengine.h"
|
2012-07-13 17:05:45 -04:00
|
|
|
#include "ardour/automation_watch.h"
|
2014-09-13 10:59:02 -04:00
|
|
|
#include "ardour/control_protocol_manager.h"
|
2014-04-10 13:30:25 -04:00
|
|
|
#include "ardour/profile.h"
|
|
|
|
#include "ardour/session.h"
|
2015-11-18 23:45:48 -05:00
|
|
|
|
2014-09-13 10:59:02 -04:00
|
|
|
#include "control_protocol/control_protocol.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2015-11-18 23:45:48 -05:00
|
|
|
#include "gtkmm2ext/keyboard.h"
|
|
|
|
#include "gtkmm2ext/utils.h"
|
|
|
|
|
2005-12-02 17:12:56 -05:00
|
|
|
#include "actions.h"
|
2011-02-16 23:45:49 -05:00
|
|
|
#include "add_route_dialog.h"
|
2013-05-04 22:02:05 -04:00
|
|
|
#include "add_video_dialog.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "ardour_ui.h"
|
2013-05-04 22:02:05 -04:00
|
|
|
#include "big_clock_window.h"
|
2011-02-16 23:45:49 -05:00
|
|
|
#include "bundle_manager.h"
|
|
|
|
#include "global_port_matrix.h"
|
2011-07-06 20:37:13 -04:00
|
|
|
#include "gui_object.h"
|
2011-02-16 23:45:49 -05:00
|
|
|
#include "gui_thread.h"
|
|
|
|
#include "keyeditor.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "location_ui.h"
|
2016-02-28 05:58:47 -05:00
|
|
|
#include "lua_script_manager.h"
|
2016-02-23 09:42:13 -05:00
|
|
|
#include "luawindow.h"
|
2012-05-31 19:14:03 -04:00
|
|
|
#include "main_clock.h"
|
2015-01-02 09:44:54 -05:00
|
|
|
#include "meterbridge.h"
|
2013-07-24 16:04:46 -04:00
|
|
|
#include "meter_patterns.h"
|
2016-03-15 19:46:28 -04:00
|
|
|
#include "monitor_section.h"
|
2011-02-16 23:45:49 -05:00
|
|
|
#include "midi_tracer.h"
|
2016-12-16 19:43:09 -05:00
|
|
|
#include "mini_timeline.h"
|
2005-10-12 23:48:57 -04:00
|
|
|
#include "mixer_ui.h"
|
|
|
|
#include "public_editor.h"
|
2016-03-15 16:42:23 -04:00
|
|
|
#include "processor_box.h"
|
2011-02-16 23:45:49 -05:00
|
|
|
#include "rc_option_editor.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "route_params_ui.h"
|
2011-04-19 22:48:20 -04:00
|
|
|
#include "shuttle_control.h"
|
2011-02-16 23:45:49 -05:00
|
|
|
#include "session_option_editor.h"
|
|
|
|
#include "speaker_dialog.h"
|
2013-05-04 22:02:05 -04:00
|
|
|
#include "splash.h"
|
2005-10-12 23:48:57 -04:00
|
|
|
#include "sfdb_ui.h"
|
2016-12-19 21:11:21 -05:00
|
|
|
#include "time_info_box.h"
|
2014-12-25 10:02:00 -05:00
|
|
|
#include "timers.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2016-07-14 14:44:52 -04:00
|
|
|
#include "pbd/i18n.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
using namespace ARDOUR;
|
2006-06-22 19:40:55 -04:00
|
|
|
using namespace PBD;
|
2005-12-07 17:57:47 -05:00
|
|
|
using namespace Glib;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Gtk;
|
2005-09-25 16:33:00 -04:00
|
|
|
using namespace Gtkmm2ext;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void
|
2009-12-17 13:24:23 -05:00
|
|
|
ARDOUR_UI::set_session (Session *s)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
SessionHandlePtr::set_session (s);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-12-17 18:36:52 -05:00
|
|
|
if (!_session) {
|
2013-07-10 09:21:24 -04:00
|
|
|
WM::Manager::instance().set_session (s);
|
2013-05-04 22:02:05 -04:00
|
|
|
/* Session option editor cannot exist across change-of-session */
|
|
|
|
session_option_editor.drop_window ();
|
|
|
|
/* Ditto for AddVideoDialog */
|
|
|
|
add_video_dialog.drop_window ();
|
2009-12-17 18:36:52 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-07-07 17:58:56 -04:00
|
|
|
const XMLNode* node = _session->extra_xml (X_("UI"));
|
|
|
|
|
|
|
|
if (node) {
|
|
|
|
const XMLNodeList& children = node->children();
|
|
|
|
for (XMLNodeList::const_iterator i = children.begin(); i != children.end(); ++i) {
|
|
|
|
if ((*i)->name() == GUIObjectState::xml_node_name) {
|
|
|
|
gui_object_state->load (**i);
|
|
|
|
break;
|
|
|
|
}
|
2011-07-06 20:37:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-10 09:21:24 -04:00
|
|
|
WM::Manager::instance().set_session (s);
|
|
|
|
|
2012-07-13 17:05:45 -04:00
|
|
|
AutomationWatch::instance().set_session (s);
|
2010-07-20 13:56:02 -04:00
|
|
|
|
2016-12-19 18:00:14 -05:00
|
|
|
shuttle_box.set_session (s);
|
2016-12-19 21:11:21 -05:00
|
|
|
mini_timeline.set_session (s);
|
|
|
|
time_info_box->set_session (s);
|
2011-04-19 22:48:20 -04:00
|
|
|
|
2011-06-02 13:50:37 -04:00
|
|
|
primary_clock->set_session (s);
|
|
|
|
secondary_clock->set_session (s);
|
|
|
|
big_clock->set_session (s);
|
2013-03-12 17:00:09 -04:00
|
|
|
video_timeline->set_session (s);
|
2017-02-18 18:07:16 -05:00
|
|
|
lua_script_window->set_session (s);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/* sensitize menu bar options that are now valid */
|
|
|
|
|
2005-11-28 10:29:49 -05:00
|
|
|
ActionManager::set_sensitive (ActionManager::session_sensitive_actions, true);
|
2009-12-17 13:24:23 -05:00
|
|
|
ActionManager::set_sensitive (ActionManager::write_sensitive_actions, _session->writable());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
if (_session->locations()->num_range_markers()) {
|
2006-03-05 14:39:16 -05:00
|
|
|
ActionManager::set_sensitive (ActionManager::range_sensitive_actions, true);
|
|
|
|
} else {
|
|
|
|
ActionManager::set_sensitive (ActionManager::range_sensitive_actions, false);
|
|
|
|
}
|
|
|
|
|
2010-03-23 08:19:21 -04:00
|
|
|
if (!_session->monitor_out()) {
|
2007-04-11 09:07:51 -04:00
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action (X_("options"), X_("SoloViaBus"));
|
|
|
|
if (act) {
|
|
|
|
act->set_sensitive (false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* allow wastebasket flush again */
|
|
|
|
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action (X_("Main"), X_("FlushWastebasket"));
|
|
|
|
if (act) {
|
|
|
|
act->set_sensitive (true);
|
|
|
|
}
|
|
|
|
|
2006-03-05 14:39:16 -05:00
|
|
|
/* there are never any selections on startup */
|
|
|
|
|
|
|
|
ActionManager::set_sensitive (ActionManager::time_selection_sensitive_actions, false);
|
|
|
|
ActionManager::set_sensitive (ActionManager::track_selection_sensitive_actions, false);
|
|
|
|
ActionManager::set_sensitive (ActionManager::line_selection_sensitive_actions, false);
|
|
|
|
ActionManager::set_sensitive (ActionManager::point_selection_sensitive_actions, false);
|
|
|
|
ActionManager::set_sensitive (ActionManager::playlist_selection_sensitive_actions, false);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
rec_button.set_sensitive (true);
|
2011-04-19 22:48:20 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
solo_alert_button.set_active (_session->soloing());
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-03-31 10:51:03 -05:00
|
|
|
setup_session_options ();
|
2006-01-07 21:56:49 -05:00
|
|
|
|
2014-12-25 10:02:00 -05:00
|
|
|
blink_connection = Timers::blink_connect (sigc::mem_fun(*this, &ARDOUR_UI::blink_handler));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2015-01-24 19:17:13 -05:00
|
|
|
_session->SaveSessionRequested.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::save_session_at_its_request, this, _1), gui_context());
|
2017-02-16 10:07:59 -05:00
|
|
|
_session->StateSaved.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::update_title, this), gui_context());
|
2010-03-30 11:18:43 -04:00
|
|
|
_session->RecordStateChanged.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::record_state_changed, this), gui_context());
|
2010-07-24 12:40:56 -04:00
|
|
|
_session->StepEditStatusChange.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::step_edit_status_change, this, _1), gui_context());
|
2010-03-30 11:18:43 -04:00
|
|
|
_session->TransportStateChange.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::map_transport_state, this), gui_context());
|
2015-07-09 13:56:12 -04:00
|
|
|
_session->DirtyChanged.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::session_dirty_changed, this), gui_context());
|
2010-03-30 11:18:43 -04:00
|
|
|
|
2012-04-25 08:58:19 -04:00
|
|
|
_session->Xrun.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::xrun_handler, this, _1), gui_context());
|
|
|
|
_session->SoloActive.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::soloing_changed, this, _1), gui_context());
|
|
|
|
_session->AuditionActive.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::auditioning_changed, this, _1), gui_context());
|
|
|
|
_session->locations()->added.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::handle_locations_change, this, _1), gui_context());
|
|
|
|
_session->locations()->removed.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::handle_locations_change, this, _1), gui_context());
|
|
|
|
_session->config.ParameterChanged.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::session_parameter_changed, this, _1), gui_context ());
|
2017-01-28 06:04:31 -05:00
|
|
|
_session->auto_loop_location_changed.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::set_loop_sensitivity, this), gui_context ());
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* Clocks are on by default after we are connected to a session, so show that here.
|
|
|
|
*/
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
connect_dependents_to_session (s);
|
2006-02-13 11:08:32 -05:00
|
|
|
|
2007-01-08 15:51:26 -05:00
|
|
|
/* listen to clock mode changes. don't do this earlier because otherwise as the clocks
|
|
|
|
restore their modes or are explicitly set, we will cause the "new" mode to be saved
|
2009-02-14 22:45:00 -05:00
|
|
|
back to the session XML ("Extra") state.
|
2007-01-08 15:51:26 -05:00
|
|
|
*/
|
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
AudioClock::ModeChanged.connect (sigc::mem_fun (*this, &ARDOUR_UI::store_clock_modes));
|
2007-01-08 15:51:26 -05:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
Glib::signal_idle().connect (sigc::mem_fun (*this, &ARDOUR_UI::first_idle));
|
2007-04-11 09:07:51 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
start_clocking ();
|
|
|
|
|
2009-10-30 14:14:25 -04:00
|
|
|
map_transport_state ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2014-12-25 10:02:00 -05:00
|
|
|
second_connection = Timers::second_connect (sigc::mem_fun(*this, &ARDOUR_UI::every_second));
|
|
|
|
point_one_second_connection = Timers::rapid_connect (sigc::mem_fun(*this, &ARDOUR_UI::every_point_one_seconds));
|
|
|
|
point_zero_something_second_connection = Timers::super_rapid_connect (sigc::mem_fun(*this, &ARDOUR_UI::every_point_zero_something_seconds));
|
2014-08-30 14:57:22 -04:00
|
|
|
set_fps_timeout_connection();
|
2011-07-02 20:45:15 -04:00
|
|
|
|
|
|
|
update_format ();
|
2013-07-24 16:04:46 -04:00
|
|
|
|
2013-12-13 10:52:15 -05:00
|
|
|
if (meter_box.get_parent()) {
|
2015-07-27 18:05:42 -04:00
|
|
|
transport_hbox.remove (meter_box);
|
|
|
|
transport_hbox.remove (editor_meter_peak_display);
|
2013-12-13 10:52:15 -05:00
|
|
|
}
|
|
|
|
|
2013-07-24 16:04:46 -04:00
|
|
|
if (editor_meter) {
|
|
|
|
meter_box.remove(*editor_meter);
|
|
|
|
delete editor_meter;
|
|
|
|
editor_meter = 0;
|
2013-08-03 07:59:22 -04:00
|
|
|
editor_meter_peak_display.hide();
|
2013-07-24 16:04:46 -04:00
|
|
|
}
|
|
|
|
|
2013-12-03 19:45:34 -05:00
|
|
|
if (meter_box.get_parent()) {
|
2015-07-27 18:05:42 -04:00
|
|
|
transport_hbox.remove (meter_box);
|
|
|
|
transport_hbox.remove (editor_meter_peak_display);
|
2013-12-03 19:45:34 -05:00
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
if (_session &&
|
|
|
|
_session->master_out() &&
|
2013-12-03 19:45:34 -05:00
|
|
|
_session->master_out()->n_outputs().n(DataType::AUDIO) > 0) {
|
|
|
|
|
2014-04-10 13:30:25 -04:00
|
|
|
if (!ARDOUR::Profile->get_trx()) {
|
|
|
|
editor_meter = new LevelMeterHBox(_session);
|
|
|
|
editor_meter->set_meter (_session->master_out()->shared_peak_meter().get());
|
|
|
|
editor_meter->clear_meters();
|
|
|
|
editor_meter->set_type (_session->master_out()->meter_type());
|
2016-12-11 11:24:30 -05:00
|
|
|
editor_meter->setup_meters (30, 10, 6);
|
2014-04-10 13:30:25 -04:00
|
|
|
editor_meter->show();
|
|
|
|
meter_box.pack_start(*editor_meter);
|
|
|
|
}
|
2013-07-24 16:04:46 -04:00
|
|
|
|
|
|
|
ArdourMeter::ResetAllPeakDisplays.connect (sigc::mem_fun(*this, &ARDOUR_UI::reset_peak_display));
|
|
|
|
ArdourMeter::ResetRoutePeakDisplays.connect (sigc::mem_fun(*this, &ARDOUR_UI::reset_route_peak_display));
|
|
|
|
ArdourMeter::ResetGroupPeakDisplays.connect (sigc::mem_fun(*this, &ARDOUR_UI::reset_group_peak_display));
|
2013-08-03 07:59:22 -04:00
|
|
|
|
|
|
|
editor_meter_peak_display.set_name ("meterbridge peakindicator");
|
|
|
|
editor_meter_peak_display.unset_flags (Gtk::CAN_FOCUS);
|
2015-01-02 09:44:54 -05:00
|
|
|
editor_meter_peak_display.set_size_request (std::max(9.f, rintf(8.f * UIConfiguration::instance().get_ui_scale())), -1);
|
2015-04-23 18:03:24 -04:00
|
|
|
editor_meter_peak_display.set_corner_radius (3.0);
|
2013-08-03 07:59:22 -04:00
|
|
|
|
|
|
|
editor_meter_max_peak = -INFINITY;
|
|
|
|
editor_meter_peak_display.signal_button_release_event().connect (sigc::mem_fun(*this, &ARDOUR_UI::editor_meter_peak_button_release), false);
|
2013-08-03 18:06:29 -04:00
|
|
|
|
2016-12-19 21:11:21 -05:00
|
|
|
repack_transport_hbox ();
|
2013-07-24 16:04:46 -04:00
|
|
|
}
|
2015-07-09 13:56:12 -04:00
|
|
|
|
|
|
|
update_title ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
int
|
|
|
|
ARDOUR_UI::unload_session (bool hide_stuff)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2013-03-12 17:00:09 -04:00
|
|
|
if (_session) {
|
2013-04-08 22:05:07 -04:00
|
|
|
ARDOUR_UI::instance()->video_timeline->sync_session_state();
|
2013-03-12 17:00:09 -04:00
|
|
|
}
|
2013-04-11 13:49:29 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
if (_session && _session->dirty()) {
|
2011-05-22 16:02:50 -04:00
|
|
|
std::vector<std::string> actions;
|
|
|
|
actions.push_back (_("Don't close"));
|
|
|
|
actions.push_back (_("Just close"));
|
|
|
|
actions.push_back (_("Save and close"));
|
|
|
|
switch (ask_about_saving_session (actions)) {
|
2005-09-25 14:42:24 -04:00
|
|
|
case -1:
|
2007-05-17 22:41:10 -04:00
|
|
|
// cancel
|
2007-10-11 18:07:47 -04:00
|
|
|
return 1;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
case 1:
|
2009-12-17 13:24:23 -05:00
|
|
|
_session->save_state ("");
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-10-11 18:07:47 -04:00
|
|
|
|
2014-09-13 10:59:02 -04:00
|
|
|
{
|
|
|
|
// tear down session specific CPI (owned by rc_config_editor which can remain)
|
|
|
|
ControlProtocolManager& m = ControlProtocolManager::instance ();
|
|
|
|
for (std::list<ControlProtocolInfo*>::iterator i = m.control_protocol_info.begin(); i != m.control_protocol_info.end(); ++i) {
|
|
|
|
if (*i && (*i)->protocol && (*i)->protocol->has_editor ()) {
|
|
|
|
(*i)->protocol->tear_down_gui ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
if (hide_stuff) {
|
|
|
|
editor->hide ();
|
|
|
|
mixer->hide ();
|
2013-07-01 14:42:26 -04:00
|
|
|
meterbridge->hide ();
|
2013-07-06 22:18:23 -04:00
|
|
|
audio_port_matrix->hide();
|
|
|
|
midi_port_matrix->hide();
|
|
|
|
route_params->hide();
|
2007-10-11 18:07:47 -04:00
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
second_connection.disconnect ();
|
|
|
|
point_one_second_connection.disconnect ();
|
2013-07-11 08:50:33 -04:00
|
|
|
point_zero_something_second_connection.disconnect();
|
2014-08-30 14:57:22 -04:00
|
|
|
fps_connection.disconnect();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-07-24 16:04:46 -04:00
|
|
|
if (editor_meter) {
|
|
|
|
meter_box.remove(*editor_meter);
|
|
|
|
delete editor_meter;
|
|
|
|
editor_meter = 0;
|
2013-08-03 07:59:22 -04:00
|
|
|
editor_meter_peak_display.hide();
|
2013-07-24 16:04:46 -04:00
|
|
|
}
|
|
|
|
|
2005-11-28 10:29:49 -05:00
|
|
|
ActionManager::set_sensitive (ActionManager::session_sensitive_actions, false);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
rec_button.set_sensitive (false);
|
2013-04-11 13:49:29 -04:00
|
|
|
|
2013-07-10 09:21:24 -04:00
|
|
|
WM::Manager::instance().set_session ((ARDOUR::Session*) 0);
|
2013-09-09 13:17:53 -04:00
|
|
|
|
|
|
|
if (ARDOUR_UI::instance()->video_timeline) {
|
|
|
|
ARDOUR_UI::instance()->video_timeline->close_session();
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
stop_clocking ();
|
|
|
|
|
|
|
|
/* drop everything attached to the blink signal */
|
|
|
|
|
2014-12-25 10:02:00 -05:00
|
|
|
blink_connection.disconnect ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
delete _session;
|
2011-10-22 20:15:35 -04:00
|
|
|
_session = 0;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2012-06-04 12:48:53 -04:00
|
|
|
session_loaded = false;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
update_buffer_load ();
|
2015-07-09 13:56:12 -04:00
|
|
|
update_title ();
|
2015-10-26 14:35:06 -04:00
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
return 0;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2015-11-20 09:28:05 -05:00
|
|
|
void
|
2015-11-20 14:19:22 -05:00
|
|
|
ARDOUR_UI::toggle_editor_and_mixer ()
|
2015-11-20 09:28:05 -05:00
|
|
|
{
|
2015-11-20 14:19:22 -05:00
|
|
|
if (editor->tabbed() && mixer->tabbed()) {
|
2016-06-07 18:30:04 -04:00
|
|
|
/* both in the same window */
|
2015-11-20 14:19:22 -05:00
|
|
|
if (_tabs.get_current_page() == _tabs.page_num (editor->contents())) {
|
|
|
|
_tabs.set_current_page (_tabs.page_num (mixer->contents()));
|
|
|
|
} else if (_tabs.get_current_page() == _tabs.page_num (mixer->contents())) {
|
|
|
|
_tabs.set_current_page (_tabs.page_num (editor->contents()));
|
|
|
|
} else {
|
2016-07-12 09:42:34 -04:00
|
|
|
/* go to mixer */
|
|
|
|
_tabs.set_current_page (_tabs.page_num (mixer->contents()));
|
2015-11-20 14:19:22 -05:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-06-07 18:30:04 -04:00
|
|
|
|
2015-11-20 14:19:22 -05:00
|
|
|
if (editor->tabbed() && !mixer->tabbed()) {
|
2016-06-07 18:30:04 -04:00
|
|
|
/* editor is tabbed, mixer is not */
|
|
|
|
|
|
|
|
Gtk::Window* mwin = mixer->current_toplevel ();
|
|
|
|
|
|
|
|
if (!mwin) {
|
|
|
|
/* mixer's own window doesn't exist */
|
|
|
|
mixer->make_visible ();
|
|
|
|
} else if (!mwin->is_mapped ()) {
|
|
|
|
/* mixer's own window exists but isn't mapped */
|
|
|
|
mixer->make_visible ();
|
|
|
|
} else {
|
|
|
|
/* mixer window is mapped, editor is visible as tab */
|
|
|
|
Gtk::Widget* f = mwin->get_focus();
|
|
|
|
if (f && f->has_focus()) {
|
|
|
|
/* mixer has focus, switch to editor */
|
|
|
|
editor->make_visible ();
|
|
|
|
} else {
|
2015-11-20 14:19:22 -05:00
|
|
|
mixer->make_visible ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-06-07 18:30:04 -04:00
|
|
|
if (!editor->tabbed() && mixer->tabbed()) {
|
|
|
|
/* mixer is tabbed, editor is not */
|
|
|
|
|
|
|
|
Gtk::Window* ewin = editor->current_toplevel ();
|
|
|
|
|
|
|
|
if (!ewin) {
|
|
|
|
/* mixer's own window doesn't exist */
|
|
|
|
editor->make_visible ();
|
|
|
|
} else if (!ewin->is_mapped ()) {
|
|
|
|
/* editor's own window exists but isn't mapped */
|
|
|
|
editor->make_visible ();
|
|
|
|
} else {
|
|
|
|
/* editor window is mapped, mixer is visible as tab */
|
|
|
|
Gtk::Widget* f = ewin->get_focus();
|
|
|
|
if (f && f->has_focus()) {
|
|
|
|
/* editor has focus, switch to mixer */
|
|
|
|
mixer->make_visible ();
|
|
|
|
} else {
|
2015-11-20 14:19:22 -05:00
|
|
|
editor->make_visible ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-25 15:08:06 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::step_up_through_tabs ()
|
|
|
|
{
|
|
|
|
std::vector<Tabbable*> candidates;
|
|
|
|
|
|
|
|
/* this list must match the order of visibility buttons */
|
|
|
|
|
|
|
|
if (!editor->window_visible()) {
|
|
|
|
candidates.push_back (editor);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mixer->window_visible()) {
|
|
|
|
candidates.push_back (mixer);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!rc_option_editor->window_visible()) {
|
|
|
|
candidates.push_back (rc_option_editor);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (candidates.size() < 2) {
|
|
|
|
/* nothing to be done with zero or one visible in tabs */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<Tabbable*>::iterator prev = candidates.end();
|
|
|
|
std::vector<Tabbable*>::iterator i;
|
|
|
|
Gtk::Widget* w = _tabs.get_nth_page (_tabs.get_current_page ());
|
|
|
|
|
|
|
|
for (i = candidates.begin(); i != candidates.end(); ++i) {
|
|
|
|
if (w == &(*i)->contents()) {
|
|
|
|
if (prev != candidates.end()) {
|
|
|
|
_tabs.set_current_page (_tabs.page_num ((*prev)->contents()));
|
|
|
|
} else {
|
|
|
|
_tabs.set_current_page (_tabs.page_num (candidates.back()->contents()));
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
prev = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::step_down_through_tabs ()
|
|
|
|
{
|
|
|
|
std::vector<Tabbable*> candidates;
|
|
|
|
|
|
|
|
/* this list must match the order of visibility buttons */
|
|
|
|
|
|
|
|
if (!editor->window_visible()) {
|
|
|
|
candidates.push_back (editor);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mixer->window_visible()) {
|
|
|
|
candidates.push_back (mixer);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!rc_option_editor->window_visible()) {
|
|
|
|
candidates.push_back (rc_option_editor);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (candidates.size() < 2) {
|
|
|
|
/* nothing to be done with zero or one visible in tabs */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<Tabbable*>::reverse_iterator next = candidates.rend();
|
|
|
|
std::vector<Tabbable*>::reverse_iterator i;
|
|
|
|
Gtk::Widget* w = _tabs.get_nth_page (_tabs.get_current_page ());
|
|
|
|
|
|
|
|
for (i = candidates.rbegin(); i != candidates.rend(); ++i) {
|
|
|
|
if (w == &(*i)->contents()) {
|
|
|
|
if (next != candidates.rend()) {
|
|
|
|
_tabs.set_current_page (_tabs.page_num ((*next)->contents()));
|
|
|
|
} else {
|
|
|
|
_tabs.set_current_page (_tabs.page_num (candidates.front()->contents()));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
next = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-20 14:19:22 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::key_change_tabbable_visibility (Tabbable* t)
|
|
|
|
{
|
|
|
|
if (!t) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (t->tabbed()) {
|
|
|
|
_tabs.set_current_page (_tabs.page_num (t->contents()));
|
|
|
|
} else if (!t->fully_visible()) {
|
|
|
|
t->make_visible ();
|
|
|
|
} else {
|
|
|
|
_main_window.present ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::button_change_tabbable_visibility (Tabbable* t)
|
|
|
|
{
|
|
|
|
/* For many/most users, clicking a button in the main window will make it
|
|
|
|
the main/front/key window, which will change any stacking relationship they
|
|
|
|
were trying to modify by clicking on the button in the first
|
|
|
|
place. This button-aware method knows that click on
|
|
|
|
a button designed to show/hide a Tabbable that has its own window
|
|
|
|
will have made that window be obscured (as the main window comes to
|
|
|
|
the front). We therefore *hide* the Tabbable's window if it is even
|
|
|
|
partially visible, believing that this is likely because the
|
|
|
|
Tabbable window used to be front, the user clicked to change that,
|
|
|
|
and before we even get here, the main window has become front.
|
|
|
|
*/
|
|
|
|
|
2015-11-20 09:28:05 -05:00
|
|
|
if (!t) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-20 14:19:22 -05:00
|
|
|
if (t->tabbed()) {
|
|
|
|
_tabs.set_current_page (_tabs.page_num (t->contents()));
|
|
|
|
} else if (t->visible()) {
|
|
|
|
t->hide();
|
|
|
|
} else {
|
|
|
|
t->make_visible ();
|
|
|
|
}
|
2015-11-20 09:28:05 -05:00
|
|
|
}
|
|
|
|
|
2011-02-16 23:45:49 -05:00
|
|
|
void
|
2015-07-22 15:22:58 -04:00
|
|
|
ARDOUR_UI::show_tabbable (Tabbable* t)
|
2011-02-16 23:45:49 -05:00
|
|
|
{
|
2015-07-22 17:49:41 -04:00
|
|
|
if (!t) {
|
|
|
|
return;
|
|
|
|
}
|
2015-10-26 14:35:06 -04:00
|
|
|
|
2015-07-22 15:22:58 -04:00
|
|
|
t->make_visible ();
|
2011-02-16 23:45:49 -05:00
|
|
|
}
|
|
|
|
|
2010-07-06 20:40:58 -04:00
|
|
|
void
|
2015-07-22 15:22:58 -04:00
|
|
|
ARDOUR_UI::hide_tabbable (Tabbable* t)
|
2010-07-06 20:40:58 -04:00
|
|
|
{
|
2015-07-22 17:49:41 -04:00
|
|
|
if (!t) {
|
|
|
|
return;
|
|
|
|
}
|
2015-07-22 15:22:58 -04:00
|
|
|
t->make_invisible ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2009-05-15 21:22:43 -04:00
|
|
|
void
|
2015-07-22 15:22:58 -04:00
|
|
|
ARDOUR_UI::attach_tabbable (Tabbable* t)
|
2009-05-15 21:22:43 -04:00
|
|
|
{
|
2015-07-22 17:49:41 -04:00
|
|
|
if (!t) {
|
|
|
|
return;
|
|
|
|
}
|
2009-05-15 21:22:43 -04:00
|
|
|
|
2015-07-22 15:22:58 -04:00
|
|
|
t->attach ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2015-07-22 15:22:58 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::detach_tabbable (Tabbable* t)
|
|
|
|
{
|
2015-07-22 17:49:41 -04:00
|
|
|
if (!t) {
|
|
|
|
return;
|
|
|
|
}
|
2015-07-22 15:22:58 -04:00
|
|
|
t->detach ();
|
|
|
|
}
|
2015-07-15 16:24:12 -04:00
|
|
|
|
2015-11-18 23:45:48 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::tabs_page_added (Widget*,guint)
|
|
|
|
{
|
|
|
|
if (_tabs.get_n_pages() > 1) {
|
|
|
|
|
|
|
|
std::vector<TargetEntry> drag_target_entries;
|
|
|
|
drag_target_entries.push_back (TargetEntry ("tabbable"));
|
|
|
|
|
|
|
|
editor_visibility_button.drag_source_set (drag_target_entries);
|
|
|
|
mixer_visibility_button.drag_source_set (drag_target_entries);
|
|
|
|
prefs_visibility_button.drag_source_set (drag_target_entries);
|
|
|
|
|
|
|
|
editor_visibility_button.drag_source_set_icon (Gtkmm2ext::pixbuf_from_string (editor->name(),
|
|
|
|
Pango::FontDescription ("Sans 24"),
|
2015-11-19 10:39:29 -05:00
|
|
|
0, 0,
|
2015-11-18 23:45:48 -05:00
|
|
|
Gdk::Color ("red")));
|
|
|
|
mixer_visibility_button.drag_source_set_icon (Gtkmm2ext::pixbuf_from_string (mixer->name(),
|
|
|
|
Pango::FontDescription ("Sans 24"),
|
2015-11-19 10:39:29 -05:00
|
|
|
0, 0,
|
2015-11-18 23:45:48 -05:00
|
|
|
Gdk::Color ("red")));
|
|
|
|
prefs_visibility_button.drag_source_set_icon (Gtkmm2ext::pixbuf_from_string (rc_option_editor->name(),
|
|
|
|
Pango::FontDescription ("Sans 24"),
|
2015-11-19 10:39:29 -05:00
|
|
|
0, 0,
|
2015-11-18 23:45:48 -05:00
|
|
|
Gdk::Color ("red")));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::tabs_page_removed (Widget*, guint)
|
|
|
|
{
|
|
|
|
if (_tabs.get_n_pages() < 2) {
|
|
|
|
editor_visibility_button.drag_source_unset ();
|
|
|
|
mixer_visibility_button.drag_source_unset ();
|
|
|
|
prefs_visibility_button.drag_source_unset ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-18 22:25:18 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::tabs_switch (GtkNotebookPage*, guint page)
|
|
|
|
{
|
2016-03-15 15:31:41 -04:00
|
|
|
if (editor && (page == (guint) _tabs.page_num (editor->contents()))) {
|
2015-11-18 22:25:18 -05:00
|
|
|
editor_visibility_button.set_active_state (Gtkmm2ext::ImplicitActive);
|
2016-01-23 16:26:41 -05:00
|
|
|
|
2015-11-18 22:25:18 -05:00
|
|
|
if (mixer && (mixer->tabbed() || mixer->tabbed_by_default())) {
|
|
|
|
mixer_visibility_button.set_active_state (Gtkmm2ext::Off);
|
|
|
|
}
|
2016-01-23 16:26:41 -05:00
|
|
|
|
2015-11-18 22:25:18 -05:00
|
|
|
if (rc_option_editor && (rc_option_editor->tabbed() || rc_option_editor->tabbed_by_default())) {
|
|
|
|
prefs_visibility_button.set_active_state (Gtkmm2ext::Off);
|
|
|
|
}
|
2016-03-15 15:31:41 -04:00
|
|
|
} else if (mixer && (page == (guint) _tabs.page_num (mixer->contents()))) {
|
2016-01-23 16:26:41 -05:00
|
|
|
|
2015-11-18 22:25:18 -05:00
|
|
|
if (editor && (editor->tabbed() || editor->tabbed_by_default())) {
|
|
|
|
editor_visibility_button.set_active_state (Gtkmm2ext::Off);
|
|
|
|
}
|
2016-01-23 16:26:41 -05:00
|
|
|
|
2015-11-18 22:25:18 -05:00
|
|
|
mixer_visibility_button.set_active_state (Gtkmm2ext::ImplicitActive);
|
|
|
|
|
|
|
|
if (rc_option_editor && (rc_option_editor->tabbed() || rc_option_editor->tabbed_by_default())) {
|
|
|
|
prefs_visibility_button.set_active_state (Gtkmm2ext::Off);
|
|
|
|
}
|
2016-01-23 16:26:41 -05:00
|
|
|
|
|
|
|
} else if (page == (guint) _tabs.page_num (rc_option_editor->contents())) {
|
|
|
|
|
2015-11-18 22:25:18 -05:00
|
|
|
if (editor && (editor->tabbed() || editor->tabbed_by_default())) {
|
|
|
|
editor_visibility_button.set_active_state (Gtkmm2ext::Off);
|
|
|
|
}
|
2016-01-23 16:26:41 -05:00
|
|
|
|
2015-11-18 22:25:18 -05:00
|
|
|
if (mixer && (mixer->tabbed() || mixer->tabbed_by_default())) {
|
|
|
|
mixer_visibility_button.set_active_state (Gtkmm2ext::Off);
|
|
|
|
}
|
2016-01-23 16:26:41 -05:00
|
|
|
|
2015-11-18 22:25:18 -05:00
|
|
|
prefs_visibility_button.set_active_state (Gtkmm2ext::ImplicitActive);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-07-22 21:14:08 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::tabbable_state_change (Tabbable& t)
|
|
|
|
{
|
|
|
|
std::vector<std::string> insensitive_action_names;
|
|
|
|
std::vector<std::string> sensitive_action_names;
|
2015-11-18 22:25:18 -05:00
|
|
|
std::vector<std::string> active_action_names;
|
|
|
|
std::vector<std::string> inactive_action_names;
|
2015-10-26 14:35:06 -04:00
|
|
|
Glib::RefPtr<Action> action;
|
2015-07-22 21:14:08 -04:00
|
|
|
std::string downcased_name = downcase (t.name());
|
2015-11-18 22:25:18 -05:00
|
|
|
enum ViewState {
|
|
|
|
Tabbed,
|
|
|
|
Windowed,
|
|
|
|
Hidden
|
|
|
|
};
|
|
|
|
ViewState vs;
|
2015-07-22 21:14:08 -04:00
|
|
|
|
|
|
|
if (t.tabbed()) {
|
|
|
|
|
|
|
|
insensitive_action_names.push_back (string_compose ("attach-%1", downcased_name));
|
2015-11-17 17:49:27 -05:00
|
|
|
sensitive_action_names.push_back (string_compose ("show-%1", downcased_name));
|
2015-07-22 21:14:08 -04:00
|
|
|
sensitive_action_names.push_back (string_compose ("detach-%1", downcased_name));
|
|
|
|
sensitive_action_names.push_back (string_compose ("hide-%1", downcased_name));
|
|
|
|
|
2015-11-18 22:25:18 -05:00
|
|
|
vs = Tabbed;
|
|
|
|
|
2015-07-25 09:18:44 -04:00
|
|
|
} else if (t.tabbed_by_default ()) {
|
2015-07-22 21:14:08 -04:00
|
|
|
|
2015-07-25 09:18:44 -04:00
|
|
|
insensitive_action_names.push_back (string_compose ("attach-%1", downcased_name));
|
|
|
|
insensitive_action_names.push_back (string_compose ("hide-%1", downcased_name));
|
|
|
|
sensitive_action_names.push_back (string_compose ("show-%1", downcased_name));
|
|
|
|
sensitive_action_names.push_back (string_compose ("detach-%1", downcased_name));
|
2015-10-26 14:35:06 -04:00
|
|
|
|
2015-11-18 22:25:18 -05:00
|
|
|
vs = Hidden;
|
|
|
|
|
2015-07-22 21:14:08 -04:00
|
|
|
} else if (t.window_visible()) {
|
|
|
|
|
|
|
|
insensitive_action_names.push_back (string_compose ("detach-%1", downcased_name));
|
2015-11-17 17:49:27 -05:00
|
|
|
sensitive_action_names.push_back (string_compose ("show-%1", downcased_name));
|
2015-07-22 21:14:08 -04:00
|
|
|
sensitive_action_names.push_back (string_compose ("attach-%1", downcased_name));
|
|
|
|
sensitive_action_names.push_back (string_compose ("hide-%1", downcased_name));
|
|
|
|
|
2015-11-18 22:25:18 -05:00
|
|
|
active_action_names.push_back (string_compose ("show-%1", downcased_name));
|
|
|
|
inactive_action_names.push_back (string_compose ("hide-%1", downcased_name));
|
|
|
|
|
|
|
|
vs = Windowed;
|
|
|
|
|
2015-07-22 21:14:08 -04:00
|
|
|
} else {
|
|
|
|
|
|
|
|
/* not currently visible. allow user to retab it or just make
|
|
|
|
* it visible.
|
|
|
|
*/
|
2015-10-26 14:35:06 -04:00
|
|
|
|
2015-07-22 21:14:08 -04:00
|
|
|
insensitive_action_names.push_back (string_compose ("detach-%1", downcased_name));
|
|
|
|
insensitive_action_names.push_back (string_compose ("hide-%1", downcased_name));
|
|
|
|
sensitive_action_names.push_back (string_compose ("show-%1", downcased_name));
|
|
|
|
sensitive_action_names.push_back (string_compose ("attach-%1", downcased_name));
|
|
|
|
|
2015-11-18 22:25:18 -05:00
|
|
|
active_action_names.push_back (string_compose ("hide-%1", downcased_name));
|
|
|
|
inactive_action_names.push_back (string_compose ("show-%1", downcased_name));
|
|
|
|
|
|
|
|
vs = Hidden;
|
|
|
|
}
|
2015-07-22 21:14:08 -04:00
|
|
|
|
|
|
|
for (std::vector<std::string>::iterator s = insensitive_action_names.begin(); s != insensitive_action_names.end(); ++s) {
|
|
|
|
action = ActionManager::get_action (X_("Common"), (*s).c_str());
|
|
|
|
if (action) {
|
|
|
|
action->set_sensitive (false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (std::vector<std::string>::iterator s = sensitive_action_names.begin(); s != sensitive_action_names.end(); ++s) {
|
|
|
|
action = ActionManager::get_action (X_("Common"), (*s).c_str());
|
|
|
|
if (action) {
|
|
|
|
action->set_sensitive (true);
|
|
|
|
}
|
|
|
|
}
|
2015-11-18 22:25:18 -05:00
|
|
|
|
|
|
|
ArdourButton* vis_button = 0;
|
|
|
|
std::vector<ArdourButton*> other_vis_buttons;
|
|
|
|
|
|
|
|
if (&t == editor) {
|
|
|
|
vis_button = &editor_visibility_button;
|
|
|
|
other_vis_buttons.push_back (&mixer_visibility_button);
|
|
|
|
other_vis_buttons.push_back (&prefs_visibility_button);
|
|
|
|
} else if (&t == mixer) {
|
|
|
|
vis_button = &mixer_visibility_button;
|
|
|
|
other_vis_buttons.push_back (&editor_visibility_button);
|
|
|
|
other_vis_buttons.push_back (&prefs_visibility_button);
|
2016-01-23 16:26:41 -05:00
|
|
|
} else if (&t == rc_option_editor) {
|
2015-11-18 22:25:18 -05:00
|
|
|
vis_button = &prefs_visibility_button;
|
|
|
|
other_vis_buttons.push_back (&editor_visibility_button);
|
|
|
|
other_vis_buttons.push_back (&mixer_visibility_button);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!vis_button) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (vs) {
|
|
|
|
case Tabbed:
|
|
|
|
vis_button->set_active_state (Gtkmm2ext::ImplicitActive);
|
|
|
|
break;
|
|
|
|
case Windowed:
|
|
|
|
vis_button->set_active_state (Gtkmm2ext::ExplicitActive);
|
|
|
|
break;
|
|
|
|
case Hidden:
|
|
|
|
vis_button->set_active_state (Gtkmm2ext::Off);
|
|
|
|
break;
|
|
|
|
}
|
2015-11-20 14:19:22 -05:00
|
|
|
|
|
|
|
for (std::vector<ArdourButton*>::iterator b = other_vis_buttons.begin(); b != other_vis_buttons.end(); ++b) {
|
|
|
|
(*b)->set_active_state (Gtkmm2ext::Off);
|
|
|
|
}
|
2015-07-22 21:14:08 -04:00
|
|
|
}
|
|
|
|
|
2013-06-19 04:25:18 -04:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_meterbridge ()
|
|
|
|
{
|
2015-06-26 19:32:11 -04:00
|
|
|
assert (editor && mixer && meterbridge);
|
2013-06-19 04:25:18 -04:00
|
|
|
|
2015-06-26 16:35:40 -04:00
|
|
|
bool show = false;
|
|
|
|
bool obscuring = false;
|
2013-06-19 04:25:18 -04:00
|
|
|
|
2015-06-26 16:35:40 -04:00
|
|
|
if (meterbridge->not_visible ()) {
|
|
|
|
show = true;
|
2015-07-07 22:12:21 -04:00
|
|
|
} else if ((editor->window_visible() && ARDOUR_UI_UTILS::windows_overlap (editor->own_window(), meterbridge)) ||
|
|
|
|
(mixer->window_visible () && ARDOUR_UI_UTILS::windows_overlap (mixer->own_window(), meterbridge))) {
|
2015-06-26 18:56:07 -04:00
|
|
|
obscuring = true;
|
2015-06-26 16:35:40 -04:00
|
|
|
}
|
|
|
|
|
2015-11-24 11:13:17 -05:00
|
|
|
if (obscuring && ((editor->own_window() && editor->own_window()->property_has_toplevel_focus()) ||
|
|
|
|
(mixer->own_window() && mixer->own_window()->property_has_toplevel_focus()))) {
|
2015-06-26 16:35:40 -04:00
|
|
|
show = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (show) {
|
2013-06-19 04:25:18 -04:00
|
|
|
meterbridge->show_window ();
|
2015-06-25 14:23:34 -04:00
|
|
|
meterbridge->present ();
|
2015-06-26 16:35:40 -04:00
|
|
|
meterbridge->raise ();
|
2013-06-19 04:25:18 -04:00
|
|
|
} else {
|
2013-07-05 16:30:01 -04:00
|
|
|
meterbridge->hide_window (NULL);
|
2013-06-19 04:25:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-23 09:42:13 -05:00
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_luawindow ()
|
|
|
|
{
|
|
|
|
assert (editor && luawindow);
|
|
|
|
|
|
|
|
bool show = false;
|
|
|
|
|
|
|
|
if (luawindow->not_visible ()) {
|
|
|
|
show = true;
|
|
|
|
}
|
|
|
|
// TODO check overlap
|
|
|
|
|
|
|
|
if (show) {
|
|
|
|
luawindow->show_window ();
|
|
|
|
luawindow->present ();
|
|
|
|
luawindow->raise ();
|
|
|
|
} else {
|
|
|
|
luawindow->hide_window (NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-11 21:54:35 -04:00
|
|
|
void
|
2013-05-04 22:02:05 -04:00
|
|
|
ARDOUR_UI::new_midi_tracer_window ()
|
2007-10-11 21:54:35 -04:00
|
|
|
{
|
2013-05-04 22:02:05 -04:00
|
|
|
RefPtr<Action> act = ActionManager::get_action (X_("Common"), X_("NewMIDITracer"));
|
|
|
|
if (!act) {
|
|
|
|
return;
|
2007-10-11 21:54:35 -04:00
|
|
|
}
|
|
|
|
|
2013-05-04 22:02:05 -04:00
|
|
|
std::list<MidiTracer*>::iterator i = _midi_tracer_windows.begin ();
|
|
|
|
while (i != _midi_tracer_windows.end() && (*i)->get_visible() == true) {
|
|
|
|
++i;
|
2007-10-11 21:54:35 -04:00
|
|
|
}
|
|
|
|
|
2013-05-04 22:02:05 -04:00
|
|
|
if (i == _midi_tracer_windows.end()) {
|
|
|
|
/* all our MIDITracer windows are visible; make a new one */
|
|
|
|
MidiTracer* t = new MidiTracer ();
|
|
|
|
t->show_all ();
|
|
|
|
_midi_tracer_windows.push_back (t);
|
|
|
|
} else {
|
|
|
|
/* re-use the hidden one */
|
|
|
|
(*i)->show_all ();
|
2006-02-14 12:19:58 -05:00
|
|
|
}
|
2007-10-19 09:30:07 -04:00
|
|
|
}
|
|
|
|
|
2015-08-04 14:00:57 -04:00
|
|
|
KeyEditor*
|
|
|
|
ARDOUR_UI::create_key_editor ()
|
|
|
|
{
|
|
|
|
KeyEditor* kedit = new KeyEditor;
|
|
|
|
|
2016-03-15 19:46:28 -04:00
|
|
|
for (std::list<Bindings*>::iterator b = Bindings::bindings.begin(); b != Bindings::bindings.end(); ++b) {
|
|
|
|
kedit->add_tab ((*b)->name(), **b);
|
2016-03-15 16:42:23 -04:00
|
|
|
}
|
|
|
|
|
2015-08-04 14:00:57 -04:00
|
|
|
return kedit;
|
|
|
|
}
|
|
|
|
|
2013-05-04 22:02:05 -04:00
|
|
|
BundleManager*
|
2007-10-19 09:30:07 -04:00
|
|
|
ARDOUR_UI::create_bundle_manager ()
|
|
|
|
{
|
2013-05-04 22:02:05 -04:00
|
|
|
return new BundleManager (_session);
|
2007-10-19 09:30:07 -04:00
|
|
|
}
|
|
|
|
|
2013-05-04 22:02:05 -04:00
|
|
|
AddVideoDialog*
|
|
|
|
ARDOUR_UI::create_add_video_dialog ()
|
2007-10-19 09:30:07 -04:00
|
|
|
{
|
2013-05-04 22:02:05 -04:00
|
|
|
return new AddVideoDialog (_session);
|
2006-02-14 12:19:58 -05:00
|
|
|
}
|
|
|
|
|
2013-05-04 22:02:05 -04:00
|
|
|
SessionOptionEditor*
|
|
|
|
ARDOUR_UI::create_session_option_editor ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2013-05-04 22:02:05 -04:00
|
|
|
return new SessionOptionEditor (_session);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2013-05-04 22:02:05 -04:00
|
|
|
BigClockWindow*
|
|
|
|
ARDOUR_UI::create_big_clock_window ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2013-05-04 22:02:05 -04:00
|
|
|
return new BigClockWindow (*big_clock);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2005-12-07 17:57:47 -05:00
|
|
|
|
2006-03-05 14:39:16 -05:00
|
|
|
void
|
2009-07-21 11:55:17 -04:00
|
|
|
ARDOUR_UI::handle_locations_change (Location *)
|
2006-03-05 14:39:16 -05:00
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
if (_session) {
|
|
|
|
if (_session->locations()->num_range_markers()) {
|
2006-03-05 14:39:16 -05:00
|
|
|
ActionManager::set_sensitive (ActionManager::range_sensitive_actions, true);
|
|
|
|
} else {
|
|
|
|
ActionManager::set_sensitive (ActionManager::range_sensitive_actions, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-09-10 11:03:30 -04:00
|
|
|
|
|
|
|
bool
|
2015-07-07 22:12:21 -04:00
|
|
|
ARDOUR_UI::tabbed_window_state_event_handler (GdkEventWindowState* ev, void* object)
|
2008-09-10 11:03:30 -04:00
|
|
|
{
|
2015-07-07 22:12:21 -04:00
|
|
|
if (object == editor) {
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
if ((ev->changed_mask & GDK_WINDOW_STATE_FULLSCREEN) &&
|
2008-09-10 11:03:30 -04:00
|
|
|
(ev->new_window_state & GDK_WINDOW_STATE_FULLSCREEN)) {
|
2013-05-04 22:02:05 -04:00
|
|
|
if (big_clock_window) {
|
2015-07-07 22:12:21 -04:00
|
|
|
big_clock_window->set_transient_for (*editor->own_window());
|
2013-05-04 22:02:05 -04:00
|
|
|
}
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
|
|
|
|
2015-07-07 22:12:21 -04:00
|
|
|
} else if (object == mixer) {
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
if ((ev->changed_mask & GDK_WINDOW_STATE_FULLSCREEN) &&
|
2008-09-10 11:03:30 -04:00
|
|
|
(ev->new_window_state & GDK_WINDOW_STATE_FULLSCREEN)) {
|
2013-05-04 22:02:05 -04:00
|
|
|
if (big_clock_window) {
|
2015-07-07 22:12:21 -04:00
|
|
|
big_clock_window->set_transient_for (*mixer->own_window());
|
2013-05-04 22:02:05 -04:00
|
|
|
}
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-03 07:59:22 -04:00
|
|
|
|
|
|
|
bool
|
|
|
|
ARDOUR_UI::editor_meter_peak_button_release (GdkEventButton* ev)
|
|
|
|
{
|
|
|
|
if (ev->button == 1 && Gtkmm2ext::Keyboard::modifier_state_equals (ev->state, Gtkmm2ext::Keyboard::PrimaryModifier|Gtkmm2ext::Keyboard::TertiaryModifier)) {
|
|
|
|
ArdourMeter::ResetAllPeakDisplays ();
|
|
|
|
} else if (ev->button == 1 && Gtkmm2ext::Keyboard::modifier_state_equals (ev->state, Gtkmm2ext::Keyboard::PrimaryModifier)) {
|
|
|
|
if (_session->master_out()) {
|
|
|
|
ArdourMeter::ResetGroupPeakDisplays (_session->master_out()->route_group());
|
|
|
|
}
|
|
|
|
} else if (_session->master_out()) {
|
|
|
|
ArdourMeter::ResetRoutePeakDisplays (_session->master_out().get());
|
|
|
|
}
|
2014-08-22 12:45:34 -04:00
|
|
|
return false;
|
2013-08-03 07:59:22 -04:00
|
|
|
}
|
2014-03-21 08:45:00 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_mixer_space()
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("Common", "ToggleMaximalMixer");
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
if (tact->get_active()) {
|
|
|
|
mixer->maximise_mixer_space ();
|
|
|
|
} else {
|
|
|
|
mixer->restore_mixer_space ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-12-10 18:21:02 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_mixer_list()
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("Common", "ToggleMixerList");
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
mixer->show_mixer_list (tact->get_active());
|
|
|
|
}
|
|
|
|
}
|
2015-12-19 11:42:36 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
ARDOUR_UI::toggle_monitor_section_visibility ()
|
|
|
|
{
|
|
|
|
Glib::RefPtr<Action> act = ActionManager::get_action ("Common", "ToggleMonitorSection");
|
|
|
|
|
|
|
|
if (act) {
|
|
|
|
Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
|
|
|
|
mixer->show_monitor_section (tact->get_active());
|
|
|
|
}
|
|
|
|
}
|