Sponsored Content
Top Forums Programming X11: convert a string into keysym Post 302592271 by martina on Monday 23rd of January 2012 11:16:38 AM
Old 01-23-2012
X11: convert a string into keysym

Quote:
If they're not the right key codes, I don't know what reading them from the file would accomplish.
Sorry, i was not so clear. My vector contains just the "mnemonic macro names for these keysyms" (from X11/keysymdef.h), i.e.
Code:
kbdEventsVect[0] = XK_Up 
kbdEventsVect[1] = XK_Down
[...]

In X11/keysymdef.h
Code:
#define XK_Up                            0xff52
#define XK_Down                        0xff54

So my goal is to make my code read the kbdEventsVect[0], and map the corresponding string (XK_Up) to the correct int (0xff52). My problem is that the last step does not want to work, since my code does not read the string XK_Up to the correct macro in the X11 library.
Anyway, I found a loophole, not what I wanted but for know it is fine. I directly fill my string vector with the keysym codes (0xff52), so

Code:
kbdEventsVect[0] =0xff52

then I convert the string into an unsigned int
Code:
 unsigned int kbdKeyNum;

 kbdKeyNum = strtoul (kbdEventsVect[0].c_str(),NULL,0);
   
 sendKBEvent(display,kbdKeyNum, 0);

and now it works.

Thank you for your help!
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Convert string to numeric

Hi, I have read some figures from a text file by getting the position and wish to do some checking, but it seem like it won't work. eg. my figure is 0.68 it still go the the else statement, it seems like it treat it as a text instead of number. Anybody can Help ? Thanks. # only... (3 Replies)
Discussion started by: kflee2000
3 Replies

2. Shell Programming and Scripting

how to convert a string to int

Hi, i want to read a text file whose content(single line) will be a number like 1 or 2 or 3 ..... what i want to do is to read the file and increment the content of the file, using unix scripting. Regards, Senthil Kumar Siddhan. (2 Replies)
Discussion started by: senthilk615
2 Replies

3. Windows & DOS: Issues & Discussions

cygwin-x/can't install xorg-x11-f100 & xorg-x11-fnts

Hello All. Really a newbie to Linux/Unix. Trying to get into Linux. Using XP PE currently. Installed cygwin and trying to intall cygwin-x. Everything else is setup nice but i can't seem to install these two packages (without whom xwin won't start) 1. xorg-x11-f100 2. xorg-x11-fnts Tried the... (1 Reply)
Discussion started by: binodbdrchand
1 Replies

4. Shell Programming and Scripting

how to convert array into the string

Hi I have a line/string as follows: A=" 3498 NORDEA - INDX LINKED NORY" which was converted into an array of characters: p321$ echo "${ARR}" 3 4 9 8 N O R D E A - I N D X L I N K E D N O R Y When I am trying print this array there are blank... (4 Replies)
Discussion started by: aoussenko
4 Replies

5. Shell Programming and Scripting

Help with convert string

Hi. I will be very appreciated for help. I need replace all characters into string with \ (backslash) I mean if I have word abcdefg as input. How I can convert it to \a\b\c\d\e\f\g Thanks and best regards. Staas. (5 Replies)
Discussion started by: beckss
5 Replies

6. UNIX for Advanced & Expert Users

[Solved] putty+x11:How do I pass X11 display rights to "su"?

I can log into a unix system with Putty. I've set the "X11 forwarding" checkbox, and I've verified that I can display an X11 window back on my laptop. What I need to be able to do is "su" to another uid after logging in and then run something which display a window back on my laptop, with the... (2 Replies)
Discussion started by: dkarr
2 Replies

7. Shell Programming and Scripting

Convert string using sed

I have a couple structure definitions in my input code. For example: struct node { int val; struct node *next; }; or typedef struct { int numer; int denom; } Rational; I used the following line to convert them into one line and copy it twice. sed '/struct*{/{:l... (3 Replies)
Discussion started by: James Denton
3 Replies

8. Shell Programming and Scripting

Search several string and convert into a single line for each search string using awk command AIX?.

I need to search the file using strings "Request Type" , " Request Method" , "Response Type" and by using result set find the xml tags and convert into a single line?. below are the scenarios. Cat test Nov 10, 2012 5:17:53 AM INFO: Request Type Line 1.... (5 Replies)
Discussion started by: laknar
5 Replies

9. Shell Programming and Scripting

Convert a String to a Number

I read in two numbers from a user but the number is a string. #!/bin/bash read -p "Enter first number: " num1 read -p "Enter second number: " num2 I know you can use the the "expr" or "bc" command to automatically convert the string to a number then add them together. But I don't want to add... (10 Replies)
Discussion started by: Loc
10 Replies
IsCursorKey(3X11)						  XLIB FUNCTIONS						 IsCursorKey(3X11)

NAME
IsCursorKey, IsFunctionKey, IsKeypadKey, IsMiscFunctionKey, IsModiferKey, IsPFKey, IsPrivateKeypadKey - keysym classification macros SYNTAX
IsCursorKey(keysym) IsFunctionKey(keysym) IsKeypadKey(keysym) IsMiscFunctionKey(keysym) IsModifierKey(keysym) IsPFKey(keysym) IsPrivateKeypadKey(keysym) ARGUMENTS
keysym Specifies the KeySym that is to be tested. DESCRIPTION
The IsCursorKey macro returns True if the specified KeySym is a cursor key. The IsFunctionKey macro returns True if the KeySym is a function key. The IsKeypadKey macro returns True if the specified KeySym is a keypad key. The IsMiscFunctionKey macro returns True if the specified KeySym is a miscellaneous function key. The IsModiferKey macro returns True if the specified KeySym is a modifier key. The IsPFKey macro returns True if the specified KeySym is a PF key. The IsPrivateKeypadKey macro returns True if the specified KeySym is a vendor-private keypad key. SEE ALSO
AllPlanes(3X11), BlackPixelOfScreen(3X11), ImageByteOrder(3X11) Xlib - C Language X Interface X Version 11 Release 6.6 IsCursorKey(3X11)
All times are GMT -4. The time now is 07:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy