Make SMFSource suck significantly less.
[ardour.git] / gtk2_ardour / midi_streamview.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 __ardour_midi_streamview_h__
20 #define __ardour_midi_streamview_h__
21
22 #include <list>
23 #include <cmath>
24
25 #include <ardour/location.h>
26 #include "enums.h"
27 #include "simplerect.h"
28 #include "streamview.h"
29 #include "time_axis_view_item.h"
30 #include "route_time_axis.h"
31
32 namespace Gdk {
33         class Color;
34 }
35
36 namespace ARDOUR {
37         class Route;
38         class Diskstream;
39         class Crossfade;
40         class PeakData;
41         class MidiRegion;
42         class Source;
43         class MidiModel;
44 }
45
46 class PublicEditor;
47 class Selectable;
48 class MidiTimeAxisView;
49 class MidiRegionView;
50 class RegionSelection;
51 class CrossfadeView;
52 class Selection;
53
54 class MidiStreamView : public StreamView
55 {
56   public:
57         MidiStreamView (MidiTimeAxisView&);
58         ~MidiStreamView ();
59
60         void set_selected_regionviews (RegionSelection&);
61         void get_selectables (jack_nframes_t start, jack_nframes_t end, list<Selectable* >&);
62         void get_inverted_selectables (Selection&, list<Selectable* >& results);
63
64         enum VisibleNoteRange {
65                 FullRange,
66                 ContentsRange
67         };
68
69         VisibleNoteRange note_range() { return _range; }
70         void set_note_range(VisibleNoteRange r);
71
72         uint8_t lowest_note()  const { return (_range == FullRange) ? 0 : _lowest_note; }
73         uint8_t highest_note() const { return (_range == FullRange) ? 127 : _highest_note; }
74         
75         void update_bounds(uint8_t note_num);
76         
77         void redisplay_diskstream ();
78         
79         inline double contents_height() const
80                 { return (_trackview.height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 2); }
81         
82         inline double note_to_y(uint8_t note) const
83                 { return contents_height()
84                         - (note + 1 - _lowest_note) * note_height() + 1; }
85         
86         inline uint8_t y_to_note(double y) const
87                 { return (uint8_t)((contents_height() - y - 1)
88                                 / contents_height() * (double)contents_note_range())
89                                 + _lowest_note; }
90         
91         inline double note_height() const
92                 { return contents_height() / (double)contents_note_range(); }
93         
94         inline uint8_t contents_note_range() const
95                 { return _highest_note - _lowest_note + 1; }
96
97   private:
98         void setup_rec_box ();
99         void rec_data_range_ready (jack_nframes_t start, jack_nframes_t dur, boost::weak_ptr<ARDOUR::Source> src); 
100         void update_rec_regions (boost::shared_ptr<ARDOUR::MidiModel> data, jack_nframes_t start, jack_nframes_t dur);
101         
102         RegionView* add_region_view_internal (boost::shared_ptr<ARDOUR::Region>, bool wait_for_waves);
103         void        display_region(MidiRegionView* region_view, bool load_model);
104         void        display_diskstream (boost::shared_ptr<ARDOUR::Diskstream> ds);
105         
106         void update_contents_y_position_and_height ();
107         void draw_note_separators();
108
109         void color_handler ();
110
111         VisibleNoteRange          _range;
112         uint8_t                   _lowest_note;
113         uint8_t                   _highest_note;
114         ArdourCanvas::Group*      _note_line_group;
115         ArdourCanvas::SimpleLine* _note_lines[127];
116 };
117
118 #endif /* __ardour_midi_streamview_h__ */