force AIFF format exported files to big-endian
[ardour2.git] / gtk2_ardour / editor_audiotrack.cc
blob7e1c13dae0e0ef1b5873c38af5f7971fcdbcd6f7
1 /*
2 Copyright (C) 2000-2007 Paul Davis
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include <ardour/location.h>
21 #include <ardour/audio_diskstream.h>
23 #include "ardour_ui.h"
24 #include "editor.h"
25 #include "editing.h"
26 #include "audio_time_axis.h"
27 #include "region_view.h"
28 #include "selection.h"
30 #include "i18n.h"
32 using namespace ARDOUR;
33 using namespace PBD;
35 void
36 Editor::set_show_waveforms (bool yn)
38 AudioTimeAxisView* atv;
40 if (_show_waveforms != yn) {
41 _show_waveforms = yn;
42 for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
43 if ((atv = dynamic_cast<AudioTimeAxisView*>(*i)) != 0) {
44 atv->set_show_waveforms (yn);
50 void
51 Editor::set_show_waveforms_recording (bool yn)
53 AudioTimeAxisView* atv;
55 if (_show_waveforms_recording != yn) {
56 _show_waveforms_recording = yn;
57 for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
58 if ((atv = dynamic_cast<AudioTimeAxisView*>(*i)) != 0) {
59 atv->set_show_waveforms_recording (yn);
65 void
66 Editor::set_show_waveforms_rectified (bool yn)
68 AudioTimeAxisView* atv;
70 if (_show_waveforms_rectified != yn) {
71 _show_waveforms_rectified = yn;
72 for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
73 if ((atv = dynamic_cast<AudioTimeAxisView*>(*i)) != 0) {
74 atv->set_show_waveforms_rectified (yn);
80 gint
81 Editor::start_updating ()
83 AudioTimeAxisView* atv;
85 //cerr << "Editor::start_updating () called" << endl;//DEBUG
86 if (is_mapped() && session) {
87 for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
88 if ((atv = dynamic_cast<AudioTimeAxisView*>(*i)) != 0) {
89 atv->reset_meter ();
94 if (!meters_running) {
95 fast_screen_update_connection = ARDOUR_UI::SuperRapidScreenUpdate.connect (mem_fun(*this, &Editor::fast_update_strips));
96 meters_running = true;
98 return 0;
101 gint
102 Editor::stop_updating ()
104 AudioTimeAxisView* atv;
106 meters_running = false;
107 fast_screen_update_connection.disconnect();
108 //cerr << "Editor::stop_updating () called" << endl;//DEBUG
109 if (is_mapped() && session) {
110 for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
111 if ((atv = dynamic_cast<AudioTimeAxisView*>(*i)) != 0) {
112 atv->hide_meter ();
117 return 0;
120 void
121 Editor::toggle_meter_updating()
123 if (Config->get_show_track_meters()) {
124 start_updating();
125 } else {
126 stop_updating ();
128 track_canvas_allocate(track_canvas->get_allocation());
131 void
132 Editor::fast_update_strips ()
134 AudioTimeAxisView* atv;
136 if (is_mapped() && session) {
137 for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
138 if ((atv = dynamic_cast<AudioTimeAxisView*>(*i)) != 0) {
139 atv->fast_update ();