29c5817a251b1d0dc046c35cc301ab087dbb089f
[ardour.git] / gtk2_ardour / regionview.h
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 __gtk_ardour_region_view_h__
20 #define __gtk_ardour_region_view_h__
21
22 #include <vector>
23
24 #include <libgnomecanvasmm.h>
25 #include <libgnomecanvasmm/polygon.h>
26 #include <sigc++/signal.h>
27 #include <ardour/region.h>
28
29 #include "time_axis_view_item.h"
30 #include "automation_line.h"
31 #include "enums.h"
32 #include "waveview.h"
33 #include "canvas.h"
34 #include "color.h"
35
36 class TimeAxisView;
37 class RegionEditor;
38 class GhostRegion;
39 class AutomationTimeAxisView;
40
41 class RegionView : public TimeAxisViewItem
42 {
43   public:
44         RegionView (ArdourCanvas::Group* parent, 
45                     TimeAxisView&        time_view,
46                     ARDOUR::Region&      region,
47                     double               samples_per_unit,
48                     Gdk::Color&          basic_color);
49
50         ~RegionView ();
51         
52         virtual void init (Gdk::Color& base_color, bool wait_for_waves);
53     
54         ARDOUR::Region& region() const { return _region; }
55         
56         bool is_valid() const    { return valid; }
57     void set_valid (bool yn) { valid = yn; }
58
59     virtual void set_height (double) = 0;
60     void set_samples_per_unit (double);
61     bool set_duration (jack_nframes_t, void*);
62
63     void move (double xdelta, double ydelta);
64
65     void raise ();
66     void raise_to_top ();
67     void lower ();
68     void lower_to_bottom ();
69
70     bool set_position(jack_nframes_t pos, void* src, double* delta = 0);
71
72     virtual void show_region_editor () = 0;
73     void hide_region_editor();
74
75     void region_changed (ARDOUR::Change);
76
77     virtual GhostRegion* add_ghost (AutomationTimeAxisView&) = 0;
78     void                 remove_ghost (GhostRegion*);
79
80     uint32_t get_fill_color ();
81
82     virtual void entered () {}
83     virtual void exited () {}
84     
85         static sigc::signal<void,RegionView*> RegionViewGoingAway;
86     sigc::signal<void>                    GoingAway;
87
88   protected:
89
90     /** Allows derived types to specify their visibility requirements
91      * to the TimeAxisViewItem parent class
92          */
93     RegionView (ArdourCanvas::Group *, 
94                     TimeAxisView&,
95                     ARDOUR::Region&,
96                     double initial_samples_per_unit,
97                     Gdk::Color& basic_color,
98                     TimeAxisViewItem::Visibility);
99     
100         ARDOUR::Region& _region;
101     
102     enum Flags {
103             EnvelopeVisible = 0x1,
104             WaveformVisible = 0x4,
105             WaveformRectified = 0x8
106     };
107
108     ArdourCanvas::Polygon* sync_mark; ///< polgyon for sync position 
109     ArdourCanvas::Text* no_wave_msg; ///< text 
110
111     RegionEditor *editor;
112
113     vector<ControlPoint *> control_points;
114     double current_visible_sync_position;
115
116     uint32_t _flags;
117     uint32_t fade_color;
118     bool     valid; ///< see StreamView::redisplay_diskstream() 
119     double  _pixel_width;
120     double  _height;
121     bool    in_destructor;
122     bool    wait_for_waves;
123     
124         sigc::connection peaks_ready_connection;
125
126     void region_resized (ARDOUR::Change);
127     void region_moved (void *);
128     void region_muted ();
129     void region_locked ();
130     void region_opacity ();
131     void region_layered ();
132     void region_renamed ();
133     void region_sync_changed ();
134     void region_scale_amplitude_changed ();
135
136     static gint _lock_toggle (ArdourCanvas::Item*, GdkEvent*, void*);
137     void        lock_toggle ();
138
139     void peaks_ready_handler (uint32_t);
140     void reset_name (gdouble width);
141
142     void set_colors ();
143     void compute_colors (Gdk::Color&);
144     virtual void set_frame_color ();
145     void reset_width_dependent_items (double pixel_width);
146
147     vector<GhostRegion*> ghosts;
148     
149     virtual void color_handler (ColorID, uint32_t) {}
150 };
151
152 #endif /* __gtk_ardour_region_view_h__ */