wined3d: Allow FBO blits again between surfaces with fixups if they have the same...
[wine/multimedia.git] / dlls / mshtml / nsevents.c
blob85d6e56eb1ec6427684d6ca9869720ea26331ab8
1 /*
2 * Copyright 2007-2008 Jacek Caban for CodeWeavers
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.
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.
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
19 #include "config.h"
21 #include <stdarg.h>
23 #define COBJMACROS
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winuser.h"
28 #include "ole2.h"
29 #include "mshtmcid.h"
30 #include "shlguid.h"
32 #include "wine/debug.h"
33 #include "wine/unicode.h"
35 #include "mshtml_private.h"
36 #include "htmlevent.h"
37 #include "resource.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(mshtml);
41 typedef struct {
42 const nsIDOMEventListenerVtbl *lpDOMEventListenerVtbl;
43 nsDocumentEventListener *This;
44 } nsEventListener;
46 struct nsDocumentEventListener {
47 nsEventListener blur_listener;
48 nsEventListener focus_listener;
49 nsEventListener keypress_listener;
50 nsEventListener load_listener;
51 nsEventListener htmlevent_listener;
53 LONG ref;
55 HTMLDocumentNode *doc;
58 static LONG release_listener(nsDocumentEventListener *This)
60 LONG ref = InterlockedDecrement(&This->ref);
62 TRACE("(%p) ref=%d\n", This, ref);
64 if(!ref)
65 heap_free(This);
67 return ref;
70 #define NSEVENTLIST_THIS(iface) DEFINE_THIS(nsEventListener, DOMEventListener, iface)
72 static nsresult NSAPI nsDOMEventListener_QueryInterface(nsIDOMEventListener *iface,
73 nsIIDRef riid, void **result)
75 nsEventListener *This = NSEVENTLIST_THIS(iface);
77 *result = NULL;
79 if(IsEqualGUID(&IID_nsISupports, riid)) {
80 TRACE("(%p)->(IID_nsISupports, %p)\n", This, result);
81 *result = NSEVENTLIST(This);
82 }else if(IsEqualGUID(&IID_nsIDOMEventListener, riid)) {
83 TRACE("(%p)->(IID_nsIDOMEventListener %p)\n", This, result);
84 *result = NSEVENTLIST(This);
87 if(*result) {
88 nsIWebBrowserChrome_AddRef(NSEVENTLIST(This));
89 return NS_OK;
92 TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), result);
93 return NS_NOINTERFACE;
96 static nsrefcnt NSAPI nsDOMEventListener_AddRef(nsIDOMEventListener *iface)
98 nsDocumentEventListener *This = NSEVENTLIST_THIS(iface)->This;
99 LONG ref = InterlockedIncrement(&This->ref);
101 TRACE("(%p) ref=%d\n", This, ref);
103 return ref;
106 static nsrefcnt NSAPI nsDOMEventListener_Release(nsIDOMEventListener *iface)
108 nsDocumentEventListener *This = NSEVENTLIST_THIS(iface)->This;
110 return release_listener(This);
113 static BOOL is_doc_child_focus(NSContainer *nscontainer)
115 HWND hwnd;
117 for(hwnd = GetFocus(); hwnd && hwnd != nscontainer->hwnd; hwnd = GetParent(hwnd));
119 return hwnd != NULL;
122 static nsresult NSAPI handle_blur(nsIDOMEventListener *iface, nsIDOMEvent *event)
124 HTMLDocumentNode *doc = NSEVENTLIST_THIS(iface)->This->doc;
125 HTMLDocumentObj *doc_obj;
127 TRACE("(%p)\n", doc);
129 if(!doc || !doc->basedoc.doc_obj)
130 return NS_ERROR_FAILURE;
131 doc_obj = doc->basedoc.doc_obj;
133 if(doc_obj->focus && !is_doc_child_focus(doc_obj->nscontainer)) {
134 doc_obj->focus = FALSE;
135 notif_focus(doc_obj);
138 return NS_OK;
141 static nsresult NSAPI handle_focus(nsIDOMEventListener *iface, nsIDOMEvent *event)
143 HTMLDocumentNode *doc = NSEVENTLIST_THIS(iface)->This->doc;
144 HTMLDocumentObj *doc_obj;
146 TRACE("(%p)\n", doc);
148 if(!doc)
149 return NS_ERROR_FAILURE;
150 doc_obj = doc->basedoc.doc_obj;
152 if(!doc_obj->focus) {
153 doc_obj->focus = TRUE;
154 notif_focus(doc_obj);
157 return NS_OK;
160 static nsresult NSAPI handle_keypress(nsIDOMEventListener *iface,
161 nsIDOMEvent *event)
163 HTMLDocumentNode *doc = NSEVENTLIST_THIS(iface)->This->doc;
164 HTMLDocumentObj *doc_obj;
166 if(!doc)
167 return NS_ERROR_FAILURE;
168 doc_obj = doc->basedoc.doc_obj;
170 TRACE("(%p)->(%p)\n", doc, event);
172 update_doc(&doc_obj->basedoc, UPDATE_UI);
173 if(doc_obj->usermode == EDITMODE)
174 handle_edit_event(&doc_obj->basedoc, event);
176 return NS_OK;
179 static void handle_docobj_load(HTMLDocumentObj *doc)
181 HRESULT hres;
183 if(doc->nscontainer->editor_controller) {
184 nsIController_Release(doc->nscontainer->editor_controller);
185 doc->nscontainer->editor_controller = NULL;
188 if(doc->usermode == EDITMODE)
189 handle_edit_load(&doc->basedoc);
191 if(doc->client) {
192 IOleCommandTarget *olecmd = NULL;
194 hres = IOleClientSite_QueryInterface(doc->client, &IID_IOleCommandTarget, (void**)&olecmd);
195 if(SUCCEEDED(hres)) {
196 if(doc->download_state) {
197 VARIANT state, progress;
199 V_VT(&progress) = VT_I4;
200 V_I4(&progress) = 0;
201 IOleCommandTarget_Exec(olecmd, NULL, OLECMDID_SETPROGRESSPOS,
202 OLECMDEXECOPT_DONTPROMPTUSER, &progress, NULL);
204 V_VT(&state) = VT_I4;
205 V_I4(&state) = 0;
206 IOleCommandTarget_Exec(olecmd, NULL, OLECMDID_SETDOWNLOADSTATE,
207 OLECMDEXECOPT_DONTPROMPTUSER, &state, NULL);
210 IOleCommandTarget_Exec(olecmd, &CGID_ShellDocView, 103, 0, NULL, NULL);
211 IOleCommandTarget_Exec(olecmd, &CGID_MSHTML, IDM_PARSECOMPLETE, 0, NULL, NULL);
212 IOleCommandTarget_Exec(olecmd, NULL, OLECMDID_HTTPEQUIV_DONE, 0, NULL, NULL);
214 IOleCommandTarget_Release(olecmd);
218 doc->download_state = 0;
221 static nsresult NSAPI handle_load(nsIDOMEventListener *iface, nsIDOMEvent *event)
223 HTMLDocumentNode *doc = NSEVENTLIST_THIS(iface)->This->doc;
224 nsIDOMHTMLElement *nsbody = NULL;
225 HTMLDocumentObj *doc_obj = NULL;
227 TRACE("(%p)\n", doc);
229 if(!doc || !doc->basedoc.window)
230 return NS_ERROR_FAILURE;
231 if(doc->basedoc.doc_obj && doc->basedoc.doc_obj->basedoc.doc_node == doc)
232 doc_obj = doc->basedoc.doc_obj;
234 connect_scripts(doc->basedoc.window);
236 if(doc_obj)
237 handle_docobj_load(doc_obj);
239 set_ready_state(doc->basedoc.window, READYSTATE_COMPLETE);
241 if(doc_obj) {
242 if(doc_obj->view_sink)
243 IAdviseSink_OnViewChange(doc_obj->view_sink, DVASPECT_CONTENT, -1);
245 set_statustext(doc_obj, IDS_STATUS_DONE, NULL);
247 update_title(doc_obj);
250 if(!doc->nsdoc) {
251 ERR("NULL nsdoc\n");
252 return NS_ERROR_FAILURE;
255 nsIDOMHTMLDocument_GetBody(doc->nsdoc, &nsbody);
256 if(nsbody) {
257 fire_event(doc, EVENTID_LOAD, TRUE, (nsIDOMNode*)nsbody, event);
258 nsIDOMHTMLElement_Release(nsbody);
261 return NS_OK;
264 static nsresult NSAPI handle_htmlevent(nsIDOMEventListener *iface, nsIDOMEvent *event)
266 HTMLDocumentNode *doc = NSEVENTLIST_THIS(iface)->This->doc;
267 const PRUnichar *type;
268 nsIDOMEventTarget *event_target;
269 nsIDOMNode *nsnode;
270 nsAString type_str;
271 eventid_t eid;
272 nsresult nsres;
274 TRACE("\n");
276 nsAString_Init(&type_str, NULL);
277 nsIDOMEvent_GetType(event, &type_str);
278 nsAString_GetData(&type_str, &type);
279 eid = str_to_eid(type);
280 nsAString_Finish(&type_str);
282 nsres = nsIDOMEvent_GetTarget(event, &event_target);
283 if(NS_FAILED(nsres) || !event_target) {
284 ERR("GetEventTarget failed: %08x\n", nsres);
285 return NS_OK;
288 nsres = nsIDOMEventTarget_QueryInterface(event_target, &IID_nsIDOMNode, (void**)&nsnode);
289 nsIDOMEventTarget_Release(event_target);
290 if(NS_FAILED(nsres)) {
291 ERR("Could not get nsIDOMNode: %08x\n", nsres);
292 return NS_OK;
295 fire_event(doc, eid, TRUE, nsnode, event);
297 nsIDOMNode_Release(nsnode);
299 return NS_OK;
302 #undef NSEVENTLIST_THIS
304 #define EVENTLISTENER_VTBL(handler) \
306 nsDOMEventListener_QueryInterface, \
307 nsDOMEventListener_AddRef, \
308 nsDOMEventListener_Release, \
309 handler, \
312 static const nsIDOMEventListenerVtbl blur_vtbl = EVENTLISTENER_VTBL(handle_blur);
313 static const nsIDOMEventListenerVtbl focus_vtbl = EVENTLISTENER_VTBL(handle_focus);
314 static const nsIDOMEventListenerVtbl keypress_vtbl = EVENTLISTENER_VTBL(handle_keypress);
315 static const nsIDOMEventListenerVtbl load_vtbl = EVENTLISTENER_VTBL(handle_load);
316 static const nsIDOMEventListenerVtbl htmlevent_vtbl = EVENTLISTENER_VTBL(handle_htmlevent);
318 static void init_event(nsIDOMEventTarget *target, const PRUnichar *type,
319 nsIDOMEventListener *listener, BOOL capture)
321 nsAString type_str;
322 nsresult nsres;
324 nsAString_InitDepend(&type_str, type);
325 nsres = nsIDOMEventTarget_AddEventListener(target, &type_str, listener, capture);
326 nsAString_Finish(&type_str);
327 if(NS_FAILED(nsres))
328 ERR("AddEventTarget failed: %08x\n", nsres);
332 static void init_listener(nsEventListener *This, nsDocumentEventListener *listener,
333 const nsIDOMEventListenerVtbl *vtbl)
335 This->lpDOMEventListenerVtbl = vtbl;
336 This->This = listener;
339 void add_nsevent_listener(HTMLDocumentNode *doc, nsIDOMNode *nsnode, LPCWSTR type)
341 nsIDOMEventTarget *target;
342 nsresult nsres;
344 if(nsnode)
345 nsres = nsIDOMNode_QueryInterface(nsnode, &IID_nsIDOMEventTarget, (void**)&target);
346 else
347 nsres = nsIDOMWindow_QueryInterface(doc->basedoc.window->nswindow, &IID_nsIDOMEventTarget, (void**)&target);
348 if(NS_FAILED(nsres)) {
349 ERR("Could not get nsIDOMEventTarget interface: %08x\n", nsres);
350 return;
353 init_event(target, type, NSEVENTLIST(&doc->nsevent_listener->htmlevent_listener), TRUE);
354 nsIDOMEventTarget_Release(target);
357 void release_nsevents(HTMLDocumentNode *doc)
359 if(doc->nsevent_listener) {
360 doc->nsevent_listener->doc = NULL;
361 release_listener(doc->nsevent_listener);
362 doc->nsevent_listener = NULL;
366 void init_nsevents(HTMLDocumentNode *doc)
368 nsDocumentEventListener *listener;
369 nsIDOMEventTarget *target;
370 nsresult nsres;
372 static const PRUnichar wsz_blur[] = {'b','l','u','r',0};
373 static const PRUnichar wsz_focus[] = {'f','o','c','u','s',0};
374 static const PRUnichar wsz_keypress[] = {'k','e','y','p','r','e','s','s',0};
375 static const PRUnichar wsz_load[] = {'l','o','a','d',0};
377 listener = heap_alloc(sizeof(nsDocumentEventListener));
378 if(!listener)
379 return;
381 listener->ref = 1;
382 listener->doc = doc;
384 init_listener(&listener->blur_listener, listener, &blur_vtbl);
385 init_listener(&listener->focus_listener, listener, &focus_vtbl);
386 init_listener(&listener->keypress_listener, listener, &keypress_vtbl);
387 init_listener(&listener->load_listener, listener, &load_vtbl);
388 init_listener(&listener->htmlevent_listener, listener, &htmlevent_vtbl);
390 doc->nsevent_listener = listener;
392 nsres = nsIDOMWindow_QueryInterface(doc->basedoc.window->nswindow, &IID_nsIDOMEventTarget, (void**)&target);
393 if(NS_FAILED(nsres)) {
394 ERR("Could not get nsIDOMEventTarget interface: %08x\n", nsres);
395 return;
398 init_event(target, wsz_blur, NSEVENTLIST(&listener->blur_listener), TRUE);
399 init_event(target, wsz_focus, NSEVENTLIST(&listener->focus_listener), TRUE);
400 init_event(target, wsz_keypress, NSEVENTLIST(&listener->keypress_listener), FALSE);
401 init_event(target, wsz_load, NSEVENTLIST(&listener->load_listener), TRUE);
403 nsIDOMEventTarget_Release(target);