473,396 Members | 1,895 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Keyboard Events

I use WX on windows XP and I try to generate an event when the user is
clicking the keyboard while the application frame is not in focus.
All I manged to do were while the application frame is in focus
Can someone please show me how to do it?

Thanks !
Jun 27 '08 #1
9 3993
On May 26, 2:06*pm, Gandalf <goldn...@gmail.comwrote:
I use WX on windows XP and I try to generate an event when the user is
clicking the keyboard while the application frame is not in focus.
All I manged to do were while the application frame is in focus
Can someone please show me how to do it?

Thanks !
You can only catch the keyboard events for whichever widget is in
focus. So, if you have a text control, you'll need to bind to that.
The events you're likely need are EVT_KEYDOWN or EVT_CHAR. You cannot
catch keyboard events with wx if you are using MS Word. For that sort
of thing,you'll have to hook in at the OS level.

Mike
Jun 27 '08 #2
On May 26, 11:25 pm, Dennis Lee Bieber <wlfr...@ix.netcom.comwrote:
On Mon, 26 May 2008 12:06:02 -0700 (PDT), Gandalf <goldn...@gmail.com>
declaimed the following in comp.lang.python:
I use WX on windows XP and I try to generate an event when the user is
clicking the keyboard while the application frame is not in focus.
All I manged to do were while the application frame is in focus
Can someone please show me how to do it?

I'm no expert, but I think normal operation is that the operating
system does not send events to an application unless that application
has the focus.

To counter that, though, there is no doubt some way to inform the OS
that an application is interested in all events, even those not meant
for it directly. As such a capability tends to be OS specific, it may
not be easily exposed. Under Windows, this probably requires getting a
handle on the "desktop window" and processing messages that it sees
(without failing to pass them on to whatever other windows are looking
for them)
--
Wulfraed Dennis Lee Bieber KD6MOG
wlfr...@ix.netcom.com wulfr...@bestiaria.com
HTTP://wlfraed.home.netcom.com/
(Bestiaria Support Staff: web-a...@bestiaria.com)
HTTP://www.bestiaria.com/
Thanks!
Anyone know which library should i learn then?
Jun 27 '08 #3
On Mon, 26 May 2008 14:40:18 -0700, Gandalf wrote:
Thanks!
Anyone know which library should i learn then?
Looks like you need to dive into Win32 API
http://msdn.microsoft.com/en-us/libr...44(VS.85).aspx
http://msdn.microsoft.com/en-us/libr...30(VS.85).aspx
and others
combined with ctypes.

Ivan
Jun 27 '08 #4
On May 27, 12:00 am, Ivan Illarionov <ivan.illario...@gmail.com>
wrote:
On Mon, 26 May 2008 14:40:18 -0700, Gandalf wrote:
Thanks!
Anyone know which library should i learn then?

Looks like you need to dive into Win32 APIhttp://msdn.microsoft.com/en-us/library/ms697544(VS.85).aspxhttp://msdn.microsoft.com/en-us/library/ms645530(VS.85).aspx
and others
combined with ctypes.

Ivan
well, that seems extremely valuable but how can i implement those
functions with python?
Jun 27 '08 #5
On Mon, 26 May 2008 15:18:00 -0700, Gandalf wrote:
On May 27, 12:00 am, Ivan Illarionov <ivan.illario...@gmail.comwrote:
>On Mon, 26 May 2008 14:40:18 -0700, Gandalf wrote:
Thanks!
Anyone know which library should i learn then?

Looks like you need to dive into Win32
APIhttp://msdn.microsoft.com/en-us/library/ms697544(VS.85).aspxhttp://
msdn.microsoft.com/en-us/library/ms645530(VS.85).aspx
>and others
combined with ctypes.

Ivan

well, that seems extremely valuable but how can i implement those
functions with python?
Google is your friend
Some links with examples:
http://www.brunningonline.net/simon/...es/000652.html
http://aspn.activestate.com/ASPN/Coo.../Recipe/208699
Jun 27 '08 #6
On May 27, 12:18 am, Gandalf <goldn...@gmail.comwrote:
On May 27, 12:00 am, Ivan Illarionov <ivan.illario...@gmail.com>
wrote:
On Mon, 26 May 2008 14:40:18 -0700, Gandalf wrote:
Thanks!
Anyone know which library should i learn then?
Looks like you need to dive into Win32 APIhttp://msdn.microsoft.com/en-us/library/ms697544(VS.85).aspxhttp://ms...
and others
combined with ctypes.
Ivan

well, that seems extremely valuable but how can i implement those
functions with python?
You know what I'm sorry, I will try to understand the ctypes lib
before bothering you.

thank you all!
Jun 27 '08 #7
On Mon, 26 May 2008 15:26:50 -0700, Gandalf wrote:
On May 27, 12:18 am, Gandalf <goldn...@gmail.comwrote:
>On May 27, 12:00 am, Ivan Illarionov <ivan.illario...@gmail.comwrote:
On Mon, 26 May 2008 14:40:18 -0700, Gandalf wrote:
Thanks!
Anyone know which library should i learn then?
Looks like you need to dive into Win32
APIhttp://msdn.microsoft.com/en-us/library/ms697544
(VS.85).aspxhttp://ms...
and others
combined with ctypes.
Ivan

