| 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 15 matching lines...) Expand all Loading... |
| 26 | 26 |
| 27 #ifndef TouchEvent_h | 27 #ifndef TouchEvent_h |
| 28 #define TouchEvent_h | 28 #define TouchEvent_h |
| 29 | 29 |
| 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 blink { | 34 namespace blink { |
| 35 | 35 |
| 36 class TouchEvent FINAL : public UIEventWithKeyState { | 36 class TouchEvent final : public UIEventWithKeyState { |
| 37 DEFINE_WRAPPERTYPEINFO(); | 37 DEFINE_WRAPPERTYPEINFO(); |
| 38 public: | 38 public: |
| 39 virtual ~TouchEvent(); | 39 virtual ~TouchEvent(); |
| 40 | 40 |
| 41 static PassRefPtrWillBeRawPtr<TouchEvent> create() | 41 static PassRefPtrWillBeRawPtr<TouchEvent> create() |
| 42 { | 42 { |
| 43 return adoptRefWillBeNoop(new TouchEvent); | 43 return adoptRefWillBeNoop(new TouchEvent); |
| 44 } | 44 } |
| 45 static PassRefPtrWillBeRawPtr<TouchEvent> create(TouchList* touches, | 45 static PassRefPtrWillBeRawPtr<TouchEvent> create(TouchList* touches, |
| 46 TouchList* targetTouches, TouchList* changedTouches, | 46 TouchList* targetTouches, TouchList* changedTouches, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 58 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); | 58 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); |
| 59 | 59 |
| 60 TouchList* touches() const { return m_touches.get(); } | 60 TouchList* touches() const { return m_touches.get(); } |
| 61 TouchList* targetTouches() const { return m_targetTouches.get(); } | 61 TouchList* targetTouches() const { return m_targetTouches.get(); } |
| 62 TouchList* changedTouches() const { return m_changedTouches.get(); } | 62 TouchList* changedTouches() const { return m_changedTouches.get(); } |
| 63 | 63 |
| 64 void setTouches(PassRefPtrWillBeRawPtr<TouchList> touches) { m_touches = tou
ches; } | 64 void setTouches(PassRefPtrWillBeRawPtr<TouchList> touches) { m_touches = tou
ches; } |
| 65 void setTargetTouches(PassRefPtrWillBeRawPtr<TouchList> targetTouches) { m_t
argetTouches = targetTouches; } | 65 void setTargetTouches(PassRefPtrWillBeRawPtr<TouchList> targetTouches) { m_t
argetTouches = targetTouches; } |
| 66 void setChangedTouches(PassRefPtrWillBeRawPtr<TouchList> changedTouches) { m
_changedTouches = changedTouches; } | 66 void setChangedTouches(PassRefPtrWillBeRawPtr<TouchList> changedTouches) { m
_changedTouches = changedTouches; } |
| 67 | 67 |
| 68 virtual bool isTouchEvent() const OVERRIDE; | 68 virtual bool isTouchEvent() const override; |
| 69 | 69 |
| 70 virtual const AtomicString& interfaceName() const OVERRIDE; | 70 virtual const AtomicString& interfaceName() const override; |
| 71 | 71 |
| 72 virtual void preventDefault() OVERRIDE; | 72 virtual void preventDefault() override; |
| 73 | 73 |
| 74 virtual void trace(Visitor*) OVERRIDE; | 74 virtual void trace(Visitor*) override; |
| 75 | 75 |
| 76 private: | 76 private: |
| 77 TouchEvent(); | 77 TouchEvent(); |
| 78 TouchEvent(TouchList* touches, TouchList* targetTouches, | 78 TouchEvent(TouchList* touches, TouchList* targetTouches, |
| 79 TouchList* changedTouches, const AtomicString& type, | 79 TouchList* changedTouches, const AtomicString& type, |
| 80 PassRefPtrWillBeRawPtr<AbstractView>, | 80 PassRefPtrWillBeRawPtr<AbstractView>, |
| 81 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancela
ble); | 81 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancela
ble); |
| 82 | 82 |
| 83 RefPtrWillBeMember<TouchList> m_touches; | 83 RefPtrWillBeMember<TouchList> m_touches; |
| 84 RefPtrWillBeMember<TouchList> m_targetTouches; | 84 RefPtrWillBeMember<TouchList> m_targetTouches; |
| 85 RefPtrWillBeMember<TouchList> m_changedTouches; | 85 RefPtrWillBeMember<TouchList> m_changedTouches; |
| 86 }; | 86 }; |
| 87 | 87 |
| 88 class TouchEventDispatchMediator FINAL : public EventDispatchMediator { | 88 class TouchEventDispatchMediator final : public EventDispatchMediator { |
| 89 public: | 89 public: |
| 90 static PassRefPtrWillBeRawPtr<TouchEventDispatchMediator> create(PassRefPtrW
illBeRawPtr<TouchEvent>); | 90 static PassRefPtrWillBeRawPtr<TouchEventDispatchMediator> create(PassRefPtrW
illBeRawPtr<TouchEvent>); |
| 91 | 91 |
| 92 private: | 92 private: |
| 93 explicit TouchEventDispatchMediator(PassRefPtrWillBeRawPtr<TouchEvent>); | 93 explicit TouchEventDispatchMediator(PassRefPtrWillBeRawPtr<TouchEvent>); |
| 94 TouchEvent* event() const; | 94 TouchEvent* event() const; |
| 95 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE; | 95 virtual bool dispatchEvent(EventDispatcher*) const override; |
| 96 }; | 96 }; |
| 97 | 97 |
| 98 DEFINE_EVENT_TYPE_CASTS(TouchEvent); | 98 DEFINE_EVENT_TYPE_CASTS(TouchEvent); |
| 99 | 99 |
| 100 } // namespace blink | 100 } // namespace blink |
| 101 | 101 |
| 102 #endif // TouchEvent_h | 102 #endif // TouchEvent_h |
| OLD | NEW |