| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008, 2009 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 * Library General Public License for more details. | 12 * Library General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU Library General Public License | 14 * You should have received a copy of the GNU Library General Public License |
| 15 * along with this library; see the file COPYING.LIB. If not, write to | 15 * along with this library; see the file COPYING.LIB. If not, write to |
| 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 17 * Boston, MA 02110-1301, USA. | 17 * Boston, MA 02110-1301, USA. |
| 18 * | 18 * |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #ifndef EventListener_h | 21 #ifndef EventListener_h |
| 22 #define EventListener_h | 22 #define EventListener_h |
| 23 | 23 |
| 24 #include <wtf/RefCounted.h> | 24 #include <wtf/RefCounted.h> |
| 25 | 25 |
| 26 namespace WebCore { | 26 namespace WebCore { |
| 27 | 27 |
| 28 class DOMWrapperWorld; |
| 29 class Event; |
| 28 class ScriptExecutionContext; | 30 class ScriptExecutionContext; |
| 29 class Event; | |
| 30 | 31 |
| 31 class EventListener : public RefCounted<EventListener> { | 32 class EventListener : public RefCounted<EventListener> { |
| 32 public: | 33 public: |
| 33 enum Type { | 34 enum Type { |
| 34 JSEventListenerType, | 35 JSEventListenerType, |
| 35 ImageEventListenerType, | 36 ImageEventListenerType, |
| 36 ObjCEventListenerType, | 37 ObjCEventListenerType, |
| 37 CPPEventListenerType, | 38 CPPEventListenerType, |
| 38 ConditionEventListenerType, | 39 ConditionEventListenerType, |
| 39 GObjectEventListenerType, | 40 GObjectEventListenerType, |
| 40 NativeEventListenerType, | 41 NativeEventListenerType, |
| 41 SVGTRefTargetEventListenerType | 42 SVGTRefTargetEventListenerType |
| 42 }; | 43 }; |
| 43 | 44 |
| 44 virtual ~EventListener() { } | 45 virtual ~EventListener() { } |
| 45 virtual bool operator==(const EventListener&) = 0; | 46 virtual bool operator==(const EventListener&) = 0; |
| 46 virtual void handleEvent(ScriptExecutionContext*, Event*) = 0; | 47 virtual void handleEvent(ScriptExecutionContext*, Event*) = 0; |
| 47 virtual bool wasCreatedFromMarkup() const { return false; } | 48 virtual bool wasCreatedFromMarkup() const { return false; } |
| 49 virtual DOMWrapperWorld* world() const { return 0; } |
| 48 | 50 |
| 49 bool isAttribute() const { return virtualisAttribute(); } | 51 bool isAttribute() const { return virtualisAttribute(); } |
| 50 Type type() const { return m_type; } | 52 Type type() const { return m_type; } |
| 51 | 53 |
| 52 protected: | 54 protected: |
| 53 explicit EventListener(Type type) | 55 explicit EventListener(Type type) |
| 54 : m_type(type) | 56 : m_type(type) |
| 55 { | 57 { |
| 56 } | 58 } |
| 57 | 59 |
| 58 private: | 60 private: |
| 59 virtual bool virtualisAttribute() const { return false; } | 61 virtual bool virtualisAttribute() const { return false; } |
| 60 | 62 |
| 61 Type m_type; | 63 Type m_type; |
| 62 }; | 64 }; |
| 63 | 65 |
| 64 } | 66 } |
| 65 | 67 |
| 66 #endif | 68 #endif |
| OLD | NEW |