Package transientlibs.preui.objects.gui.elements

Examples of transientlibs.preui.objects.gui.elements.InfoGroup


                result.setImage(Detonator.INSTANCE.imageProvider.getImage(setImage));
            }
        }

        if (byTypeCode == InfoGroupType) {
            result = new InfoGroup(setX, setY, setFont, null);
            if (setImage != -1) {
                result.setImage(Detonator.INSTANCE.imageProvider.getImage(setImage));
            }
        }
View Full Code Here



    public InfoGroup getInfoGroup (String byCode) {
        TextMarker temp = getTextMarker (byCode);

        InfoGroup ig = new InfoGroup (temp, masterState);
        replaceMarker (temp, ig);

        return ig;       
    }
View Full Code Here


//textBox = (InfoGroup) Detonator.INSTANCE.interfaceElements.get("maintext");

        //textBox = new InfoGroup (50, 100, Detonator.INSTANCE.fontProvider.produceFontCopy(Detonator.INSTANCE.fontProvider.Droid_Sans_24_Outline), state);
        textBox = new InfoGroup(50, 100, Detonator.INSTANCE.fontProvider.getDefaultFont(), state);


        //((TransientGDXFont) textBox.textFont).font

        //passInfoGroup(textBox);
View Full Code Here

        }
    }

    public InfoGroup addInfoGroup(int setX, int setY) {

        InfoGroup.lastInfoGroup = new InfoGroup(setX, setY, state.getButtonFont(), state);

        passMarker(InfoGroup.lastInfoGroup);

        return InfoGroup.lastInfoGroup;
    }
View Full Code Here

TOP

Related Classes of transientlibs.preui.objects.gui.elements.InfoGroup

Copyright © 2018 www.massapicom. 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.