Re: Key Listener

2010-05-06 Thread Talguy
Thanks Jose, I was mostly looking for the keycodes and a little bit on how to handle a key press event. All right time to get coding 2010/5/6 José Alburquerque > On Thu, 2010-05-06 at 09:47 -0700, Lyle Underwood wrote: > > Key presses are handled with signals (which are like events, if you've

Re: Key Listener

2010-05-06 Thread José Alburquerque
On Thu, 2010-05-06 at 09:47 -0700, Lyle Underwood wrote: > Key presses are handled with signals (which are like events, if you've > used those before). Here's the appendix from the gtkmm book that's all > about signals: > > http://library.gnome.org/devel/gtkmm-tutorial/unstable/chapter-signals.ht

Re: Key Listener

2010-05-06 Thread Lyle Underwood
Key presses are handled with signals (which are like events, if you've used those before). Here's the appendix from the gtkmm book that's all about signals: http://library.gnome.org/devel/gtkmm-tutorial/unstable/chapter-signals.html.en Here's the API documentation which describes the precise inte

Re: Key Listener

2010-05-06 Thread Talguy
Would adding the event mask be the value of the keys that I want to detect. I thought there would all ready be a header file with all the common keys found on a keyboard Evan On Thu, May 6, 2010 at 9:00 AM, michi7x7 wrote: > Am 06.05.2010 14:50, schrieb talguy...@gmail.com: > > I am pretty new

Re: Key Listener

2010-05-06 Thread michi7x7
Am 06.05.2010 14:50, schrieb talguy...@gmail.com: I am pretty new to the gtkmm and gui programming. I've searched the web for examples but can't find any that would show me how to detect if a key is pressed and how to handle that key input. Could someone point me in the right direction to handl

Key Listener

2010-05-06 Thread TalGuy385
I am pretty new to the gtkmm and gui programming. I've searched the web for examples but can't find any that would show me how to detect if a key is pressed and how to handle that key input. Could someone point me in the right direction to handle key events? Also is there a header file that l