Home | History | Annotate | Download | only in events

Lines Matching defs:UIEvent

42 class UIEvent : public Event {
45 static PassRefPtrWillBeRawPtr<UIEvent> create()
47 return adoptRefWillBeNoop(new UIEvent);
49 static PassRefPtrWillBeRawPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView> view, int detail)
51 return adoptRefWillBeNoop(new UIEvent(type, canBubble, cancelable, view, detail));
53 static PassRefPtrWillBeRawPtr<UIEvent> create(const AtomicString& type, const UIEventInit& initializer)
55 return adoptRefWillBeNoop(new UIEvent(type, initializer));
57 virtual ~UIEvent();
81 UIEvent();
82 UIEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<AbstractView>, int detail);
83 UIEvent(const AtomicString&, const UIEventInit&);