virtual Fill:: and Outline:: methods so that Canvas::Items that cache image rendering...
[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 #include "midi_byte_array.h"
25 #include "types.h"
26
27 namespace MIDI {
28         class Port;
29         class Parser;
30 }
31
32 class MackieControlProtocol;
33
34 namespace Mackie
35 {
36
37 class Surface;
38
39 /**
40         Make a relationship between a midi port and a Mackie device.
41 */
42
43 class SurfacePort 
44 {
45 public:
46         SurfacePort (Mackie::Surface&);
47         virtual ~SurfacePort();
48         
49         /// an easier way to output bytes via midi
50         int write (const MidiByteArray&);
51         
52         MIDI::Port& input_port() { return *_input_port; }
53         const MIDI::Port& input_port() const { return *_input_port; }
54         MIDI::Port& output_port() { return *_output_port; }
55         const MIDI::Port& output_port() const { return *_output_port; }
56
57 protected:
58
59 private:
60         Mackie::Surface* _surface;
61         MIDI::Port*  _input_port;
62         MIDI::Port*  _output_port;
63 };      
64
65 std::ostream& operator <<  (std::ostream& , const SurfacePort& port);
66
67 }
68
69 #endif