OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
4 * Copyright (C) 2009 Igalia S.L. | 4 * Copyright (C) 2009 Igalia S.L. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
8 * are met: | 8 * are met: |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1042 } | 1042 } |
1043 | 1043 |
1044 static bool executeSetMark(Frame& frame, Event*, EditorCommandSource, const Stri
ng&) | 1044 static bool executeSetMark(Frame& frame, Event*, EditorCommandSource, const Stri
ng&) |
1045 { | 1045 { |
1046 frame.editor().setMark(frame.selection().selection()); | 1046 frame.editor().setMark(frame.selection().selection()); |
1047 return true; | 1047 return true; |
1048 } | 1048 } |
1049 | 1049 |
1050 static bool executeStrikethrough(Frame& frame, Event*, EditorCommandSource sourc
e, const String&) | 1050 static bool executeStrikethrough(Frame& frame, Event*, EditorCommandSource sourc
e, const String&) |
1051 { | 1051 { |
1052 RefPtr<CSSPrimitiveValue> lineThrough = CSSPrimitiveValue::createIdentifier(
CSSValueLineThrough); | 1052 RefPtrWillBeRawPtr<CSSPrimitiveValue> lineThrough = CSSPrimitiveValue::creat
eIdentifier(CSSValueLineThrough); |
1053 return executeToggleStyleInList(frame, source, EditActionUnderline, CSSPrope
rtyWebkitTextDecorationsInEffect, lineThrough.get()); | 1053 return executeToggleStyleInList(frame, source, EditActionUnderline, CSSPrope
rtyWebkitTextDecorationsInEffect, lineThrough.get()); |
1054 } | 1054 } |
1055 | 1055 |
1056 static bool executeStyleWithCSS(Frame& frame, Event*, EditorCommandSource, const
String& value) | 1056 static bool executeStyleWithCSS(Frame& frame, Event*, EditorCommandSource, const
String& value) |
1057 { | 1057 { |
1058 frame.editor().setShouldStyleWithCSS(!equalIgnoringCase(value, "false")); | 1058 frame.editor().setShouldStyleWithCSS(!equalIgnoringCase(value, "false")); |
1059 return true; | 1059 return true; |
1060 } | 1060 } |
1061 | 1061 |
1062 static bool executeUseCSS(Frame& frame, Event*, EditorCommandSource, const Strin
g& value) | 1062 static bool executeUseCSS(Frame& frame, Event*, EditorCommandSource, const Strin
g& value) |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1097 } | 1097 } |
1098 | 1098 |
1099 static bool executeTranspose(Frame& frame, Event*, EditorCommandSource, const St
ring&) | 1099 static bool executeTranspose(Frame& frame, Event*, EditorCommandSource, const St
ring&) |
1100 { | 1100 { |
1101 frame.editor().transpose(); | 1101 frame.editor().transpose(); |
1102 return true; | 1102 return true; |
1103 } | 1103 } |
1104 | 1104 |
1105 static bool executeUnderline(Frame& frame, Event*, EditorCommandSource source, c
onst String&) | 1105 static bool executeUnderline(Frame& frame, Event*, EditorCommandSource source, c
onst String&) |
1106 { | 1106 { |
1107 RefPtr<CSSPrimitiveValue> underline = CSSPrimitiveValue::createIdentifier(CS
SValueUnderline); | 1107 RefPtrWillBeRawPtr<CSSPrimitiveValue> underline = CSSPrimitiveValue::createI
dentifier(CSSValueUnderline); |
1108 return executeToggleStyleInList(frame, source, EditActionUnderline, CSSPrope
rtyWebkitTextDecorationsInEffect, underline.get()); | 1108 return executeToggleStyleInList(frame, source, EditActionUnderline, CSSPrope
rtyWebkitTextDecorationsInEffect, underline.get()); |
1109 } | 1109 } |
1110 | 1110 |
1111 static bool executeUndo(Frame& frame, Event*, EditorCommandSource, const String&
) | 1111 static bool executeUndo(Frame& frame, Event*, EditorCommandSource, const String&
) |
1112 { | 1112 { |
1113 frame.editor().undo(); | 1113 frame.editor().undo(); |
1114 return true; | 1114 return true; |
1115 } | 1115 } |
1116 | 1116 |
1117 static bool executeUnlink(Frame& frame, Event*, EditorCommandSource, const Strin
g&) | 1117 static bool executeUnlink(Frame& frame, Event*, EditorCommandSource, const Strin
g&) |
(...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1730 return m_command->state(*m_frame, triggeringEvent) == TrueTriState ? "tr
ue" : "false"; | 1730 return m_command->state(*m_frame, triggeringEvent) == TrueTriState ? "tr
ue" : "false"; |
1731 return m_command->value(*m_frame, triggeringEvent); | 1731 return m_command->value(*m_frame, triggeringEvent); |
1732 } | 1732 } |
1733 | 1733 |
1734 bool Editor::Command::isTextInsertion() const | 1734 bool Editor::Command::isTextInsertion() const |
1735 { | 1735 { |
1736 return m_command && m_command->isTextInsertion; | 1736 return m_command && m_command->isTextInsertion; |
1737 } | 1737 } |
1738 | 1738 |
1739 } // namespace WebCore | 1739 } // namespace WebCore |
OLD | NEW |