mshtml: Move most code from handle_editor_load to exec_editmode.
[wine] / dlls / mshtml / nsevents.c
1 /*
2  * Copyright 2007 Jacek Caban for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #include "config.h"
20
21 #include <stdarg.h>
22
23 #define COBJMACROS
24
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winuser.h"
28 #include "ole2.h"
29
30 #include "wine/debug.h"
31 #include "wine/unicode.h"
32
33 #include "mshtml_private.h"
34
35 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
36
37 #define NSEVENTLIST_THIS(iface) DEFINE_THIS(nsEventListener, DOMEventListener, iface)
38
39 static nsresult NSAPI nsDOMEventListener_QueryInterface(nsIDOMEventListener *iface,
40                                                         nsIIDRef riid, nsQIResult result)
41 {
42     nsEventListener *This = NSEVENTLIST_THIS(iface);
43
44     *result = NULL;
45
46     if(IsEqualGUID(&IID_nsISupports, riid)) {
47         TRACE("(%p)->(IID_nsISupports, %p)\n", This, result);
48         *result = NSEVENTLIST(This);
49     }else if(IsEqualGUID(&IID_nsIDOMEventListener, riid)) {
50         TRACE("(%p)->(IID_nsIDOMEventListener %p)\n", This, result);
51         *result = NSEVENTLIST(This);
52     }
53
54     if(*result) {
55         nsIWebBrowserChrome_AddRef(NSEVENTLIST(This));
56         return NS_OK;
57     }
58
59     TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), result);
60     return NS_NOINTERFACE;
61 }
62
63 static nsrefcnt NSAPI nsDOMEventListener_AddRef(nsIDOMEventListener *iface)
64 {
65     NSContainer *This = NSEVENTLIST_THIS(iface)->This;
66     return nsIWebBrowserChrome_AddRef(NSWBCHROME(This));
67 }
68
69 static nsrefcnt NSAPI nsDOMEventListener_Release(nsIDOMEventListener *iface)
70 {
71     NSContainer *This = NSEVENTLIST_THIS(iface)->This;
72     return nsIWebBrowserChrome_Release(NSWBCHROME(This));
73 }
74
75 static BOOL is_doc_child_focus(NSContainer *This)
76 {
77     HWND hwnd;
78
79     if(!This->doc)
80         return FALSE;
81
82     for(hwnd = GetFocus(); hwnd && hwnd != This->doc->hwnd; hwnd = GetParent(hwnd));
83
84     return hwnd == This->doc->hwnd;
85 }
86
87 static nsresult NSAPI handle_blur(nsIDOMEventListener *iface, nsIDOMEvent *event)
88 {
89     NSContainer *This = NSEVENTLIST_THIS(iface)->This;
90
91     TRACE("(%p)\n", This);
92
93     if(This->doc && This->doc->focus && !is_doc_child_focus(This)) {
94         This->doc->focus = FALSE;
95         notif_focus(This->doc);
96     }
97
98     return NS_OK;
99 }
100
101 static nsresult NSAPI handle_focus(nsIDOMEventListener *iface, nsIDOMEvent *event)
102 {
103     NSContainer *This = NSEVENTLIST_THIS(iface)->This;
104
105     TRACE("(%p)\n", This);
106
107     if(This->doc && !This->doc->focus) {
108         This->doc->focus = TRUE;
109         notif_focus(This->doc);
110     }
111
112     return NS_OK;
113 }
114
115 static nsresult NSAPI handle_keypress(nsIDOMEventListener *iface,
116         nsIDOMEvent *event)
117 {
118     NSContainer *This = NSEVENTLIST_THIS(iface)->This;
119
120     TRACE("(%p)->(%p)\n", This, event);
121
122     update_doc(This->doc, UPDATE_UI);
123     if(This->doc->usermode == EDITMODE)
124         handle_edit_event(This->doc, event);
125
126     return NS_OK;
127 }
128
129 static nsresult NSAPI handle_load(nsIDOMEventListener *iface, nsIDOMEvent *event)
130 {
131     NSContainer *This = NSEVENTLIST_THIS(iface)->This;
132     task_t *task;
133
134     TRACE("(%p)\n", This);
135
136     if(!This->doc)
137         return NS_OK;
138
139     setup_nswindow(This->doc->window);
140
141     if(This->editor_controller) {
142         nsIController_Release(This->editor_controller);
143         This->editor_controller = NULL;
144     }
145
146     if(This->doc->usermode == EDITMODE)
147         handle_edit_load(This->doc);
148
149     task = mshtml_alloc(sizeof(task_t));
150
151     task->doc = This->doc;
152     task->task_id = TASK_PARSECOMPLETE;
153     task->next = NULL;
154
155     /*
156      * This should be done in the worker thread that parses HTML,
157      * but we don't have such thread (Gecko parses HTML for us).
158      */
159     push_task(task);
160
161     return NS_OK;
162 }
163
164 #undef NSEVENTLIST_THIS
165
166 #define EVENTLISTENER_VTBL(handler) \
167     { \
168         nsDOMEventListener_QueryInterface, \
169         nsDOMEventListener_AddRef, \
170         nsDOMEventListener_Release, \
171         handler, \
172     };
173
174 static const nsIDOMEventListenerVtbl blur_vtbl =      EVENTLISTENER_VTBL(handle_blur);
175 static const nsIDOMEventListenerVtbl focus_vtbl =     EVENTLISTENER_VTBL(handle_focus);
176 static const nsIDOMEventListenerVtbl keypress_vtbl =  EVENTLISTENER_VTBL(handle_keypress);
177 static const nsIDOMEventListenerVtbl load_vtbl =      EVENTLISTENER_VTBL(handle_load);
178
179 static void init_event(nsIDOMEventTarget *target, const PRUnichar *type,
180         nsIDOMEventListener *listener, BOOL capture)
181 {
182     nsAString type_str;
183     nsresult nsres;
184
185     nsAString_Init(&type_str, type);
186     nsres = nsIDOMEventTarget_AddEventListener(target, &type_str, listener, capture);
187     nsAString_Finish(&type_str);
188     if(NS_FAILED(nsres))
189         ERR("AddEventTarget failed: %08x\n", nsres);
190
191 }
192
193 static void init_listener(nsEventListener *This, NSContainer *container,
194         const nsIDOMEventListenerVtbl *vtbl)
195 {
196     This->lpDOMEventListenerVtbl = vtbl;
197     This->This = container;
198 }
199
200 void init_nsevents(NSContainer *This)
201 {
202     nsIDOMWindow *dom_window;
203     nsIDOMEventTarget *target;
204     nsresult nsres;
205
206     static const PRUnichar wsz_blur[]      = {'b','l','u','r',0};
207     static const PRUnichar wsz_focus[]     = {'f','o','c','u','s',0};
208     static const PRUnichar wsz_keypress[]  = {'k','e','y','p','r','e','s','s',0};
209     static const PRUnichar wsz_load[]      = {'l','o','a','d',0};
210
211     init_listener(&This->blur_listener,        This, &blur_vtbl);
212     init_listener(&This->focus_listener,       This, &focus_vtbl);
213     init_listener(&This->keypress_listener,    This, &keypress_vtbl);
214     init_listener(&This->load_listener,        This, &load_vtbl);
215
216     nsres = nsIWebBrowser_GetContentDOMWindow(This->webbrowser, &dom_window);
217     if(NS_FAILED(nsres)) {
218         ERR("GetContentDOMWindow failed: %08x\n", nsres);
219         return;
220     }
221
222     nsres = nsIDOMWindow_QueryInterface(dom_window, &IID_nsIDOMEventTarget, (void**)&target);
223     nsIDOMWindow_Release(dom_window);
224     if(NS_FAILED(nsres)) {
225         ERR("Could not get nsIDOMEventTarget interface: %08x\n", nsres);
226         return;
227     }
228
229     init_event(target, wsz_blur,       NSEVENTLIST(&This->blur_listener),        TRUE);
230     init_event(target, wsz_focus,      NSEVENTLIST(&This->focus_listener),       TRUE);
231     init_event(target, wsz_keypress,   NSEVENTLIST(&This->keypress_listener),    FALSE);
232     init_event(target, wsz_load,       NSEVENTLIST(&This->load_listener),        TRUE);
233
234     nsIDOMEventTarget_Release(target);
235 }