SpecialEvent Struct Reference
This struct stores text, lyrics and change tempo events among others. Struct used to store certain events. More...
#include <player.h>
Public Attributes | |
int | id |
ulong | diffmilliseconds |
ulong | absmilliseconds |
int | ticks |
int | type |
char | text [1024] |
ulong | tempo |
int | num |
int | den |
SpecialEvent * | next |
Detailed Description
This struct stores text, lyrics and change tempo events among others. Struct used to store certain events.It includes the main information for an event. That is, the absolute millisecond at which this event is played (from the beginning of the song), the delta milliseconds from the previous SpecialEvent, an ID, etc.
This struct is used as nodes for a linked list, which you can get using MidiPlayer::specialEvents().
- Version:
- 0.9.5 17/01/2000
- Author:
- Antonio Larrosa Jimenez <larrosa@kde.org>
Definition at line 48 of file player.h.
Member Data Documentation
|
An integer ID, that is assigned in order to each SpecialEvent. |
|
Delta milliseconds from the previous SpecialEvent.
|
|
The absolute millisecond (from the beginning of the song) at which this SpecialEvent object is played.
|
|
MIDI ticks (from the beginning of the song) at which this event is played. |
|
Type of event. This currently includes:
|
|
Text field . It has a meaning only for Text and Lyrics events. Definition at line 94 of file player.h. |
|
Tempo field . It has a meaning only for Change Tempo events. Definition at line 99 of file player.h. |
|
Numerator . It has a meaning only for Change number of beats per measure and beat events. Definition at line 104 of file player.h. |
|
Denominator . It has a meaning only for Change number of beats per measure and beat events. Definition at line 109 of file player.h. |
|
This struct stores text, lyrics and change tempo events among others. It includes the main information for an event. That is, the absolute millisecond at which this event is played (from the beginning of the song), the delta milliseconds from the previous SpecialEvent, an ID, etc. This struct is used as nodes for a linked list, which you can get using MidiPlayer::specialEvents(). Definition at line 121 of file player.h. |
The documentation for this struct was generated from the following file: