/* * Copyright (C) 2005-2019 Paul Davis * Copyright (C) 2005 Taybin Rutkin * Copyright (C) 2006-2015 Tim Mayberry * Copyright (C) 2007-2011 David Robillard * Copyright (C) 2009-2012 Carl Hetherington * Copyright (C) 2013-2018 Robin Gareus * Copyright (C) 2016-2018 Ben Loftis * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifdef WAF_BUILD #include "gtk2ardour-config.h" #endif /* this file exists solely to break compilation dependencies that would connect changes to the mixer or editor objects. */ #include #include "pbd/error.h" #include "ardour/session.h" #include "ardour/lv2_plugin.h" #include "ardour/profile.h" #include "gtkmm2ext/bindings.h" #include "widgets/ardour_button.h" #include "actions.h" #include "ardour_message.h" #include "ardour_ui.h" #include "audio_clip_editor.h" #include "public_editor.h" #include "meterbridge.h" #include "luainstance.h" #include "luawindow.h" #include "livetrax_meters.h" #include "livetrax_tc_widget.h" #include "main_clock.h" #include "meterbridge.h" #include "mixer_ui.h" #include "recorder_ui.h" #include "trigger_page.h" #include "keyboard.h" #include "keyeditor.h" #include "rc_option_editor.h" #include "route_params_ui.h" #include "selection_properties_box.h" #include "time_info_box.h" #include "trigger_ui.h" #include "step_entry.h" #include "opts.h" #ifdef GDK_WINDOWING_X11 #include #endif #include "pbd/i18n.h" using namespace Gtk; using namespace PBD; using namespace ArdourWidgets; namespace ARDOUR { class Session; class Route; } using namespace ARDOUR; using namespace Gtkmm2ext; void ARDOUR_UI::we_have_dependents () { install_dependent_actions (); /* The monitor section relies on at least 1 action defined by us. Since that * action now exists, give it a chance to use it. */ mixer->monitor_section().use_others_actions (); StepEntry::setup_actions_and_bindings (); ClipEditorBox::init (); /* Global, editor, mixer, processor box actions are defined now. Link them with any bindings, so that GTK does not get a chance to define the GTK accel map entries first when we ask the GtkUIManager to create menus/widgets. If GTK adds the actions to its accel map before we do, we lose our freedom to use any keys. More precisely, we can use any keys, but ones that GTK considers illegal as accelerators will not show up in menus. There are other dynamic actions that can be created by a monitor section, by step entry dialogs. These need to be handled separately. They don't tend to use GTK-illegal bindings and more importantly they don't have menus showing the bindings, so it is less of an issue. */ Gtkmm2ext::Bindings::associate_all (); editor->UpdateAllTransportClocks.connect (sigc::mem_fun (*this, &ARDOUR_UI::update_transport_clocks)); /* all actions are defined */ ActionManager::load_menus (ARDOUR_COMMAND_LINE::menus_file); /* catch up on parameters */ boost::function pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1)); Config->map_parameters (pc); UIConfiguration::instance().reset_dpi (); } void ARDOUR_UI::connect_dependents_to_session (ARDOUR::Session *s) { DisplaySuspender ds; BootMessage (_("Setup Editor")); editor->set_session (s); _livetrax_sections->set_session (s); BootMessage (_("Setup Mixer")); mixer->set_session (s); if (!Profile->get_livetrax()) { recorder->set_session (s); trigger_page->set_session (s); meterbridge->set_session (s); } else { livetrax_time_info_box->set_session (s); } /* its safe to do this now */ BootMessage (_("Reload Session History")); s->restore_history (""); } /** The main editor window has been closed */ gint ARDOUR_UI::exit_on_main_window_close (GdkEventAny * /*ev*/) { #ifdef __APPLE__ /* just hide the window, and return - the top menu stays up */ editor->hide (); return TRUE; #else /* time to get out of here */ finish(); return TRUE; #endif } GtkNotebook* ARDOUR_UI::tab_window_root_drop (GtkNotebook* src, GtkWidget* w, gint x, gint y, gpointer) { using namespace std; Gtk::Notebook* nb = 0; Gtk::Window* win = 0; ArdourWidgets::Tabbable* tabbable = 0; if (w == GTK_WIDGET(editor->contents().gobj())) { tabbable = editor; } else if (w == GTK_WIDGET(mixer->contents().gobj())) { tabbable = mixer; #ifndef LIVETRAX } else if (w == GTK_WIDGET(rc_option_editor->contents().gobj())) { tabbable = rc_option_editor; #endif } else if (w == GTK_WIDGET(recorder->contents().gobj())) { tabbable = recorder; } else if (w == GTK_WIDGET(trigger_page->contents().gobj())) { tabbable = trigger_page; } else { return 0; } nb = tabbable->tab_root_drop (); win = tabbable->own_window (); if (nb) { win->move (x, y); win->show_all (); win->present (); return nb->gobj(); } return 0; /* what was that? */ } bool ARDOUR_UI::idle_ask_about_quit () { const auto ask_before_closing = UIConfiguration::instance ().get_ask_before_closing_last_window (); if ((_session && _session->dirty ()) || !ask_before_closing) { finish (); } else { /* no session or session not dirty, but still ask anyway */ ArdourMessageDialog msg (string_compose (_("Quit %1?"), PROGRAM_NAME), false, /* no markup */ Gtk::MESSAGE_INFO, Gtk::BUTTONS_YES_NO, true); /* modal */ msg.set_default_response (Gtk::RESPONSE_YES); msg.set_position (WIN_POS_MOUSE); if (msg.run () == Gtk::RESPONSE_YES) { finish (); } } /* not reached but keep the compiler happy */ return false; } bool ARDOUR_UI::main_window_delete_event (GdkEventAny* ev) { /* quit the application as soon as we go idle. If we call this here, * the window manager/desktop can think we're taking too longer to * handle the "delete" event */ Glib::signal_idle().connect (sigc::mem_fun (*this, &ARDOUR_UI::idle_ask_about_quit)); return true; } static GtkNotebook* tab_window_root_drop (GtkNotebook* src, GtkWidget* w, gint x, gint y, gpointer user_data) { return ARDOUR_UI::instance()->tab_window_root_drop (src, w, x, y, user_data); } int ARDOUR_UI::setup_windows () { if (ARDOUR::Profile->get_livetrax()) { return livetrax_setup_windows (); } _tabs.set_show_border(false); _tabs.signal_switch_page().connect (sigc::mem_fun (*this, &ARDOUR_UI::tabs_switch)); _tabs.signal_page_added().connect (sigc::mem_fun (*this, &ARDOUR_UI::tabs_page_added)); _tabs.signal_page_removed().connect (sigc::mem_fun (*this, &ARDOUR_UI::tabs_page_removed)); rc_option_editor = new RCOptionEditor; #ifndef LIVETRAX rc_option_editor->StateChange.connect (sigc::mem_fun (*this, &ARDOUR_UI::tabbable_state_change)); #endif if (create_editor ()) { error << _("UI: cannot setup editor") << endmsg; return -1; } if (create_mixer ()) { error << _("UI: cannot setup mixer") << endmsg; return -1; } if (create_recorder ()) { error << _("UI: cannot setup recorder") << endmsg; return -1; } if (create_trigger_page ()) { error << _("UI: cannot setup trigger") << endmsg; return -1; } if (create_meterbridge ()) { error << _("UI: cannot setup meterbridge") << endmsg; return -1; } time_info_box = new TimeInfoBox ("ToolbarTimeInfo", false); /* all other dialogs are created conditionally */ we_have_dependents (); /* order of addition affects order seen in initial window display */ #ifndef LIVETRAX rc_option_editor->add_to_notebook (_tabs); #endif mixer->add_to_notebook (_tabs); editor->add_to_notebook (_tabs); recorder->add_to_notebook (_tabs); trigger_page->add_to_notebook (_tabs); top_packer.pack_start (menu_bar_base, false, false); main_vpacker.pack_start (top_packer, false, false); ArdourWidgets::ArdourDropShadow *spacer = manage (new (ArdourWidgets::ArdourDropShadow)); spacer->set_size_request( -1, 4 ); spacer->show(); /* now add the transport sample to the top of main window */ main_vpacker.pack_start ( *spacer, false, false); main_vpacker.pack_start (transport_frame, false, false); main_vpacker.pack_start (_tabs, true, true); LuaInstance::instance()->ActionChanged.connect (sigc::mem_fun (*this, &ARDOUR_UI::action_script_changed)); for (int i = 0; i < MAX_LUA_ACTION_BUTTONS; ++i) { std::string const a = string_compose (X_("script-%1"), i + 1); Glib::RefPtr act = ActionManager::get_action(X_("LuaAction"), a.c_str()); assert (act); action_script_call_btn[i].set_name ("lua action button"); action_script_call_btn[i].set_text (string_compose ("%1%2", std::hex, i+1)); action_script_call_btn[i].set_related_action (act); action_script_call_btn[i].signal_button_press_event().connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::bind_lua_action_script), i), false); if (act->get_sensitive ()) { action_script_call_btn[i].set_visual_state (Gtkmm2ext::VisualState (action_script_call_btn[i].visual_state() & ~Gtkmm2ext::Insensitive)); } else { action_script_call_btn[i].set_visual_state (Gtkmm2ext::VisualState (action_script_call_btn[i].visual_state() | Gtkmm2ext::Insensitive)); } action_script_call_btn[i].set_sizing_text ("88"); action_script_call_btn[i].set_no_show_all (); } setup_transport(); build_menu_bar (); setup_tooltips (); _main_window.signal_delete_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::main_window_delete_event)); /* pack the main vpacker into the main window and show everything */ _main_window.add (main_vpacker); transport_frame.show_all (); apply_window_settings (true); setup_toplevel_window (_main_window, "", this); _main_window.show_all (); _tabs.set_show_tabs (false); /* It would be nice if Gtkmm had wrapped this rather than just * deprecating the old set_window_creation_hook() method, but oh well... */ g_signal_connect (_tabs.gobj(), "create-window", (GCallback) ::tab_window_root_drop, this); #ifdef GDK_WINDOWING_X11 /* allow externalUIs to be transient, on top of the main window */ LV2Plugin::set_main_window_id (GDK_DRAWABLE_XID(_main_window.get_window()->gobj())); #endif return 0; } int ARDOUR_UI::livetrax_setup_windows () { using namespace Menu_Helpers; using namespace Gtk; rc_option_editor = new RCOptionEditor; rc_option_editor->hide(); ArdourButton::set_default_tweaks (ArdourButton::Tweaks (ArdourButton::ForceFlat)); if (create_editor()) { error << _("UI: cannot setup editor") << endmsg; return -1; } if (create_mixer()) { error << _("UI: cannot setup mixer") << endmsg; return -1; } _livetrax_sections = new EditorSections(); Image* icon = manage (new Image (ARDOUR_UI_UTILS::get_icon ("harrison"))); livetrax_top_table_c.set_border_width(4); livetrax_top_table_c.attach(transport_ctrl, 0,1, 0,1, FILL, FILL, 4, 4 ); livetrax_top_table_c.attach(*primary_clock, 0,1, 1,2, FILL, FILL, 4, 4 ); VBox* vb; HBox* hb; ArdourButton::Element elements (ArdourButton::Element (ArdourButton::Text|ArdourButton::VectorIcon)); Gtkmm2ext::Bindings* bindings; Glib::RefPtr act; livetrax_top_table_l.set_border_width (4); livetrax_top_table_r.set_border_width (4); EventBox* ev_dsp = manage (new EventBox); EventBox* ev_timecode = manage (new EventBox); ev_dsp->set_name ("MainMenuBar"); ev_timecode->set_name ("MainMenuBar"); ev_dsp->add (dsp_load_label); ev_timecode->add (timecode_format_label); livetrax_ff_dropdown = manage (new ArdourDropdown ()); Menu_Helpers::MenuList& items (livetrax_ff_dropdown->items()); items.push_back (MenuElem (_("24 bit WAV/RF64"), sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::livetrax_set_file_format), LiveTraxFileFormat (ARDOUR::FormatInt24, ARDOUR::RF64_WAV)))); items.push_back (MenuElem (_("24 bit FLAC"), sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::livetrax_set_file_format), LiveTraxFileFormat (ARDOUR::FormatInt24, ARDOUR::FLAC)))); CairoWidget* cw = new LiveTraxTCWidget; cw->show (); livetrax_multi_out_button = manage (new ArdourButton (_("Multi Out"))); livetrax_stereo_out_button = manage (new ArdourButton (_("Stereo Out"))); livetrax_multi_out_button->set_name ("transport option button"); livetrax_stereo_out_button->set_name ("transport option button"); act = ActionManager::get_action (X_("Common"), X_("disable-virtual-soundcheck")); livetrax_stereo_out_button->set_related_action (act); act = ActionManager::get_action (X_("Common"), X_("enable-virtual-soundcheck")); livetrax_multi_out_button->set_related_action (act); livetrax_view_in_folder_button = manage (new ArdourButton (elements)); livetrax_view_in_folder_button->set_icon (ArdourWidgets::ArdourIcon::Folder); livetrax_editor_view_button = manage (new ArdourButton (_("TRACKS"), ArdourButton::Element (ArdourButton::Text|ArdourButton::Body), true)); livetrax_editor_view_button->set_icon (ArdourWidgets::ArdourIcon::TrackWaveform); act = ActionManager::get_action (X_("Common"), X_("livetrax-toggle-editor")); livetrax_editor_view_button->set_related_action (act); livetrax_editor_view_button->set_name ("page switch button"); livetrax_prefs_view_button = manage (new ArdourButton (_("PREFS"), ArdourButton::Element (ArdourButton::Text|ArdourButton::Body), true)); livetrax_prefs_view_button->set_icon (ArdourWidgets::ArdourIcon::Config); act = ActionManager::get_action (X_("Common"), X_("livetrax-toggle-prefs")); livetrax_prefs_view_button->set_related_action (act); livetrax_prefs_view_button->set_name ("page switch button"); livetrax_meter_view_button = manage (new ArdourButton (ArdourButton::Element (ArdourButton::Text|ArdourButton::Body), true));; livetrax_meter_view_button->set_icon (ArdourWidgets::ArdourIcon::Meters); act = ActionManager::get_action (X_("Common"), X_("livetrax-toggle-meter")); livetrax_meter_view_button->set_related_action (act); livetrax_meter_view_button->set_name ("page switch button"); livetrax_mixer_view_button = manage (new ArdourButton (ArdourButton::Element (ArdourButton::Text|ArdourButton::Body), true)); livetrax_mixer_view_button->set_icon (ArdourWidgets::ArdourIcon::Mixer); act = ActionManager::get_action (X_("Common"), X_("livetrax-toggle-mixer")); livetrax_mixer_view_button->set_related_action (act); livetrax_mixer_view_button->set_name ("page switch button"); livetrax_sr_button = manage (new ArdourButton (ArdourButton::Element (ArdourButton::Text|ArdourButton::Edge|ArdourButton::Body), true)); act = ActionManager::get_action (X_("Window"), X_("toggle-audio-midi-setup")); livetrax_sr_button->set_related_action (act); livetrax_tc_button = manage (new ArdourButton (ArdourButton::Element (ArdourButton::Text|ArdourButton::Edge|ArdourButton::Body), true)); act = ActionManager::get_action (X_("Window"), X_("toggle-transport-masters")); livetrax_tc_button->set_related_action (act); livetrax_tc_button->set_text ("Select Sync"); //TODO: fill with tc info solo_alert_button.set_text(_("Clear Solos")); solo_alert_button.set_elements(ArdourButton::Element (ArdourButton::Text|ArdourButton::Edge|ArdourButton::Body)); livetrax_lock_button = manage (new ArdourButton (elements, true)); livetrax_lock_button->set_icon (ArdourWidgets::ArdourIcon::Lock); act = ActionManager::get_action (X_("Editor"), X_("lock")); livetrax_lock_button->set_related_action (act); act = ActionManager::get_action (X_("Main"), X_("ResetMeterPeakHold")); _livetrax_btn_peak_reset.set_related_action (act); int TCOL = 0; livetrax_top_table_l.attach (*icon, TCOL, TCOL+4, 0, 2, FILL, EXPAND, 4, 4); TCOL+=4; livetrax_top_table_l.attach (*manage(new Label("")), TCOL, TCOL+1, 0, 2, EXPAND, FILL, 4, 4); TCOL++; livetrax_top_table_l.attach (_livetrax_btn_peak_reset, TCOL, TCOL+1, 0, 1, FILL, FILL, 4, 4); livetrax_top_table_l.attach (solo_alert_button, TCOL, TCOL+1, 1, 2, FILL, FILL, 4, 4); TCOL++; livetrax_top_table_l.attach (*manage(new Label("")), TCOL, TCOL+1, 0, 2, EXPAND, FILL, 4, 4); TCOL++; livetrax_top_table_l.attach (sync_button, TCOL, TCOL+1, 0, 1, FILL, FILL, 4, 4); livetrax_top_table_l.attach (*livetrax_tc_button, TCOL, TCOL+1, 1, 2, FILL, FILL, 4, 4); TCOL++; livetrax_top_table_l.attach (*manage(new Label("Source: MTC")), TCOL, TCOL+1, 0, 1, FILL, FILL, 4, 4); livetrax_top_table_l.attach (*manage(new Label("Lock: 00:01:00:00")), TCOL, TCOL+1, 1, 2, FILL, FILL, 4, 4); TCOL++; // livetrax_top_table.attach (*cw, TCOL, TCOL+1, 0, 2, FILL, FILL, 4, 4); TCOL++; TCOL = 0; livetrax_top_table_r.attach (disk_space_label, TCOL, TCOL+1, 0, 1, FILL, FILL, 4, 4); livetrax_top_table_r.attach (*ev_dsp, TCOL, TCOL+1, 1, 2, FILL, FILL, 4, 4); TCOL++; livetrax_top_table_r.attach (*livetrax_ff_dropdown, TCOL, TCOL+1, 0, 1, FILL, FILL, 4, 4); livetrax_top_table_r.attach (*livetrax_sr_button, TCOL, TCOL+1, 1, 2, FILL, FILL, 4, 4); TCOL++; livetrax_top_table_r.attach (*manage(new Label("")), TCOL, TCOL+1, 0, 2, EXPAND, FILL, 4, 4); TCOL++; livetrax_top_table_r.attach (*livetrax_stereo_out_button, TCOL, TCOL+1, 0, 1, FILL, FILL, 4, 4); livetrax_top_table_r.attach (*livetrax_multi_out_button, TCOL, TCOL+1, 1, 2, FILL, FILL, 4, 4); TCOL++; livetrax_top_table_r.attach (*manage(new Label("")), TCOL, TCOL+1, 0, 2, EXPAND, FILL, 4, 4); TCOL++; livetrax_top_table_r.attach (*livetrax_lock_button, TCOL, TCOL+1, 0, 1, FILL, FILL, 4, 4); livetrax_top_table_r.attach (*livetrax_view_in_folder_button, TCOL+1, TCOL+2, 0, 1, FILL, FILL, 4, 4); livetrax_top_table_r.attach (*livetrax_prefs_view_button, TCOL+2, TCOL+3, 0, 1, FILL, FILL, 4, 4); livetrax_top_table_r.attach (*livetrax_meter_view_button, TCOL, TCOL+1, 1, 2, FILL, FILL, 4, 4); livetrax_top_table_r.attach (*livetrax_editor_view_button, TCOL+1, TCOL+2, 1, 2, FILL, FILL, 4, 4); livetrax_top_table_r.attach (*livetrax_mixer_view_button, TCOL+2, TCOL+3, 1, 2, FILL, FILL, 4, 4); TCOL+=3; //left & right tables should be equal width, so the logo is centered between them _livetrax_centering_sizegroup->add_widget(livetrax_top_table_l); _livetrax_centering_sizegroup->add_widget(livetrax_top_table_r); //group a few items in each row of the left and right tables, to sync the heights _livetrax_toolbar_sizegroup->add_widget(*livetrax_ff_dropdown); _livetrax_toolbar_sizegroup->add_widget(*livetrax_sr_button); _livetrax_toolbar_sizegroup->add_widget(*livetrax_tc_button); _livetrax_toolbar_sizegroup->add_widget(solo_alert_button); _livetrax_toolbar_sizegroup->add_widget(_livetrax_btn_peak_reset); _livetrax_toolbar_sizegroup->add_widget(*livetrax_stereo_out_button); _livetrax_toolbar_sizegroup->add_widget(*livetrax_multi_out_button); _livetrax_toolbar_sizegroup->add_widget(*livetrax_lock_button); _livetrax_toolbar_sizegroup->add_widget(*livetrax_mixer_view_button); _livetrax_toolbar_sizegroup->add_widget(*primary_clock); //sync all the view buttons so they look squarer _livetrax_viewbutton_sizegroup->add_widget(*livetrax_lock_button); _livetrax_viewbutton_sizegroup->add_widget(*livetrax_view_in_folder_button); _livetrax_viewbutton_sizegroup->add_widget(*livetrax_meter_view_button); _livetrax_viewbutton_sizegroup->add_widget(*livetrax_editor_view_button); _livetrax_viewbutton_sizegroup->add_widget(*livetrax_mixer_view_button); Gtk::HBox *livetrax_top_bar = manage (new HBox); livetrax_top_bar->pack_start(livetrax_top_table_l, true, true); livetrax_top_bar->pack_start(livetrax_top_table_c, true, false); livetrax_top_bar->pack_start(livetrax_top_table_r, true, true); /* editor bar */ TCOL = 0; livetrax_time_info_box = new TimeInfoBox ("LiveTraxTimeInfo", false); // livetrax_edit_table.attach (*livetrax_time_info_box, TCOL, TCOL+1, 0, 2, FILL, FILL, 4, 4); TCOL++; /* meter display */ livetrax_meters = manage (new LiveTraxMeters); livetrax_meters->show_all (); // livetrax_meter_bar.set_border_width (4); livetrax_meter_bar.pack_start (*livetrax_meters, true, true, 0); hb = manage (new HBox); hb->pack_start (rc_option_editor->contents(), true, true); livetrax_prefs_bar.pack_start (*hb, true, true); hb = manage (new HBox); livetrax_edit_vscrollbar = manage (new VScrollbar (editor->vertical_adjustment)); livetrax_edit_vscrollbar->show (); hb->pack_start (editor->contents(), true, true); hb->pack_start (*livetrax_edit_vscrollbar, false, false); livetrax_section_pane.set_child_minsize(_livetrax_sections->widget(), 30); livetrax_section_pane.set_divider(0, 0.99); livetrax_section_pane.add(*hb); livetrax_section_pane.add (_livetrax_sections->widget()); vb = manage (new VBox); livetrax_edit_hscrollbar = manage (new HScrollbar (editor->horizontal_adjustment)); livetrax_edit_hscrollbar->show (); vb->pack_start (livetrax_section_pane, true, true); livetrax_editor_bar.pack_start (*vb, true, true, 12); livetrax_section_pane.set_divider(0, 0.99); livetrax_mixer_bar.pack_start (mixer->contents(), true, true, 12); we_have_dependents (); editor->livetrax_assign_ui_dependent_actions(); _livetrax_spacer1.set_size_request(-1, 6); _livetrax_spacer2.set_size_request(-1, 12); _livetrax_spacer3.set_size_request(-1, 12); /* order of addition affects order seen in initial window display */ main_vpacker.pack_start (menu_bar_base, false, false); main_vpacker.pack_start (_livetrax_spacer1, false, false); main_vpacker.pack_start (*livetrax_top_bar, false, false); main_vpacker.pack_start (livetrax_meter_bar, false, false); main_vpacker.pack_start (_livetrax_spacer2, false, false); main_vpacker.pack_start (livetrax_editor_bar, true, true); main_vpacker.pack_start (livetrax_prefs_bar, true, false); main_vpacker.pack_start (_livetrax_spacer3, false, false); main_vpacker.pack_start (livetrax_mixer_bar, false, false); connect_transport_elements (); setup_tooltips (); build_menu_bar (); bindings = Bindings::get_bindings (X_("Editor")); livetrax_editor_bar.set_data ("ardour-bindings", bindings); bindings = Bindings::get_bindings (X_("Mixer")); livetrax_mixer_bar.set_data ("ardour-bindings", bindings); // setup_tooltips (); _main_window.signal_delete_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::main_window_delete_event)); /* pack the main vpacker into the main window and show everything */ _main_window.add (main_vpacker); apply_window_settings (true); setup_toplevel_window (_main_window, "", this); _main_window.show_all (); _livetrax_visibility = LiveTraxVisibility (LiveTraxMeterVisible|LiveTraxMixerVisible|LiveTraxEditorVisible); livetrax_visibility_change (); #ifdef GDK_WINDOWING_X11 /* allow externalUIs to be transient, on top of the main window */ LV2Plugin::set_main_window_id (GDK_DRAWABLE_XID(_main_window.get_window()->gobj())); #endif return 0; } void ARDOUR_UI::apply_window_settings (bool with_size) { const XMLNode* mnode = main_window_settings (); if (!mnode) { return; } XMLProperty const* prop; if (with_size) { gint x = -1; gint y = -1; gint w = -1; gint h = -1; if ((prop = mnode->property (X_("x"))) != 0) { x = atoi (prop->value()); } if ((prop = mnode->property (X_("y"))) != 0) { y = atoi (prop->value()); } if ((prop = mnode->property (X_("w"))) != 0) { w = atoi (prop->value()); } if ((prop = mnode->property (X_("h"))) != 0) { h = atoi (prop->value()); } if (x >= 0 && y >= 0 && w >= 0 && h >= 0) { _main_window.set_position (Gtk::WIN_POS_NONE); } if (x >= 0 && y >= 0) { _main_window.move (x, y); } if (w > 0 && h > 0) { _main_window.set_default_size (w, h); } } std::string current_tab; if ((prop = mnode->property (X_("current-tab"))) != 0) { current_tab = prop->value(); } else { current_tab = "editor"; } if (mixer && current_tab == "mixer") { _tabs.set_current_page (_tabs.page_num (mixer->contents())); #ifndef LIVETRAX } else if (rc_option_editor && current_tab == "preferences") { _tabs.set_current_page (_tabs.page_num (rc_option_editor->contents())); #endif } else if (recorder && current_tab == "recorder") { _tabs.set_current_page (_tabs.page_num (recorder->contents())); } else if (trigger_page && current_tab == "trigger") { _tabs.set_current_page (_tabs.page_num (trigger_page->contents())); } else if (editor) { _tabs.set_current_page (_tabs.page_num (editor->contents())); } return; } bool ARDOUR_UI::bind_lua_action_script (GdkEventButton*ev, int i) { if (!_session) { return false; } LuaInstance *li = LuaInstance::instance(); std::string name; if (ev->button != 3 && !(ev->button == 1 && !li->lua_action_name (i, name))) { return false; } if (Gtkmm2ext::Keyboard::modifier_state_equals (ev->state, Gtkmm2ext::Keyboard::TertiaryModifier)) { li->remove_lua_action (i); } else { li->interactive_add (*editor->current_toplevel (), LuaScriptInfo::EditorAction, i); } return true; } void ARDOUR_UI::action_script_changed (int i, const std::string& n) { if (i < 0 || i >= MAX_LUA_ACTION_SCRIPTS) { return; } if (i < MAX_LUA_ACTION_BUTTONS) { if (LuaInstance::instance()->lua_action_has_icon (i)) { uintptr_t ii = i; action_script_call_btn[i].set_icon (&LuaInstance::render_action_icon, (void*)ii); } else { action_script_call_btn[i].set_icon (0, 0); } if (n.empty ()) { action_script_call_btn[i].set_text (string_compose ("%1%2", std::hex, i+1)); } else { action_script_call_btn[i].set_text (n.substr(0,1)); } } std::string const a = string_compose (X_("script-%1"), i + 1); Glib::RefPtr act = ActionManager::get_action(X_("LuaAction"), a.c_str()); assert (act); if (n.empty ()) { act->set_label (string_compose (_("Unset #%1"), i + 1)); act->set_tooltip (_("No action bound\nRight-click to assign")); act->set_sensitive (false); } else { act->set_label (n); act->set_tooltip (string_compose (_("%1\n\nClick to run\nRight-click to re-assign\nShift+right-click to unassign"), n)); act->set_sensitive (true); } KeyEditor::UpdateBindings (); } void ARDOUR_UI:: update_section_visibility(bool show) { #ifdef LIVETRAX if (!_livetrax_sections) { return; } if (show) { _livetrax_sections->widget().show(); } else { _livetrax_sections->widget().hide(); } #endif } void ARDOUR_UI::livetrax_visibility_change () { if (_livetrax_visibility & LiveTraxMeterVisible) { livetrax_meter_bar.show (); livetrax_meter_view_button->set_active_state (Gtkmm2ext::ExplicitActive); } else { livetrax_meter_bar.hide (); livetrax_meter_view_button->set_active_state (Gtkmm2ext::Off); } if (_livetrax_visibility & LiveTraxEditorVisible) { livetrax_editor_bar.show (); _livetrax_spacer2.show(); livetrax_editor_view_button->set_active_state (Gtkmm2ext::ExplicitActive); } else { livetrax_editor_bar.hide (); _livetrax_spacer2.hide(); livetrax_editor_view_button->set_active_state (Gtkmm2ext::Off); } if (_livetrax_visibility & LiveTraxPrefsVisible) { livetrax_prefs_bar.show (); livetrax_prefs_view_button->set_active_state (Gtkmm2ext::ExplicitActive); } else { livetrax_prefs_bar.hide (); livetrax_prefs_view_button->set_active_state (Gtkmm2ext::Off); } if (_livetrax_visibility & LiveTraxMixerVisible) { livetrax_mixer_bar.show (); _livetrax_spacer3.show(); livetrax_mixer_view_button->set_active_state (Gtkmm2ext::ExplicitActive); } else { livetrax_mixer_bar.hide (); _livetrax_spacer3.hide(); livetrax_mixer_view_button->set_active_state (Gtkmm2ext::Off); } } void ARDOUR_UI::livetrax_toggle_visibility (LiveTraxVisibility v) { if (_livetrax_visibility & v) { _livetrax_visibility = LiveTraxVisibility (_livetrax_visibility & ~v); } else { _livetrax_visibility = LiveTraxVisibility (_livetrax_visibility | v); } if (_livetrax_visibility==0) { //at minimum always show tracks _livetrax_visibility = LiveTraxVisibility (LiveTraxEditorVisible); } //enforce exclusivity between tracks and prefs if (v==LiveTraxEditorVisible) { _livetrax_visibility = LiveTraxVisibility (_livetrax_visibility & ~LiveTraxPrefsVisible); } if (v==LiveTraxPrefsVisible) { _livetrax_visibility = LiveTraxVisibility (LiveTraxPrefsVisible); //ONLY show prefs } livetrax_visibility_change (); } void ARDOUR_UI::livetrax_set_file_format (LiveTraxFileFormat const & ff) { if (!_session) { return; } /* Don't reset write sources on header format change */ _session->disable_file_format_reset (); _session->config.set_native_file_header_format (ff.hf); _session->config.set_native_file_data_format (ff.sf); _session->enable_file_format_reset (); _session->reset_native_file_format (); } void ARDOUR_UI::virtual_soundcheck_changed (bool onoff) { if (!Profile->get_livetrax()) { return; } if (onoff) { livetrax_stereo_out_button->set_active_state (Gtkmm2ext::Off); livetrax_multi_out_button->set_active_state (Gtkmm2ext::ExplicitActive); } else { livetrax_stereo_out_button->set_active_state (Gtkmm2ext::ExplicitActive); livetrax_multi_out_button->set_active_state (Gtkmm2ext::Off); } }