TSDL_ResizeEvent

Name

TSDL_ResizeEvent -- Window resize event structure

Structure Definition

  TSDL_ResizeEvent = record
type_: UInt8; // SDL_VIDEORESIZE
w: Integer; // New width
h: Integer; // New height
end;

Structure Data

type SDL_VIDEORESIZE
w , h New width and height of the window

Description

TSDL_ResizeEvent is a member of the TSDL_Event union and is used when an event of type SDL_VIDEORESIZE is reported.

When SDL_RESIZABLE is passed as a flag to SDL_SetVideoMode the user is allowed to resize the applications window. When the window is resized an SDL_VIDEORESIZE is report, with the new window width and height values stored in w and h, respectively. When an SDL_VIDEORESIZE is recieved the window should be resized to the new dimensions using SDL_SetVideoMode .

See Also

TSDL_Event , SDL_SetVideoMode