| 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, 2008 Apple Inc. All rights reserved. | 5 * Copyright (C) 2003, 2004, 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. |
| 11 * | 11 * |
| 12 * This library is distributed in the hope that it will be useful, | 12 * This library is distributed in the hope that it will be useful, |
| 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 * Library General Public License for more details. | 15 * Library General Public License for more details. |
| 16 * | 16 * |
| 17 * You should have received a copy of the GNU Library General Public License | 17 * You should have received a copy of the GNU Library General Public License |
| 18 * along with this library; see the file COPYING.LIB. If not, write to | 18 * along with this library; see the file COPYING.LIB. If not, write to |
| 19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 20 * Boston, MA 02110-1301, USA. | 20 * Boston, MA 02110-1301, USA. |
| 21 * | 21 * |
| 22 */ | 22 */ |
| 23 | 23 |
| 24 #ifndef MouseEvent_h | 24 #ifndef MouseEvent_h |
| 25 #define MouseEvent_h | 25 #define MouseEvent_h |
| 26 | 26 |
| 27 #include "Clipboard.h" | 27 #include "Clipboard.h" |
| 28 #include "EventTargetNode.h" | |
| 29 #include "MouseRelatedEvent.h" | 28 #include "MouseRelatedEvent.h" |
| 30 | 29 |
| 31 namespace WebCore { | 30 namespace WebCore { |
| 32 | 31 |
| 33 // Introduced in DOM Level 2 | 32 // Introduced in DOM Level 2 |
| 34 class MouseEvent : public MouseRelatedEvent { | 33 class MouseEvent : public MouseRelatedEvent { |
| 35 public: | 34 public: |
| 36 static PassRefPtr<MouseEvent> create() | 35 static PassRefPtr<MouseEvent> create() |
| 37 { | 36 { |
| 38 return adoptRef(new MouseEvent); | 37 return adoptRef(new MouseEvent); |
| 39 } | 38 } |
| 40 static PassRefPtr<MouseEvent> create(const AtomicString& type, bool canB
ubble, bool cancelable, PassRefPtr<AbstractView> view, | 39 static PassRefPtr<MouseEvent> create(const AtomicString& type, bool canB
ubble, bool cancelable, PassRefPtr<AbstractView> view, |
| 41 int detail, int screenX, int screenY, int pageX, int pageY, | 40 int detail, int screenX, int screenY, int pageX, int pageY, |
| 42 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned sho
rt button, | 41 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned sho
rt button, |
| 43 PassRefPtr<EventTargetNode> relatedTarget, PassRefPtr<Clipboard> cli
pboard = 0, bool isSimulated = false) | 42 PassRefPtr<EventTarget> relatedTarget, PassRefPtr<Clipboard> clipboa
rd = 0, bool isSimulated = false) |
| 44 { | 43 { |
| 45 return adoptRef(new MouseEvent(type, canBubble, cancelable, view, de
tail, screenX, screenY, pageX, pageY, | 44 return adoptRef(new MouseEvent(type, canBubble, cancelable, view, de
tail, screenX, screenY, pageX, pageY, |
| 46 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, clipb
oard, isSimulated)); | 45 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, clipb
oard, isSimulated)); |
| 47 } | 46 } |
| 48 virtual ~MouseEvent(); | 47 virtual ~MouseEvent(); |
| 49 | 48 |
| 50 void initMouseEvent(const AtomicString& type, bool canBubble, bool cance
lable, PassRefPtr<AbstractView>, | 49 void initMouseEvent(const AtomicString& type, bool canBubble, bool cance
lable, PassRefPtr<AbstractView>, |
| 51 int detail, int screenX, int screenY, int clientX, i
nt clientY, | 50 int detail, int screenX, int screenY, int clientX, i
nt clientY, |
| 52 bool ctrlKey, bool altKey, bool shiftKey, bool metaK
ey, | 51 bool ctrlKey, bool altKey, bool shiftKey, bool metaK
ey, |
| 53 unsigned short button, PassRefPtr<EventTargetNode> r
elatedTarget); | 52 unsigned short button, PassRefPtr<EventTarget> relat
edTarget); |
| 54 | 53 |
| 55 // WinIE uses 1,4,2 for left/middle/right but not for click (just for mo
usedown/up, maybe others), | 54 // WinIE uses 1,4,2 for left/middle/right but not for click (just for mo
usedown/up, maybe others), |
| 56 // but we will match the standard DOM. | 55 // but we will match the standard DOM. |
| 57 unsigned short button() const { return m_button; } | 56 unsigned short button() const { return m_button; } |
| 58 bool buttonDown() const { return m_buttonDown; } | 57 bool buttonDown() const { return m_buttonDown; } |
| 59 EventTargetNode* relatedTarget() const { return m_relatedTarget.get(); } | 58 EventTarget* relatedTarget() const { return m_relatedTarget.get(); } |
| 60 | 59 |
| 61 Clipboard* clipboard() const { return m_clipboard.get(); } | 60 Clipboard* clipboard() const { return m_clipboard.get(); } |
| 62 | 61 |
| 63 Node* toElement() const; | 62 Node* toElement() const; |
| 64 Node* fromElement() const; | 63 Node* fromElement() const; |
| 65 | 64 |
| 66 Clipboard* dataTransfer() const { return isDragEvent() ? m_clipboard.get
() : 0; } | 65 Clipboard* dataTransfer() const { return isDragEvent() ? m_clipboard.get
() : 0; } |
| 67 | 66 |
| 68 virtual bool isMouseEvent() const; | 67 virtual bool isMouseEvent() const; |
| 69 virtual bool isDragEvent() const; | 68 virtual bool isDragEvent() const; |
| 70 virtual int which() const; | 69 virtual int which() const; |
| 71 | 70 |
| 72 private: | 71 private: |
| 73 MouseEvent(); | 72 MouseEvent(); |
| 74 MouseEvent(const AtomicString& type, bool canBubble, bool cancelable, Pa
ssRefPtr<AbstractView>, | 73 MouseEvent(const AtomicString& type, bool canBubble, bool cancelable, Pa
ssRefPtr<AbstractView>, |
| 75 int detail, int screenX, int screenY, int pageX, int pageY, | 74 int detail, int screenX, int screenY, int pageX, int pageY, |
| 76 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsig
ned short button, | 75 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsig
ned short button, |
| 77 PassRefPtr<EventTargetNode> relatedTarget, PassRefPtr<Clipboa
rd> clipboard, bool isSimulated); | 76 PassRefPtr<EventTarget> relatedTarget, PassRefPtr<Clipboard>
clipboard, bool isSimulated); |
| 78 | 77 |
| 79 unsigned short m_button; | 78 unsigned short m_button; |
| 80 bool m_buttonDown; | 79 bool m_buttonDown; |
| 81 RefPtr<EventTargetNode> m_relatedTarget; | 80 RefPtr<EventTarget> m_relatedTarget; |
| 82 RefPtr<Clipboard> m_clipboard; | 81 RefPtr<Clipboard> m_clipboard; |
| 83 }; | 82 }; |
| 84 | 83 |
| 85 } // namespace WebCore | 84 } // namespace WebCore |
| 86 | 85 |
| 87 #endif // MouseEvent_h | 86 #endif // MouseEvent_h |
| OLD | NEW |