Ardour  9.0-pre0-582-g084a23a80d
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 #pragma once
20 
21 #include "evoral/PatchChange.h"
22 
23 #include "pbd/signals.h"
24 
25 #include "ardour/scene_change.h"
26 
27 namespace ARDOUR
28 {
29 
30 class MidiPort;
31 
33 {
34  public:
35  MIDISceneChange (int channel, int bank = -1, int program = -1);
36  MIDISceneChange (const XMLNode&, int version);
38 
39  void set_channel (int channel);
40  void set_program (int program);
41  void set_bank (int bank);
42 
43  int channel () const { return _channel; }
44  int program () const { return _program; }
45  int bank () const { return _bank; }
46 
47  size_t get_bank_msb_message (uint8_t* buf, size_t size) const;
48  size_t get_bank_lsb_message (uint8_t* buf, size_t size) const;
49  size_t get_program_message (uint8_t* buf, size_t size) const;
50 
51  XMLNode& get_state() const;
52  int set_state (const XMLNode&, int version);
53 
54  bool operator==(const MIDISceneChange& other) const;
55 
56  private:
57  int _bank;
58  int _program;
59  uint8_t _channel;
60 };
61 
62 } /* namespace */
63 
64 
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