search for: configurenotify

Displaying 20 results from an estimated 32 matches for "configurenotify".

2019 Apr 20
3
src/modules/X11/devX11.c, can we remove "#if BUG" yet
Dear R Devel, I know that someone put this line in src/modules/X11/devX11.c:2824 for a reason, because commenting it out causes R to miss an important ConfigureNotify event in my window manager. The result is that plots are initially drawn off the window borders, unreadable. R_ProcessX11Events((void*) NULL); Unfortunately for me, this line is commented in the standard release of R, it has "#if BUG ... #endif" around it. I guess it is also unfor...
2013 Jun 19
2
Relative position between two windows
...'m close with this code, let's see for example the case for window A: XSelectInput ( display, RootWindow ( display, 0 ), SubstructureNotifyMask ); > > XEvent event; > while ( true ) > { > XNextEvent ( display, & event ); > /* ... */ > if ( event.type == ConfigureNotify and event.xconfigure.window == > window_B ) > { > // new_x, new_y based on event.xconfigure.x, event.xconfigure.y, > etc... > XMoveWindow ( display, window_A, new_x, new_y ); > } > /* ... */ > } > The problem is that the move correction of a w...
2013 Jun 19
0
Relative position between two windows
...ple > the case for window A: > > XSelectInput ( display, RootWindow ( display, 0 ), SubstructureNotifyMask >> ); >> >> XEvent event; >> while ( true ) >> { >> XNextEvent ( display, & event ); >> /* ... */ >> if ( event.type == ConfigureNotify and event.xconfigure.window == >> window_B ) >> { >> // new_x, new_y based on event.xconfigure.x, event.xconfigure.y, >> etc... >> XMoveWindow ( display, window_A, new_x, new_y ); >> } >> /* ... */ >> } >> > > T...
2013 Jun 15
3
[HELP] BUILD FAILED while Installing ruby-1.8.7-p371 in mac OS...
...tklib.c:9862: error: expected ‘;’ before ‘event’ tcltklib.c:9892: error: ‘struct dummy_TkMenu’ has no member named ‘menuType’ tcltklib.c:9897: error: ‘struct dummy_TkMenu’ has no member named ‘menuType’ tcltklib.c:9915: error: ‘event’ undeclared (first use in this function) tcltklib.c:9916: error: ‘ConfigureNotify’ undeclared (first use in this function) tcltklib.c:9917: error: ‘Tk_FakeWin’ has no member named ‘display’ tcltklib.c:9919: error: ‘Tk_FakeWin’ has no member named ‘window’ tcltklib.c:9920: error: ‘Tk_FakeWin’ has no member named ‘display’ make[1]: *** [tcltklib.o] Error 1 make: *** [all] Error 1...
2019 Apr 24
2
[FORGED] src/modules/X11/devX11.c, can we remove "#if BUG" yet
...ou with a way forward ? > > Paul > > On 20/04/2019 5:27 p.m., frederik at ofb.net wrote: >> Dear R Devel, >> >> I know that someone put this line in src/modules/X11/devX11.c:2824 for >> a reason, because commenting it out causes R to miss an important >> ConfigureNotify event in my window manager. The result is that plots >> are initially drawn off the window borders, unreadable. >> >> R_ProcessX11Events((void*) NULL); >> >> Unfortunately for me, this line is commented in the standard release >> of R, it has "#if BUG ....
2019 Apr 24
0
[FORGED] src/modules/X11/devX11.c, can we remove "#if BUG" yet
...; packages on CRAN. Does that provide you with a way forward ? Paul On 20/04/2019 5:27 p.m., frederik at ofb.net wrote: > Dear R Devel, > > I know that someone put this line in src/modules/X11/devX11.c:2824 for > a reason, because commenting it out causes R to miss an important > ConfigureNotify event in my window manager. The result is that plots > are initially drawn off the window borders, unreadable. > > R_ProcessX11Events((void*) NULL); > > Unfortunately for me, this line is commented in the standard release > of R, it has "#if BUG ... #endif" around it...
2019 Apr 25
2
[FORGED] src/modules/X11/devX11.c, can we remove "#if BUG" yet
...gt;>> On 20/04/2019 5:27 p.m., frederik at ofb.net wrote: >>>> Dear R Devel, >>>> >>>> I know that someone put this line in src/modules/X11/devX11.c:2824 for >>>> a reason, because commenting it out causes R to miss an important >>>> ConfigureNotify event in my window manager. The result is that plots >>>> are initially drawn off the window borders, unreadable. >>>> >>>> R_ProcessX11Events((void*) NULL); >>>> >>>> Unfortunately for me, this line is commented in the standard release...
2019 May 02
1
[FORGED] src/modules/X11/devX11.c, can we remove "#if BUG" yet
...>>>> Dear R Devel, >>>>>>>> >>>>>>>> I know that someone put this line in src/modules/X11/devX11.c:2824 for >>>>>>>> a reason, because commenting it out causes R to miss an important >>>>>>>> ConfigureNotify event in my window manager. The result is that plots >>>>>>>> are initially drawn off the window borders, unreadable. >>>>>>>> >>>>>>>> R_ProcessX11Events((void*) NULL); >>>>>>>> >>>>>&gt...
2005 Feb 11
3
msaccess odbc driver not working
I have problems import ms access 2000 data into Word 2000. The error is: DDE connection failed. Browsing the internet I found out that ms access uses ODBC for this (am I correct?). I have installed MDAC_TYP.EXE like in the Winehq documentation. I think that the msaccess driver doesn't work o.k. To reproduce: Run wine c:\windows\system\ODBCAD32.EXE --> in
2019 Apr 30
2
[FORGED] src/modules/X11/devX11.c, can we remove "#if BUG" yet
...derik at ofb.net wrote: >>>>>> Dear R Devel, >>>>>> >>>>>> I know that someone put this line in src/modules/X11/devX11.c:2824 for >>>>>> a reason, because commenting it out causes R to miss an important >>>>>> ConfigureNotify event in my window manager. The result is that plots >>>>>> are initially drawn off the window borders, unreadable. >>>>>> >>>>>> R_ProcessX11Events((void*) NULL); >>>>>> >>>>>> Unfortunately for me, this li...
2006 Nov 07
2
Crash when embedding R X11 windows
...devPtrContext, &temp); + if (XFindContext(display, event.xexpose.window, + devPtrContext, &temp)) return; dd = (NewDevDesc *) temp; if (event.xexpose.count == 0) do_update = 1; @@ -595,8 +595,8 @@ else if (event.type == ConfigureNotify) { while(XCheckTypedEvent(display, ConfigureNotify, &event)) ; - XFindContext(display, event.xconfigure.window, - devPtrContext, &temp); + if (XFindContext(display, event.xconfigure.window, + devPtrContext, &temp)) re...
2019 Apr 24
0
[FORGED] src/modules/X11/devX11.c, can we remove "#if BUG" yet
...t;> Paul >> >> On 20/04/2019 5:27 p.m., frederik at ofb.net wrote: >>> Dear R Devel, >>> >>> I know that someone put this line in src/modules/X11/devX11.c:2824 for >>> a reason, because commenting it out causes R to miss an important >>> ConfigureNotify event in my window manager. The result is that plots >>> are initially drawn off the window borders, unreadable. >>> >>> R_ProcessX11Events((void*) NULL); >>> >>> Unfortunately for me, this line is commented in the standard release >>> of R,...
2019 Apr 27
0
[FORGED] src/modules/X11/devX11.c, can we remove "#if BUG" yet
...2019 5:27 p.m., frederik at ofb.net wrote: >>>>> Dear R Devel, >>>>> >>>>> I know that someone put this line in src/modules/X11/devX11.c:2824 for >>>>> a reason, because commenting it out causes R to miss an important >>>>> ConfigureNotify event in my window manager. The result is that plots >>>>> are initially drawn off the window borders, unreadable. >>>>> >>>>> R_ProcessX11Events((void*) NULL); >>>>> >>>>> Unfortunately for me, this line is commented in...
2019 May 02
0
[FORGED] src/modules/X11/devX11.c, can we remove "#if BUG" yet
...e: >>>>>>> Dear R Devel, >>>>>>> >>>>>>> I know that someone put this line in src/modules/X11/devX11.c:2824 for >>>>>>> a reason, because commenting it out causes R to miss an important >>>>>>> ConfigureNotify event in my window manager. The result is that plots >>>>>>> are initially drawn off the window borders, unreadable. >>>>>>> >>>>>>> R_ProcessX11Events((void*) NULL); >>>>>>> >>>>>>> Unfortun...
2010 Nov 16
1
How can I install visual fox 8.0?
...j but I don't understand anything [Embarassed] Code: --- dlls/x11drv/winpos.c 8 Jan 2003 21:09:26 -0000 1.63 +++ dlls/x11drv/winpos.c 10 Feb 2003 22:33:20 -0000 @@ -887,6 +887,9 @@ UINT wvrFlags = 0; BOOL bChangePos; + /* This is needed to flush pending X ConfigureNotify events on this window */ + MsgWaitForMultipleObjectsEx( 0, NULL, 0, 0, 0 ); + TRACE( "hwnd %p, swp (%i,%i)-(%i,%i) flags %08x\n", winpos->hwnd, winpos->x, winpos->y, winpos->x + winpos->cx, winpos->y + winpos->cy, winpos->flags);...
2007 Feb 18
0
[ANNOUNCE] RandR protocol version 1.2.1
...stall the randr protocol description. Fix the size of the padding fields of xRRGetCrtcGamma. Keith Packard (5): Fix padding bugs discovered in XCB work Merge branch 'multi-monitor' More bugs found by Ian Osgood during the XCB work. Fix wording about requesting ConfigureNotify events. Bump version to 1.2.1. http://xorg.freedesktop.org/releases/individual/proto/randrproto-1.2.1.tar.gz http://xorg.freedesktop.org/releases/individual/proto/randrproto-1.2.1.tar.bz2 md5sums e2e45564f8ce22e00e1360e79c8ccdeb randrproto-1.2.1.tar.bz2 d6b6b024d71b689628bcaf27fd491f5b r...
2007 Mar 24
1
Newest animation plugin
Hi, Here is the newest version of animation plugin with the updated schema. It needs the three patches I sent right before this email to function properly. Regards, Erkin -------------- next part -------------- A non-text attachment was scrubbed... Name: animation.tar.gz Type: application/x-gzip Size: 64787 bytes Desc: not available Url :
2009 Feb 21
1
Clipped screen when using multiple X screens (regression) ?
Please see the Ubuntu bug report for photographs and logs of this problem "Clipped area for multiple X screens with different dimensions": https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/331918 Thanks to some great support and suggestions in #compiz-fusion-dev I've made some progress in trying to pin this issue down. I've operated with compiz and multiple X screens for
2008 Jun 21
2
Error running Hearts of Iron 2 Doomsday and Armageddon
When I run wine Hoi2.exe, in addition to the usual alsa warnings, i get this: Code: wine: Unhandled page fault on execute access to 0x006e9118 at address 0x6e9118 (thread 0009), starting debugger... Unhandled exception: page fault on execute access to 0x006e9118 in 32-bit code (0x006e9118). Register dump: CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b EIP:006e9118 ESP:0309ff0c EBP:0309ffe8
2008 Mar 21
0
Wine release 0.9.58
...36): msvcrt/tests: The new string functions don't have to exist. gdi32: Properly handle SetDIBits failure in StretchDIBits. winex11: Added an exception handler to catch bad pointers in X11DRV_SetImageBits. winex11: Add support for merging redundant events, and use it for ConfigureNotify and MotionNotify. uuid: Avoid some guids that shouldn't be defined in libuuid. msvcrt: Implemented __CppXcptFilter. advapi32: Implemented RegOverridePredefKey. winex11: Discard ConfigureNotify events even if the intervening events are for other windows. user32: Add...