All Packages Class Hierarchy This Package Previous Next Index
Class quicktime.std.music.SynthesizerConnections
java.lang.Object
|
+----quicktime.util.QTByteObject
|
+----quicktime.std.music.SynthesizerConnections
- public class SynthesizerConnections
- extends QTByteObject
- implements PrimitivesLib, Cloneable
Describes how a MIDI device is connected to the computer.
-
kNativeSize
- This is the size (the number of bytes) that are required for this class
-
SynthesizerConnections()
- Create a connections class with all slots set to zero.
-
clone()
- Return a copy of this object.
-
getClientID()
- Return the MIDIManager client ID or 'OMS ' for OpenMIDISystem.
-
getFlags()
- Return information about the type of connection.
-
getInputID()
- Return the ID of the port that receives MIDI information.
-
getMIDIChannel()
- Return the system MIDI channel, or a slot number.
-
getOutputID()
- Return the ID of the port that sends MIDI information.
-
getUniqueID()
- Return the unique id which may be used instead of an index to getinfo and unregister calls
-
setClientID(int)
- Set the MIDIManager client ID.
-
setFlags(int)
- Set information about the type of connection.
-
setInputID(int)
- Set the ID of the port that receives MIDI information.
-
setMIDIChannel(int)
- Set the system MIDI channel, or a slot number.
-
setOutputID(int)
- Set the ID of the port that sends MIDI information.
-
setUniqueID(int)
- Set the unique id which may be used instead of an index to getinfo and unregister calls
-
toString()
- String representation.
kNativeSize
public static final int kNativeSize
- This is the size (the number of bytes) that are required for this class
SynthesizerConnections
public SynthesizerConnections()
- Create a connections class with all slots set to zero.
getClientID
public final int getClientID()
- Return the MIDIManager client ID or 'OMS ' for OpenMIDISystem.
setClientID
public final void setClientID(int id)
- Set the MIDIManager client ID.
getInputID
public final int getInputID()
- Return the ID of the port that receives MIDI information. (QT documents this as outputPortID).
setInputID
public final void setInputID(int id)
- Set the ID of the port that receives MIDI information. (QT documents this as outputPortID).
getOutputID
public final int getOutputID()
- Return the ID of the port that sends MIDI information. (QT documents this as inputPortID).
setOutputID
public final void setOutputID(int id)
- Set the ID of the port that sends MIDI information. (QT documents this as inputPortID).
getMIDIChannel
public final int getMIDIChannel()
- Return the system MIDI channel, or a slot number.
setMIDIChannel
public final void setMIDIChannel(int channel)
- Set the system MIDI channel, or a slot number.
getFlags
public final int getFlags()
- Return information about the type of connection.
setFlags
public final void setFlags(int flag)
- Set information about the type of connection.
getUniqueID
public final int getUniqueID()
- Return the unique id which may be used instead of an index to getinfo and unregister calls
setUniqueID
public final void setUniqueID(int id)
- Set the unique id which may be used instead of an index to getinfo and unregister calls
toString
public String toString()
- String representation.
- Overrides:
- toString in class QTByteObject
clone
public Object clone()
- Return a copy of this object.
- Overrides:
- clone in class Object
All Packages Class Hierarchy This Package Previous Next Index