Add keyboard shortcuts with KeyTouch


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Add keyboard shortcuts with KeyTouch
# 1  
Old 05-29-2008
Add keyboard shortcuts with KeyTouch

Thu, 29 May 2008 18:00:00 GMT
KeyTouch is an application designed to allow you to make full use of all the special function keys on your keyboard, whether the hardware supports Linux or not. It's a great idea, especially with all the multimedia applications that come standard with today's PCs. But as is often the case, the devil is in the implementation details.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Problem getting vertical bar with British keyboard layout on US (physical) keyboard

Hi, I've got a bit of a ridiculous problem and wasn't sure where to post it. I need to use the vertical bar for piping in Bash but, as per the title, am using a UK layout on a US (physical) keyboard which doesn't have a key for it in the place I'd expect. I've tried using xbindkeys and Unicode... (7 Replies)
Discussion started by: crunchgargoyle
7 Replies

2. UNIX for Dummies Questions & Answers

How to change Firefox keyboard shortcuts

Hi board! Can anybody tell me how to configure the Keyboard shortcuts of Firefox? I know that there is an extension called keyconfig and I used it with Firefox 1.0 but I it wasn't updated since 2005 or something. I also had a closer look at about:config but didn't find anything. My Google... (7 Replies)
Discussion started by: schallstrom
7 Replies

3. Shell Programming and Scripting

GVIM keyboard shortcuts

Hi all, I am new to linux, can anybody send any link for "GVIM" keyboard shortcuts. (1 Reply)
Discussion started by: balaramaiah.t
1 Replies
Login or Register to Ask a Question
XtUngrabKeyboard()														XtUngrabKeyboard()

Name
  XtUngrabKeyboard - release an active keyboard grab.

Synopsis
  void XtUngrabKeyboard(widget, time)
	   Widget widget;
	   Time time;

Inputs
  widget    Specifies the widget which has the active keyboard grab.

  time	    Specifies the time when the grab should end.  CurrentTime is acceptable.

Availability
  Release 4 and later.

Description
  XtUngrabKeyboard() releases an active keyboard grab by calling XUngrabKeyboard(), passing the display of widget and time.

  The  time  argument  may  be a timestamp or the constant CurrentTime.  If the specified time is earlier than the last-keyboard-grab time or
  later than the current server time the keyboard will not be ungrabbed.

  See XtGrabKeyboard() for more information about grabbing the keyboard.

Usage
  Most applications will never need to issue a grab.  XtAddGrab() (called by XtPopup()) can be used  to  implement  modal  popups  inside  an
  application,	and  XtSetKeyboardFocus()  can	be used to redirect keyboard focus within an application.  Neither function actually issues a
  grab, and so does not interrupt event processing by other clients.

See Also
  XtAddGrab(1), XtGrabButton(1), XtGrabKey(1), XtGrabKeyboard(1), XtGrabPointer(1), XtSetKeyboardFocus(1), XtUngrabButton(1), XtUngrabKey(1),
  XtUngrabPointer(1).

Xt - Keyboard Handling														XtUngrabKeyboard()