Fix vertical order of MIDI notes.
[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 #include "color.h"
37
38 namespace ARDOUR {
39         class MidiRegion;
40 };
41
42 class MidiTimeAxisView;
43 class GhostRegion;
44 class AutomationTimeAxisView;
45
46 class MidiRegionView : public RegionView
47 {
48   public:
49         MidiRegionView (ArdourCanvas::Group *, 
50                         RouteTimeAxisView&,
51                         boost::shared_ptr<ARDOUR::MidiRegion>,
52                         double initial_samples_per_unit,
53                         Gdk::Color& basic_color);
54
55         ~MidiRegionView ();
56         
57         virtual void init (Gdk::Color& base_color, bool wait_for_data = false);
58         
59         boost::shared_ptr<ARDOUR::MidiRegion> midi_region() const;
60     
61     void show_region_editor ();
62
63     GhostRegion* add_ghost (AutomationTimeAxisView&);
64
65         void add_event(const ARDOUR::MidiEvent& ev);
66
67         void begin_write();
68         void end_write();
69         void extend_active_notes();
70
71   protected:
72
73     /* this constructor allows derived types
74        to specify their visibility requirements
75        to the TimeAxisViewItem parent class
76     */
77     
78     MidiRegionView (ArdourCanvas::Group *, 
79                         RouteTimeAxisView&,
80                         boost::shared_ptr<ARDOUR::MidiRegion>,
81                         double samples_per_unit,
82                         Gdk::Color& basic_color,
83                         TimeAxisViewItem::Visibility);
84     
85     void region_moved (void *);
86
87     void set_flags (XMLNode *);
88     void store_flags ();
89
90   private:
91
92         std::vector<ArdourCanvas::Item*> _events;
93         ArdourCanvas::SimpleRect**       _active_notes;
94 };
95
96 #endif /* __gtk_ardour_midi_region_view_h__ */