Sponsored Content
Full Discussion: xlib and keyboard events
Top Forums UNIX for Advanced & Expert Users xlib and keyboard events Post 302721459 by N7DR on Thursday 25th of October 2012 12:15:56 PM
Old 10-25-2012
After a lot more experimentation, I discovered that the trick is to use:

Code:
XGrabKey(<Display*>, AnyKey, AnyModifier, <window>, false, GrabModeAsync, GrabModeAsync);

So far, that seems to do exactly what I needed.

I do wish, though, that I had been able to find an xlib reflector or some similar resource. I felt like I was spending an awful of time flailing around just trying stuff, and a few words from an xlib expert could have pointed me in the right direction without my having to go through all that pain. The xlib documentation is pretty good, but even so there are plenty of ambiguities in the language, so much of the time I had to resort to trying combinations of plausible functions until I hit the one that worked.

DGPickett: I think you misunderstand my issue, although I tried to make it as clear as I could. If I understand you correctly, you seem to be saying that I shouldn't be involved in X at all, and in particular not an xterm. But the entire context of the problem is within an xterm, so I think that X has to be involved in the solution.
 

5 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

How can I map Unix keyboard for PC keyboard

A Solaris AXI 440 machine with Solaris 8 version. I have PC users who use an emulation to login to the Solaris server. How can I change the keyboard mapping of the Sun keyboard to fit to the PC keyboard ? Any comment will be appreciated. Thanks (1 Reply)
Discussion started by: simhab
1 Replies

2. Programming

How to get capture input events from keyboard and mouse

Hi, Is there any way to capture/record the input events from keyboard, as well as from mouse using C. Thanks in advance (4 Replies)
Discussion started by: yhacks
4 Replies

3. Programming

Xlib mouse events and ButtonPressMask

I have written a simple program which will report key press and release events for a particular window. In my case, it is mostly the terminal since I invoke the program from the terminal. I am able to get the key press and release events taking place in the terminal window (I have used... (0 Replies)
Discussion started by: abhinav.zoso
0 Replies

4. 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

5. Programming

Xlib registering

hey, Im new to the linux world. Lately, I have tried to create a glx window with xlib, making it a popup window(fullscreen) so I set override_redirect to true. Im happy with the removed borders, but apparantly, the application doesnt show up in the left bar in ubuntu, neither when I press alt... (4 Replies)
Discussion started by: thedardanius
4 Replies
XtGrabKeyboard()														  XtGrabKeyboard()

Name
  XtGrabKeyboard - actively grab the keyboard.

Synopsis
  int XtGrabKeyboard(widget, owner_events, pointer_mode, keyboard_mode, time)
	   Widget widget;
	   Boolean owner_events;
	   int pointer_mode, keyboard_mode;
	   Time time;

Inputs
  widget    Specifies the widget for whose window the keyboard is to be grabbed.  Must be of class Core or any subclass thereof.

  owner_events
	    Specifies  whether	the pointer events are to be reported normally within this application (pass True) or only to the grab window
	    (pass False).

  pointer_mode
	    Controls processing of pointer events during the grab.  Either GrabModeSync or GrabModeAsync.

  keyboard_mode
	    Controls processing of keyboard events during the grab.  Either GrabModeSync or GrabModeAsync.

  time	    Specifies the time when the grab should take place.  Pass either a timestamp (from an event) or the constant CurrentTime.

Description
  If the specified widget is realized XtGrabKeyboard() calls XGrabKeyboard() specifying the widget's window as the grab_window,  passing  its
  remaining  argument unmodified, and returning whatever XGrabKeyboard() returns.  If the widget is not realized, XGrabKeyboard() immediately
  returns GrabNotViewable.  No future automatic ungrab is implied by XtGrabKeyboard().

  See the "Background" section below for a description of the arguments and an explanation of event  processing  during  an  active  keyboard
  grab.

Usage
  When	the keyboard is grabbed, all key events are delivered to the widget you specify or to your application, regardless of the location of
  the pointer.	There are not many occasions when this is a reasonable thing to do, because it locks out input to other applications.	xterm
  grabs the keyboard to implement secure mode.

  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.

  To cancel an active keyboard grab, use XtUngrabKeyboard().

Background
  The  XGrabKeyboard()	function  actively  grabs  control of the keyboard and generates FocusIn and FocusOut events.  Further key events are
  reported only to the grabbing client.  XGrabKeyboard() overrides any active keyboard grab by this client.  If owner_events  is  False,  all
  generated  key  events  are  reported  with  respect to grab_window. If owner_events is True and if a generated key event would normally be
  reported to this client, it is reported normally; otherwise, the event is reported with respect  to  the  grab_window.  Both	KeyPress  and
  KeyRelease events are always reported, independent of any event selection made by the client.

  If  the keyboard_mode argument is GrabModeAsync, keyboard event processing continues as usual.  If the keyboard is currently frozen by this
  client, then processing of keyboard events is resumed.  If the keyboard_mode argument is GrabModeSync, the state of the keyboard  (as  seen
  by client applications) appears to freeze, and the X server generates no further keyboard events until the grabbing client issues a releas-
  ing XAllowEvents() call or until the keyboard grab is released.  Actual keyboard changes are not lost while the keyboard  is	frozen;  they
  are simply queued in the server for later processing.

  If  pointer_mode  is GrabModeAsync, pointer event processing is unaffected by activation of the grab.  If pointer_mode is GrabModeSync, the
  state of the pointer (as seen by client applications) appears to freeze, and the X server generates no further  pointer  events  until  the
  grabbing  client  issues a releasing XAllowEvents() call or until the keyboard grab is released.  Actual pointer changes are not lost while
  the pointer is frozen; they are simply queued in the server for later processing.

  If the keyboard is actively grabbed by some other client, XGrabKeyboard() fails and returns AlreadyGrabbed.  If grab_window  is  not	view-
  able,  it  fails  and  returns  GrabNotViewable.   If  the  keyboard	is  frozen  by an active grab of another client, it fails and returns
  GrabFrozen.  If the specified time is earlier than the last-keyboard-grab time or later than the  current  X	server	time,  it  fails  and
  returns  GrabInvalidTime.   Otherwise,  the  last-keyboard-grab time is set to the specified time (CurrentTime is replaced by the current X
  server time).

  XGrabKeyboard() can generate BadValue and BadWindow errors.

See Also
  XtAddGrab(1), XtGrabButton(1), XtGrabKey(1), XtGrabPointer(1), XtRegisterGrabAction(1), XtUngrabButton(1), XtUngrabKey(1), XtUngrabKey-
  board(1), XtUngrabPointer(1).

Xt - Keyboard Handling														  XtGrabKeyboard()
All times are GMT -4. The time now is 09:10 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy