Searched defs:TypingCommand (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/editing/
H A DTypingCommand.h33 class TypingCommand : public CompositeEditCommand { class in namespace:WebCore
85 static PassRefPtr<TypingCommand> create(Document* document, ETypingCommand command, const String& text = "", Options options = 0, TextGranularity granularity = CharacterGranularity)
87 return adoptRef(new TypingCommand(document, command, text, options, granularity, TextCompositionNone));
90 static PassRefPtr<TypingCommand> create(Document* document, ETypingCommand command, const String& text, Options options, TextCompositionType compositionType)
92 return adoptRef(new TypingCommand(document, command, text, options, CharacterGranularity, compositionType));
95 TypingCommand(Document*, ETypingCommand, const String& text, Options, TextGranularity, TextCompositionType);
108 static void updateSelectionIfDifferentFromCurrentSelection(TypingCommand*, Frame*);
H A DTypingCommand.cpp27 #include "TypingCommand.h"
63 TypingCommand::TypingCommand(Document *document, ETypingCommand commandType, const String &textToInsert, Options options, TextGranularity granularity, TextCompositionType compositionType) function in class:WebCore::TypingCommand
80 void TypingCommand::deleteSelection(Document* document, Options options)
92 TypingCommand* lastTypingCommand = static_cast<TypingCommand*>(lastEditCommand);
98 TypingCommand::create(document, DeleteSelection, "", options)->apply();
101 void TypingCommand::deleteKeyPressed(Document *document, Options options, TextGranularity granularity)
110 TypingCommand* lastTypingCommand = static_cast<TypingCommand*>(lastEditComman
[all...]

Completed in 33 milliseconds