remove color.h
[ardour.git] / gtk2_ardour / midi_region_view.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_midi_region_view_h__
20 #define __gtk_ardour_midi_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/midi_region.h>
28 #include <ardour/types.h>
29
30 #include "region_view.h"
31 #include "route_time_axis.h"
32 #include "time_axis_view_item.h"
33 #include "automation_line.h"
34 #include "enums.h"
35 #include "canvas.h"
36
37 namespace ARDOUR {
38         class MidiRegion;
39 };
40
41 class MidiTimeAxisView;
42 class GhostRegion;
43 class AutomationTimeAxisView;
44
45 class MidiRegionView : public RegionView
46 {
47   public:
48         MidiRegionView (ArdourCanvas::Group *, 
49                         RouteTimeAxisView&,
50                         boost::shared_ptr<ARDOUR::MidiRegion>,
51                         double initial_samples_per_unit,
52                         Gdk::Color& basic_color);
53
54         ~MidiRegionView ();
55         
56         virtual void init (Gdk::Color& base_color, bool wait_for_data = false);
57         
58         boost::shared_ptr<ARDOUR::MidiRegion> midi_region() const;
59         
60         void set_y_position_and_height (double, double);
61     
62     void show_region_editor ();
63
64     GhostRegion* add_ghost (AutomationTimeAxisView&);
65
66         void add_event(const ARDOUR::MidiEvent& ev);
67
68         void begin_write();
69         void end_write();
70         void extend_active_notes();
71
72   protected:
73
74     /* this constructor allows derived types
75        to specify their visibility requirements
76        to the TimeAxisViewItem parent class
77     */
78     
79     MidiRegionView (ArdourCanvas::Group *, 
80                         RouteTimeAxisView&,
81                         boost::shared_ptr<ARDOUR::MidiRegion>,
82                         double samples_per_unit,
83                         Gdk::Color& basic_color,
84                         TimeAxisViewItem::Visibility);
85     
86     void region_resized (ARDOUR::Change);
87
88     void set_flags (XMLNode *);
89     void store_flags ();
90     
91         void reset_width_dependent_items (double pixel_width);
92
93   private:
94
95         void display_events();
96
97         std::vector<ArdourCanvas::Item*> _events;
98         ArdourCanvas::SimpleRect**       _active_notes;
99 };
100
101 #endif /* __gtk_ardour_midi_region_view_h__ */