0

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 ö (ö).

Andreas
  • 7,470
  • 10
  • 51
  • 73

1 Answers1

1

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

/usr/include/gtk-3.0/gdk/gdkkeysyms-compat.h
tpg2114
  • 14,112
  • 6
  • 42
  • 57
  • Thanks! I found `GDK_odiaeresis 0x0f6` in that file. – Andreas Jan 08 '12 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 09 '12 at 04:47