Browse Source

Clarified the documentation for some LittleFoot functions

tags/2021-05-28
Tom Poole 6 years ago
parent
commit
d4c94439d1
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      modules/juce_blocks_basics/juce_LittleFootFunctions.dox

+ 6
- 2
modules/juce_blocks_basics/juce_LittleFootFunctions.dox View File

@@ -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…
Cancel
Save