Displaying 4 results from an estimated 4 matches for "xmapwindow".
Did you mean:
mapwindow
2005 Dec 01
0
[fdo] Programming problems in Dual Head Mode.
...;
>
> /* Make the window */
> window = XCreateSimpleWindow (display, RootWindow(display, screen),
> 0, 0, hwidth, hheight,0,0,0);
>
> XSelectInput(display, window, KeyPressMask | StructureNotifyMask);
>
> /* Map window. */
>
> XMapWindow(display, window);
>
> /* Wait for map. */
> do
> {
> XNextEvent(display, &xev);
> }
> while (xev.type != MapNotify || xev.xmap.event != window);
>
> gc = DefaultGC(display, screen);
>
> yuv_height = hheight;
> yuv_width = hwidth;
>
>...
2005 Dec 05
0
[fdo] Programming problems in Dual Head Mode with Tiny-X.
...;
>
> /* Make the window */
> window = XCreateSimpleWindow (display, RootWindow(display, screen),
> 0, 0, hwidth, hheight,0,0,0);
>
> XSelectInput(display, window, KeyPressMask | StructureNotifyMask);
>
> /* Map window. */
>
> XMapWindow(display, window);
>
> /* Wait for map. */
> do
> {
> XNextEvent(display, &xev);
> }
> while (xev.type != MapNotify || xev.xmap.event != window);
>
> gc = DefaultGC(display, screen);
>
> yuv_height = hheight;
> yuv_width = hwidth;
>
>...
1998 Oct 28
1
Request for help with compiling R on a DEC Alpha
...dow
XDefaultRootWindow
XSetWMProtocols
XAllocColor
XAllocNamedColor
XChangeProperty
XCheckTypedEvent
XClearWindow
XCloseDisplay
XDefaultDepth
XDefaultScreen
XDefineCursor
XDestroyWindow
XDrawArc
XDrawLine
XDrawLines
XDrawRectangle
XFillArc
XFillPolygon
XFillRectangle
XFreeColors
XFreeCursor
XFreeGC
XMapWindow
XNextEvent
XPending
XSelectInput
XSetClipRectangles
XSetDashes
XSetFont
XSetLineAttributes
XSetState
XSetWindowBackground
XSync
XTextWidth
XUnloadFont
XFindContext
XSaveContext
XrmUniqueQuark
XCreateSimpleWindow
XBell
XChangeWindowAttributes
XClearArea
XCopyArea
XDrawImageString
XDrawString
XGetWin...
2001 Feb 13
1
X11 device doesn't handle destroy events correcly (PR#848)
...;inclose = TRUE;
! XDestroyWindow(display, xd->window);
! XSync (display, 0);
! KillDevice(dd);
! }
}
+ }
+
}
static void R_ProcessEvents(void *data)
***************
*** 1208,1213 ****
--- 1228,1234 ----
ExposureMask | ButtonPressMask | StructureNotifyMask);
XMapWindow(display, xd->window);
XSync(display, 0);
+ xd->inclose = FALSE;
/* Gobble expose events */
***************
*** 1464,1476 ****
x11Desc *xd = (x11Desc *) dd->deviceSpecific;
if (xd->type == WINDOW) {
! /* process pending events */
! /* set block on des...