A C project contains a couple of lines including GDK_comma, GDK_dollar, GDK_o, etc. Where can I find a list of these constants?

Specifically, I'm looking for the constant for รถ (ö).

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Check the headers for GDK. On my system it is:

/usr/include/gtk-3.0/gdk/gdkkeysyms-compat.h
link|improve this answer
Thanks! I found GDK_odiaeresis 0x0f6 in that file. – Andreas Jan 8 at 23:51
1  
No problem. Just in case you need to find other things like that, all I did was grep 'GDK_comma'/usr/include/* -R which does a recursive search in all the header files for the known information. – tpg2114 Jan 9 at 4:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.