Home | History | Annotate | Download | only in dom

Lines Matching defs:TextEvent

37     class TextEvent : public UIEvent {
40 static PassRefPtr<TextEvent> create();
41 static PassRefPtr<TextEvent> create(PassRefPtr<AbstractView>, const String& data, TextEventInputType = TextEventInputKeyboard);
42 static PassRefPtr<TextEvent> createForPlainTextPaste(PassRefPtr<AbstractView> view, const String& data, bool shouldSmartReplace);
43 static PassRefPtr<TextEvent> createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle);
44 static PassRefPtr<TextEvent> createForDrop(PassRefPtr<AbstractView> view, const String& data);
46 virtual ~TextEvent();
65 TextEvent();
67 TextEvent(PassRefPtr<AbstractView>, const String& data, TextEventInputType = TextEventInputKeyboard);
68 TextEvent(PassRefPtr<AbstractView>, const String& data, PassRefPtr<DocumentFragment>,