Search in sources :

Example 1 with ButtonBack

use of amerifrance.guideapi.button.ButtonBack in project Guide-API by TeamAmeriFrance.

the class GuiEntry method initGui.

@Override
public void initGui() {
    super.initGui();
    entry.onInit(book, category, null, player, bookStack);
    this.buttonList.clear();
    this.pageWrapperList.clear();
    guiLeft = (this.width - this.xSize) / 2;
    guiTop = (this.height - this.ySize) / 2;
    this.buttonList.add(buttonBack = new ButtonBack(0, guiLeft + xSize / 6, guiTop, this));
    this.buttonList.add(buttonNext = new ButtonNext(1, guiLeft + 4 * xSize / 6, guiTop + 5 * ySize / 6, this));
    this.buttonList.add(buttonPrev = new ButtonPrev(2, guiLeft + xSize / 5, guiTop + 5 * ySize / 6, this));
    for (IPage page : this.entry.pageList) {
        page.onInit(book, category, entry, player, bookStack, this);
        pageWrapperList.add(new PageWrapper(this, book, category, entry, page, guiLeft, guiTop, player, this.fontRenderer, bookStack));
    }
}
Also used : ButtonBack(amerifrance.guideapi.button.ButtonBack) IPage(amerifrance.guideapi.api.IPage) PageWrapper(amerifrance.guideapi.wrapper.PageWrapper) ButtonPrev(amerifrance.guideapi.button.ButtonPrev) ButtonNext(amerifrance.guideapi.button.ButtonNext)

Example 2 with ButtonBack

use of amerifrance.guideapi.button.ButtonBack in project Guide-API by TeamAmeriFrance.

the class GuiCategory method initGui.

@Override
public void initGui() {
    super.initGui();
    this.buttonList.clear();
    this.entryWrapperMap.clear();
    guiLeft = (this.width - this.xSize) / 2;
    guiTop = (this.height - this.ySize) / 2;
    this.buttonList.add(buttonBack = new ButtonBack(0, guiLeft + xSize / 6, guiTop, this));
    this.buttonList.add(buttonNext = new ButtonNext(1, guiLeft + 4 * xSize / 6, guiTop + 5 * ySize / 6, this));
    this.buttonList.add(buttonPrev = new ButtonPrev(2, guiLeft + xSize / 5, guiTop + 5 * ySize / 6, this));
    int eX = guiLeft + 37;
    int eY = guiTop + 15;
    int i = 0;
    int pageNumber = 0;
    List<EntryAbstract> entries = Lists.newArrayList(category.entries.values());
    for (EntryAbstract entry : entries) {
        entry.onInit(book, category, this, player, bookStack);
        entryWrapperMap.put(pageNumber, new EntryWrapper(this, book, category, entry, eX, eY, 4 * xSize / 6, 10, player, this.fontRenderer, bookStack));
        eY += 13;
        i++;
        if (i >= 11) {
            i = 0;
            eY = guiTop + 15;
            pageNumber++;
        }
    }
}
Also used : ButtonBack(amerifrance.guideapi.button.ButtonBack) EntryAbstract(amerifrance.guideapi.api.impl.abstraction.EntryAbstract) EntryWrapper(amerifrance.guideapi.wrapper.EntryWrapper) ButtonPrev(amerifrance.guideapi.button.ButtonPrev) ButtonNext(amerifrance.guideapi.button.ButtonNext)

Example 3 with ButtonBack

use of amerifrance.guideapi.button.ButtonBack in project Guide-API by TeamAmeriFrance.

the class GuiSearch method initGui.

@Override
public void initGui() {
    buttonList.clear();
    guiLeft = (this.width - this.xSize) / 2;
    guiTop = (this.height - this.ySize) / 2;
    addButton(new ButtonBack(0, guiLeft + xSize / 6, guiTop, this));
    addButton(buttonNext = new ButtonNext(1, guiLeft + 4 * xSize / 6, guiTop + 5 * ySize / 6, this));
    addButton(buttonPrev = new ButtonPrev(2, guiLeft + xSize / 5, guiTop + 5 * ySize / 6, this));
    searchField = new GuiTextField(3, fontRenderer, guiLeft + 43, guiTop + 12, 100, 10);
    searchField.setEnableBackgroundDrawing(false);
    searchResults = getMatches(book, null, player, bookStack);
}
Also used : ButtonBack(amerifrance.guideapi.button.ButtonBack) ButtonPrev(amerifrance.guideapi.button.ButtonPrev) ButtonNext(amerifrance.guideapi.button.ButtonNext)

Aggregations

ButtonBack (amerifrance.guideapi.button.ButtonBack)3 ButtonNext (amerifrance.guideapi.button.ButtonNext)3 ButtonPrev (amerifrance.guideapi.button.ButtonPrev)3 IPage (amerifrance.guideapi.api.IPage)1 EntryAbstract (amerifrance.guideapi.api.impl.abstraction.EntryAbstract)1 EntryWrapper (amerifrance.guideapi.wrapper.EntryWrapper)1 PageWrapper (amerifrance.guideapi.wrapper.PageWrapper)1