Fixed compile warnings.
[ardour.git] / gtk2_ardour / taperegionview.cc
1 /*
2     Copyright (C) 2006 Paul Davis 
3
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.
8
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.
13
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.
17
18     $Id$
19 */
20
21 #include <cmath>
22 #include <algorithm>
23
24 #include <gtkmm.h>
25
26 #include <gtkmm2ext/gtk_ui.h>
27
28 #include <ardour/playlist.h>
29 #include <ardour/audioregion.h>
30 #include <ardour/audiosource.h>
31 #include <ardour/audio_diskstream.h>
32
33 #include "taperegionview.h"
34 #include "audio_time_axis.h"
35 #include "gui_thread.h"
36
37 #include "i18n.h"
38
39 using namespace sigc;
40 using namespace ARDOUR;
41 using namespace PBD;
42 using namespace Editing;
43 using namespace ArdourCanvas;
44
45 TapeAudioRegionView::TapeAudioRegionView (ArdourCanvas::Group *parent, AudioTimeAxisView &tv, 
46                                           AudioRegion& r, 
47                                           double spu, 
48                                           Gdk::Color& basic_color)
49
50         : AudioRegionView (parent, tv, r, spu, basic_color, 
51                            TimeAxisViewItem::Visibility (TimeAxisViewItem::ShowNameHighlight|
52                                                          TimeAxisViewItem::ShowFrame|
53                                                          TimeAxisViewItem::HideFrameLR|
54                                                          TimeAxisViewItem::FullWidthNameHighlight))
55 {
56 }
57
58 void
59 TapeAudioRegionView::init (double amplitude_above_axis, Gdk::Color& basic_color, bool wfw)
60 {
61         XMLNode *node;
62
63         editor = 0;
64         valid = true;
65         in_destructor = false;
66         _amplitude_above_axis = amplitude_above_axis;
67         zero_line = 0;
68         wait_for_waves = wfw;
69         _height = 0;
70
71         _flags = 0;
72
73         if ((node = region.extra_xml ("GUI")) != 0) {
74                 set_flags (node);
75         } else {
76                 _flags = WaveformVisible;
77                 store_flags ();
78         }
79
80         fade_in_handle = 0;
81         fade_out_handle = 0;
82         gain_line = 0;
83         sync_mark = 0;
84
85         compute_colors (basic_color);
86
87         create_waves ();
88
89         name_highlight->set_data ("regionview", this);
90
91         reset_width_dependent_items ((double) region.length() / samples_per_unit);
92
93         set_height (trackview.height);
94
95         region_muted ();
96         region_resized (BoundsChanged);
97         set_waveview_data_src();
98         region_locked ();
99
100         /* no events, no state changes */
101
102         set_colors ();
103
104         // ColorChanged.connect (mem_fun (*this, &AudioRegionView::color_handler));
105
106         /* every time the wave data changes and peaks are ready, redraw */
107
108         
109         for (uint32_t n = 0; n < region.n_channels(); ++n) {
110                 region.source(n).PeaksReady.connect (bind (mem_fun(*this, &TapeAudioRegionView::update), n));
111         }
112         
113 }
114
115 TapeAudioRegionView::~TapeAudioRegionView()
116 {
117 }
118
119 void
120 TapeAudioRegionView::update (uint32_t n)
121 {
122         /* check that all waves are build and ready */
123
124         if (!tmp_waves.empty()) {
125                 return;
126         }
127
128         ENSURE_GUI_THREAD (bind (mem_fun(*this, &TapeAudioRegionView::update), n));
129
130         /* this triggers a cache invalidation and redraw in the waveview */
131
132         waves[n]->property_data_src() = &region;
133 }
134
135 void
136 TapeAudioRegionView::set_frame_color ()
137 {
138         fill_opacity = 255;
139         TimeAxisViewItem::set_frame_color ();
140 }