• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * This file is part of the DOM implementation for KDE.
3  *
4  * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
5  *           (C) 1999 Antti Koivisto (koivisto@kde.org)
6  *           (C) 2001 Dirk Mueller (mueller@kde.org)
7  * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved.
8  * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org)
9  *           (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org>
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
21  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
28  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  */
33 
34 #include "config.h"
35 #include "EventTarget.h"
36 
37 namespace WebCore {
38 
39 #ifndef NDEBUG
40 static int gEventDispatchForbidden = 0;
41 #endif
42 
~EventTarget()43 EventTarget::~EventTarget()
44 {
45 }
46 
toNode()47 Node* EventTarget::toNode()
48 {
49     return 0;
50 }
51 
toDOMWindow()52 DOMWindow* EventTarget::toDOMWindow()
53 {
54     return 0;
55 }
56 
toXMLHttpRequest()57 XMLHttpRequest* EventTarget::toXMLHttpRequest()
58 {
59     return 0;
60 }
61 
toXMLHttpRequestUpload()62 XMLHttpRequestUpload* EventTarget::toXMLHttpRequestUpload()
63 {
64     return 0;
65 }
66 
67 #if ENABLE(OFFLINE_WEB_APPLICATIONS)
toDOMApplicationCache()68 DOMApplicationCache* EventTarget::toDOMApplicationCache()
69 {
70     return 0;
71 }
72 #endif
73 
74 #if ENABLE(SVG)
toSVGElementInstance()75 SVGElementInstance* EventTarget::toSVGElementInstance()
76 {
77     return 0;
78 }
79 #endif
80 
toMessagePort()81 MessagePort* EventTarget::toMessagePort()
82 {
83     return 0;
84 }
85 
86 #if ENABLE(WORKERS)
toWorker()87 Worker* EventTarget::toWorker()
88 {
89     return 0;
90 }
91 
toDedicatedWorkerContext()92 DedicatedWorkerContext* EventTarget::toDedicatedWorkerContext()
93 {
94     return 0;
95 }
96 #endif
97 
98 #if ENABLE(SHARED_WORKERS)
toSharedWorker()99 SharedWorker* EventTarget::toSharedWorker()
100 {
101     return 0;
102 }
toSharedWorkerContext()103 SharedWorkerContext* EventTarget::toSharedWorkerContext()
104 {
105     return 0;
106 }
107 #endif
108 
109 #ifndef NDEBUG
forbidEventDispatch()110 void forbidEventDispatch()
111 {
112     ++gEventDispatchForbidden;
113 }
114 
allowEventDispatch()115 void allowEventDispatch()
116 {
117     if (gEventDispatchForbidden > 0)
118         --gEventDispatchForbidden;
119 }
120 
eventDispatchForbidden()121 bool eventDispatchForbidden()
122 {
123     return gEventDispatchForbidden > 0;
124 }
125 #endif // NDEBUG
126 
127 } // end namespace
128