| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) | 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) |
| 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) | 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) |
| 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) |
| 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserv
ed. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 111 |
| 112 const AtomicString& type() const { return m_type; } | 112 const AtomicString& type() const { return m_type; } |
| 113 void setType(const AtomicString& type) { m_type = type; } | 113 void setType(const AtomicString& type) { m_type = type; } |
| 114 | 114 |
| 115 EventTarget* target() const { return m_target.get(); } | 115 EventTarget* target() const { return m_target.get(); } |
| 116 void setTarget(EventTarget*); | 116 void setTarget(EventTarget*); |
| 117 | 117 |
| 118 EventTarget* currentTarget() const; | 118 EventTarget* currentTarget() const; |
| 119 void setCurrentTarget(EventTarget* currentTarget) { m_currentTarget = curren
tTarget; } | 119 void setCurrentTarget(EventTarget* currentTarget) { m_currentTarget = curren
tTarget; } |
| 120 | 120 |
| 121 // This callback is invoked when an event listener has been dispatched |
| 122 // at the current target. It should only be used to influence UMA metrics |
| 123 // and not change functionality since observing the presence of listeners |
| 124 // is dangerous. |
| 125 virtual void doneDispatchingEventAtCurrentTarget() {} |
| 126 |
| 121 unsigned short eventPhase() const { return m_eventPhase; } | 127 unsigned short eventPhase() const { return m_eventPhase; } |
| 122 void setEventPhase(unsigned short eventPhase) { m_eventPhase = eventPhase; } | 128 void setEventPhase(unsigned short eventPhase) { m_eventPhase = eventPhase; } |
| 123 | 129 |
| 124 bool bubbles() const { return m_canBubble; } | 130 bool bubbles() const { return m_canBubble; } |
| 125 bool cancelable() const { return m_cancelable; } | 131 bool cancelable() const { return m_cancelable; } |
| 126 bool scoped() const { return m_scoped; } | 132 bool scoped() const { return m_scoped; } |
| 127 bool relatedTargetScoped() const { return m_relatedTargetScoped; } | 133 bool relatedTargetScoped() const { return m_relatedTargetScoped; } |
| 128 | 134 |
| 129 // Event creation timestamp in milliseconds. If |HiResEventTimeStamp| | 135 // Event creation timestamp in milliseconds. If |HiResEventTimeStamp| |
| 130 // runtime feature is enabled it returns a DOMHighResTimeStamp using the | 136 // runtime feature is enabled it returns a DOMHighResTimeStamp using the |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 // WebInputEvent instance. | 261 // WebInputEvent instance. |
| 256 double m_platformTimeStamp; | 262 double m_platformTimeStamp; |
| 257 }; | 263 }; |
| 258 | 264 |
| 259 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ | 265 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ |
| 260 DEFINE_TYPE_CASTS(typeName, Event, event, event->is##typeName(), event.is##t
ypeName()) | 266 DEFINE_TYPE_CASTS(typeName, Event, event, event->is##typeName(), event.is##t
ypeName()) |
| 261 | 267 |
| 262 } // namespace blink | 268 } // namespace blink |
| 263 | 269 |
| 264 #endif // Event_h | 270 #endif // Event_h |
| OLD | NEW |