[ Maverik Level 1 functions ]
mav_windowNew
Summary
Create a new window.
Syntax
MAV_window *mav_windowNew(int x, int y, int w, int h, char *name);
- int x
Left position of window in pixels.
- int y
Top position of window in pixels.
- int w
Width of window in pixels.
- int h
Height of window in pixels.
- char *name
Name of window.
Description
This function creates a new window, returning a handle to it. The position of the
top left corner of the window is given by (x, y), where the top left
coordinates of the display screen are (0,0). The width and height of the
window, in pixels, are respectively w and h. If the window manager permits,
the title bar of the window will be labelled name.
Back to the index page.