globally remove all trailing whitespace from ardour code base.
[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
23 #include "pbd/signals.h"
24
25
26 #include "midi_byte_array.h"
27 #include "types.h"
28
29 namespace MIDI {
30         class Parser;
31         class Port;
32 }
33
34
35 namespace ARDOUR {
36         class AsyncMIDIPort;
37         class Port;
38 }
39
40 namespace ArdourSurface {
41
42 class MackieControlProtocol;
43
44 namespace Mackie
45 {
46
47 class Surface;
48
49 /**
50         Make a relationship between a midi port and a Mackie device.
51 */
52
53 class SurfacePort
54 {
55 public:
56     SurfacePort (Mackie::Surface&);
57     virtual ~SurfacePort();
58
59     /// an easier way to output bytes via midi
60     int write (const MidiByteArray&);
61         
62     MIDI::Port& input_port() const { return *_input_port; }
63     MIDI::Port& output_port() const { return *_output_port; }
64
65     XMLNode& get_state ();
66     int set_state (const XMLNode&, int version);
67
68 protected:
69
70 private:
71     Mackie::Surface*   _surface;
72     MIDI::Port* _input_port;
73     MIDI::Port* _output_port;
74     boost::shared_ptr<ARDOUR::Port> _async_in;
75     boost::shared_ptr<ARDOUR::Port> _async_out;
76 };      
77
78 std::ostream& operator <<  (std::ostream& , const SurfacePort& port);
79
80 }
81 }
82
83 #endif