/[svn]/linuxsampler/trunk/src/mididriver/MidiInputDeviceCoreMidi.h
ViewVC logotype

Contents of /linuxsampler/trunk/src/mididriver/MidiInputDeviceCoreMidi.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 88 - (show annotations) (download) (as text)
Mon May 24 15:22:56 2004 UTC (19 years, 10 months ago) by letz
File MIME type: text/x-c++hdr
File size: 2756 byte(s)
cleanup

1 /***************************************************************************
2 * *
3 * LinuxSampler - modular, streaming capable sampler *
4 * *
5 * Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck *
6 * Copyright (C) 2004 Grame *
7 * *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
12 * *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
17 * *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the Free Software *
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, *
21 * MA 02111-1307 USA *
22 ***************************************************************************/
23
24 #ifndef __LS_MIDIINPUTDEVICECOREMIDI_H__
25 #define __LS_MIDIINPUTDEVICECOREMIDI_H__
26
27 #include <CoreMIDI/MIDIServices.h>
28
29 #include "../common/global.h"
30 #include "MidiInputDevice.h"
31
32 namespace LinuxSampler {
33
34 /** Core MIDI input driver
35 *
36 * Implements MIDI input for MacOSX CoreMidi architecture
37 */
38 class MidiInputDeviceCoreMidi : public MidiInputDevice {
39 public:
40 MidiInputDeviceCoreMidi(char* AutoConnectPortID = NULL);
41 ~MidiInputDeviceCoreMidi();
42
43 // derived abstract methods from class 'MidiInputDevice'
44 void Listen(){}
45 void StopListen(){}
46 void SetInputPort(const char *);
47
48 // own methods
49 void ConnectToCoreMidiSource(const char* MidiSource);
50
51 // CoreMidi callback
52 static void NotifyProc(const MIDINotification *message, void *refCon);
53 static void ReadProc(const MIDIPacketList *pktlist, void *refCon, void *connRefCon);
54
55 private:
56 MIDIClientRef hCoreMidiClient;
57 MIDIPortRef hCoreMidiInPort;
58 };
59 }
60
61 #endif // __LS_MIDIINPUTDEVICECOREMIDI_H__

  ViewVC Help
Powered by ViewVC