Configuration of the MIDIIn and MIDIOut classes. More...
#include <MIDIIOConfig.hxx>
Public Member Functions | |
MIDIIOConfig () | |
MIDIIOConfig (const MIDIIOConfig &prototype, const bool shareData=false, const bool deep=true) | |
__COMMON_DYNAMIC_TYPE (MIDIIOConfig, 4) | |
__COMMON_DYN_ATTRIBUTE (0, public, std::string, Device) protected | |
The Device that will be used by this MIDIIn/Out instantiation, if it is not indicated, or its value is "default:default", system will choose the best device for this object. | |
bool | LoadDevice (CLAM::Storage &s) |
__COMMON_DYN_ATTRIBUTE (1, public, unsigned short, Message) protected | |
The Message attribute allows you to create a MIDIOut that sends midi messages of a certain type. | |
bool | LoadMessage (CLAM::Storage &s) |
__COMMON_DYN_ATTRIBUTE (2, public, unsigned short, Channel) protected | |
The Channel attribute allows you to create a MIDIOut that sends midi messages on a certain channel. | |
bool | LoadChannel (CLAM::Storage &s) |
__COMMON_DYN_ATTRIBUTE (3, public, unsigned short, FirstData) protected | |
The Message attribute allows you to create a MIDIOut that sends midi messages with a certain first data byte (typically usefull for control messages). | |
bool | LoadFirstData (CLAM::Storage &s) |
Protected Member Functions | |
void | DefaultInit (void) |
The concrete dynamic type constructor calls DefaultInit(). |
Configuration of the MIDIIn and MIDIOut classes.
You can specify a device (string), which will be used by the MIDIManager, when creating the MIDIDevice objects. When you don't specify a concrete device, or specify "default", the MIDIManager will choose the default device for your setup.
Definition at line 37 of file MIDIIOConfig.hxx.
CLAM::MIDIIOConfig::MIDIIOConfig | ( | ) | [inline] |
Definition at line 40 of file MIDIIOConfig.hxx.
CLAM::MIDIIOConfig::MIDIIOConfig | ( | const MIDIIOConfig & | prototype, | |
const bool | shareData = false , |
|||
const bool | deep = true | |||
) | [inline] |
Definition at line 40 of file MIDIIOConfig.hxx.
CLAM::MIDIIOConfig::__COMMON_DYN_ATTRIBUTE | ( | 3 | , | |
public | , | |||
unsigned | short, | |||
FirstData | ||||
) | [inline] |
The Message attribute allows you to create a MIDIOut that sends midi messages with a certain first data byte (typically usefull for control messages).
If you leave it 128 (default), a FloatInControl will be created to control the first data byte.
Definition at line 62 of file MIDIIOConfig.hxx.
CLAM::MIDIIOConfig::__COMMON_DYN_ATTRIBUTE | ( | 2 | , | |
public | , | |||
unsigned | short, | |||
Channel | ||||
) | [inline] |
The Channel attribute allows you to create a MIDIOut that sends midi messages on a certain channel.
If you leave it 0 (default), a FloatInControl will be created to control the channel of each MIDI message.
Definition at line 56 of file MIDIIOConfig.hxx.
CLAM::MIDIIOConfig::__COMMON_DYN_ATTRIBUTE | ( | 1 | , | |
public | , | |||
unsigned | short, | |||
Message | ||||
) | [inline] |
The Message attribute allows you to create a MIDIOut that sends midi messages of a certain type.
Definition at line 50 of file MIDIIOConfig.hxx.
CLAM::MIDIIOConfig::__COMMON_DYN_ATTRIBUTE | ( | 0 | , | |
public | , | |||
std::string | , | |||
Device | ||||
) | [inline] |
The Device that will be used by this MIDIIn/Out instantiation, if it is not indicated, or its value is "default:default", system will choose the best device for this object.
Definition at line 46 of file MIDIIOConfig.hxx.
CLAM::MIDIIOConfig::__COMMON_DYNAMIC_TYPE | ( | MIDIIOConfig | , | |
4 | ||||
) |
void CLAM::MIDIIOConfig::DefaultInit | ( | void | ) | [inline, protected] |
The concrete dynamic type constructor calls DefaultInit().
This allows user to initialize his/her object. But we define DefaultInit() here because we don't want to force writting one DefaultInit() function for each concrete dynamic type. If a dynamic type concrete class defines some (not-default) constructors, this should also call the DefaultInit().
For MIDIIn 0 means: listen to all channels, and add an OutControl. For MIDIOut 0 means: channel is controlled by a FloatInControl
For MIDIIn 128 means: listen to all first data bytes, and add an OutControl For MIDIOut 128 means: first data byte is controlled by a FloatInControl
Reimplemented from CLAM::DynamicType.
Definition at line 65 of file MIDIIOConfig.hxx.
References CLAM::DynamicType::UpdateData().
bool CLAM::MIDIIOConfig::LoadChannel | ( | CLAM::Storage & | s | ) | [inline] |
Definition at line 56 of file MIDIIOConfig.hxx.
bool CLAM::MIDIIOConfig::LoadDevice | ( | CLAM::Storage & | s | ) | [inline] |
Definition at line 46 of file MIDIIOConfig.hxx.
bool CLAM::MIDIIOConfig::LoadFirstData | ( | CLAM::Storage & | s | ) | [inline] |
Definition at line 62 of file MIDIIOConfig.hxx.
bool CLAM::MIDIIOConfig::LoadMessage | ( | CLAM::Storage & | s | ) | [inline] |
Definition at line 50 of file MIDIIOConfig.hxx.