mirror of
https://github.com/sojamo/controlp5
synced 2024-11-06 06:43:22 +01:00
113 lines
2.3 KiB
Plaintext
113 lines
2.3 KiB
Plaintext
|
/**
|
||
|
* ControlP5 Tooltip
|
||
|
*
|
||
|
* add a tooltip to a controller.
|
||
|
* hover your mouse on top of a slider in the example and wait
|
||
|
* for 1 second for the tooltip to appear.
|
||
|
*
|
||
|
* find a list of public methods available for the Tooltip Controller
|
||
|
* at the bottom of this sketch.
|
||
|
*
|
||
|
* NOTE: currently does not work for custom PGraphics context
|
||
|
*
|
||
|
* by Andreas Schlegel, 2011
|
||
|
* www.sojamo.de/libraries/controlp5
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
import controlP5.*;
|
||
|
|
||
|
|
||
|
ControlP5 cp5;
|
||
|
|
||
|
float s1 = 20, s2 = 100;
|
||
|
|
||
|
void setup() {
|
||
|
size(700,400);
|
||
|
cp5 = new ControlP5(this);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
// sorry, Tooltip is currently not working
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
cp5.begin(100,100);
|
||
|
cp5.addSlider("s1",10,200).linebreak();
|
||
|
cp5.addSlider("s2",0,150);
|
||
|
cp5.end();
|
||
|
|
||
|
cp5.getTooltip().setDelay(500);
|
||
|
cp5.getTooltip().register("s1","Changes the size of the ellipse.");
|
||
|
cp5.getTooltip().register("s2","Changes the Background");
|
||
|
|
||
|
smooth();
|
||
|
noStroke();
|
||
|
}
|
||
|
|
||
|
|
||
|
void keyPressed() {
|
||
|
println("unregistering the tooltip for s2");
|
||
|
cp5.getTooltip().unregister("s2");
|
||
|
}
|
||
|
void draw() {
|
||
|
background(s2);
|
||
|
fill(255,100);
|
||
|
ellipse(width/2, height/2, s1,s1);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
/*
|
||
|
a list of all methods available for the Tooltip Controller
|
||
|
use ControlP5.printPublicMethodsFor(Tooltip.class);
|
||
|
to print the following list into the console.
|
||
|
|
||
|
You can find further details about class Tooltip in the javadoc.
|
||
|
|
||
|
Format:
|
||
|
ClassName : returnType methodName(parameter type)
|
||
|
|
||
|
|
||
|
controlP5.Tooltip : Label getLabel()
|
||
|
controlP5.Tooltip : Tooltip disable()
|
||
|
controlP5.Tooltip : Tooltip enable()
|
||
|
controlP5.Tooltip : Tooltip register(Controller, String)
|
||
|
controlP5.Tooltip : Tooltip register(String, String)
|
||
|
controlP5.Tooltip : Tooltip setAlpha(int)
|
||
|
controlP5.Tooltip : Tooltip setBorder(int)
|
||
|
controlP5.Tooltip : Tooltip setColorBackground(int)
|
||
|
controlP5.Tooltip : Tooltip setColorLabel(int)
|
||
|
controlP5.Tooltip : Tooltip setDelay(long)
|
||
|
controlP5.Tooltip : Tooltip setDisplay(ControllerDisplay)
|
||
|
controlP5.Tooltip : Tooltip setHeight(int)
|
||
|
controlP5.Tooltip : Tooltip setLabel(Label)
|
||
|
controlP5.Tooltip : Tooltip setPositionOffset(float, float)
|
||
|
controlP5.Tooltip : Tooltip setWidth(int)
|
||
|
controlP5.Tooltip : Tooltip unregister(Controller)
|
||
|
controlP5.Tooltip : Tooltip unregister(String)
|
||
|
controlP5.Tooltip : boolean isEnabled()
|
||
|
controlP5.Tooltip : int getBorder()
|
||
|
java.lang.Object : String toString()
|
||
|
java.lang.Object : boolean equals(Object)
|
||
|
|
||
|
*/
|
||
|
|
||
|
|
||
|
|