Package org.lwjgl.sdl

Class SDLMessageBox

java.lang.Object
org.lwjgl.sdl.SDLMessageBox

public class SDLMessageBox extends Object
  • Field Details

    • SDL_MESSAGEBOX_ERROR

      public static final int SDL_MESSAGEBOX_ERROR
      See Also:
    • SDL_MESSAGEBOX_WARNING

      public static final int SDL_MESSAGEBOX_WARNING
      See Also:
    • SDL_MESSAGEBOX_INFORMATION

      public static final int SDL_MESSAGEBOX_INFORMATION
      See Also:
    • SDL_MESSAGEBOX_BUTTONS_LEFT_TO_RIGHT

      public static final int SDL_MESSAGEBOX_BUTTONS_LEFT_TO_RIGHT
      See Also:
    • SDL_MESSAGEBOX_BUTTONS_RIGHT_TO_LEFT

      public static final int SDL_MESSAGEBOX_BUTTONS_RIGHT_TO_LEFT
      See Also:
    • SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT

      public static final int SDL_MESSAGEBOX_BUTTON_RETURNKEY_DEFAULT
      See Also:
    • SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT

      public static final int SDL_MESSAGEBOX_BUTTON_ESCAPEKEY_DEFAULT
      See Also:
    • SDL_MESSAGEBOX_COLOR_BACKGROUND

      public static final int SDL_MESSAGEBOX_COLOR_BACKGROUND
      See Also:
    • SDL_MESSAGEBOX_COLOR_TEXT

      public static final int SDL_MESSAGEBOX_COLOR_TEXT
      See Also:
    • SDL_MESSAGEBOX_COLOR_BUTTON_BORDER

      public static final int SDL_MESSAGEBOX_COLOR_BUTTON_BORDER
      See Also:
    • SDL_MESSAGEBOX_COLOR_BUTTON_BACKGROUND

      public static final int SDL_MESSAGEBOX_COLOR_BUTTON_BACKGROUND
      See Also:
    • SDL_MESSAGEBOX_COLOR_BUTTON_SELECTED

      public static final int SDL_MESSAGEBOX_COLOR_BUTTON_SELECTED
      See Also:
    • SDL_MESSAGEBOX_COLOR_COUNT

      public static final int SDL_MESSAGEBOX_COLOR_COUNT
      See Also:
  • Method Details

    • nSDL_ShowMessageBox

      public static boolean nSDL_ShowMessageBox(long messageboxdata, long buttonid)
      bool SDL_ShowMessageBox(SDL_MessageBoxData const * messageboxdata, int * buttonid)
    • SDL_ShowMessageBox

      public static boolean SDL_ShowMessageBox(SDL_MessageBoxData messageboxdata, @Nullable IntBuffer buttonid)
      bool SDL_ShowMessageBox(SDL_MessageBoxData const * messageboxdata, int * buttonid)
    • nSDL_ShowSimpleMessageBox

      public static boolean nSDL_ShowSimpleMessageBox(int flags, long title, long message, long window)
      bool SDL_ShowSimpleMessageBox(SDL_MessageBoxFlags flags, char const * title, char const * message, SDL_Window * window)
    • SDL_ShowSimpleMessageBox

      public static boolean SDL_ShowSimpleMessageBox(int flags, ByteBuffer title, ByteBuffer message, long window)
      bool SDL_ShowSimpleMessageBox(SDL_MessageBoxFlags flags, char const * title, char const * message, SDL_Window * window)
    • SDL_ShowSimpleMessageBox

      public static boolean SDL_ShowSimpleMessageBox(int flags, CharSequence title, CharSequence message, long window)
      bool SDL_ShowSimpleMessageBox(SDL_MessageBoxFlags flags, char const * title, char const * message, SDL_Window * window)