~ubuntu-branches/ubuntu/utopic/ardour3/utopic

« back to all changes in this revision

Viewing changes to gtk2_ardour/audio_streamview.h

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2013-09-21 19:05:02 UTC
  • Revision ID: package-import@ubuntu.com-20130921190502-8gsftrku6jnzhd7v
Tags: upstream-3.4~dfsg
ImportĀ upstreamĀ versionĀ 3.4~dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (C) 2001, 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
 
 
19
#ifndef __ardour_audio_streamview_h__
 
20
#define __ardour_audio_streamview_h__
 
21
 
 
22
#include <list>
 
23
#include <map>
 
24
#include <cmath>
 
25
 
 
26
#include <boost/weak_ptr.hpp>
 
27
 
 
28
#include "ardour/location.h"
 
29
#include "editing.h"
 
30
#include "simplerect.h"
 
31
#include "streamview.h"
 
32
 
 
33
namespace Gdk {
 
34
        class Color;
 
35
}
 
36
 
 
37
namespace ARDOUR {
 
38
        class AudioRegion;
 
39
        class Route;
 
40
        class Source;
 
41
        struct PeakData;
 
42
}
 
43
 
 
44
class PublicEditor;
 
45
class Selectable;
 
46
class AudioTimeAxisView;
 
47
class AudioRegionView;
 
48
class RegionSelection;
 
49
class Selection;
 
50
 
 
51
class AudioStreamView : public StreamView
 
52
{
 
53
  public:
 
54
        AudioStreamView (AudioTimeAxisView&);
 
55
 
 
56
        int     set_amplitude_above_axis (gdouble app);
 
57
        gdouble get_amplitude_above_axis () { return _amplitude_above_axis; }
 
58
 
 
59
        void show_all_fades ();
 
60
        void hide_all_fades ();
 
61
 
 
62
        std::pair<std::list<AudioRegionView*>, std::list<AudioRegionView*> > hide_xfades_with (boost::shared_ptr<ARDOUR::AudioRegion> ar);
 
63
 
 
64
        RegionView* create_region_view (boost::shared_ptr<ARDOUR::Region>, bool, bool);
 
65
 
 
66
  private:
 
67
        void setup_rec_box ();
 
68
        void rec_peak_range_ready (framepos_t start, ARDOUR::framecnt_t cnt, boost::weak_ptr<ARDOUR::Source> src);
 
69
        void update_rec_regions (ARDOUR::framepos_t, ARDOUR::framecnt_t);
 
70
 
 
71
        RegionView* add_region_view_internal (boost::shared_ptr<ARDOUR::Region>, bool wait_for_waves, bool recording = false);
 
72
        void remove_audio_region_view (boost::shared_ptr<ARDOUR::AudioRegion> );
 
73
 
 
74
        void redisplay_track ();
 
75
 
 
76
        void color_handler ();
 
77
 
 
78
        double _amplitude_above_axis;
 
79
 
 
80
        std::map<boost::shared_ptr<ARDOUR::Source>, bool> rec_data_ready_map;
 
81
 
 
82
        bool outline_region;
 
83
};
 
84
 
 
85
#endif /* __ardour_audio_streamview_h__ */