GrNewInputWindow()

Name

GrNewInputWindow() -- Create a new input window

Synopsis

GR_WINDOW_ID GrNewInputWindow ( GR_WINDOW_ID parent , GR_COORD x , GR_COORD y , GR_COORD width , GR_COORD height );

Description

This function creates a new input-only window of width by height pixels at coordinates (x,y) with respect to the parent window, parent.

Parameters

TypeNameDescription
GR_WINDOW_IDparentThe parent of window of the window that will be created.
GR_COORDxThe X position of the new window with respect to its parent window.
GR_COORDyThe Y position of the new window with respect to its parent window.
GR_COORDwidthThe width (in pixels) of the new window.
GR_COORDheightThe hieght (in pixels) of the new window.

Returns

The ID of the newly created window.

See Also

GrDestroyWindow(), GrNewWindow(), GrNewWindowEx().