Home | History | Annotate | Download | only in dom

Lines Matching defs:TextEvent

28 #include "core/dom/TextEvent.h"
35 PassRefPtr<TextEvent> TextEvent::create()
37 return adoptRef(new TextEvent);
40 PassRefPtr<TextEvent> TextEvent::create(PassRefPtr<AbstractView> view, const String& data, TextEventInputType inputType)
42 return adoptRef(new TextEvent(view, data, inputType));
45 PassRefPtr<TextEvent> TextEvent::createForPlainTextPaste(PassRefPtr<AbstractView> view, const String& data, bool shouldSmartReplace)
47 return adoptRef(new TextEvent(view, data, 0, shouldSmartReplace, false));
50 PassRefPtr<TextEvent> TextEvent::createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle)
52 return adoptRef(new TextEvent(view, "", data, shouldSmartReplace, shouldMatchStyle));
55 PassRefPtr<TextEvent> TextEvent::createForDrop(PassRefPtr<AbstractView> view, const String& data)
57 return adoptRef(new TextEvent(view, data, TextEventInputDrop));
60 TextEvent::TextEvent()
68 TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, TextEventInputType inputType)
79 TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, PassRefPtr<DocumentFragment> pastingFragment,
91 TextEvent::~TextEvent()
95 void TextEvent::initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data)
105 const AtomicString& TextEvent::interfaceName() const