2c16f7aa7f
git-svn-id: svn://localhost/ardour2/branches/3.0@6647 d708f5d6-7413-0410-9779-e7cbd77b26cf
223 lines
5.3 KiB
C++
223 lines
5.3 KiB
C++
/*
|
|
Copyright (C) 2003-2004 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.
|
|
|
|
*/
|
|
|
|
#include <glibmm/miscutils.h>
|
|
#include <gtkmm2ext/utils.h>
|
|
#include <gtkmm2ext/window_title.h>
|
|
|
|
#include "pbd/enumwriter.h"
|
|
|
|
#include "editor.h"
|
|
#include "mixer_strip.h"
|
|
#include "ardour_ui.h"
|
|
#include "selection.h"
|
|
#include "audio_time_axis.h"
|
|
#include "actions.h"
|
|
#include "editor_routes.h"
|
|
#include "editor_route_groups.h"
|
|
#include "editor_regions.h"
|
|
#include "gui_thread.h"
|
|
|
|
#include "i18n.h"
|
|
|
|
using namespace std;
|
|
using namespace Gtkmm2ext;
|
|
using namespace PBD;
|
|
|
|
void
|
|
Editor::editor_mixer_button_toggled ()
|
|
{
|
|
Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-mixer"));
|
|
if (act) {
|
|
Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<Gtk::ToggleAction>::cast_dynamic(act);
|
|
show_editor_mixer (tact->get_active());
|
|
}
|
|
}
|
|
|
|
void
|
|
Editor::editor_list_button_toggled ()
|
|
{
|
|
Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-list"));
|
|
if (act) {
|
|
Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<Gtk::ToggleAction>::cast_dynamic(act);
|
|
show_editor_list (tact->get_active());
|
|
}
|
|
}
|
|
|
|
void
|
|
Editor::show_editor_mixer (bool yn)
|
|
{
|
|
boost::shared_ptr<ARDOUR::Route> r;
|
|
|
|
show_editor_mixer_when_tracks_arrive = false;
|
|
|
|
if (!_session) {
|
|
show_editor_mixer_when_tracks_arrive = yn;
|
|
return;
|
|
}
|
|
|
|
if (yn) {
|
|
|
|
if (selection->tracks.empty()) {
|
|
|
|
if (track_views.empty()) {
|
|
show_editor_mixer_when_tracks_arrive = true;
|
|
return;
|
|
}
|
|
|
|
for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
|
|
RouteTimeAxisView* atv;
|
|
|
|
if ((atv = dynamic_cast<RouteTimeAxisView*> (*i)) != 0) {
|
|
r = atv->route();
|
|
break;
|
|
}
|
|
}
|
|
|
|
} else {
|
|
sort_track_selection ();
|
|
|
|
for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
|
|
RouteTimeAxisView* atv;
|
|
|
|
if ((atv = dynamic_cast<RouteTimeAxisView*> (*i)) != 0) {
|
|
r = atv->route();
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (r) {
|
|
if (current_mixer_strip == 0) {
|
|
create_editor_mixer ();
|
|
}
|
|
|
|
current_mixer_strip->set_route (r);
|
|
current_mixer_strip->set_width_enum (editor_mixer_strip_width, (void*) this);
|
|
}
|
|
|
|
if (current_mixer_strip->get_parent() == 0) {
|
|
global_hpacker.pack_start (*current_mixer_strip, Gtk::PACK_SHRINK );
|
|
global_hpacker.reorder_child (*current_mixer_strip, 0);
|
|
current_mixer_strip->show_all ();
|
|
}
|
|
|
|
} else {
|
|
|
|
if (current_mixer_strip) {
|
|
if (current_mixer_strip->get_parent() != 0) {
|
|
global_hpacker.remove (*current_mixer_strip);
|
|
}
|
|
}
|
|
}
|
|
|
|
#ifdef GTKOSX
|
|
/* XXX gtk problem here */
|
|
ensure_all_elements_drawn();
|
|
#endif
|
|
}
|
|
|
|
#ifdef GTKOSX
|
|
void
|
|
Editor::ensure_all_elements_drawn ()
|
|
{
|
|
controls_layout.queue_draw ();
|
|
ruler_label_event_box.queue_draw ();
|
|
time_button_event_box.queue_draw ();
|
|
}
|
|
#endif
|
|
|
|
void
|
|
Editor::create_editor_mixer ()
|
|
{
|
|
current_mixer_strip = new MixerStrip (*ARDOUR_UI::instance()->the_mixer(),
|
|
_session,
|
|
false);
|
|
current_mixer_strip->Hiding.connect (sigc::mem_fun(*this, &Editor::current_mixer_strip_hidden));
|
|
|
|
#ifdef GTKOSX
|
|
current_mixer_strip->WidthChanged.connect (sigc::mem_fun(*this, &Editor::ensure_all_elements_drawn));
|
|
#endif
|
|
current_mixer_strip->set_embedded (true);
|
|
}
|
|
|
|
void
|
|
Editor::set_selected_mixer_strip (TimeAxisView& view)
|
|
{
|
|
RouteTimeAxisView* at;
|
|
|
|
if (!_session || (at = dynamic_cast<RouteTimeAxisView*>(&view)) == 0) {
|
|
return;
|
|
}
|
|
|
|
Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-mixer"));
|
|
|
|
if (act) {
|
|
Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<Gtk::ToggleAction>::cast_dynamic(act);
|
|
if (!tact || !tact->get_active()) {
|
|
/* not showing mixer strip presently */
|
|
return;
|
|
}
|
|
}
|
|
|
|
if (current_mixer_strip == 0) {
|
|
create_editor_mixer ();
|
|
}
|
|
|
|
/* might be nothing to do */
|
|
|
|
if (current_mixer_strip->route() == at->route()) {
|
|
return;
|
|
}
|
|
|
|
current_mixer_strip->set_route (at->route());
|
|
current_mixer_strip->set_width_enum (editor_mixer_strip_width, (void*) this);
|
|
}
|
|
|
|
void
|
|
Editor::current_mixer_strip_hidden ()
|
|
{
|
|
for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
|
|
|
|
RouteTimeAxisView* tmp;
|
|
|
|
if ((tmp = dynamic_cast<RouteTimeAxisView*>(*i)) != 0) {
|
|
if (tmp->route() == current_mixer_strip->route()) {
|
|
(*i)->set_selected (false);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-mixer"));
|
|
if (act) {
|
|
Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<Gtk::ToggleAction>::cast_dynamic(act);
|
|
tact->set_active (false);
|
|
}
|
|
}
|
|
|
|
void
|
|
Editor::maybe_add_mixer_strip_width (XMLNode& node)
|
|
{
|
|
if (current_mixer_strip) {
|
|
node.add_property ("mixer-width", enum_2_string (current_mixer_strip->get_width_enum()));
|
|
}
|
|
}
|
|
|