From dc3df3edd5843bde0c1335d6a8e460b2c832aa48 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sat, 17 Jun 2017 08:12:18 +0300 Subject: full project files --- .../IModGuiFactory.RuntimeOptionGuiHandler.html | 281 +++++++++++++++++++++ 1 file changed, 281 insertions(+) create mode 100644 javadoc/cpw/mods/fml/client/IModGuiFactory.RuntimeOptionGuiHandler.html (limited to 'javadoc/cpw/mods/fml/client/IModGuiFactory.RuntimeOptionGuiHandler.html') diff --git a/javadoc/cpw/mods/fml/client/IModGuiFactory.RuntimeOptionGuiHandler.html b/javadoc/cpw/mods/fml/client/IModGuiFactory.RuntimeOptionGuiHandler.html new file mode 100644 index 0000000..0d8e3a4 --- /dev/null +++ b/javadoc/cpw/mods/fml/client/IModGuiFactory.RuntimeOptionGuiHandler.html @@ -0,0 +1,281 @@ + + + + + +IModGuiFactory.RuntimeOptionGuiHandler (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.client
+

Interface IModGuiFactory.RuntimeOptionGuiHandler

+
+
+
+
    +
  • +
    +
    Enclosing interface:
    +
    IModGuiFactory
    +
    +
    +
    +
    public static interface IModGuiFactory.RuntimeOptionGuiHandler
    +
    Responsible for painting the mod specific section of runtime options GUI for a particular category
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidactionCallback(int actionId) +
      Called if a widget with id >= 100 is fired.
      +
      voidaddWidgets(java.util.List<Gui> widgetList, + int x, + int y, + int w, + int h) +
      Called to add widgets to the screen, such as buttons.
      +
      voidclose() +
      Called when this handler is about to go away (probably replaced by another one, or closing the + option screen)
      +
      voidpaint(int x, + int y, + int w, + int h) +
      Called to paint the rectangle specified.
      +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        addWidgets

        +
        void addWidgets(java.util.List<Gui> widgetList,
        +              int x,
        +              int y,
        +              int w,
        +              int h)
        +
        Called to add widgets to the screen, such as buttons. + GUI identifier numbers should start at 100 and increase. + The callback will be through actionCallback(int)
        +
        Parameters:
        x - X
        y - Y
        w - width
        h - height
        +
      • +
      + + + +
        +
      • +

        paint

        +
        void paint(int x,
        +         int y,
        +         int w,
        +         int h)
        +
        Called to paint the rectangle specified.
        +
        Parameters:
        x - X
        y - Y
        w - width
        h - height
        +
      • +
      + + + +
        +
      • +

        actionCallback

        +
        void actionCallback(int actionId)
        +
        Called if a widget with id >= 100 is fired.
        +
        Parameters:
        actionId - the actionId of the firing widget
        +
      • +
      + + + +
        +
      • +

        close

        +
        void close()
        +
        Called when this handler is about to go away (probably replaced by another one, or closing the + option screen)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + -- cgit v1.2.3