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, 2005, 2006, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2005, 2006, 2008 Apple Inc. All rights reserved. |
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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 bool Event::isRelatedEvent() const | 177 bool Event::isRelatedEvent() const |
178 { | 178 { |
179 return false; | 179 return false; |
180 } | 180 } |
181 | 181 |
182 bool Event::isPointerEvent() const | 182 bool Event::isPointerEvent() const |
183 { | 183 { |
184 return false; | 184 return false; |
185 } | 185 } |
186 | 186 |
| 187 bool Event::isInputEvent() const |
| 188 { |
| 189 return false; |
| 190 } |
| 191 |
187 bool Event::isDragEvent() const | 192 bool Event::isDragEvent() const |
188 { | 193 { |
189 return false; | 194 return false; |
190 } | 195 } |
191 | 196 |
192 bool Event::isClipboardEvent() const | 197 bool Event::isClipboardEvent() const |
193 { | 198 { |
194 return false; | 199 return false; |
195 } | 200 } |
196 | 201 |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 | 326 |
322 DEFINE_TRACE(Event) | 327 DEFINE_TRACE(Event) |
323 { | 328 { |
324 visitor->trace(m_currentTarget); | 329 visitor->trace(m_currentTarget); |
325 visitor->trace(m_target); | 330 visitor->trace(m_target); |
326 visitor->trace(m_underlyingEvent); | 331 visitor->trace(m_underlyingEvent); |
327 visitor->trace(m_eventPath); | 332 visitor->trace(m_eventPath); |
328 } | 333 } |
329 | 334 |
330 } // namespace blink | 335 } // namespace blink |
OLD | NEW |