2 * Copyright 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
38 EVENTID_READYSTATECHANGE
,
45 eventid_t
str_to_eid(LPCWSTR
) DECLSPEC_HIDDEN
;
46 void check_event_attr(HTMLDocumentNode
*,nsIDOMElement
*) DECLSPEC_HIDDEN
;
47 void release_event_target(event_target_t
*) DECLSPEC_HIDDEN
;
48 void fire_event(HTMLDocumentNode
*,eventid_t
,BOOL
,nsIDOMNode
*,nsIDOMEvent
*) DECLSPEC_HIDDEN
;
49 HRESULT
set_event_handler(event_target_t
**,nsIDOMNode
*,HTMLDocumentNode
*,eventid_t
,VARIANT
*) DECLSPEC_HIDDEN
;
50 HRESULT
get_event_handler(event_target_t
**,eventid_t
,VARIANT
*) DECLSPEC_HIDDEN
;
51 HRESULT
attach_event(event_target_t
**,nsIDOMNode
*,HTMLDocument
*,BSTR
,IDispatch
*,VARIANT_BOOL
*) DECLSPEC_HIDDEN
;
52 HRESULT
detach_event(event_target_t
*,HTMLDocument
*,BSTR
,IDispatch
*) DECLSPEC_HIDDEN
;
53 HRESULT
dispatch_event(HTMLDOMNode
*,const WCHAR
*,VARIANT
*,VARIANT_BOOL
*) DECLSPEC_HIDDEN
;
54 HRESULT
call_fire_event(HTMLDOMNode
*,eventid_t
) DECLSPEC_HIDDEN
;
55 void update_cp_events(HTMLWindow
*,event_target_t
**,cp_static_data_t
*,nsIDOMNode
*) DECLSPEC_HIDDEN
;
56 HRESULT
doc_init_events(HTMLDocumentNode
*) DECLSPEC_HIDDEN
;
57 void detach_events(HTMLDocumentNode
*doc
) DECLSPEC_HIDDEN
;
59 void init_nsevents(HTMLDocumentNode
*) DECLSPEC_HIDDEN
;
60 void release_nsevents(HTMLDocumentNode
*) DECLSPEC_HIDDEN
;
61 void add_nsevent_listener(HTMLDocumentNode
*,nsIDOMNode
*,LPCWSTR
) DECLSPEC_HIDDEN
;
62 void detach_nsevent(HTMLDocumentNode
*,const WCHAR
*) DECLSPEC_HIDDEN
;
64 static inline event_target_t
**get_node_event_target(HTMLDOMNode
*node
)
66 return node
->vtbl
->get_event_target
? node
->vtbl
->get_event_target(node
) : &node
->event_target
;
69 static inline HRESULT
set_node_event(HTMLDOMNode
*node
, eventid_t eid
, VARIANT
*var
)
71 return set_event_handler(get_node_event_target(node
), node
->nsnode
, node
->doc
, eid
, var
);
74 static inline HRESULT
get_node_event(HTMLDOMNode
*node
, eventid_t eid
, VARIANT
*var
)
76 return get_event_handler(get_node_event_target(node
), eid
, var
);
79 static inline HRESULT
set_doc_event(HTMLDocument
*doc
, eventid_t eid
, VARIANT
*var
)
81 return set_node_event(&doc
->doc_node
->node
, eid
, var
);
84 static inline HRESULT
get_doc_event(HTMLDocument
*doc
, eventid_t eid
, VARIANT
*var
)
86 return get_node_event(&doc
->doc_node
->node
, eid
, var
);