Searched refs:TypingCommand (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/editing/
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...]
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 DInsertTextCommand.h61 friend class TypingCommand;
H A DEditingAllInOne.cpp73 #include <TypingCommand.cpp>
H A DEditor.cpp81 #include "TypingCommand.h"
298 TypingCommand::deleteKeyPressed(m_frame->document(), canSmartCopyOrDelete() ? TypingCommand::SmartDelete : 0, granularity);
307 TypingCommand::Options options = 0;
309 options |= TypingCommand::SmartDelete;
311 options |= TypingCommand::KillRing;
315 TypingCommand::forwardDeleteKeyPressed(m_frame->document(), options, granularity);
319 TypingCommand::deleteKeyPressed(m_frame->document(), options, granularity);
1115 TypingCommand::Options options = 0;
1117 options |= TypingCommand
[all...]
H A DEditorCommand.cpp57 #include "TypingCommand.h"
321 TypingCommand::deleteKeyPressed(frame->document(), frame->selection()->granularity() == WordGranularity ? TypingCommand::SmartDelete : 0);
458 TypingCommand::forwardDeleteKeyPressed(frame->document());
513 TypingCommand::insertLineBreak(frame->document(), 0);
528 TypingCommand::insertParagraphSeparatorInQuotedContent(frame->document());
540 TypingCommand::insertParagraphSeparator(frame->document(), 0);
551 TypingCommand::insertText(frame->document(), value, 0);
H A DSelectionController.cpp59 #include "TypingCommand.h"
167 TypingCommand::closeTyping(m_frame->editor()->lastEditCommand());
/external/webkit/Source/WebKit/mac/WebView/
H A DWebFrame.mm91 #import <WebCore/TypingCommand.h>
796 TypingCommand::insertParagraphSeparatorInQuotedContent(_private->coreFrame->document());
/external/webkit/Source/WebKit/android/jni/
H A DWebViewCore.cpp128 #include "TypingCommand.h"
2960 WebCore::TypingCommand::insertText(focus->document(), replace,
2963 WebCore::TypingCommand::deleteSelection(focus->document());
4266 WebCore::TypingCommand::deleteSelection(document, 0);
4285 WebCore::TypingCommand::insertText(document, text,
4286 TypingCommand::PreventSpellChecking);
/external/webkit/Source/WebCore/
H A DAndroid.mk266 editing/TypingCommand.cpp \
/external/webkit/Source/WebKit/win/
H A DWebView.cpp131 #include <WebCore/TypingCommand.h>

Completed in 238 milliseconds