X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Feditor_audiotrack.cc;h=5eadac1ca5db595bab7913499803b7b7a792a846;hb=5905b58bc0ad8383ef16631b6505c288c550192a;hp=6918004e567d6e03d02e0042880b44c3ddfabbba;hpb=4297071b3f7360b17d81ef9cf36b8d75d46d2818;p=ardour.git diff --git a/gtk2_ardour/editor_audiotrack.cc b/gtk2_ardour/editor_audiotrack.cc index 6918004e56..5eadac1ca5 100644 --- a/gtk2_ardour/editor_audiotrack.cc +++ b/gtk2_ardour/editor_audiotrack.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2000-2007 Paul Davis + Copyright (C) 2000-2007 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 @@ -19,6 +19,7 @@ #include "ardour/location.h" #include "ardour/audio_diskstream.h" +#include "ardour/rc_configuration.h" #include "ardour_ui.h" #include "editor.h" @@ -34,82 +35,46 @@ using namespace ARDOUR; using namespace PBD; void -Editor::set_show_waveforms_recording (bool yn) +Editor::start_updating_meters () { - AudioTimeAxisViewPtr atv; + RouteTimeAxisView* rtv; - if (_show_waveforms_recording != yn) { - _show_waveforms_recording = yn; + if (is_mapped() && _session) { for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) { - if ((atv = boost::dynamic_pointer_cast(*i)) != 0) { - atv->set_show_waveforms_recording (yn); - } - } - } -} - -gint -Editor::start_updating () -{ - RouteTimeAxisViewPtr rtv; - - //cerr << "Editor::start_updating () called" << endl;//DEBUG - if (is_mapped() && session) { - for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) { - if ((rtv = boost::dynamic_pointer_cast(*i)) != 0) { + if ((rtv = dynamic_cast(*i)) != 0) { rtv->reset_meter (); } } } - if (!meters_running) { - fast_screen_update_connection = ARDOUR_UI::SuperRapidScreenUpdate.connect (mem_fun(*this, &Editor::fast_update_strips)); - meters_running = true; - } - return 0; + meters_running = true; } -gint -Editor::stop_updating () +void +Editor::stop_updating_meters () { - RouteTimeAxisViewPtr rtv; - + RouteTimeAxisView* rtv; + meters_running = false; - fast_screen_update_connection.disconnect(); - //cerr << "Editor::stop_updating () called" << endl;//DEBUG - if (is_mapped() && session) { + + if (is_mapped() && _session) { for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) { - if ((rtv = boost::dynamic_pointer_cast(*i)) != 0) { + if ((rtv = dynamic_cast(*i)) != 0) { rtv->hide_meter (); } } } - - return 0; } void Editor::toggle_meter_updating() { if (Config->get_show_track_meters()) { - start_updating(); + start_updating_meters (); } else { - stop_updating (); + stop_updating_meters (); } - track_canvas_allocate(track_canvas->get_allocation()); -} - -void -Editor::fast_update_strips () -{ - RouteTimeAxisViewPtr rtv; - if (is_mapped() && session) { - for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) { - if ((rtv = boost::dynamic_pointer_cast(*i)) != 0) { - rtv->fast_update (); - } - } - } + track_canvas_allocate (track_canvas->get_allocation()); }