Ardour  8.12
midi_scene_change.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014 Paul Davis <paul@linuxaudiosystems.com>
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 along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 
19 #ifndef __libardour_midi_scene_change_h__
20 #define __libardour_midi_scene_change_h__
21 
22 #include "evoral/PatchChange.h"
23 
24 #include "pbd/signals.h"
25 
26 #include "ardour/scene_change.h"
27 
28 namespace ARDOUR
29 {
30 
31 class MidiPort;
32 
34 {
35  public:
36  MIDISceneChange (int channel, int bank = -1, int program = -1);
37  MIDISceneChange (const XMLNode&, int version);
39 
40  void set_channel (int channel);
41  void set_program (int program);
42  void set_bank (int bank);
43 
44  int channel () const { return _channel; }
45  int program () const { return _program; }
46  int bank () const { return _bank; }
47 
48  size_t get_bank_msb_message (uint8_t* buf, size_t size) const;
49  size_t get_bank_lsb_message (uint8_t* buf, size_t size) const;
50  size_t get_program_message (uint8_t* buf, size_t size) const;
51 
52  XMLNode& get_state() const;
53  int set_state (const XMLNode&, int version);
54 
55  bool operator==(const MIDISceneChange& other) const;
56 
57  private:
58  int _bank;
59  int _program;
60  uint8_t _channel;
61 };
62 
63 } /* namespace */
64 
65 
66 #endif /* __libardour_scene_change_h__ */
bool operator==(const MIDISceneChange &other) const
int set_state(const XMLNode &, int version)
MIDISceneChange(int channel, int bank=-1, int program=-1)
size_t get_bank_lsb_message(uint8_t *buf, size_t size) const
void set_bank(int bank)
size_t get_program_message(uint8_t *buf, size_t size) const
void set_program(int program)
MIDISceneChange(const XMLNode &, int version)
size_t get_bank_msb_message(uint8_t *buf, size_t size) const
XMLNode & get_state() const
void set_channel(int channel)
Definition: xml++.h:114