enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[ardour.git] / libs / surfaces / generic_midi / midiaction.cc
1 /*
2     Copyright (C) 2009-2010 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 #include <cstring>
20
21 #include "midi++/port.h"
22 #include "pbd/compose.h"
23 #include "ardour/debug.h"
24
25 #include "midiaction.h"
26 #include "generic_midi_control_protocol.h"
27
28 using namespace MIDI;
29 using namespace PBD;
30
31 MIDIAction::MIDIAction (MIDI::Parser& p)
32         : MIDIInvokable (p)
33 {
34 }
35
36 MIDIAction::~MIDIAction ()
37 {
38 }
39
40 int
41 MIDIAction::init (GenericMidiControlProtocol& ui, const std::string& invokable_name, MIDI::byte* msg_data, size_t data_sz)
42 {
43         MIDIInvokable::init (ui, invokable_name, msg_data, data_sz);
44         return 0;
45 }
46
47 void
48 MIDIAction::execute ()
49 {
50         DEBUG_TRACE (DEBUG::GenericMidi, string_compose ("Action: '%1'\n", _invokable_name));
51         _ui->access_action (_invokable_name);
52 }
53
54 XMLNode&
55 MIDIAction::get_state ()
56 {
57         XMLNode* node = new XMLNode ("MIDIAction");
58         return *node;
59 }
60
61 int
62 MIDIAction::set_state (const XMLNode& /*node*/, int /*version*/)
63 {
64         return 0;
65 }
66