| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2008, The Android Open Source Project | 2 * Copyright 2008, The Android Open Source Project |
| 3 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. | 3 * Copyright (C) 2012 Research In Motion Limited. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above copyright | 10 * * Redistributions in binary form must reproduce the above copyright |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 #include "core/events/EventDispatchMediator.h" | 30 #include "core/events/EventDispatchMediator.h" |
| 31 #include "core/events/MouseRelatedEvent.h" | 31 #include "core/events/MouseRelatedEvent.h" |
| 32 #include "core/dom/TouchList.h" | 32 #include "core/dom/TouchList.h" |
| 33 | 33 |
| 34 namespace WebCore { | 34 namespace WebCore { |
| 35 | 35 |
| 36 class TouchEvent FINAL : public MouseRelatedEvent { | 36 class TouchEvent FINAL : public MouseRelatedEvent { |
| 37 public: | 37 public: |
| 38 virtual ~TouchEvent(); | 38 virtual ~TouchEvent(); |
| 39 | 39 |
| 40 static PassRefPtrWillBeRawPtr<TouchEvent> create() | 40 static PassRefPtr<TouchEvent> create() |
| 41 { | 41 { |
| 42 return adoptRefWillBeRefCountedGarbageCollected(new TouchEvent); | 42 return adoptRef(new TouchEvent); |
| 43 } | 43 } |
| 44 static PassRefPtrWillBeRawPtr<TouchEvent> create(TouchList* touches, | 44 static PassRefPtr<TouchEvent> create(TouchList* touches, |
| 45 TouchList* targetTouches, TouchList* changedTouches, | 45 TouchList* targetTouches, TouchList* changedTouches, |
| 46 const AtomicString& type, PassRefPtr<AbstractView> view, | 46 const AtomicString& type, PassRefPtr<AbstractView> view, |
| 47 int screenX, int screenY, int pageX, int pageY, | 47 int screenX, int screenY, int pageX, int pageY, |
| 48 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) | 48 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) |
| 49 { | 49 { |
| 50 return adoptRefWillBeRefCountedGarbageCollected(new TouchEvent( | 50 return adoptRef(new TouchEvent(touches, targetTouches, changedTouches, |
| 51 touches, targetTouches, changedTouches, | |
| 52 type, view, screenX, screenY, pageX, pageY, | 51 type, view, screenX, screenY, pageX, pageY, |
| 53 ctrlKey, altKey, shiftKey, metaKey)); | 52 ctrlKey, altKey, shiftKey, metaKey)); |
| 54 } | 53 } |
| 55 | 54 |
| 56 void initTouchEvent(TouchList* touches, TouchList* targetTouches, | 55 void initTouchEvent(TouchList* touches, TouchList* targetTouches, |
| 57 TouchList* changedTouches, const AtomicString& type, | 56 TouchList* changedTouches, const AtomicString& type, |
| 58 PassRefPtr<AbstractView> view, int screenX, int screenY, | 57 PassRefPtr<AbstractView>, int screenX, int screenY, |
| 59 int clientX, int clientY, | 58 int clientX, int clientY, |
| 60 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); | 59 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); |
| 61 | 60 |
| 62 TouchList* touches() const { return m_touches.get(); } | 61 TouchList* touches() const { return m_touches.get(); } |
| 63 TouchList* targetTouches() const { return m_targetTouches.get(); } | 62 TouchList* targetTouches() const { return m_targetTouches.get(); } |
| 64 TouchList* changedTouches() const { return m_changedTouches.get(); } | 63 TouchList* changedTouches() const { return m_changedTouches.get(); } |
| 65 | 64 |
| 66 void setTouches(PassRefPtr<TouchList> touches) { m_touches = touches; } | 65 void setTouches(PassRefPtr<TouchList> touches) { m_touches = touches; } |
| 67 void setTargetTouches(PassRefPtr<TouchList> targetTouches) { m_targetTouches
= targetTouches; } | 66 void setTargetTouches(PassRefPtr<TouchList> targetTouches) { m_targetTouches
= targetTouches; } |
| 68 void setChangedTouches(PassRefPtr<TouchList> changedTouches) { m_changedTouc
hes = changedTouches; } | 67 void setChangedTouches(PassRefPtr<TouchList> changedTouches) { m_changedTouc
hes = changedTouches; } |
| 69 | 68 |
| 70 virtual bool isTouchEvent() const OVERRIDE; | 69 virtual bool isTouchEvent() const OVERRIDE; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 94 explicit TouchEventDispatchMediator(PassRefPtr<TouchEvent>); | 93 explicit TouchEventDispatchMediator(PassRefPtr<TouchEvent>); |
| 95 TouchEvent* event() const; | 94 TouchEvent* event() const; |
| 96 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE; | 95 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE; |
| 97 }; | 96 }; |
| 98 | 97 |
| 99 DEFINE_EVENT_TYPE_CASTS(TouchEvent); | 98 DEFINE_EVENT_TYPE_CASTS(TouchEvent); |
| 100 | 99 |
| 101 } // namespace WebCore | 100 } // namespace WebCore |
| 102 | 101 |
| 103 #endif // TouchEvent_h | 102 #endif // TouchEvent_h |
| OLD | NEW |