Title: [152389] trunk/Source/WebCore
Revision
152389
Author
[email protected]
Date
2013-07-03 23:20:33 -0700 (Wed, 03 Jul 2013)

Log Message

[EFL] Support some more editing keyboard events
https://bugs.webkit.org/show_bug.cgi?id=118346

Patch by KyungTae Kim <[email protected]> on 2013-07-03
Reviewed by Gyuyoung Kim.

For editable contents, support the shortcuts for copy, page, cut, select all, undo and redo.

* platform/efl/EflKeyboardUtilities.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (152388 => 152389)


--- trunk/Source/WebCore/ChangeLog	2013-07-04 05:28:03 UTC (rev 152388)
+++ trunk/Source/WebCore/ChangeLog	2013-07-04 06:20:33 UTC (rev 152389)
@@ -1,3 +1,14 @@
+2013-07-03  KyungTae Kim  <[email protected]>
+
+        [EFL] Support some more editing keyboard events
+        https://bugs.webkit.org/show_bug.cgi?id=118346
+
+        Reviewed by Gyuyoung Kim.
+
+        For editable contents, support the shortcuts for copy, page, cut, select all, undo and redo.
+
+        * platform/efl/EflKeyboardUtilities.cpp:
+
 2013-07-03  Chris Fleizach  <[email protected]>
 
         AX: Items the img aria role aren't inserting an object replacement character

Modified: trunk/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp (152388 => 152389)


--- trunk/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp	2013-07-04 05:28:03 UTC (rev 152388)
+++ trunk/Source/WebCore/platform/efl/EflKeyboardUtilities.cpp	2013-07-04 06:20:33 UTC (rev 152389)
@@ -301,6 +301,15 @@
     { VK_RETURN, CtrlKey,            "InsertNewline"                               },
     { VK_RETURN, AltKey,             "InsertNewline"                               },
     { VK_RETURN, AltKey | ShiftKey,  "InsertNewline"                               },
+
+    { 'C',       CtrlKey,            "Copy"                                        },
+    { 'V',       CtrlKey,            "Paste"                                       },
+    { 'X',       CtrlKey,            "Cut"                                         },
+
+    { 'A',       CtrlKey,            "SelectAll"                                   },
+    { 'Z',       CtrlKey,            "Undo"                                        },
+    { 'Z',       CtrlKey | ShiftKey, "Redo"                                        },
+    { 'Y',       CtrlKey,            "Redo"                                        },
 };
 
 static const KeyPressEntry keyPressEntries[] = {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to