XCreateSimpleWindow(
Display *display, /*Our display*/
Window rootwindow, /*parent Window*/
int x, /*Starting x coordinate*/
int y, /*Starting y coordinate*/
unsigned int width, /*Width of the window*/
unsigned int height, /*Height of the Window*/
unsigned int border_width, /*Width of the border*/
unsigned long border, /*Specify border pixel value*/
unsigned long bkground /*Color of the background*/
)
XCreateWindow(
Display *display, /*Our display screen*/
Window parent, /*The parent window*/
int x,int y, /*Starting coordinates*/
unsigned int width,unsigned int height, /*Proportions of the window*/
unsigned int border_width, /*Width of the border*/
int depth, /*Depth of the screen*/
unsigned int Class, /*Type of window*/
Visual *visual, /*visual of the window*/
unsigned long attributemask, /*Mask of the attributes*/
XSetWindowAttibutes windowsattrib); /*Structure of window attribs*/
)
zum Seitenanfang
zur Xlib Seite
zur Hauptseite
Letzte Änderung: 10.11.2005