summaryrefslogtreecommitdiff
path: root/gtk/compose-parse.py
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-01-04 12:21:41 -0500
committerMatthias Clasen <mclasen@redhat.com>2011-01-04 12:21:41 -0500
commitb5c6904c2f77d20e64b86c48b262d7306502a880 (patch)
tree8e6131f3976ff1ff68f5a4fd955d92b21c602278 /gtk/compose-parse.py
parent16877b4d7bef813a42643ae50c14b13dc8302b36 (diff)
downloadgtk+-b5c6904c2f77d20e64b86c48b262d7306502a880.tar.gz
Drop explicit includes of gdkkeysyms.h
These are no longer needed. At the same time, port gtkimcontextsimpleseqs.h to use the new GDK_KEY_ symbols.
Diffstat (limited to 'gtk/compose-parse.py')
-rwxr-xr-xgtk/compose-parse.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/compose-parse.py b/gtk/compose-parse.py
index 6fe1929725..18d9f3f162 100755
--- a/gtk/compose-parse.py
+++ b/gtk/compose-parse.py
@@ -253,7 +253,7 @@ def process_gdkkeysymsh():
for line in gdkkeysymsh.readlines():
linenum_gdkkeysymsh += 1
line = line.strip()
- if line == "" or not match('^#define GDK_', line):
+ if line == "" or not match('^#define GDK_KEY_', line):
continue
components = split('\s+', line)
if len(components) < 3:
@@ -261,10 +261,10 @@ def process_gdkkeysymsh():
% {'linenum': linenum_gdkkeysymsh, 'filename': filename_gdkkeysymsh, 'line': line}
print "Was expecting 3 items in the line"
sys.exit(-1)
- if not match('^GDK_', components[1]):
+ if not match('^GDK_KEY_', components[1]):
print "Invalid line %(linenum)d in %(filename)s: %(line)s"\
% {'linenum': linenum_gdkkeysymsh, 'filename': filename_gdkkeysymsh, 'line': line}
- print "Was expecting a keysym starting with GDK_"
+ print "Was expecting a keysym starting with GDK_KEY_"
sys.exit(-1)
if match('^0x[0-9a-fA-F]+$', components[2]):
unival = long(components[2][2:], 16)
@@ -772,9 +772,9 @@ def convert_UnotationToHex(arg):
def addprefix_GDK(arg):
if match('^0x', arg):
- return '%(arg)s, ' % { 'arg': arg }
+ return '%(arg)s, ' % { 'arg': arg }
else:
- return 'GDK_%(arg)s, ' % { 'arg': arg }
+ return 'GDK_KEY_%(arg)s, ' % { 'arg': arg }
if opt_gtk:
first_keysym = ""
@@ -818,7 +818,7 @@ if opt_gtk:
print "0x%(ks)04X," % { "ks": keysymvalue(i[0]) },
print '%(str)s' % { 'str': "".join(map(lambda x : str(x) + ", ", i[1:])) }
elif not match('^0x', i[0]):
- print 'GDK_%(str)s' % { 'str': "".join(map(lambda x : str(x) + ", ", i)) }
+ print 'GDK_KEY_%(str)s' % { 'str': "".join(map(lambda x : str(x) + ", ", i)) }
else:
print '%(str)s' % { 'str': "".join(map(lambda x : str(x) + ", ", i)) }
for i in ct_second_part: