diff options
author | Sven Gothel <[email protected]> | 2023-03-10 03:11:24 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-03-10 03:11:24 +0100 |
commit | 3131eaaf5272ca3f0011e334eb08c6ba68702a6c (patch) | |
tree | 73f2e61e9986d2b72cad12ddc2b6cd5193e53028 /src/graphui/classes/jogamp/graph | |
parent | 52e4bc6cd4ace3fdf7ccaf790566500670709a44 (diff) |
GraphUI: Promote API to JOGL via graphui.jar or within any jogl-all*.jar (WIP)
Root package is 'com.jogamp.graph.ui.gl', i.e. a sub-package of Graph denoting UI and OpenGL usage.
Implementation will stay small, hence relative files size costs are minimal.
Source and build is in parallel to nativewindow, jogl and newt
and has a dependency to all of them.
The NEWT dependencies are merely the input listener ..
Diffstat (limited to 'src/graphui/classes/jogamp/graph')
-rw-r--r-- | src/graphui/classes/jogamp/graph/ui/shapes/Label0.java | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/src/graphui/classes/jogamp/graph/ui/shapes/Label0.java b/src/graphui/classes/jogamp/graph/ui/shapes/Label0.java new file mode 100644 index 000000000..1a7520daa --- /dev/null +++ b/src/graphui/classes/jogamp/graph/ui/shapes/Label0.java @@ -0,0 +1,81 @@ +/** + * Copyright 2010-2023 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 jogamp.graph.ui.shapes; + +import com.jogamp.graph.curve.Region; +import com.jogamp.graph.curve.opengl.TextRegionUtil; +import com.jogamp.graph.font.Font; +import com.jogamp.graph.geom.plane.AffineTransform; +import com.jogamp.opengl.math.geom.AABBox; + +public class Label0 { + protected Font font; + protected String text; + protected final float[] rgbaColor; + + public Label0(final Font font, final String text, final float[] rgbaColor) { + this.font = font; + this.text = text; + this.rgbaColor = rgbaColor; + } + + public final String getText() { return text; } + + public final float[] getColor() { return rgbaColor; } + + public final void setColor(final float r, final float g, final float b, final float a) { + this.rgbaColor[0] = r; + this.rgbaColor[1] = g; + this.rgbaColor[2] = b; + this.rgbaColor[3] = a; + } + + public final void setText(final String text) { + this.text = text; + } + + public final Font getFont() { return font; } + + public final void setFont(final Font font) { + this.font = font; + } + + public final AABBox addShapeToRegion(final float scale, final Region region, final AffineTransform tLeft, + final AffineTransform tmp1, final AffineTransform tmp2, final AffineTransform tmp3) + { + tmp1.setTransform(tLeft); + tmp1.scale(scale, scale, tmp2); + return TextRegionUtil.addStringToRegion(region, font, tmp1, text, rgbaColor, tmp2, tmp3); + } + + @Override + public final String toString(){ + final int m = Math.min(text.length(), 8); + return "Label0 ['" + text.substring(0, m) + "']"; + } +} |