Penguin
Blame: SDL_ResizeEvent(3)
EditPageHistoryDiffInfoLikePages
Annotated edit history of SDL_ResizeEvent(3) version 2 showing authors affecting page license. View with all changes included.
Rev Author # Line
1 perry 1 SDL_!ResizeEvent
2 !!!SDL_!ResizeEvent
3 NAME
4 STRUCTURE DEFINITION
5 STRUCTURE DATA
6 DESCRIPTION
7 SEE ALSO
8 ----
9 !!NAME
10
11
12 SDL_!ResizeEvent- Window resize event structure
13 !!STRUCTURE DEFINITION
14
15
16 typedef struct{
17 Uint8 type;
18 int w, h;
19 } SDL_!ResizeEvent;
20 !!STRUCTURE DATA
21
22
23 __type SDL_VIDEORESIZE__
24
25
26 __w__, __h__ New width and height of the
27 window
28 !!DESCRIPTION
29
30
31 __SDL_!ResizeEvent__ is a member of the __SDL_Event__
32 union and is used when an event of type
33 __SDL_VIDEORESIZE__ is reported.
34
35
36 When __SDL_RESIZABLE__ is passed as a __flag__ to
37 __SDL_!SetVideoMode__ the user is allowed to resize the
38 applications window. When the window is resized an
39 __SDL_VIDEORESIZE__ is report, with the new window width
40 and height values stored in __w__ and __h__,
41 respectively. When an __SDL_VIDEORESIZE__ is recieved the
42 window should be resized to the new dimensions using
43 __SDL_!SetVideoMode__.
44 !!SEE ALSO
45
46
47 __SDL_Event__, __SDL_!SetVideoMode__
48 ----
This page is a man page (or other imported legacy content). We are unable to automatically determine the license status of this page.