-
funkiedamouse made 1 file-release changes.
2009-11-14 19:06:02 UTC by funkiedamouse
-
funkiedamouse made 1 file-release changes.
2009-11-14 19:05:02 UTC by funkiedamouse
-
funkiedamouse made 1 file-release changes.
2009-11-14 18:55:01 UTC by funkiedamouse
-
funkiedamouse committed revision 137 to the Python X Library SVN repository, changing 1 files.
2009-11-14 18:45:28 UTC by funkiedamouse
-
funkiedamouse committed revision 136 to the Python X Library SVN repository, changing 6 files.
2009-11-14 17:40:11 UTC by funkiedamouse
-
display.py uses error.MethodOverrideError (line 266 on trunk), but this is not defined on module error.py.
2009-09-04 10:51:53 UTC by nobody
-
Considering this is broken, there is some small discussion if it will ever be fixed. Is there any chance that there's an XInput extension planned/in the works/already done? With that, I could at least hook x events, though in a kludgy/not meant for it way.
2009-07-26 05:26:46 UTC by nobody
-
This may be a bug in my code, but I'm not sure. Probably what I'm doing with display is non-standard...
Here's some more details of what I'm doing:
1. I have one function that grabs the pointer and then has the user select a window. I take the click event and use it to find the window (event.child). I save this event.
The display object is local to this function so it falls out of scope.
2. I...
2009-07-17 05:43:08 UTC by nobody
-
In that context, self.id is identical to self, just a bit of an optimization, so that's not the cause.
Did you pass the same window object as first argument to display.send_event()? Sending input events directly to windows with send_event() is quite complicated (at least I have never tried to understand the propagation etc) while PointerWindow and InputFocus is a bit more straight-forward...
2009-06-21 18:23:40 UTC by petli
-
I was using python-xlib-0.14 to send keypresses to another window. When I used window.send_event to send keypresses, the keypresses silently disappeared (even when the onerror handler was provided). Then I used display.send_event, the keypresses were correctly received by the application.
Probably need to change window.send_event to specify the window (self), not the window.id (self.id)...
2009-06-18 05:06:05 UTC by shadowslicer