Uses of Class
com.iragui.GUI

Packages that use GUI
  • Uses of GUI in com.iragui

    Constructors in com.iragui with parameters of type GUI
    Modifier
    Constructor
    Description
     
    Window(String name, int sizeX, int sizeY, int displayX, int displayY, boolean resizable, boolean decorated, boolean maximized, boolean exitOnClose, boolean redrawEveryFrame, GUI gui)
    Creates a new Window with the specified configuration.
  • Uses of GUI in com.iragui.listeners

    Constructors in com.iragui.listeners with parameters of type GUI
    Modifier
    Constructor
    Description
     
     
     
     
     
     
  • Uses of GUI in com.iragui.objects

    Fields in com.iragui.objects declared as GUI
    Modifier and Type
    Field
    Description
    protected GUI
    GUIObject.gui
    The parent GUI managing this object.
    Constructors in com.iragui.objects with parameters of type GUI
    Modifier
    Constructor
    Description
     
    AnimationObject(String name, int layer, GUI gui, int x, int y, int sizeX, int sizeY, boolean nearestFilter, boolean rgba, boolean updates, boolean includeKeyCallback, boolean includeMouseCallback, WrappedBufferedImage[] images)
    Constructs a new AnimationObject.
     
    ButtonObject(String name, int layer, GUI gui, int x, int y, int sizeX, int sizeY, boolean nearestFilter, boolean rgba, WrappedBufferedImage... images)
    Creates a new ButtonObject.
     
    GUIObject(String name, int layer, GUI gui, int x, int y, int sizeX, int sizeY, boolean nearestFilter, boolean rgba)
    Simplified constructor with callbacks and updates enabled.
     
    GUIObject(String name, int layer, GUI gui, int x, int y, int sizeX, int sizeY, boolean nearestFilter, boolean rgba, boolean includeKeyCallback, boolean includeMouseCallback, boolean updates)
    Constructs a new GUI object with full parameter control.
     
    ScreenObject(String name, int layer, GUI gui, int x, int y, int sizeX, int sizeY, boolean nearestFilter, boolean rgba, boolean preserveTextureIDOverride)
     
     
    SubWindowObject(String name, int layer, GUI gui, int x, int y, int sizeX, int sizeY, boolean nearestFilter, boolean rgba, Color bkgColor, Color topColor, boolean decorated, boolean resizable, Color titleColor, String title)
    Creates a new decorated or undecorated subwindow object.
     
    TextBoxObject(String name, int layer, GUI gui, int x, int y, int sizeX, int sizeY, boolean nearestFilter, boolean rgba, int lineSpacing)
    Constructs a new TextBoxObject.
     
    TextObject(String name, int layer, GUI gui, int x, int y, boolean nearestFilter, boolean rgba, String text, Font font, Color color, Color bkgColor, boolean antiAliasing)
    Constructs a new TextObject.
     
    WrappedBufferedImage(String name, int layer, GUI gui, int x, int y, boolean nearestFilter, boolean rgba, BufferedImage image)
    Creates a new wrapped image without directional variants.
     
    WrappedBufferedImage(String name, int layer, GUI gui, int x, int y, boolean nearestFilter, boolean rgba, BufferedImage image, boolean directional)
    Creates a new wrapped image with directional variants.
     
    WritableTextBoxObject(String name, int layer, GUI gui, int x, int y, int sizeX, int sizeY, boolean nearestFilter, boolean rgba, int lineSpacing, SubWindowObject window, Font font, Color textColor, Color backgroundColor, boolean antiAliasing)
    Creates a writable text box object.
  • Uses of GUI in com.iragui.util

    Methods in com.iragui.util with parameters of type GUI
    Modifier and Type
    Method
    Description
    ObjectUtils.createButtonObject(String name, int layer, GUI gui, int x, int y, int sizeX, int sizeY, boolean nearestFilter, boolean rgba, String... images)