| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006, 2008 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 ~CompositeEditCommand() override; | 80 ~CompositeEditCommand() override; |
| 81 | 81 |
| 82 // Returns |false| if the command failed. e.g. It's aborted. | 82 // Returns |false| if the command failed. e.g. It's aborted. |
| 83 bool apply(); | 83 bool apply(); |
| 84 bool isFirstCommand(EditCommand* command) { return !m_commands.isEmpty() &&
m_commands.first() == command; } | 84 bool isFirstCommand(EditCommand* command) { return !m_commands.isEmpty() &&
m_commands.first() == command; } |
| 85 EditCommandComposition* composition() { return m_composition.get(); } | 85 EditCommandComposition* composition() { return m_composition.get(); } |
| 86 EditCommandComposition* ensureComposition(); | 86 EditCommandComposition* ensureComposition(); |
| 87 | 87 |
| 88 virtual bool isReplaceSelectionCommand() const; | 88 virtual bool isReplaceSelectionCommand() const; |
| 89 virtual bool isTypingCommand() const; | 89 virtual bool isTypingCommand() const; |
| 90 virtual bool isInsertTextCommand() const; |
| 90 virtual bool preservesTypingStyle() const; | 91 virtual bool preservesTypingStyle() const; |
| 91 virtual void setShouldRetainAutocorrectionIndicator(bool); | 92 virtual void setShouldRetainAutocorrectionIndicator(bool); |
| 92 virtual bool shouldStopCaretBlinking() const { return false; } | 93 virtual bool shouldStopCaretBlinking() const { return false; } |
| 93 | 94 |
| 94 DECLARE_VIRTUAL_TRACE(); | 95 DECLARE_VIRTUAL_TRACE(); |
| 95 | 96 |
| 96 protected: | 97 protected: |
| 97 explicit CompositeEditCommand(Document&); | 98 explicit CompositeEditCommand(Document&); |
| 98 | 99 |
| 99 // | 100 // |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 bool isCompositeEditCommand() const final { return true; } | 179 bool isCompositeEditCommand() const final { return true; } |
| 179 | 180 |
| 180 Member<EditCommandComposition> m_composition; | 181 Member<EditCommandComposition> m_composition; |
| 181 }; | 182 }; |
| 182 | 183 |
| 183 DEFINE_TYPE_CASTS(CompositeEditCommand, EditCommand, command, command->isComposi
teEditCommand(), command.isCompositeEditCommand()); | 184 DEFINE_TYPE_CASTS(CompositeEditCommand, EditCommand, command, command->isComposi
teEditCommand(), command.isCompositeEditCommand()); |
| 184 | 185 |
| 185 } // namespace blink | 186 } // namespace blink |
| 186 | 187 |
| 187 #endif // CompositeEditCommand_h | 188 #endif // CompositeEditCommand_h |
| OLD | NEW |