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 20 matching lines...) Expand all Loading... |
31 #include "sky/engine/wtf/RefCounted.h" | 31 #include "sky/engine/wtf/RefCounted.h" |
32 #include "sky/engine/wtf/text/AtomicString.h" | 32 #include "sky/engine/wtf/text/AtomicString.h" |
33 | 33 |
34 namespace blink { | 34 namespace blink { |
35 | 35 |
36 class EventTarget; | 36 class EventTarget; |
37 class EventDispatcher; | 37 class EventDispatcher; |
38 class ExecutionContext; | 38 class ExecutionContext; |
39 | 39 |
40 struct EventInit { | 40 struct EventInit { |
| 41 bool bubbles = false; |
| 42 bool cancelable = false; |
| 43 |
| 44 private: |
41 STACK_ALLOCATED(); | 45 STACK_ALLOCATED(); |
42 public: | |
43 EventInit(); | |
44 | |
45 bool bubbles; | |
46 bool cancelable; | |
47 }; | 46 }; |
48 | 47 |
49 class Event : public RefCounted<Event>, public ScriptWrappable { | 48 class Event : public RefCounted<Event>, public ScriptWrappable { |
50 DEFINE_WRAPPERTYPEINFO(); | 49 DEFINE_WRAPPERTYPEINFO(); |
51 public: | 50 public: |
52 enum PhaseType { | 51 enum PhaseType { |
53 NONE = 0, | 52 NONE = 0, |
54 CAPTURING_PHASE = 1, | 53 CAPTURING_PHASE = 1, |
55 AT_TARGET = 2, | 54 AT_TARGET = 2, |
56 BUBBLING_PHASE = 3 | 55 BUBBLING_PHASE = 3 |
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 RefPtr<Event> m_underlyingEvent; | 205 RefPtr<Event> m_underlyingEvent; |
207 OwnPtr<EventPath> m_eventPath; | 206 OwnPtr<EventPath> m_eventPath; |
208 }; | 207 }; |
209 | 208 |
210 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ | 209 #define DEFINE_EVENT_TYPE_CASTS(typeName) \ |
211 DEFINE_TYPE_CASTS(typeName, Event, event, event->is##typeName(), event.is##t
ypeName()) | 210 DEFINE_TYPE_CASTS(typeName, Event, event, event->is##typeName(), event.is##t
ypeName()) |
212 | 211 |
213 } // namespace blink | 212 } // namespace blink |
214 | 213 |
215 #endif // SKY_ENGINE_CORE_EVENTS_EVENT_H_ | 214 #endif // SKY_ENGINE_CORE_EVENTS_EVENT_H_ |
OLD | NEW |