MCP: switch devices on the fly; name MIDI ports appropriately; fix active state;...
[ardour.git] / libs / surfaces / mackie / surface_port.h
1 /*
2         Copyright (C) 2006,2007 John Anderson
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 #ifndef surface_port_h
19 #define surface_port_h
20
21 #include <midi++/types.h>
22 #include <glibmm/thread.h>
23
24 #include "pbd/signals.h"
25 #include "midi_byte_array.h"
26 #include "types.h"
27
28 namespace MIDI {
29         class Port;
30         class Parser;
31 }
32
33 class MackieControlProtocol;
34
35 namespace Mackie
36 {
37
38 class Surface;
39
40 /**
41         Make a relationship between a midi port and a Mackie device.
42 */
43
44 class SurfacePort 
45 {
46 public:
47         SurfacePort (Mackie::Surface&);
48         virtual ~SurfacePort();
49         
50         /// an easier way to output bytes via midi
51         int write (const MidiByteArray&);
52         
53         MIDI::Port& input_port() { return *_input_port; }
54         const MIDI::Port& input_port() const { return *_input_port; }
55         MIDI::Port& output_port() { return *_output_port; }
56         const MIDI::Port& output_port() const { return *_output_port; }
57
58 protected:
59
60 private:
61         Mackie::Surface* _surface;
62         MIDI::Port*      _input_port;
63         MIDI::Port*      _output_port;
64 };      
65
66 std::ostream& operator <<  (std::ostream& , const SurfacePort& port);
67
68 }
69
70 #endif