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));
}
}
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++;
}
}
}
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);
}
Aggregations