GUIDOLib
1.7.7
A Music Score Rendering Engine
|
A C++ interface to the GUIDOPianoRoll API. More...
Functions | |
virtual | ~GUIDOPianoRollAdapter () |
PianoRoll * | ar2PianoRoll (PianoRollType type, ARHandler arh) |
Creates a new piano roll from AR, corresponding to type : simplePianoRoll -> basic piano roll trajectoryPianoRoll -> every event is graphically linked to the previous one. More... | |
PianoRoll * | midi2PianoRoll (PianoRollType type, const std::string &midiFileName) |
Creates a new piano roll from Midi, corresponding to type : simplePianoRoll -> basic piano roll trajectoryPianoRoll -> every event is graphically linked to the previous one. More... | |
GuidoErrCode | destroyPianoRoll (PianoRoll *pr) |
Destroys a guido piano roll and releases all the associated ressources. More... | |
GuidoErrCode | setLimits (PianoRoll *pr, LimitParams &limitParams) |
Sets limits to a piano roll (start/end date, lower/higher pitch) More... | |
GuidoErrCode | enableKeyboard (PianoRoll *pr, bool enabled) |
Enables keyboard or not (not enabled by default) More... | |
float | getKeyboardWidth (PianoRoll *pr, int height) |
Gets the piano roll keyboard width. More... | |
GuidoErrCode | enableAutoVoicesColoration (PianoRoll *pr, bool enabled) |
Enables or not the automatic voices coloration (not enabled by default) (not for a midi rendering) // REM: � voir If a color is manually set with setColorToVoice, automatic color will not be applied for this voice. More... | |
GuidoErrCode | setRGBColorToVoice (PianoRoll *pr, int voiceNum, int r, int g, int b, int a) |
Sets a RGB color to a voice (first voice is number 1) (black by default) More... | |
GuidoErrCode | setHtmlColorToVoice (PianoRoll *pr, int voiceNum, long color) |
Sets a html color to a voice (first voice is number 1) (black by default) More... | |
GuidoErrCode | setColorToVoice (PianoRoll *pr, int voiceNum, const std::string &color) |
Sets a html color to a voice (first voice is number 1) (black by default) More... | |
GuidoErrCode | removeColorToVoice (PianoRoll *pr, int voiceNum) |
remove a color to a voice (first voice is number 1) (black by default) More... | |
GuidoErrCode | enableMeasureBars (PianoRoll *pr, bool enabled) |
Enables or not measure bars (false by default) More... | |
GuidoErrCode | setPitchLinesDisplayMode (PianoRoll *pr, int mode) |
Sets the pitch lines display mode (automatic by default). Use Pitch lines display mode constants to pick lines which will be be displayed. Example : "kCLine + kGLine" will displayed C and G line. "kNoLine" doesn't display any line. "kAutoLines" adjust line display according to piano roll pitch range (automatic possibilities : no line, C line, C and G line, chromatic scale, diatonic scale);. More... | |
Time2GraphicMap | getMap (PianoRoll *pr, int width, int height) |
Gets the piano roll map. More... | |
GuidoErrCode | onDraw (PianoRoll *pr, int width, int height, VGDevice *dev) |
Draw the piano roll on a VGDevice. More... | |
std::string | svgExport (PianoRoll *pr, int width, int height) |
svgExport Draw the piano roll on SVG device and return the xml string. More... | |
Variables | |
class_export | GUIDOPianoRollAdapter |
A C++ interface to the GUIDOPianoRoll API.
A C++ class to manupilate Piano roll.
PianoRoll* ar2PianoRoll | ( | PianoRollType | type, |
ARHandler | arh | ||
) |
Creates a new piano roll from AR, corresponding to type : simplePianoRoll -> basic piano roll trajectoryPianoRoll -> every event is graphically linked to the previous one.
type | the piano roll type |
arh | an AR handler |
GuidoErrCode destroyPianoRoll | ( | PianoRoll * | pr | ) |
Destroys a guido piano roll and releases all the associated ressources.
pr | a pianoroll previously created with ar2PianoRoll or midi2PianoRoll |
GuidoErrCode enableAutoVoicesColoration | ( | PianoRoll * | pr, |
bool | enabled | ||
) |
Enables or not the automatic voices coloration (not enabled by default) (not for a midi rendering) // REM: � voir If a color is manually set with setColorToVoice, automatic color will not be applied for this voice.
pr | a pianoroll previously created with ar2PianoRoll |
enabled | a boolean corresponding to the color state |
GuidoErrCode enableKeyboard | ( | PianoRoll * | pr, |
bool | enabled | ||
) |
Enables keyboard or not (not enabled by default)
pr | a pianoroll previously created with ar2PianoRoll or midi2PianoRoll |
enabled | a boolean corresponding to the keyboard draw state |
GuidoErrCode enableMeasureBars | ( | PianoRoll * | pr, |
bool | enabled | ||
) |
Enables or not measure bars (false by default)
pr | a pianoroll previously created with ar2PianoRoll or midi2PianoRoll |
enabled | a boolean corresponding to the measure bars draw state |
float getKeyboardWidth | ( | PianoRoll * | pr, |
int | height | ||
) |
Gets the piano roll keyboard width.
pr | a pianoroll previously created with ar2PianoRoll or midi2PianoRoll |
height | the height of the canvas (-1 to set the default height : 512) |
Time2GraphicMap getMap | ( | PianoRoll * | pr, |
int | width, | ||
int | height | ||
) |
Gets the piano roll map.
pr | a pianoroll previously created with ar2PianoRoll or midi2PianoRoll |
width | the width of the piano roll (-1 to set the default width : 1024) |
height | the height of the canvas (-1 to set the default height : 512) |
PianoRoll* midi2PianoRoll | ( | PianoRollType | type, |
const std::string & | midiFileName | ||
) |
Creates a new piano roll from Midi, corresponding to type : simplePianoRoll -> basic piano roll trajectoryPianoRoll -> every event is graphically linked to the previous one.
type | the piano roll type |
midiFileName | a midi file name |
GuidoErrCode onDraw | ( | PianoRoll * | pr, |
int | width, | ||
int | height, | ||
VGDevice * | dev | ||
) |
Draw the piano roll on a VGDevice.
pr | a pianoroll previously created with ar2PianoRoll or midi2PianoRoll |
width | the width on which piano roll will be drawn (-1 to set the default width : 1024) |
height | the height on which piano roll will be drawn (-1 to set the default height : 512) |
dev | the device on which piano will be drawn |
GuidoErrCode removeColorToVoice | ( | PianoRoll * | pr, |
int | voiceNum | ||
) |
remove a color to a voice (first voice is number 1) (black by default)
pr | a pianoroll previously created with GuidoAR2PianoRoll or GuidoMidi2PianoRoll |
voiceNum | the voice number (first voice is number 1) |
GuidoErrCode setColorToVoice | ( | PianoRoll * | pr, |
int | voiceNum, | ||
const std::string & | color | ||
) |
Sets a html color to a voice (first voice is number 1) (black by default)
pr | a pianoroll previously created with ar2PianoRoll or midi2PianoRoll |
voiceNum | the voice number (first voice is number 1) |
color | the html color name |
GuidoErrCode setHtmlColorToVoice | ( | PianoRoll * | pr, |
int | voiceNum, | ||
long | color | ||
) |
Sets a html color to a voice (first voice is number 1) (black by default)
pr | a pianoroll previously created with ar2PianoRoll or midi2PianoRoll |
voiceNum | the voice number (first voice is number 1) |
color | the html color (constants are defined in Colors.h) |
GuidoErrCode setLimits | ( | PianoRoll * | pr, |
LimitParams & | limitParams | ||
) |
Sets limits to a piano roll (start/end date, lower/higher pitch)
pr | a pianoroll previously created with ar2PianoRoll or midi2PianoRoll |
limitParams | the structure containing limits : start date (GuidoDate) (0/0 to adjust automatically start date to the score's start date) end date (GuidoDate) (0/0 to adjust automatically end date to the score's end date) minimal pitch (midi notation) (-1 to adjust automatically min pitch to the score's minimal pitch) maximal pitch (midi notation) (-1 to adjust automatically max pitch to the score's maximal pitch) Remark : minimal range pitch accepted is 1 octave. |
GuidoErrCode setPitchLinesDisplayMode | ( | PianoRoll * | pr, |
int | mode | ||
) |
Sets the pitch lines display mode (automatic by default). Use Pitch lines display mode constants to pick lines which will be be displayed. Example : "kCLine + kGLine" will displayed C and G line. "kNoLine" doesn't display any line. "kAutoLines" adjust line display according to piano roll pitch range (automatic possibilities : no line, C line, C and G line, chromatic scale, diatonic scale);.
pr | a pianoroll previously created with ar2PianoRoll or midi2PianoRoll |
mode | an int corresponding to the pitch lines display mode |
GuidoErrCode setRGBColorToVoice | ( | PianoRoll * | pr, |
int | voiceNum, | ||
int | r, | ||
int | g, | ||
int | b, | ||
int | a | ||
) |
Sets a RGB color to a voice (first voice is number 1) (black by default)
pr | a pianoroll previously created with ar2PianoRoll or midi2PianoRoll |
voiceNum | the voice number (first voice is number 1) |
r | the red param of RGB color |
g | the green param of RGB color |
b | the blue param of RGB color |
a | the alpha param of RGB color |
std::string svgExport | ( | PianoRoll * | pr, |
int | width, | ||
int | height | ||
) |
svgExport Draw the piano roll on SVG device and return the xml string.
pr | a pianoroll previously created with ar2PianoRoll or midi2PianoRoll |
width | the width on which piano roll will be drawn (-1 to set the default width : 1024) |
height | the height on which piano roll will be drawn (-1 to set the default height : 512) |
|
virtual |
class_export GUIDOPianoRollAdapter |