well, that seems extremely valuable but how can i implement those
functions with python?

You know what I'm sorry, I will try to understand the ctypes lib before
bothering you.

thank you all!
No need to sorry. I have actually found very valuable information at
http://www.brunningonline.net/simon/...es/000652.html
while googling to answer your question. I didn't know that such things
are really possible with Python/Win32! It'll help me a lot. Thank you!

Ivan
Jun 27 '08 #8
On May 26, 5:38*pm, Ivan Illarionov <ivan.illario...@gmail.comwrote:
On Mon, 26 May 2008 15:26:50 -0700, Gandalf wrote:
On May 27, 12:18 am, Gandalf <goldn...@gmail.comwrote:
On May 27, 12:00 am, Ivan Illarionov <ivan.illario...@gmail.comwrote:
On Mon, 26 May 2008 14:40:18 -0700, Gandalf wrote:
Thanks!
Anyone know which library should i learn then?
Looks like you need to dive into Win32
APIhttp://msdn.microsoft.com/en-us/library/ms697544

(VS.85).aspxhttp://ms...
and others
combined with ctypes.
Ivan
well, that seems extremely valuable but how can i implement those
functions with python?
You know what I'm sorry, I will try to understand the ctypes lib before
bothering you.
thank you all!

No need to sorry. I have actually found very valuable information athttp://www.brunningonline.net/simon/blog/archives/000652.html
while googling to answer your question. I didn't know that such things
are really possible with Python/Win32! It'll help me a lot. Thank you!

Ivan
If you guys are going to go digging into the PyWin32 modules, make
sure you check this site out:

http://aspn.activestate.com/ASPN/doc...2/PyWin32.html

It has the docs for the distro and a link to the user's group too. Bot
have been very helpful to me.

Mike
Jun 27 '08 #9
On May 27, 2:36 am, Mike Driscoll <kyoso...@gmail.comwrote:
On May 26, 5:38 pm, Ivan Illarionov <ivan.illario...@gmail.comwrote:
On Mon, 26 May 2008 15:26:50 -0700, Gandalf wrote:
On May 27, 12:18 am, Gandalf <goldn...@gmail.comwrote:
>On May 27, 12:00 am, Ivan Illarionov <ivan.illario...@gmail.comwrote:
On Mon, 26 May 2008 14:40:18 -0700, Gandalf wrote:
Thanks!
Anyone know which library should i learn then?
Looks like you need to dive into Win32
APIhttp://msdn.microsoft.com/en-us/library/ms697544
(VS.85).aspxhttp://ms...
and others
combined with ctypes.
Ivan
>well, that seems extremely valuable but how can i implement those
>functions with python?
You know what I'm sorry, I will try to understand the ctypes lib before
bothering you.
thank you all!
No need to sorry. I have actually found very valuable information athttp://www.brunningonline.net/simon/blog/archives/000652.html
while googling to answer your question. I didn't know that such things
are really possible with Python/Win32! It'll help me a lot. Thank you!
Ivan

If you guys are going to go digging into the PyWin32 modules, make
sure you check this site out:

http://aspn.activestate.com/ASPN/doc...pywin32/PyWin3...

It has the docs for the distro and a link to the user's group too. Bot
have been very helpful to me.

Mike
OK thanks guys I'm going try and if I will succeed I will tel you how
I did it
Jun 27 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Patricio Stegmann | last post by:
Hello, I'm trying to capture all keyboard events from some different web page layouts: framesets with different stuff, like flash or whatever ! The problem I am getting is that only focused...
9
by: Marek Mand | last post by:
How to use generated keyboard events? What I am trying here to do is in onkeyup event handler http://www.hot.ee/idaliiga/braggart/createEventTest.htm generate a (shift)TAB keydown so the...
3
by: Lachlan Hunt | last post by:
Hi, I've been looking up lots of documentation and trying to work out a cross-platform method of capturing a keyboard event and working out which key was pressed. From what I can find, there...
2
by: wesmanjunk | last post by:
does anyone know how to generate keyboard events in another application? like public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam); can be used for mouse...
0
by: luc.saffre | last post by:
Hello, I thought that I should ask here for comments on a blog entry that I wrote some weeks ago. I am sure that other people have been thinking about this, but I didn't yet find them. The...
16
by: dfaber | last post by:
Hi all, I have been searching for a keyboard and mouse tracker on linux. I've read solutions (watch at sourceforge) which look at /proc/interrupts to check keyboard or mouse activity. I also read...
0
by: Gamey | last post by:
I have an application that NEEDS (don't ask) to handle additional mouse and keyboard processing during DoDragDrop. Normally, DoDragDrop kindly squashes all keyboard and mouse events. Alternate,...
12
by: =?ISO-8859-1?Q?Joaqu=EDn_Zuazo?= | last post by:
I'm trying to find what character was pressed, using an accent with a dead letter, e.g an á, on an input box. I have made an small program to check the keyboard events keydown, keypress and...
13
by: andypb123 | last post by:
Hello, The onchange event fires in IE6 in a SELECT element when scrolling through the list with the up and down arrows on the keyboard. In Firefox it only fires after you hit the enter key, which...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.