Skip to content

SdlShowSimpleMessageBox

Display a simple modal message box.

If your needs aren't complex, this function is preferred over SdlShowMessageBox.

This function should be called on the thread that created the parent window, or on the main thread if the messagebox has no parent. It will block execution of that thread until the user clicks a button or closes the messagebox.

This function may be called at any time, even before SdlInit. This makes it useful for reporting errors like a failure to create a renderer or OpenGL context.

On X11, SDL rolls its own dialog box with X11 primitives instead of a formal toolkit like GTK+ or Qt.

Note that if SdlInit would fail because there isn't any available video target, this function is likely to fail for the same reasons. If this is a concern, check the return value from this function and fall back to writing to stderr if you can.

Definition

Unit: Neslib.Sdl3.Additional

procedure SdlShowSimpleMessageBox(const AFlags: TSdlMessageBoxFlags; 
  const ATitle, AMessage: String); overload

Parameters

AFlags: TSdlMessageBoxFlags : Message box flags.

ATitle: String : Title.

AMessage: String : Message text.

Exceptions

ESdlError: Raised on failure.

See Also