Changeset 60692 in webkit


Ignore:
Timestamp:
Jun 4, 2010 11:48:51 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-06-04 Jay Civelli <jcivelli@chromium.org>

Reviewed by David Levin.

[chromium] Adding support for the left and right Windows keys to the

NativeWebKeyboardEvent.

https://bugs.webkit.org/show_bug.cgi?id=39752

  • platform/chromium/KeyCodeConversionGtk.cpp: (WebCore::windowsKeyCodeForKeyEvent):

2010-06-04 Jay Civelli <jcivelli@chromium.org>

Reviewed by David Levin.

[chromium] Adding support for the left and right Windows keys to the

NativeWebKeyboardEvent.

https://bugs.webkit.org/show_bug.cgi?id=39752

  • src/gtk/WebInputEventFactory.cpp: (WebKit::gdkEventToWindowsKeyCode):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r60689 r60692  
     12010-06-04  Jay Civelli  <jcivelli@chromium.org>
     2
     3        Reviewed by David Levin.
     4
     5        [chromium] Adding support for the left and right Windows keys to the
     6                   NativeWebKeyboardEvent.
     7        https://bugs.webkit.org/show_bug.cgi?id=39752
     8
     9        * platform/chromium/KeyCodeConversionGtk.cpp:
     10        (WebCore::windowsKeyCodeForKeyEvent):
     11
    1122010-06-04  Dirk Schulze  <krit@webkit.org>
    213
  • trunk/WebCore/platform/chromium/KeyCodeConversionGtk.cpp

    r53942 r60692  
    277277        return VKEY_Z; //  (5A) Z key case 'z': case 'Z': return 0x5A;
    278278    case GDK_Meta_L:
     279    case GDK_Super_L:
    279280        return VKEY_LWIN; // (5B) Left Windows key (Microsoft Natural keyboard)
    280281    case GDK_Meta_R:
     282    case GDK_Super_R:
    281283        return VKEY_RWIN; // (5C) Right Windows key (Natural keyboard)
    282284        // VKEY_SLEEP (5F) Computer Sleep key
  • trunk/WebKit/chromium/ChangeLog

    r60679 r60692  
     12010-06-04  Jay Civelli  <jcivelli@chromium.org>
     2
     3        Reviewed by David Levin.
     4
     5        [chromium] Adding support for the left and right Windows keys to the
     6                   NativeWebKeyboardEvent.
     7        https://bugs.webkit.org/show_bug.cgi?id=39752
     8
     9        * src/gtk/WebInputEventFactory.cpp:
     10        (WebKit::gdkEventToWindowsKeyCode):
     11
    1122010-06-04  Pavel Podivilov  <podivilov@chromium.org>
    213
  • trunk/WebKit/chromium/src/gtk/WebInputEventFactory.cpp

    r55792 r60692  
    152152        GDK_slash,         // 0x3D: GDK_slash
    153153        0,                 // 0x3E: GDK_Shift_R
     154        0,                 // 0x3F:
     155        0,                 // 0x40:
     156        0,                 // 0x41:
     157        0,                 // 0x42:
     158        0,                 // 0x43:
     159        0,                 // 0x44:
     160        0,                 // 0x45:
     161        0,                 // 0x46:
     162        0,                 // 0x47:
     163        0,                 // 0x48:
     164        0,                 // 0x49:
     165        0,                 // 0x4A:
     166        0,                 // 0x4B:
     167        0,                 // 0x4C:
     168        0,                 // 0x4D:
     169        0,                 // 0x4E:
     170        0,                 // 0x4F:
     171        0,                 // 0x50:
     172        0,                 // 0x51:
     173        0,                 // 0x52:
     174        0,                 // 0x53:
     175        0,                 // 0x54:
     176        0,                 // 0x55:
     177        0,                 // 0x56:
     178        0,                 // 0x57:
     179        0,                 // 0x58:
     180        0,                 // 0x59:
     181        0,                 // 0x5A:
     182        0,                 // 0x5B:
     183        0,                 // 0x5C:
     184        0,                 // 0x5D:
     185        0,                 // 0x5E:
     186        0,                 // 0x5F:
     187        0,                 // 0x60:
     188        0,                 // 0x61:
     189        0,                 // 0x62:
     190        0,                 // 0x63:
     191        0,                 // 0x64:
     192        0,                 // 0x65:
     193        0,                 // 0x66:
     194        0,                 // 0x67:
     195        0,                 // 0x68:
     196        0,                 // 0x69:
     197        0,                 // 0x6A:
     198        0,                 // 0x6B:
     199        0,                 // 0x6C:
     200        0,                 // 0x6D:
     201        0,                 // 0x6E:
     202        0,                 // 0x6F:
     203        0,                 // 0x70:
     204        0,                 // 0x71:
     205        0,                 // 0x72:
     206        GDK_Super_L,       // 0x73: GDK_Super_L
     207        GDK_Super_R,       // 0x74: GDK_Super_R
    154208    };
    155209
Note: See TracChangeset for help on using the changeset viewer.