mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Clarified the documentation for some LittleFoot functions
This commit is contained in:
parent
095a0db589
commit
2be9bc95c2
1 changed files with 6 additions and 2 deletions
|
|
@ -272,21 +272,25 @@ void handleButtonDown (int index);
|
|||
*/
|
||||
void handleButtonUp (int index);
|
||||
|
||||
/** Called when a control block button is pressed.
|
||||
/** Call this when a control block button is pressed to trigger the buttons default behaviour.
|
||||
|
||||
@param buttonIndex the index of the button
|
||||
|
||||
@note Requires >= 0.2.5 firmware
|
||||
@note Only valid with a control block
|
||||
|
||||
@see initControl onControlRelease
|
||||
*/
|
||||
void onControlPress (int buttonIndex);
|
||||
|
||||
/** Called when a control block button is released.
|
||||
/** Call this when a control block button is released to trigger the buttons default behaviour.
|
||||
|
||||
@param buttonIndex the index of the button
|
||||
|
||||
@note Requires >= 0.2.5 firmware
|
||||
@note Only valid with a control block
|
||||
|
||||
@see initControl onControlPress
|
||||
*/
|
||||
void onControlRelease (int buttonIndex);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue