Displaying 3 results from an estimated 3 matches for "windowheight".
2010 Mar 26
0
Reading a SpreadsheetML / XMLNS into R xmlns="urn:schemas-microsoft-com:office:spreadsheet
...xmlns:html="http://www.w3.org/TR/REC-html40">
<DocumentProperties xmlns="urn:schemas-microsoft-com:office:office">
<Version>12.00</Version>
</DocumentProperties>
<ExcelWorkbook xmlns="urn:schemas-microsoft-com:office:excel">
<WindowHeight>10005</WindowHeight>
<WindowWidth>10005</WindowWidth>
<WindowTopX>120</WindowTopX>
<WindowTopY>135</WindowTopY>
<ProtectStructure>False</ProtectStructure>
<ProtectWindows>False</ProtectWindows>
</ExcelWorkbook>
&...
2001 Feb 13
0
devX11.c -- questions about expose events and XBell
.../* Gobble expose events */
! XNextEvent(display, &event);
! if (event.xany.type == Expose) {
! while (event.xexpose.count)
! XNextEvent(display, &event);
! }
} else { /* PIXMAP */
xd->windowWidth = iw = w;
xd->windowHeight = ih = h;
--- 1232,1241 ----
/* Gobble expose events */
! if (XCheckTypedEvent(display, Expose, &event)) {
! while (event.xexpose.count)
! XNextEvent(display, &event);
! }
} else { /* PIXMAP */
xd->windowWidth = iw = w;...
2001 Feb 13
1
X11 device doesn't handle destroy events correcly (PR#848)
...******
*** 145,151 ****
static Atom _XA_WM_PROTOCOLS, protocol;
static Rboolean displayOpen = FALSE;
- static Rboolean inclose = FALSE;
static int numX11Devices = 0;
/********************************************************/
--- 146,151 ----
***************
*** 619,632 ****
xd->windowHeight = event.xconfigure.height;
xd->resize = 1;
}
else if ((event.type == ClientMessage) &&
! (event.xclient.message_type == _XA_WM_PROTOCOLS))
! if (!inclose && event.xclient.data.l[0] == protocol) {
! XFindContext(display, event.xclient.window,
devPt...