1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
/**
* Copyright 2023-2024 JogAmp Community. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY JogAmp Community ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JogAmp Community OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of JogAmp Community.
*/
package com.jogamp.graph.ui;
import com.jogamp.graph.curve.Region;
import com.jogamp.graph.curve.opengl.GLRegion;
import com.jogamp.graph.font.Font;
import com.jogamp.graph.ui.shapes.Button;
import com.jogamp.math.Vec4f;
import com.jogamp.math.geom.AABBox;
import com.jogamp.math.geom.plane.AffineTransform;
import com.jogamp.math.util.PMVMatrix4f;
import com.jogamp.opengl.GLProfile;
/** A HUD text {@link Tooltip} for {@link Shape}, see {@link Shape#setToolTip(Tooltip)}. */
public class TooltipText extends Tooltip {
/** Text of this tooltip */
private final CharSequence tipText;
/** Font of this tooltip */
private final Font tipFont;
private final float scaleY;
private final int renderModes;
private final Vec4f backColor = new Vec4f();
private final Vec4f labelColor = new Vec4f();
/**
* Ctor of {@link TooltipText}.
* @param tipText HUD tip text
* @param tipFont HUD tip font
* @param backColor HUD tip background color
* @param labelColor HUD tip label color
* @param scaleY HUD tip vertical scale against tool height
* @param delayMS delay until HUD tip is visible after timer start (mouse moved)
* @param renderModes Graph's {@link Region} render modes, see {@link GLRegion#create(GLProfile, int, TextureSequence) create(..)}.
*/
public TooltipText(final CharSequence tipText, final Font tipFont, final Vec4f backColor, final Vec4f labelColor,
final float scaleY, final long delayMS, final int renderModes)
{
super(delayMS);
this.tipText = tipText;
this.tipFont = tipFont;
this.scaleY = scaleY;
this.renderModes = renderModes;
this.backColor.set(backColor);
this.labelColor.set(labelColor);
}
/**
* Ctor of {@link TooltipText} using {@link Tooltip#DEFAULT_DELAY}, {@link Region#VBAA_RENDERING_BIT}
* and a slightly transparent yellow background with an almost black opaque text color.
* @param tipText HUD tip text
* @param tipFont HUD tip font
* @param scaleY HUD tip vertical scale against tool height
* @param tool the tool shape for this tip
*/
public TooltipText(final CharSequence tipText, final Font tipFont, final float scaleY) {
this(tipText, tipFont, new Vec4f(1, 1, 0, 0.80f), new Vec4f(0.1f, 0.1f, 0.1f, 1), scaleY, Tooltip.DEFAULT_DELAY, Region.VBAA_RENDERING_BIT);
}
@Override
public Shape createTip(final Scene scene, final PMVMatrix4f pmv) {
final float zEps = scene.getZEpsilon(16);
// Precompute text-box size .. guessing pixelSize
final AffineTransform tempT1 = new AffineTransform();
final AffineTransform tempT2 = new AffineTransform();
final AABBox tipBox_em = tipFont.getGlyphBounds(tipText, tempT1, tempT2);
// final AABBox toolAABox = scene.getBounds(new PMVMatrix4f(), tool);
final AABBox toolAABox = getTool().getBounds().transform(pmv.getMv(), new AABBox());
final float h = toolAABox.getHeight() * scaleY;
final float w = tipBox_em.getWidth() / tipBox_em.getHeight() * h;
final AABBox sceneAABox = scene.getBounds();
final float xpos, ypos;
if( toolAABox.getCenter().x()-w/2 < sceneAABox.getLow().x() ) {
xpos = sceneAABox.getLow().x();
} else {
xpos = toolAABox.getCenter().x()-w/2;
}
if( toolAABox.getHigh().y() > sceneAABox.getHigh().y() - h ) {
ypos = sceneAABox.getHigh().y() - h;
} else {
ypos = toolAABox.getHigh().y();
}
final Button ntip = (Button) new Button(renderModes, tipFont, tipText, w, h, zEps)
.setPerp()
.moveTo(xpos, ypos, 100*zEps)
.setColor(backColor)
// .setBorder(0.05f).setBorderColor(0, 0, 0, 1)
.setInteractive(false);
ntip.setLabelColor(labelColor);
ntip.setSpacing(0.10f, 0.10f);
return ntip;
}
}
|