|
YATS/Forge Documentation
|
Public Member Functions | |
| void | displayProgressMessage (String par1Str) |
| void | resetProgressAndMessage (String par1Str) |
| void | resetProgresAndWorkingMessage (String par1Str) |
| void | setLoadingProgress (int par1) |
| void | onNoMoreProgress () |
| void | drawScreen (int par1, int par2, float par3) |
Public Member Functions inherited from net.minecraft.client.gui.GuiScreen | |
| void | drawScreen (int par1, int par2, float par3) |
| void | setWorldAndResolution (Minecraft par1Minecraft, int par2, int par3) |
| void | initGui () |
| void | handleInput () |
| void | handleMouseInput () |
| void | handleKeyboardInput () |
| void | updateScreen () |
| void | onGuiClosed () |
| void | drawDefaultBackground () |
| void | drawWorldBackground (int par1) |
| void | drawBackground (int par1) |
| boolean | doesGuiPauseGame () |
| void | confirmClicked (boolean par1, int par2) |
Public Member Functions inherited from net.minecraft.client.gui.Gui | |
| void | drawCenteredString (FontRenderer par1FontRenderer, String par2Str, int par3, int par4, int par5) |
| void | drawString (FontRenderer par1FontRenderer, String par2Str, int par3, int par4, int par5) |
| void | drawTexturedModalRect (int par1, int par2, int par3, int par4, int par5, int par6) |
| void | drawTexturedModelRectFromIcon (int par1, int par2, Icon par3Icon, int par4, int par5) |
Additional Inherited Members | |
Static Public Member Functions inherited from net.minecraft.client.gui.GuiScreen | |
| static String | getClipboardString () |
| static void | setClipboardString (String par0Str) |
| static boolean | isCtrlKeyDown () |
| static boolean | isShiftKeyDown () |
Public Attributes inherited from net.minecraft.client.gui.GuiScreen | |
| int | width |
| int | height |
| boolean | allowUserInput = false |
| GuiParticle | guiParticles |
Static Public Attributes inherited from net.minecraft.client.gui.GuiScreen | |
| static final boolean | isMacOs = Minecraft.getOs() == EnumOS.MACOS |
Protected Member Functions inherited from net.minecraft.client.gui.GuiScreen | |
| void | keyTyped (char par1, int par2) |
| void | mouseClicked (int par1, int par2, int par3) |
| void | mouseMovedOrUp (int par1, int par2, int par3) |
| void | func_85041_a (int par1, int par2, int par3, long par4) |
| void | actionPerformed (GuiButton par1GuiButton) |
Protected Attributes inherited from net.minecraft.client.gui.GuiScreen | |
| Minecraft | mc |
| List | buttonList = new ArrayList() |
| FontRenderer | fontRenderer |
| void net.minecraft.client.gui.GuiProgress.displayProgressMessage | ( | String | par1Str) |
"Saving level", or the loading,or downloading equivelent
Implements net.minecraft.util.IProgressUpdate.
| void net.minecraft.client.gui.GuiProgress.drawScreen | ( | int | par1, |
| int | par2, | ||
| float | par3 | ||
| ) |
Draws the screen and all the components in it.
| void net.minecraft.client.gui.GuiProgress.onNoMoreProgress | ( | ) |
called when there is no more progress to be had, both on completion and failure
Implements net.minecraft.util.IProgressUpdate.
| void net.minecraft.client.gui.GuiProgress.resetProgresAndWorkingMessage | ( | String | par1Str) |
This is called with "Working..." by resetProgressAndMessage
Implements net.minecraft.util.IProgressUpdate.
| void net.minecraft.client.gui.GuiProgress.resetProgressAndMessage | ( | String | par1Str) |
this string, followed by "working..." and then the "% complete" are the 3 lines shown. This resets progress to 0, and the WorkingString to "working...".
Implements net.minecraft.util.IProgressUpdate.
| void net.minecraft.client.gui.GuiProgress.setLoadingProgress | ( | int | par1) |
Updates the progress bar on the loading screen to the specified amount. Args: loadProgress
Implements net.minecraft.util.IProgressUpdate.