partially-done (but compile-friendly) move of instrument info into a new backend...
[ardour.git] / libs / ardour / ardour / instrument_info.h
1 /*
2     Copyright (C) 2012 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_instrument_info_h__
20 #define __ardour_instrument_info_h__
21
22 #include <string>
23 #include <stdint.h>
24
25 #include "pbd/signals.h"
26
27 #include <boost/weak_ptr.hpp>
28
29 namespace ARDOUR {
30
31 class Processor;
32
33 class InstrumentInfo {
34   public:
35     InstrumentInfo();
36     ~InstrumentInfo ();
37
38     void set_external_instrument (const std::string& model, const std::string& mode);
39     void set_internal_instrument (boost::shared_ptr<ARDOUR::Processor>);
40
41     std::string get_patch_name (uint16_t bank, uint8_t program, uint8_t channel) const;
42     std::string get_instrument_name () const;
43
44     PBD::Signal0<void> Changed;
45
46   private:
47     std::string external_instrument_model;
48     std::string external_instrument_mode;
49
50     boost::weak_ptr<ARDOUR::Processor> internal_instrument;
51 };
52
53 } /* namespace ARDOUR */
54
55
56 #endif /* __ardour_instrument_info_h__ */