Eliminate a ton of unnecessary complete redrawing in MIDI stream views:
[ardour.git] / libs / evoral / src / MIDIEvent.cpp
1 /* This file is part of Evoral.
2  * Copyright (C) 2008 Dave Robillard <http://drobilla.net>
3  * Copyright (C) 2000-2008 Paul Davis
4  * 
5  * Evoral is free software; you can redistribute it and/or modify it under the
6  * terms of the GNU General Public License as published by the Free Software
7  * Foundation; either version 2 of the License, or (at your option) any later
8  * version.
9  * 
10  * Evoral is distributed in the hope that it will be useful, but WITHOUT ANY
11  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for details.
13  * 
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #include <evoral/MIDIEvent.hpp>
20
21 namespace Evoral {
22
23 #ifdef EVORAL_MIDI_XML
24
25 MIDIEvent::MIDIEvent(const XMLNode& event)
26 {
27         string name = event.name();
28         
29         if (name == "ControlChange") {
30                 
31         } else if (name == "ProgramChange") {
32                 
33         }
34 }
35
36
37 boost::shared_ptr<XMLNode> 
38 MIDIEvent::to_xml() const
39 {
40         XMLNode *result = 0;
41         
42         switch (type()) {
43         case MIDI_CMD_CONTROL:
44                 result = new XMLNode("ControlChange");
45                 result->add_property("Channel", channel());
46                 result->add_property("Control", cc_number());
47                 result->add_property("Value",   cc_value());
48                 break;
49                         
50         case MIDI_CMD_PGM_CHANGE:
51                 result = new XMLNode("ProgramChange");
52                 result->add_property("Channel", channel());
53                 result->add_property("Number",  pgm_number());
54                 break;
55                 
56         default:
57                 // The implementation is continued as needed
58                 break;
59         }
60         
61         return boost::shared_ptr<XMLNode>(result);
62 }
63
64 #endif // EVORAL_MIDI_XML
65
66 } // namespace MIDI
67