Guest User

Untitled

a guest
Jun 26th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 KB | None | 0 0
  1. package net.minecraftforge.client.event;
  2.  
  3. import java.util.Collections;
  4. import java.util.List;
  5.  
  6. import net.minecraft.client.gui.FontRenderer;
  7. import net.minecraftforge.fml.common.eventhandler.Cancelable;
  8. import net.minecraftforge.fml.common.eventhandler.Event;
  9.  
  10. public abstract class RenderTooltipEvent extends Event
  11. {
  12. protected final List<String> lines;
  13. protected int x;
  14. protected int y;
  15.  
  16. public RenderTooltipEvent(List<String> lines, int x, int y)
  17. {
  18. this.lines = Collections.unmodifiableList(lines); // Leave editing to ItemTooltipEvent
  19. this.x = x;
  20. this.y = y;
  21. }
  22.  
  23. public List<String> getLines()
  24. {
  25. return lines;
  26. }
  27.  
  28. public int getX()
  29. {
  30. return x;
  31. }
  32.  
  33. public int getY()
  34. {
  35. return y;
  36. }
  37.  
  38. @Cancelable
  39. public static class Pre extends RenderTooltipEvent
  40. {
  41.  
  42. private int screenWidth;
  43. private int screenHeight;
  44. private int maxWidth;
  45. private FontRenderer fr;
  46.  
  47. public Pre(List<String> lines, int x, int y, int screenWidth, int screenHeight, int maxWidth, FontRenderer fr)
  48. {
  49. super(lines, x, y);
  50. this.screenWidth = screenWidth;
  51. this.screenHeight = screenHeight;
  52. this.maxWidth = maxWidth;
  53. this.fr = fr;
  54. }
  55.  
  56. public int getScreenWidth()
  57. {
  58. return screenWidth;
  59. }
  60.  
  61. public void setScreenWidth(int screenWidth)
  62. {
  63. this.screenWidth = screenWidth;
  64. }
  65.  
  66. public int getScreenHeight()
  67. {
  68. return screenHeight;
  69. }
  70.  
  71. public void setScreenHeight(int screenHeight)
  72. {
  73. this.screenHeight = screenHeight;
  74. }
  75.  
  76. public int getMaxWidth()
  77. {
  78. return maxWidth;
  79. }
  80.  
  81. public void setMaxWidth(int maxWidth)
  82. {
  83. this.maxWidth = maxWidth;
  84. }
  85.  
  86. public FontRenderer getFontRenderer()
  87. {
  88. return fr;
  89. }
  90.  
  91. public void setFontRenderer(FontRenderer fr)
  92. {
  93. this.fr = fr;
  94. }
  95.  
  96. public void setX(int x)
  97. {
  98. this.x = x;
  99. }
  100.  
  101. public void setY(int y)
  102. {
  103. this.y = y;
  104. }
  105. }
  106.  
  107. public static class Post extends RenderTooltipEvent
  108. {
  109. private final int width;
  110. private final int height;
  111.  
  112. public Post(List<String> textLines, int x, int y, int width, int height)
  113. {
  114. super(textLines, x, y);
  115. this.width = width;
  116. this.height = height;
  117. }
  118.  
  119. public int getWidth()
  120. {
  121. return width;
  122. }
  123.  
  124. public int getHeight()
  125. {
  126. return height;
  127. }
  128. }
  129. }
Add Comment
Please, Sign In to add comment