Edit C:\Program Files\Java\jdk1.8.0_121\com\sun\javafx\scene\text\GlyphList.java
/* * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.javafx.scene.text; import com.sun.javafx.geom.Point2D; import com.sun.javafx.geom.RectBounds; public interface GlyphList { /** * Returns the number of glyphs in GlyphList. */ public int getGlyphCount(); /** * Returns the glyph code for the given glyphIndex. */ public int getGlyphCode(int glyphIndex); /** * The x position for the given glyphIndex relative the GlyphList. */ public float getPosX(int glyphIndex); /** * The y position for the given glyphIndex relative the GlyphList. */ public float getPosY(int glyphIndex); /** * Returns the width of the GlyphList */ public float getWidth(); /** * Returns the height of the GlyphList */ public float getHeight(); /** * See TextLine#getBounds() * (used outside text layout in rendering and span bounds) */ public RectBounds getLineBounds(); /** * The top-left location of the GlyphList relative to * the origin of the Text Layout. */ public Point2D getLocation(); /** * Maps the given glyph index to the char offset. * (used during rendering (selection)) */ public int getCharOffset(int glyphIndex); /** * Means that this GlyphList was shaped using complex processing (ICU), * either because it is complex script or because font features were * requested. * (used outside text layout in rendering) */ public boolean isComplex(); /** * Used during layout children (for rich text) * can be null (for non-rich text) but never null for rich text. */ public TextSpan getTextSpan(); }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de