Instruction set reference
HIPE_OP_EDIT_ACTION
Performs a cut/copy/paste or other edit action on text the user has selected.
This operation can only be carried out by a top-level frame, and works on the entire frame hierarchy (including all child frames within the top-level frame).
Proper documentation for this instruction is yet to be written. For further information about this instruction, look in the source code for its definition in hipe_instruction.h.
- location: 0
- arg[0]: The "action code" character for the function required. See below
Action codes
Character | Editing operation |
---|---|
z | Undo |
Z | Redo |
a | Select all |
x | Cut selected text to clipboard |
c | Copy selected text to clipboard |
v | Paste selected text from clipboard, matching destination formatting |
V | Paste selected text from clipboard, preserving source formatting if applicable |
b | Toggles bold if applicable |
i | Toggles italic if applicable |
u | Toggles underline if applicable |
k | Toggles strikethrough if applicable |
Notes
- This operation will succeed or fail silently. There is no response from the server.
- The undo/redo functionality from QtWebKit is problematic, it seems to undo 'any' operation even if the last operation happened in an inactive frame. This is usually not what the user wants and might lead to the user accidentally undoing several minutes of work in another app without realising it!