1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
|
(* Js_of_ocaml library
* http://www.ocsigen.org/js_of_ocaml/
* Copyright (C) 2010 Jérôme Vouillon
* Laboratoire PPS - CNRS Université Paris Diderot
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, with linking exception;
* either version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*)
(** DOM binding
This is a partial binding to the DOM Core API.
*)
open Js
(** {2 DOM objects} *)
(** Specification of [NodeList] objects. *)
class type ['node] nodeList = object
method item : int -> 'node t opt meth
method length : int readonly_prop
end
type nodeType =
| OTHER
(* Will not happen *)
| ELEMENT
| ATTRIBUTE
| TEXT
| CDATA_SECTION
| ENTITY_REFERENCE
| ENTITY
| PROCESSING_INSTRUCTION
| COMMENT
| DOCUMENT
| DOCUMENT_TYPE
| DOCUMENT_FRAGMENT
| NOTATION
module DocumentPosition : sig
type t = private int
type mask = private int
val disconnected : mask
val preceding : mask
val following : mask
val contains : mask
val contained_by : mask
val implementation_specific : mask
val has : t -> mask -> bool
val add : mask -> mask -> mask
val ( + ) : mask -> mask -> mask
end
(** Specification of [Node] objects. *)
class type node = object
method nodeName : js_string t readonly_prop
method nodeValue : js_string t opt readonly_prop
method nodeType : nodeType readonly_prop
method parentNode : node t opt prop
method childNodes : node nodeList t prop
method firstChild : node t opt prop
method lastChild : node t opt prop
method previousSibling : node t opt prop
method nextSibling : node t opt prop
method namespaceURI : js_string t opt prop
method insertBefore : node t -> node t opt -> node t meth
method replaceChild : node t -> node t -> node t meth
method removeChild : node t -> node t meth
method appendChild : node t -> node t meth
method hasChildNodes : bool t meth
method cloneNode : bool t -> node t meth
method compareDocumentPosition : node t -> DocumentPosition.t meth
method lookupNamespaceURI : js_string t -> js_string t opt meth
method lookupPrefix : js_string t -> js_string t opt meth
end
(** Specification of [Attr] objects. *)
class type attr = object
inherit node
method name : js_string t readonly_prop
method specified : bool t readonly_prop
method value : js_string t prop
method ownerElement : element t prop
end
(** Specification of [NamedNodeMap] objects. *)
and ['node] namedNodeMap = object
method getNamedItem : js_string t -> 'node t opt meth
method setNamedItem : 'node t -> 'node t opt meth
method removeNamedItem : js_string t -> 'node t opt meth
method item : int -> 'node t opt meth
method length : int readonly_prop
end
(** Specification of [Element] objects. *)
and element = object
inherit node
method tagName : js_string t readonly_prop
method getAttribute : js_string t -> js_string t opt meth
method setAttribute : js_string t -> js_string t -> unit meth
method removeAttribute : js_string t -> unit meth
method hasAttribute : js_string t -> bool t meth
method getAttributeNS : js_string t -> js_string t -> js_string t opt meth
method setAttributeNS : js_string t -> js_string t -> js_string t -> unit meth
method removeAttributeNS : js_string t -> js_string t -> unit meth
method hasAttributeNS : js_string t -> js_string t -> bool t meth
method getAttributeNode : js_string t -> attr t opt meth
method setAttributeNode : attr t -> attr t opt meth
method removeAttributeNode : attr t -> attr t meth
method getAttributeNodeNS : js_string t -> js_string t -> attr t opt meth
method setAttributeNodeNS : attr t -> attr t opt meth
method getElementsByTagName : js_string t -> element nodeList t meth
method attributes : attr namedNodeMap t readonly_prop
end
(** Specification of [CharacterData] objects. *)
class type characterData = object
inherit node
method data : js_string t prop
method length : int readonly_prop
method subjs_stringData : int -> int -> js_string t meth
method appendData : js_string t -> unit meth
method insertData : int -> js_string t -> unit meth
method deleteData : int -> int -> unit meth
method replaceData : int -> int -> js_string t -> unit meth
end
class type comment = characterData
(** Specification of [Comment] objects *)
class type text = characterData
(** Specification of [Text] objects. *)
class type documentFragment = node
(** Specification of [DocumentFragment] objects. *)
(** Specification of [Document] objects. *)
class type ['element] document = object
inherit node
method documentElement : 'element t readonly_prop
method createDocumentFragment : documentFragment t meth
method createElement : js_string t -> 'element t meth
method createElementNS : js_string t -> js_string t -> 'element t meth
method createTextNode : js_string t -> text t meth
method createAttribute : js_string t -> attr t meth
method createComment : js_string t -> comment t meth
method getElementById : js_string t -> 'element t opt meth
method getElementsByTagName : js_string t -> 'element nodeList t meth
method importNode : element t -> bool t -> 'element t meth
method adoptNode : element t -> 'element t meth
end
(** {2 Helper functions} *)
val insertBefore : #node t -> #node t -> #node t opt -> unit
(** [insertBefore p n c] inserts node [n] as child of node [p],
just before node [c], or as last child if [p] is empty.
The expression [insertBefore n c p] behave the same as
[p##insertBefore n c] but avoid the need of coercing the
different objects to [node t]. *)
val replaceChild : #node t -> #node t -> #node t -> unit
(** The expression [replaceChild p n c] behave the same as
[p##replaceChild n c] (replace [c] by [n] in [p])
but avoid the need of coercing the
different objects to [node t]. *)
val removeChild : #node t -> #node t -> unit
(** The expression [removeChild n c] behave the same as
[n##removeChild c] (remove [c] from [n])
but avoid the need of coercing the
different objects to [node t]. *)
val appendChild : #node t -> #node t -> unit
(** The expression [appendChild n c] behave the same as
[n##appendChild c] (appends [c] to [n])
but avoid the need of coercing the
different objects to [node t]. *)
val list_of_nodeList : 'a nodeList t -> 'a t list
type node_type =
| Element of element t
| Attr of attr t
| Text of text t
| Other of node t
val nodeType : #node t -> node_type
module CoerceTo : sig
val element : #node t -> element t opt
val text : #node t -> text t opt
val attr : #node t -> attr t opt
end
(** {2 Events} *)
type (-'a, -'b) event_listener
(** The type of event listener functions. The first type parameter
['a] is the type of the target object; the second parameter
['b] is the type of the event object. *)
class type ['a] event = object
method _type : js_string t readonly_prop
method target : 'a t opt readonly_prop
method currentTarget : 'a t opt readonly_prop
method preventDefault : unit meth
(* Legacy methods *)
method srcElement : 'a t opt readonly_prop
end
class type ['a, 'b] customEvent = object
inherit ['a] event
method detail : 'b Js.opt Js.readonly_prop
end
(** {2 Event handlers} *)
val no_handler : ('a, 'b) event_listener
(** Void event handler (Javascript [null] value). *)
val handler : (('e #event t as 'b) -> bool t) -> ('a, 'b) event_listener
(** Create an event handler that invokes the provided function.
If the handler returns false, the default action is prevented. *)
val full_handler : ('a -> ('e #event t as 'b) -> bool t) -> ('a, 'b) event_listener
(** Create an event handler that invokes the provided function.
The event target (implicit parameter [this]) is also passed as
argument to the function. *)
val invoke_handler : ('a, 'b) event_listener -> 'a -> 'b -> bool t
(** Invoke an existing handler. Useful to chain event handlers. *)
val eventTarget : (< .. > as 'a) #event t -> 'a t
(** Returns which object is the target of this event.
It raises [Not_found] in case there is no target
(if the event has not been triggered yet) *)
type event_listener_id
module Event : sig
type 'a typ
val make : string -> 'a typ
end
val addEventListenerWithOptions :
(< .. > t as 'a)
-> 'b Event.typ
-> ?capture:bool t
-> ?once:bool t
-> ?passive:bool t
-> ('a, 'b) event_listener
-> event_listener_id
(** Add an event listener. This function matches the
option-object variant of the [addEventListener] DOM method,
except that it returns an id for removing the listener. *)
val addEventListener :
(< .. > t as 'a)
-> 'b Event.typ
-> ('a, 'b) event_listener
-> bool t
-> event_listener_id
(** Add an event listener. This function matches the
useCapture boolean variant of the [addEventListener] DOM method,
except that it returns an id for removing the listener. *)
val removeEventListener : event_listener_id -> unit
(** Remove the given event listener. *)
val preventDefault : 'a #event Js.t -> unit
(** Call this to prevent the default handler for the event.
To stop propagation of the event, call {!Dom_html.stopPropagation}. *)
val createCustomEvent :
?bubbles:bool
-> ?cancelable:bool
-> ?detail:'b
-> ('a, 'b) #customEvent Js.t Event.typ
-> ('a, 'b) customEvent Js.t
(** Create a custom event of given type. *)
(** {2 Other DOM objects} *)
class type stringList = object
method item : int -> js_string t opt meth
method length : int readonly_prop
method contains : js_string t -> bool t meth
end
|