[ Maverik Level 3 functions ]


mav_gfxWindowOpen

Summary

Open a window.


Syntax

void mav_gfxWindowOpen(int id, int x, int y, int w, int h, char *name, int wmp, int sb, int qb, int ms, int ab, int *wret, int *hret);


Description

This function asks the window manager to open a window and create an associated graphics context. This window is identified in subsequent mav_gfx* calls by the unique integer id.

Graphics contexts are, by default, double buffered and have the maximum colour and depth bits allowed by the hardware. The parameters sb, qb, ms and ab (1 = TRUE, 0 = FALSE) control the creation of the graphics context. If a particular configuration is not supported by the hardware an error message is written to the shell window and execution halts.

Windows are of X resource class "MaverikApp". This allows the potential, depending on your window manager, for controlling window attributes via the .Xdefaults file. For example, adding the line "4Dwm*MaverikApp*clientDecoration: none" to your .Xdefault would cause Maverik windows to have no decoration on SGI's default window manager 4Dwm.

The window manager may not honour your requested size or position. The actual size of the window is returned in wret and hret. Setting wmp to TRUE lets the window manager place the window.


Back to the index page.