HomeSort by relevance Sort by last modified time
    Searched defs:TypingCommand (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/editing/
TypingCommand.h 33 class TypingCommand : public CompositeEditCommand {
69 static PassRefPtr<TypingCommand> create(Document* document, ETypingCommand command, const String& text = "", bool selectInsertedText = false, TextGranularity granularity = CharacterGranularity, bool killRing = false)
71 return adoptRef(new TypingCommand(document, command, text, selectInsertedText, granularity, killRing));
74 TypingCommand(Document*, ETypingCommand, const String& text, bool selectInsertedText, TextGranularity, bool killRing);
TypingCommand.cpp 27 #include "TypingCommand.h"
50 TypingCommand::TypingCommand(Document *document, ETypingCommand commandType, const String &textToInsert, bool selectInsertedText, TextGranularity granularity, bool killRing)
64 void TypingCommand::deleteSelection(Document* document, bool smartDelete)
76 static_cast<TypingCommand*>(lastEditCommand)->deleteSelection(smartDelete);
80 RefPtr<TypingCommand> typingCommand = TypingCommand::create(document, DeleteSelection, "", false);
81 typingCommand->setSmartDelete(smartDelete);
82 typingCommand->apply()
    [all...]

Completed in 33 milliseconds