jdk/src/solaris/classes/sun/awt/X11/genhash.awk
author dcherepanov
Thu, 09 Jul 2009 15:23:22 -0400
changeset 3234 f0007f6747b0
parent 450 be95c1c0efcf
child 5506 202f599c92aa
permissions -rw-r--r--
6847958: MouseWheel event is getting triggered for the disabled Textarea in jdk7 b60 pit build. Reviewed-by: art
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
450
be95c1c0efcf 6627324: Alt Graph doesnot generate any key event when pressing in German locale
yan
parents: 2
diff changeset
     1
# Copyright 2008 Sun Microsystems, Inc.  All Rights Reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
# This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
# under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
# published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
# particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
# by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
# This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
# version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
# accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
# You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
# 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
# CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
# have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
#  With this script one can generate a new version XKeysym.java file out
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
#  of keysym2ucs.h prototype and UnicodeData.txt database.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#  Latter file should be fetched from a unicode.org site, most
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#  probably http://www.unicode.org/Public/UNIDATA/UnicodeData.txt
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
#
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
BEGIN {   FS=";";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
          while((getline < "UnicodeData.txt")){
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
              unic[$1]=$2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
          FS=" ";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
          print("// This is a generated file: do not edit! Edit keysym2ucs.h if necessary.\n");          
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
      }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
/^0x/{
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
         if( $1 != "0x0000" ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
             ndx =  toupper($1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
             sub(/0X/, "", ndx);
450
be95c1c0efcf 6627324: Alt Graph doesnot generate any key event when pressing in German locale
yan
parents: 2
diff changeset
    41
             printf("        keysym2UCSHash.put( (long)%s, (char)%s); // %s -->%s\n",
be95c1c0efcf 6627324: Alt Graph doesnot generate any key event when pressing in German locale
yan
parents: 2
diff changeset
    42
                        $4, $1, $3, (unic[ndx]=="" ? "" : " " unic[ndx]));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
     }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
/tojava/ { sub(/tojava /, ""); sub(/tojava$/, ""); print}