Package com.pahimar.repackage.cofh.lib.gui.element

Examples of com.pahimar.repackage.cofh.lib.gui.element.TabBase.draw()


            if (!tab.isVisible()) {
                continue;
            }
            // TODO: convert these over to foreground/background (maybe logic for top/bottom tabs?)
            if (tab.side == TabBase.LEFT) {
                tab.draw(0, yPosLeft);
                yPosLeft += tab.currentHeight;
            } else {
                tab.draw(xSize, yPosRight);
                yPosRight += tab.currentHeight;
            }
View Full Code Here


            // TODO: convert these over to foreground/background (maybe logic for top/bottom tabs?)
            if (tab.side == TabBase.LEFT) {
                tab.draw(0, yPosLeft);
                yPosLeft += tab.currentHeight;
            } else {
                tab.draw(xSize, yPosRight);
                yPosRight += tab.currentHeight;
            }
        }
    }
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.