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 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
|
/*
* This file is part of the WebKit open source project.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT)
#error "Only <webkitdom/webkitdom.h> can be included directly."
#endif
#ifndef WebKitDOMNode_h
#define WebKitDOMNode_h
#include <glib-object.h>
#include <jsc/jsc.h>
#include <webkitdom/WebKitDOMObject.h>
#include <webkitdom/webkitdomdefines.h>
G_BEGIN_DECLS
#define WEBKIT_DOM_TYPE_NODE (webkit_dom_node_get_type())
#define WEBKIT_DOM_NODE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), WEBKIT_DOM_TYPE_NODE, WebKitDOMNode))
#define WEBKIT_DOM_NODE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), WEBKIT_DOM_TYPE_NODE, WebKitDOMNodeClass)
#define WEBKIT_DOM_IS_NODE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), WEBKIT_DOM_TYPE_NODE))
#define WEBKIT_DOM_IS_NODE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), WEBKIT_DOM_TYPE_NODE))
#define WEBKIT_DOM_NODE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), WEBKIT_DOM_TYPE_NODE, WebKitDOMNodeClass))
struct _WebKitDOMNode {
WebKitDOMObject parent_instance;
};
struct _WebKitDOMNodeClass {
WebKitDOMObjectClass parent_class;
};
#ifndef WEBKIT_DISABLE_DEPRECATED
/**
* WEBKIT_DOM_NODE_ELEMENT_NODE:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_ELEMENT_NODE 1
/**
* WEBKIT_DOM_NODE_ATTRIBUTE_NODE:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_ATTRIBUTE_NODE 2
/**
* WEBKIT_DOM_NODE_TEXT_NODE:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_TEXT_NODE 3
/**
* WEBKIT_DOM_NODE_CDATA_SECTION_NODE:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_CDATA_SECTION_NODE 4
/**
* WEBKIT_DOM_NODE_ENTITY_REFERENCE_NODE:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_ENTITY_REFERENCE_NODE 5
/**
* WEBKIT_DOM_NODE_ENTITY_NODE:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_ENTITY_NODE 6
/**
* WEBKIT_DOM_NODE_PROCESSING_INSTRUCTION_NODE:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_PROCESSING_INSTRUCTION_NODE 7
/**
* WEBKIT_DOM_NODE_COMMENT_NODE:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_COMMENT_NODE 8
/**
* WEBKIT_DOM_NODE_DOCUMENT_NODE:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_DOCUMENT_NODE 9
/**
* WEBKIT_DOM_NODE_DOCUMENT_TYPE_NODE:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_DOCUMENT_TYPE_NODE 10
/**
* WEBKIT_DOM_NODE_DOCUMENT_FRAGMENT_NODE:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_DOCUMENT_FRAGMENT_NODE 11
/**
* WEBKIT_DOM_NODE_DOCUMENT_POSITION_DISCONNECTED:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_DOCUMENT_POSITION_DISCONNECTED 0x01
/**
* WEBKIT_DOM_NODE_DOCUMENT_POSITION_PRECEDING:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_DOCUMENT_POSITION_PRECEDING 0x02
/**
* WEBKIT_DOM_NODE_DOCUMENT_POSITION_FOLLOWING:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_DOCUMENT_POSITION_FOLLOWING 0x04
/**
* WEBKIT_DOM_NODE_DOCUMENT_POSITION_CONTAINS:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_DOCUMENT_POSITION_CONTAINS 0x08
/**
* WEBKIT_DOM_NODE_DOCUMENT_POSITION_CONTAINED_BY:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_DOCUMENT_POSITION_CONTAINED_BY 0x10
/**
* WEBKIT_DOM_NODE_DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC:
*
* Deprecated: 2.22: Use JavaScriptCore API instead
*/
#define WEBKIT_DOM_NODE_DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC 0x20
#endif /* WEBKIT_DISABLE_DEPRECATED */
WEBKIT_DEPRECATED GType
webkit_dom_node_get_type(void);
/**
* webkit_dom_node_insert_before:
* @self: A #WebKitDOMNode
* @newChild: A #WebKitDOMNode
* @refChild: (allow-none): A #WebKitDOMNode
* @error: #GError
*
* Returns: (transfer none): A #WebKitDOMNode
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED WebKitDOMNode*
webkit_dom_node_insert_before(WebKitDOMNode* self, WebKitDOMNode* newChild, WebKitDOMNode* refChild, GError** error);
/**
* webkit_dom_node_replace_child:
* @self: A #WebKitDOMNode
* @newChild: A #WebKitDOMNode
* @oldChild: A #WebKitDOMNode
* @error: #GError
*
* Returns: (transfer none): A #WebKitDOMNode
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED WebKitDOMNode*
webkit_dom_node_replace_child(WebKitDOMNode* self, WebKitDOMNode* newChild, WebKitDOMNode* oldChild, GError** error);
/**
* webkit_dom_node_remove_child:
* @self: A #WebKitDOMNode
* @oldChild: A #WebKitDOMNode
* @error: #GError
*
* Returns: (transfer none): A #WebKitDOMNode
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED WebKitDOMNode*
webkit_dom_node_remove_child(WebKitDOMNode* self, WebKitDOMNode* oldChild, GError** error);
/**
* webkit_dom_node_append_child:
* @self: A #WebKitDOMNode
* @newChild: A #WebKitDOMNode
* @error: #GError
*
* Returns: (transfer none): A #WebKitDOMNode
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED WebKitDOMNode*
webkit_dom_node_append_child(WebKitDOMNode* self, WebKitDOMNode* newChild, GError** error);
/**
* webkit_dom_node_has_child_nodes:
* @self: A #WebKitDOMNode
*
* Returns: A #gboolean
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gboolean
webkit_dom_node_has_child_nodes(WebKitDOMNode* self);
/**
* webkit_dom_node_clone_node_with_error:
* @self: A #WebKitDOMNode
* @deep: A #gboolean
* @error: #GError
*
* Returns: (transfer none): A #WebKitDOMNode
*
* Since: 2.14
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED WebKitDOMNode*
webkit_dom_node_clone_node_with_error(WebKitDOMNode* self, gboolean deep, GError** error);
/**
* webkit_dom_node_normalize:
* @self: A #WebKitDOMNode
*
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED void
webkit_dom_node_normalize(WebKitDOMNode* self);
/**
* webkit_dom_node_is_supported:
* @self: A #WebKitDOMNode
* @feature: A #gchar
* @version: A #gchar
*
* Returns: A #gboolean
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gboolean
webkit_dom_node_is_supported(WebKitDOMNode* self, const gchar* feature, const gchar* version);
/**
* webkit_dom_node_is_same_node:
* @self: A #WebKitDOMNode
* @other: A #WebKitDOMNode
*
* Returns: A #gboolean
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gboolean
webkit_dom_node_is_same_node(WebKitDOMNode* self, WebKitDOMNode* other);
/**
* webkit_dom_node_is_equal_node:
* @self: A #WebKitDOMNode
* @other: A #WebKitDOMNode
*
* Returns: A #gboolean
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gboolean
webkit_dom_node_is_equal_node(WebKitDOMNode* self, WebKitDOMNode* other);
/**
* webkit_dom_node_lookup_prefix:
* @self: A #WebKitDOMNode
* @namespaceURI: A #gchar
*
* Returns: A #gchar
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gchar*
webkit_dom_node_lookup_prefix(WebKitDOMNode* self, const gchar* namespaceURI);
/**
* webkit_dom_node_lookup_namespace_uri:
* @self: A #WebKitDOMNode
* @prefix: A #gchar
*
* Returns: A #gchar
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gchar*
webkit_dom_node_lookup_namespace_uri(WebKitDOMNode* self, const gchar* prefix);
/**
* webkit_dom_node_is_default_namespace:
* @self: A #WebKitDOMNode
* @namespaceURI: A #gchar
*
* Returns: A #gboolean
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gboolean
webkit_dom_node_is_default_namespace(WebKitDOMNode* self, const gchar* namespaceURI);
/**
* webkit_dom_node_compare_document_position:
* @self: A #WebKitDOMNode
* @other: A #WebKitDOMNode
*
* Returns: A #gushort
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gushort
webkit_dom_node_compare_document_position(WebKitDOMNode* self, WebKitDOMNode* other);
/**
* webkit_dom_node_contains:
* @self: A #WebKitDOMNode
* @other: A #WebKitDOMNode
*
* Returns: A #gboolean
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gboolean
webkit_dom_node_contains(WebKitDOMNode* self, WebKitDOMNode* other);
/**
* webkit_dom_node_get_node_name:
* @self: A #WebKitDOMNode
*
* Returns: A #gchar
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gchar*
webkit_dom_node_get_node_name(WebKitDOMNode* self);
/**
* webkit_dom_node_get_node_value:
* @self: A #WebKitDOMNode
*
* Returns: A #gchar
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gchar*
webkit_dom_node_get_node_value(WebKitDOMNode* self);
/**
* webkit_dom_node_set_node_value:
* @self: A #WebKitDOMNode
* @value: A #gchar
* @error: #GError
*
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED void
webkit_dom_node_set_node_value(WebKitDOMNode* self, const gchar* value, GError** error);
/**
* webkit_dom_node_get_node_type:
* @self: A #WebKitDOMNode
*
* Returns: A #gushort
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gushort
webkit_dom_node_get_node_type(WebKitDOMNode* self);
/**
* webkit_dom_node_get_parent_node:
* @self: A #WebKitDOMNode
*
* Returns: (transfer none): A #WebKitDOMNode
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED WebKitDOMNode*
webkit_dom_node_get_parent_node(WebKitDOMNode* self);
/**
* webkit_dom_node_get_child_nodes:
* @self: A #WebKitDOMNode
*
* Returns: (transfer full): A #WebKitDOMNodeList
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED WebKitDOMNodeList*
webkit_dom_node_get_child_nodes(WebKitDOMNode* self);
/**
* webkit_dom_node_get_first_child:
* @self: A #WebKitDOMNode
*
* Returns: (transfer none): A #WebKitDOMNode
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED WebKitDOMNode*
webkit_dom_node_get_first_child(WebKitDOMNode* self);
/**
* webkit_dom_node_get_last_child:
* @self: A #WebKitDOMNode
*
* Returns: (transfer none): A #WebKitDOMNode
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED WebKitDOMNode*
webkit_dom_node_get_last_child(WebKitDOMNode* self);
/**
* webkit_dom_node_get_previous_sibling:
* @self: A #WebKitDOMNode
*
* Returns: (transfer none): A #WebKitDOMNode
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED WebKitDOMNode*
webkit_dom_node_get_previous_sibling(WebKitDOMNode* self);
/**
* webkit_dom_node_get_next_sibling:
* @self: A #WebKitDOMNode
*
* Returns: (transfer none): A #WebKitDOMNode
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED WebKitDOMNode*
webkit_dom_node_get_next_sibling(WebKitDOMNode* self);
/**
* webkit_dom_node_get_owner_document:
* @self: A #WebKitDOMNode
*
* Returns: (transfer none): A #WebKitDOMDocument
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED WebKitDOMDocument*
webkit_dom_node_get_owner_document(WebKitDOMNode* self);
/**
* webkit_dom_node_get_base_uri:
* @self: A #WebKitDOMNode
*
* Returns: A #gchar
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gchar*
webkit_dom_node_get_base_uri(WebKitDOMNode* self);
/**
* webkit_dom_node_get_text_content:
* @self: A #WebKitDOMNode
*
* Returns: A #gchar
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED gchar*
webkit_dom_node_get_text_content(WebKitDOMNode* self);
/**
* webkit_dom_node_set_text_content:
* @self: A #WebKitDOMNode
* @value: A #gchar
* @error: #GError
*
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED void
webkit_dom_node_set_text_content(WebKitDOMNode* self, const gchar* value, GError** error);
/**
* webkit_dom_node_get_parent_element:
* @self: A #WebKitDOMNode
*
* Returns: (transfer none): A #WebKitDOMElement
*
* Deprecated: 2.22: Use JavaScriptCore API instead
**/
WEBKIT_DEPRECATED WebKitDOMElement*
webkit_dom_node_get_parent_element(WebKitDOMNode* self);
WEBKIT_DEPRECATED WebKitDOMNode *
webkit_dom_node_for_js_value(JSCValue* value);
G_END_DECLS
#endif /* WebKitDOMNode_h */
|