Examples of ZLTextHyphenationInfo


Examples of org.geometerplus.zlibrary.text.hyphenation.ZLTextHyphenationInfo

                             */
                            dashWidth = font.charWidth('-');

                            //#if !(TinyMode || TinyModeExport || LightMode || LightModeExport)
                            if (hyphenator != null) {
                                ZLTextHyphenationInfo info = hyphenator.getInfo(
                                        buffer, parser.position, parser.length);

                                /*
                                 * try to hyphenate word, so that the largest
                                 * possible chunk is on this line
                                 */

                                /*
                                 * wordInfo.length - 2: starts from one before
                                 * the last
                                 */
                                for (int i = parser.length - 2; i > 0; i--) {
                                    if (info.isHyphenationPossible(i)) {
                                        wordPixelWidth = font.charsWidth(buffer,
                                                parser.position, i) + dashWidth;

                                        /*
                                         * This part of the word fits on the line
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.