#include "qwidget.h"
#include "qt_x11_p.h"
Include dependency graph for qwidgetcreate_x11.cpp:

Go to the source code of this file.
Functions | |
| Window | qt_XCreateWindow (const QWidget *, Display *display, Window parent, int x, int y, uint w, uint h, int borderwidth, int depth, uint windowclass, Visual *visual, ulong valuemask, XSetWindowAttributes *attributes) |
| Window | qt_XCreateSimpleWindow (const QWidget *, Display *display, Window parent, int x, int y, uint w, uint h, int borderwidth, ulong border, ulong background) |
| void | qt_XDestroyWindow (const QWidget *, Display *display, Window window) |
| Window qt_XCreateSimpleWindow | ( | const QWidget * | , | |
| Display * | display, | |||
| Window | parent, | |||
| int | x, | |||
| int | y, | |||
| uint | w, | |||
| uint | h, | |||
| int | borderwidth, | |||
| ulong | border, | |||
| ulong | background | |||
| ) |
Definition at line 45 of file qwidgetcreate_x11.cpp.
Referenced by QWidgetPrivate::create_sys().
00048 { 00049 return XCreateSimpleWindow(display, parent, x, y, w, h, borderwidth, 00050 border, background); 00051 }
| Window qt_XCreateWindow | ( | const QWidget * | , | |
| Display * | display, | |||
| Window | parent, | |||
| int | x, | |||
| int | y, | |||
| uint | w, | |||
| uint | h, | |||
| int | borderwidth, | |||
| int | depth, | |||
| uint | windowclass, | |||
| Visual * | visual, | |||
| ulong | valuemask, | |||
| XSetWindowAttributes * | attributes | |||
| ) |
Definition at line 34 of file qwidgetcreate_x11.cpp.
Referenced by QWidgetPrivate::create_sys().
00039 { 00040 return XCreateWindow(display, parent, x, y, w, h, borderwidth, depth, 00041 windowclass, visual, valuemask, attributes); 00042 }
Definition at line 54 of file qwidgetcreate_x11.cpp.
Referenced by QWidgetPrivate::create_sys(), QWidget::destroy(), and QWidgetPrivate::setParent_sys().
1.5.1