You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
Java
36 lines
1.0 KiB
Java
package cpw.mods.fml.client;
|
|
|
|
import net.minecraft.client.gui.GuiButton;
|
|
import net.minecraft.client.gui.GuiOptionButton;
|
|
import net.minecraft.client.resources.I18n;
|
|
import cpw.mods.fml.common.StartupQuery;
|
|
|
|
public class GuiConfirmation extends GuiNotification
|
|
{
|
|
public GuiConfirmation(StartupQuery query)
|
|
{
|
|
super(query);
|
|
}
|
|
|
|
/**
|
|
* Adds the buttons (and other controls) to the screen in question.
|
|
*/
|
|
@SuppressWarnings("unchecked")
|
|
@Override
|
|
public void initGui()
|
|
{
|
|
this.buttonList.add(new GuiOptionButton(0, this.width / 2 - 155, this.height - 38, I18n.format("gui.yes")));
|
|
this.buttonList.add(new GuiOptionButton(1, this.width / 2 - 155 + 160, this.height - 38, I18n.format("gui.no")));
|
|
}
|
|
|
|
@Override
|
|
protected void actionPerformed(GuiButton button)
|
|
{
|
|
if (button.enabled && (button.id == 0 || button.id == 1))
|
|
{
|
|
FMLClientHandler.instance().showGuiScreen(null);
|
|
query.setResult(button.id == 0);
|
|
query.finish();
|
|
}
|
|
}
|
|
} |