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 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120
|
/*
Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies)
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.
*/
#include "config.h"
#include "qwebelement.h"
#include "APICast.h"
#include "qwebelement_p.h"
#include "CSSComputedStyleDeclaration.h"
#include "CSSParser.h"
#include "CSSRule.h"
#include "CSSRuleList.h"
#include "CSSStyleRule.h"
#include "Document.h"
#include "DocumentFragment.h"
#include "FrameView.h"
#include "GraphicsContext.h"
#include "HTMLElement.h"
#include "StylePropertySet.h"
#include "StyleRule.h"
#include "Completion.h"
#include "JSGlobalObject.h"
#include "JSHTMLElement.h"
#include "JSObject.h"
#include "PropertyNameArray.h"
#include <QWebFrameAdapter.h>
#include <parser/SourceCode.h>
#include "qt_runtime.h"
#include "NodeList.h"
#include "RenderImage.h"
#include "ScriptController.h"
#include "ScriptSourceCode.h"
#include "ScriptState.h"
#include "StaticNodeList.h"
#include "StyleResolver.h"
#include "markup.h"
#include "runtime_root.h"
#include <JSDocument.h>
#include <wtf/Vector.h>
#include <wtf/text/CString.h>
#include <QPainter>
using namespace WebCore;
class QWebElementPrivate {
public:
};
/*!
\class QWebElement
\since 4.6
\brief The QWebElement class provides convenient access to DOM elements in
a QWebFrame.
\inmodule QtWebKit
A QWebElement object allows easy access to the document model, represented
by a tree-like structure of DOM elements. The root of the tree is called
the document element and can be accessed using
QWebFrame::documentElement().
Specific elements can be accessed using findAll() and findFirst(). These
elements are identified using CSS selectors. The code snippet below
demonstrates the use of findAll().
\snippet webkitsnippets/webelement/main.cpp FindAll
The first list contains all \c span elements in the document. The second
list contains \c span elements that are children of \c p, classified with
\c intro.
Using findFirst() is more efficient than calling findAll(), and extracting
the first element only in the list returned.
Alternatively you can traverse the document manually using firstChild() and
nextSibling():
\snippet webkitsnippets/webelement/main.cpp Traversing with QWebElement
Individual elements can be inspected or changed using methods such as attribute()
or setAttribute(). For examle, to capture the user's input in a text field for later
use (auto-completion), a browser could do something like this:
\snippet webkitsnippets/webelement/main.cpp autocomplete1
When the same page is later revisited, the browser can fill in the text field automatically
by modifying the value attribute of the input element:
\snippet webkitsnippets/webelement/main.cpp autocomplete2
Another use case is to emulate a click event on an element. The following
code snippet demonstrates how to call the JavaScript DOM method click() of
a submit button:
\snippet webkitsnippets/webelement/main.cpp Calling a DOM element method
The underlying content of QWebElement is explicitly shared. Creating a copy
of a QWebElement does not create a copy of the content. Instead, both
instances point to the same element.
The contents of child elements can be converted to plain text with
toPlainText(); to XHTML using toInnerXml(). To include the element's tag in
the output, use toOuterXml().
It is possible to replace the contents of child elements using
setPlainText() and setInnerXml(). To replace the element itself and its
contents, use setOuterXml().
\section1 Examples
The \l{DOM Traversal Example} shows one way to traverse documents in a running
example.
The \l{Simple Selector Example} can be used to experiment with the searching
features of this class and provides sample code you can start working with.
*/
/*!
Constructs a null web element.
*/
QWebElement::QWebElement()
: d(0)
, m_element(0)
{
}
/*!
\internal
*/
QWebElement::QWebElement(WebCore::Element* domElement)
: d(0)
, m_element(domElement)
{
if (m_element)
m_element->ref();
}
/*!
\internal
*/
QWebElement::QWebElement(WebCore::Node* node)
: d(0)
, m_element(0)
{
if (node && node->isHTMLElement()) {
m_element = static_cast<HTMLElement*>(node);
m_element->ref();
}
}
/*!
Constructs a copy of \a other.
*/
QWebElement::QWebElement(const QWebElement &other)
: d(0)
, m_element(other.m_element)
{
if (m_element)
m_element->ref();
}
/*!
Assigns \a other to this element and returns a reference to this element.
*/
QWebElement &QWebElement::operator=(const QWebElement &other)
{
// ### handle "d" assignment
if (this != &other) {
Element *otherElement = other.m_element;
if (otherElement)
otherElement->ref();
if (m_element)
m_element->deref();
m_element = otherElement;
}
return *this;
}
/*!
Destroys the element. However, the underlying DOM element is not destroyed.
*/
QWebElement::~QWebElement()
{
delete d;
if (m_element)
m_element->deref();
}
bool QWebElement::operator==(const QWebElement& o) const
{
return m_element == o.m_element;
}
bool QWebElement::operator!=(const QWebElement& o) const
{
return m_element != o.m_element;
}
/*!
Returns true if the element is a null element; otherwise returns false.
*/
bool QWebElement::isNull() const
{
return !m_element;
}
/*!
Returns a new list of child elements matching the given CSS selector
\a selectorQuery. If there are no matching elements, an empty list is
returned.
\l{Standard CSS selector} syntax is used for the query.
This method is equivalent to Element::querySelectorAll in the \l{DOM Selectors API}.
\note This search is performed recursively.
\sa findFirst()
*/
QWebElementCollection QWebElement::findAll(const QString &selectorQuery) const
{
return QWebElementCollection(*this, selectorQuery);
}
/*!
Returns the first child element that matches the given CSS selector
\a selectorQuery.
\l{Standard CSS selector} syntax is used for the query.
This method is equivalent to Element::querySelector in the \l{DOM Selectors API}.
\note This search is performed recursively.
\sa findAll()
*/
QWebElement QWebElement::findFirst(const QString &selectorQuery) const
{
if (!m_element)
return QWebElement();
ExceptionCode exception = 0; // ###
return QWebElement(m_element->querySelector(selectorQuery, exception).get());
}
/*!
Replaces the existing content of this element with \a text.
This is equivalent to setting the HTML innerText property.
\sa toPlainText()
*/
void QWebElement::setPlainText(const QString &text)
{
if (!m_element || !m_element->isHTMLElement())
return;
ExceptionCode exception = 0;
static_cast<HTMLElement*>(m_element)->setInnerText(text, exception);
}
/*!
Returns the text between the start and the end tag of this
element.
This is equivalent to reading the HTML innerText property.
\sa setPlainText()
*/
QString QWebElement::toPlainText() const
{
if (!m_element || !m_element->isHTMLElement())
return QString();
return static_cast<HTMLElement*>(m_element)->innerText();
}
/*!
Replaces the contents of this element as well as its own tag with
\a markup. The string may contain HTML or XML tags, which is parsed and
formatted before insertion into the document.
\note This is currently only implemented for (X)HTML elements.
\sa toOuterXml(), toInnerXml(), setInnerXml()
*/
void QWebElement::setOuterXml(const QString &markup)
{
if (!m_element || !m_element->isHTMLElement())
return;
ExceptionCode exception = 0;
static_cast<HTMLElement*>(m_element)->setOuterHTML(markup, exception);
}
/*!
Returns this element converted to XML, including the start and the end
tags as well as its attributes.
\note This is currently implemented for (X)HTML elements only.
\note The format of the markup returned will obey the namespace of the
document containing the element. This means the return value will obey XML
formatting rules, such as self-closing tags, only if the document is
'text/xhtml+xml'.
\sa setOuterXml(), setInnerXml(), toInnerXml()
*/
QString QWebElement::toOuterXml() const
{
if (!m_element || !m_element->isHTMLElement())
return QString();
return static_cast<HTMLElement*>(m_element)->outerHTML();
}
/*!
Replaces the contents of this element with \a markup. The string may
contain HTML or XML tags, which is parsed and formatted before insertion
into the document.
\note This is currently implemented for (X)HTML elements only.
\sa toInnerXml(), toOuterXml(), setOuterXml()
*/
void QWebElement::setInnerXml(const QString &markup)
{
if (!m_element || !m_element->isHTMLElement())
return;
ExceptionCode exception = 0;
static_cast<HTMLElement*>(m_element)->setInnerHTML(markup, exception);
}
/*!
Returns the XML content between the element's start and end tags.
\note This is currently implemented for (X)HTML elements only.
\note The format of the markup returned will obey the namespace of the
document containing the element. This means the return value will obey XML
formatting rules, such as self-closing tags, only if the document is
'text/xhtml+xml'.
\sa setInnerXml(), setOuterXml(), toOuterXml()
*/
QString QWebElement::toInnerXml() const
{
if (!m_element || !m_element->isHTMLElement())
return QString();
return static_cast<HTMLElement*>(m_element)->innerHTML();
}
/*!
Adds an attribute with the given \a name and \a value. If an attribute with
the same name exists, its value is replaced by \a value.
\sa attribute(), attributeNS(), setAttributeNS()
*/
void QWebElement::setAttribute(const QString &name, const QString &value)
{
if (!m_element)
return;
ExceptionCode exception = 0;
m_element->setAttribute(name, value, exception);
}
/*!
Adds an attribute with the given \a name in \a namespaceUri with \a value.
If an attribute with the same name exists, its value is replaced by
\a value.
\sa attributeNS(), attribute(), setAttribute()
*/
void QWebElement::setAttributeNS(const QString &namespaceUri, const QString &name, const QString &value)
{
if (!m_element)
return;
WebCore::ExceptionCode exception = 0;
m_element->setAttributeNS(namespaceUri, name, value, exception);
}
/*!
Returns the attribute with the given \a name. If the attribute does not
exist, \a defaultValue is returned.
\sa setAttribute(), setAttributeNS(), attributeNS()
*/
QString QWebElement::attribute(const QString &name, const QString &defaultValue) const
{
if (!m_element)
return QString();
if (m_element->hasAttribute(name))
return m_element->getAttribute(name);
else
return defaultValue;
}
/*!
Returns the attribute with the given \a name in \a namespaceUri. If the
attribute does not exist, \a defaultValue is returned.
\sa setAttributeNS(), setAttribute(), attribute()
*/
QString QWebElement::attributeNS(const QString &namespaceUri, const QString &name, const QString &defaultValue) const
{
if (!m_element)
return QString();
if (m_element->hasAttributeNS(namespaceUri, name))
return m_element->getAttributeNS(namespaceUri, name);
else
return defaultValue;
}
/*!
Returns true if this element has an attribute with the given \a name;
otherwise returns false.
\sa attribute(), setAttribute()
*/
bool QWebElement::hasAttribute(const QString &name) const
{
if (!m_element)
return false;
return m_element->hasAttribute(name);
}
/*!
Returns true if this element has an attribute with the given \a name, in
\a namespaceUri; otherwise returns false.
\sa attributeNS(), setAttributeNS()
*/
bool QWebElement::hasAttributeNS(const QString &namespaceUri, const QString &name) const
{
if (!m_element)
return false;
return m_element->hasAttributeNS(namespaceUri, name);
}
/*!
Removes the attribute with the given \a name from this element.
\sa attribute(), setAttribute(), hasAttribute()
*/
void QWebElement::removeAttribute(const QString &name)
{
if (!m_element)
return;
m_element->removeAttribute(name);
}
/*!
Removes the attribute with the given \a name, in \a namespaceUri, from this
element.
\sa attributeNS(), setAttributeNS(), hasAttributeNS()
*/
void QWebElement::removeAttributeNS(const QString &namespaceUri, const QString &name)
{
if (!m_element)
return;
m_element->removeAttributeNS(namespaceUri, name);
}
/*!
Returns true if the element has any attributes defined; otherwise returns
false;
\sa attribute(), setAttribute()
*/
bool QWebElement::hasAttributes() const
{
if (!m_element)
return false;
return m_element->hasAttributes();
}
/*!
Return the list of attributes for the namespace given as \a namespaceUri.
\sa attribute(), setAttribute()
*/
QStringList QWebElement::attributeNames(const QString& namespaceUri) const
{
if (!m_element)
return QStringList();
QStringList attributeNameList;
if (m_element->hasAttributes()) {
const String namespaceUriString(namespaceUri); // convert QString -> String once
const unsigned attrsCount = m_element->attributeCount();
for (unsigned i = 0; i < attrsCount; ++i) {
const Attribute* const attribute = m_element->attributeItem(i);
if (namespaceUriString == attribute->namespaceURI())
attributeNameList.append(attribute->localName());
}
}
return attributeNameList;
}
/*!
Returns true if the element has keyboard input focus; otherwise, returns false
\sa setFocus()
*/
bool QWebElement::hasFocus() const
{
if (!m_element)
return false;
if (m_element->document())
return m_element == m_element->document()->focusedElement();
return false;
}
/*!
Gives keyboard input focus to this element
\sa hasFocus()
*/
void QWebElement::setFocus()
{
if (!m_element)
return;
if (m_element->document() && m_element->isFocusable())
m_element->document()->setFocusedElement(m_element);
}
/*!
Returns the geometry of this element, relative to its containing frame.
\sa tagName()
*/
QRect QWebElement::geometry() const
{
if (!m_element)
return QRect();
return m_element->pixelSnappedBoundingBox();
}
/*!
Returns the tag name of this element.
\sa geometry()
*/
QString QWebElement::tagName() const
{
if (!m_element)
return QString();
return m_element->tagName();
}
/*!
Returns the namespace prefix of the element. If the element has no\
namespace prefix, empty string is returned.
*/
QString QWebElement::prefix() const
{
if (!m_element)
return QString();
return m_element->prefix();
}
/*!
Returns the local name of the element. If the element does not use
namespaces, an empty string is returned.
*/
QString QWebElement::localName() const
{
if (!m_element)
return QString();
return m_element->localName();
}
/*!
Returns the namespace URI of this element. If the element has no namespace
URI, an empty string is returned.
*/
QString QWebElement::namespaceUri() const
{
if (!m_element)
return QString();
return m_element->namespaceURI();
}
/*!
Returns the parent element of this elemen. If this element is the root
document element, a null element is returned.
*/
QWebElement QWebElement::parent() const
{
if (m_element)
return QWebElement(m_element->parentElement());
return QWebElement();
}
/*!
Returns the element's first child.
\sa lastChild(), previousSibling(), nextSibling()
*/
QWebElement QWebElement::firstChild() const
{
if (!m_element)
return QWebElement();
for (Node* child = m_element->firstChild(); child; child = child->nextSibling()) {
if (!child->isElementNode())
continue;
Element* e = toElement(child);
return QWebElement(e);
}
return QWebElement();
}
/*!
Returns the element's last child.
\sa firstChild(), previousSibling(), nextSibling()
*/
QWebElement QWebElement::lastChild() const
{
if (!m_element)
return QWebElement();
for (Node* child = m_element->lastChild(); child; child = child->previousSibling()) {
if (!child->isElementNode())
continue;
Element* e = toElement(child);
return QWebElement(e);
}
return QWebElement();
}
/*!
Returns the element's next sibling.
\sa firstChild(), previousSibling(), lastChild()
*/
QWebElement QWebElement::nextSibling() const
{
if (!m_element)
return QWebElement();
for (Node* sib = m_element->nextSibling(); sib; sib = sib->nextSibling()) {
if (!sib->isElementNode())
continue;
Element* e = toElement(sib);
return QWebElement(e);
}
return QWebElement();
}
/*!
Returns the element's previous sibling.
\sa firstChild(), nextSibling(), lastChild()
*/
QWebElement QWebElement::previousSibling() const
{
if (!m_element)
return QWebElement();
for (Node* sib = m_element->previousSibling(); sib; sib = sib->previousSibling()) {
if (!sib->isElementNode())
continue;
Element* e = toElement(sib);
return QWebElement(e);
}
return QWebElement();
}
/*!
Returns the document which this element belongs to.
*/
QWebElement QWebElement::document() const
{
if (!m_element)
return QWebElement();
Document* document = m_element->document();
if (!document)
return QWebElement();
return QWebElement(document->documentElement());
}
/*!
Returns the web frame which this element is a part of. If the element is a
null element, null is returned.
*/
QWebFrame *QWebElement::webFrame() const
{
if (!m_element)
return 0;
Document* document = m_element->document();
if (!document)
return 0;
Frame* frame = document->frame();
if (!frame)
return 0;
QWebFrameAdapter* frameAdapter = QWebFrameAdapter::kit(frame);
return frameAdapter->apiHandle();
}
static bool setupScriptContext(WebCore::Element* element, ScriptState*& state, ScriptController*& scriptController)
{
if (!element)
return false;
Document* document = element->document();
if (!document)
return false;
Frame* frame = document->frame();
if (!frame)
return false;
scriptController = frame->script();
if (!scriptController)
return false;
state = scriptController->globalObject(mainThreadNormalWorld())->globalExec();
if (!state)
return false;
return true;
}
/*!
Executes \a scriptSource with this element as \c this object
and returns the result of the last executed statement.
\note This method may be very inefficient if \a scriptSource returns
a DOM element as a result. See \l{QWebFrame::evaluateJavaScript()}
for more details.
\sa QWebFrame::evaluateJavaScript()
*/
QVariant QWebElement::evaluateJavaScript(const QString& scriptSource)
{
if (scriptSource.isEmpty())
return QVariant();
ScriptState* state = 0;
ScriptController* scriptController = 0;
if (!setupScriptContext(m_element, state, scriptController))
return QVariant();
JSC::JSLockHolder lock(state);
RefPtr<Element> protect = m_element;
JSC::JSValue thisValue = toJS(state, toJSDOMGlobalObject(m_element->document(), state), m_element);
if (!thisValue)
return QVariant();
ScriptSourceCode sourceCode(scriptSource);
JSC::JSValue evaluationException;
JSC::JSValue evaluationResult = JSC::evaluate(state, sourceCode.jsSourceCode(), thisValue, &evaluationException);
if (evaluationException)
return QVariant();
JSValueRef evaluationResultRef = toRef(state, evaluationResult);
int distance = 0;
JSValueRef* ignoredException = 0;
return JSC::Bindings::convertValueToQVariant(toRef(state), evaluationResultRef, QMetaType::Void, &distance, ignoredException);
}
/*!
\enum QWebElement::StyleResolveStrategy
This enum describes how QWebElement's styleProperty resolves the given
property name.
\value InlineStyle Return the property value as it is defined in
the element, without respecting style inheritance and other CSS
rules.
\value CascadedStyle The property's value is determined using the
inheritance and importance rules defined in the document's
stylesheet.
\value ComputedStyle The property's value is the absolute value
of the style property resolved from the environment.
*/
/*!
Returns the value of the style with the given \a name using the specified
\a strategy. If a style with \a name does not exist, an empty string is
returned.
In CSS, the cascading part depends on which CSS rule has priority and is
thus applied. Generally, the last defined rule has priority. Thus, an
inline style rule has priority over an embedded block style rule, which
in return has priority over an external style rule.
If the "!important" declaration is set on one of those, the declaration
receives highest priority, unless other declarations also use the
"!important" declaration. Then, the last "!important" declaration takes
predecence.
\sa setStyleProperty()
*/
QString QWebElement::styleProperty(const QString &name, StyleResolveStrategy strategy) const
{
if (!m_element || !m_element->isStyledElement())
return QString();
CSSPropertyID propID = cssPropertyID(name);
if (!propID)
return QString();
if (strategy == InlineStyle) {
const StylePropertySet* style = static_cast<StyledElement*>(m_element)->inlineStyle();
if (!style)
return QString();
return style->getPropertyValue(propID);
}
if (strategy == CascadedStyle) {
const StylePropertySet* style = static_cast<StyledElement*>(m_element)->inlineStyle();
if (style && style->propertyIsImportant(propID))
return style->getPropertyValue(propID);
// We are going to resolve the style property by walking through the
// list of non-inline matched CSS rules for the element, looking for
// the highest priority definition.
// Get an array of matched CSS rules for the given element sorted
// by importance and inheritance order. This include external CSS
// declarations, as well as embedded and inline style declarations.
Document* doc = m_element->document();
Vector<RefPtr<StyleRuleBase> > rules = doc->ensureStyleResolver()->styleRulesForElement(m_element, StyleResolver::AuthorCSSRules | StyleResolver::CrossOriginCSSRules);
for (int i = rules.size(); i > 0; --i) {
if (!rules[i - 1]->isStyleRule())
continue;
StyleRule* styleRule = static_cast<StyleRule*>(rules[i - 1].get());
if (styleRule->properties()->propertyIsImportant(propID))
return styleRule->properties()->getPropertyValue(propID);
if (!style || style->getPropertyValue(propID).isEmpty())
style = styleRule->properties();
}
if (!style)
return QString();
return style->getPropertyValue(propID);
}
if (strategy == ComputedStyle) {
if (!m_element || !m_element->isStyledElement())
return QString();
RefPtr<CSSComputedStyleDeclaration> style = CSSComputedStyleDeclaration::create(m_element, true);
if (!propID || !style)
return QString();
return style->getPropertyValue(propID);
}
return QString();
}
/*!
Sets the value of the inline style with the given \a name to \a value.
Setting a value, does not necessarily mean that it will become the applied
value, due to the fact that the style property's value might have been set
earlier with a higher priority in external or embedded style declarations.
In order to ensure that the value will be applied, you may have to append
"!important" to the value.
*/
void QWebElement::setStyleProperty(const QString &name, const QString &value)
{
if (!m_element || !m_element->isStyledElement())
return;
// Do the parsing of the token manually since WebCore isn't doing this for us anymore.
const QLatin1String importantToken("!important");
QString adjustedValue(value);
bool important = false;
if (adjustedValue.contains(importantToken)) {
important = true;
adjustedValue.remove(importantToken);
adjustedValue = adjustedValue.trimmed();
}
CSSPropertyID propID = cssPropertyID(name);
static_cast<StyledElement*>(m_element)->setInlineStyleProperty(propID, adjustedValue, important);
}
/*!
Returns the list of classes of this element.
*/
QStringList QWebElement::classes() const
{
if (!hasAttribute(QLatin1String("class")))
return QStringList();
QStringList classes = attribute(QLatin1String("class")).simplified().split(QLatin1Char(' '), QString::SkipEmptyParts);
classes.removeDuplicates();
return classes;
}
/*!
Returns true if this element has a class with the given \a name; otherwise
returns false.
*/
bool QWebElement::hasClass(const QString &name) const
{
QStringList list = classes();
return list.contains(name);
}
/*!
Adds the specified class with the given \a name to the element.
*/
void QWebElement::addClass(const QString &name)
{
QStringList list = classes();
if (!list.contains(name)) {
list.append(name);
QString value = list.join(QLatin1String(" "));
setAttribute(QLatin1String("class"), value);
}
}
/*!
Removes the specified class with the given \a name from the element.
*/
void QWebElement::removeClass(const QString &name)
{
QStringList list = classes();
if (list.contains(name)) {
list.removeAll(name);
QString value = list.join(QLatin1String(" "));
setAttribute(QLatin1String("class"), value);
}
}
/*!
Adds the specified class with the given \a name if it is not present. If
the class is already present, it will be removed.
*/
void QWebElement::toggleClass(const QString &name)
{
QStringList list = classes();
if (list.contains(name))
list.removeAll(name);
else
list.append(name);
QString value = list.join(QLatin1String(" "));
setAttribute(QLatin1String("class"), value);
}
/*!
Appends the given \a element as the element's last child.
If \a element is the child of another element, it is re-parented to this
element. If \a element is a child of this element, then its position in
the list of children is changed.
Calling this function on a null element does nothing.
\sa prependInside(), prependOutside(), appendOutside()
*/
void QWebElement::appendInside(const QWebElement &element)
{
if (!m_element || element.isNull())
return;
ExceptionCode exception = 0;
m_element->appendChild(element.m_element, exception);
}
/*!
Appends the result of parsing \a markup as the element's last child.
Calling this function on a null element does nothing.
\sa prependInside(), prependOutside(), appendOutside()
*/
void QWebElement::appendInside(const QString &markup)
{
if (!m_element)
return;
if (!m_element->isHTMLElement())
return;
ExceptionCode exception = 0;
RefPtr<DocumentFragment> fragment = createContextualFragment(markup, toHTMLElement(m_element), AllowScriptingContent, exception);
m_element->appendChild(fragment, exception);
}
/*!
Prepends \a element as the element's first child.
If \a element is the child of another element, it is re-parented to this
element. If \a element is a child of this element, then its position in
the list of children is changed.
Calling this function on a null element does nothing.
\sa appendInside(), prependOutside(), appendOutside()
*/
void QWebElement::prependInside(const QWebElement &element)
{
if (!m_element || element.isNull())
return;
ExceptionCode exception = 0;
if (m_element->hasChildNodes())
m_element->insertBefore(element.m_element, m_element->firstChild(), exception);
else
m_element->appendChild(element.m_element, exception);
}
/*!
Prepends the result of parsing \a markup as the element's first child.
Calling this function on a null element does nothing.
\sa appendInside(), prependOutside(), appendOutside()
*/
void QWebElement::prependInside(const QString &markup)
{
if (!m_element)
return;
if (!m_element->isHTMLElement())
return;
ExceptionCode exception = 0;
RefPtr<DocumentFragment> fragment = createContextualFragment(markup, toHTMLElement(m_element), AllowScriptingContent, exception);
if (m_element->hasChildNodes())
m_element->insertBefore(fragment, m_element->firstChild(), exception);
else
m_element->appendChild(fragment, exception);
}
/*!
Inserts the given \a element before this element.
If \a element is the child of another element, it is re-parented to the
parent of this element.
Calling this function on a null element does nothing.
\sa appendInside(), prependInside(), appendOutside()
*/
void QWebElement::prependOutside(const QWebElement &element)
{
if (!m_element || element.isNull())
return;
if (!m_element->parentNode())
return;
ExceptionCode exception = 0;
m_element->parentNode()->insertBefore(element.m_element, m_element, exception);
}
/*!
Inserts the result of parsing \a markup before this element.
Calling this function on a null element does nothing.
\sa appendInside(), prependInside(), appendOutside()
*/
void QWebElement::prependOutside(const QString &markup)
{
if (!m_element)
return;
Node* parent = m_element->parentNode();
if (!parent)
return;
if (!parent->isHTMLElement())
return;
ExceptionCode exception = 0;
RefPtr<DocumentFragment> fragment = createContextualFragment(markup, toHTMLElement(parent), AllowScriptingContent, exception);
parent->insertBefore(fragment, m_element, exception);
}
/*!
Inserts the given \a element after this element.
If \a element is the child of another element, it is re-parented to the
parent of this element.
Calling this function on a null element does nothing.
\sa appendInside(), prependInside(), prependOutside()
*/
void QWebElement::appendOutside(const QWebElement &element)
{
if (!m_element || element.isNull())
return;
if (!m_element->parentNode())
return;
ExceptionCode exception = 0;
if (!m_element->nextSibling())
m_element->parentNode()->appendChild(element.m_element, exception);
else
m_element->parentNode()->insertBefore(element.m_element, m_element->nextSibling(), exception);
}
/*!
Inserts the result of parsing \a markup after this element.
Calling this function on a null element does nothing.
\sa appendInside(), prependInside(), prependOutside()
*/
void QWebElement::appendOutside(const QString &markup)
{
if (!m_element)
return;
Node* parent = m_element->parentNode();
if (!parent)
return;
if (!parent->isHTMLElement())
return;
ExceptionCode exception = 0;
RefPtr<DocumentFragment> fragment = createContextualFragment(markup, toHTMLElement(parent), AllowScriptingContent, exception);
if (!m_element->nextSibling())
parent->appendChild(fragment, exception);
else
parent->insertBefore(fragment, m_element->nextSibling(), exception);
}
/*!
Returns a clone of this element.
The clone may be inserted at any point in the document.
\sa appendInside(), prependInside(), prependOutside(), appendOutside()
*/
QWebElement QWebElement::clone() const
{
if (!m_element)
return QWebElement();
return QWebElement(m_element->cloneElementWithChildren().get());
}
/*!
Removes this element from the document and returns a reference to it.
The element is still valid after removal, and can be inserted into other
parts of the document.
\sa removeAllChildren(), removeFromDocument()
*/
QWebElement &QWebElement::takeFromDocument()
{
if (!m_element)
return *this;
ExceptionCode exception = 0;
m_element->remove(exception);
return *this;
}
/*!
Removes this element from the document and makes it a null element.
\sa removeAllChildren(), takeFromDocument()
*/
void QWebElement::removeFromDocument()
{
if (!m_element)
return;
ExceptionCode exception = 0;
m_element->remove(exception);
m_element->deref();
m_element = 0;
}
/*!
Removes all children from this element.
\sa removeFromDocument(), takeFromDocument()
*/
void QWebElement::removeAllChildren()
{
if (!m_element)
return;
m_element->removeChildren();
}
// FIXME: This code, and all callers are wrong, and have no place in a
// WebKit implementation. These should be replaced with WebCore implementations.
static RefPtr<Node> findInsertionPoint(PassRefPtr<Node> root)
{
RefPtr<Node> node = root;
// Go as far down the tree as possible.
while (node->hasChildNodes() && node->firstChild()->isElementNode())
node = node->firstChild();
// TODO: Implement SVG support
if (node->isHTMLElement()) {
HTMLElement* element = static_cast<HTMLElement*>(node.get());
// The insert point could be a non-enclosable tag and it can thus
// never have children, so go one up. Get the parent element, and not
// note as a root note will always exist.
if (element->ieForbidsInsertHTML())
node = node->parentElement();
}
return node;
}
/*!
Encloses the contents of this element with \a element. This element becomes
the child of the deepest descendant within \a element.
### illustration
\sa encloseWith()
*/
void QWebElement::encloseContentsWith(const QWebElement &element)
{
if (!m_element || element.isNull())
return;
RefPtr<Node> insertionPoint = findInsertionPoint(element.m_element);
if (!insertionPoint)
return;
ExceptionCode exception = 0;
// reparent children
for (RefPtr<Node> child = m_element->firstChild(); child;) {
RefPtr<Node> next = child->nextSibling();
insertionPoint->appendChild(child, exception);
child = next;
}
if (m_element->hasChildNodes())
m_element->insertBefore(element.m_element, m_element->firstChild(), exception);
else
m_element->appendChild(element.m_element, exception);
}
/*!
Encloses the contents of this element with the result of parsing \a markup.
This element becomes the child of the deepest descendant within \a markup.
\sa encloseWith()
*/
void QWebElement::encloseContentsWith(const QString &markup)
{
if (!m_element)
return;
if (!m_element->parentNode())
return;
if (!m_element->isHTMLElement())
return;
ExceptionCode exception = 0;
RefPtr<DocumentFragment> fragment = createContextualFragment(markup, toHTMLElement(m_element), AllowScriptingContent, exception);
if (!fragment || !fragment->firstChild())
return;
RefPtr<Node> insertionPoint = findInsertionPoint(fragment->firstChild());
if (!insertionPoint)
return;
// reparent children
for (RefPtr<Node> child = m_element->firstChild(); child;) {
RefPtr<Node> next = child->nextSibling();
insertionPoint->appendChild(child, exception);
child = next;
}
if (m_element->hasChildNodes())
m_element->insertBefore(fragment, m_element->firstChild(), exception);
else
m_element->appendChild(fragment, exception);
}
/*!
Encloses this element with \a element. This element becomes the child of
the deepest descendant within \a element.
\sa replace()
*/
void QWebElement::encloseWith(const QWebElement &element)
{
if (!m_element || element.isNull())
return;
RefPtr<Node> insertionPoint = findInsertionPoint(element.m_element);
if (!insertionPoint)
return;
// Keep reference to these two nodes before pulling out this element and
// wrapping it in the fragment. The reason for doing it in this order is
// that once the fragment has been added to the document it is empty, so
// we no longer have access to the nodes it contained.
Node* parent = m_element->parentNode();
Node* siblingNode = m_element->nextSibling();
ExceptionCode exception = 0;
insertionPoint->appendChild(m_element, exception);
if (!siblingNode)
parent->appendChild(element.m_element, exception);
else
parent->insertBefore(element.m_element, siblingNode, exception);
}
/*!
Encloses this element with the result of parsing \a markup. This element
becomes the child of the deepest descendant within \a markup.
\sa replace()
*/
void QWebElement::encloseWith(const QString &markup)
{
if (!m_element)
return;
Node* parent = m_element->parentNode();
if (!parent)
return;
if (!parent->isHTMLElement())
return;
ExceptionCode exception = 0;
RefPtr<DocumentFragment> fragment = createContextualFragment(markup, toHTMLElement(parent), AllowScriptingContent, exception);
if (!fragment || !fragment->firstChild())
return;
RefPtr<Node> insertionPoint = findInsertionPoint(fragment->firstChild());
if (!insertionPoint)
return;
// Keep reference to parent & siblingNode before pulling out this element and
// wrapping it in the fragment. The reason for doing it in this order is
// that once the fragment has been added to the document it is empty, so
// we no longer have access to the nodes it contained.
Node* siblingNode = m_element->nextSibling();
insertionPoint->appendChild(m_element, exception);
if (!siblingNode)
parent->appendChild(fragment, exception);
else
parent->insertBefore(fragment, siblingNode, exception);
}
/*!
Replaces this element with \a element.
This method will not replace the <html>, <head> or <body> elements.
\sa encloseWith()
*/
void QWebElement::replace(const QWebElement &element)
{
if (!m_element || element.isNull())
return;
appendOutside(element);
takeFromDocument();
}
/*!
Replaces this element with the result of parsing \a markup.
This method will not replace the <html>, <head> or <body> elements.
\sa encloseWith()
*/
void QWebElement::replace(const QString &markup)
{
if (!m_element)
return;
appendOutside(markup);
takeFromDocument();
}
/*!
\internal
Walk \a node's parents until a valid QWebElement is found.
For example, a WebCore::Text node is not a valid Html QWebElement, but its
enclosing p tag is.
*/
QWebElement QWebElement::enclosingElement(WebCore::Node* node)
{
QWebElement element(node);
while (element.isNull() && node) {
node = node->parentNode();
element = QWebElement(node);
}
return element;
}
/*!
\fn inline bool QWebElement::operator==(const QWebElement& o) const;
Returns true if this element points to the same underlying DOM object as
\a o; otherwise returns false.
*/
/*!
\fn inline bool QWebElement::operator!=(const QWebElement& o) const;
Returns true if this element points to a different underlying DOM object
than \a o; otherwise returns false.
*/
/*!
Render the element into \a painter .
*/
void QWebElement::render(QPainter* painter)
{
render(painter, QRect());
}
/*!
Render the element into \a painter clipping to \a clip.
*/
void QWebElement::render(QPainter* painter, const QRect& clip)
{
WebCore::Element* e = m_element;
Document* doc = e ? e->document() : 0;
if (!doc)
return;
Frame* frame = doc->frame();
if (!frame || !frame->view() || !frame->contentRenderer())
return;
FrameView* view = frame->view();
view->updateLayoutAndStyleIfNeededRecursive();
IntRect rect = e->pixelSnappedBoundingBox();
if (rect.size().isEmpty())
return;
QRect finalClipRect = rect;
if (!clip.isEmpty())
rect.intersect(clip.translated(rect.location()));
GraphicsContext context(painter);
context.save();
context.translate(-rect.x(), -rect.y());
painter->setClipRect(finalClipRect, Qt::IntersectClip);
view->setNodeToDraw(e);
view->paintContents(&context, finalClipRect);
view->setNodeToDraw(0);
context.restore();
}
class QWebElementCollectionPrivate : public QSharedData
{
public:
static QWebElementCollectionPrivate* create(const PassRefPtr<Node> &context, const QString &query);
RefPtr<NodeList> m_result;
private:
inline QWebElementCollectionPrivate() {}
};
QWebElementCollectionPrivate* QWebElementCollectionPrivate::create(const PassRefPtr<Node> &context, const QString &query)
{
if (!context)
return 0;
// Let WebKit do the hard work hehehe
ExceptionCode exception = 0; // ###
RefPtr<NodeList> nodes = context->querySelectorAll(query, exception);
if (!nodes)
return 0;
QWebElementCollectionPrivate* priv = new QWebElementCollectionPrivate;
priv->m_result = nodes;
return priv;
}
/*!
\class QWebElementCollection
\inmodule QtWebKit
\since 4.6
\brief The QWebElementCollection class represents a collection of web elements.
\preliminary
Elements in a document can be selected using QWebElement::findAll() or using the
QWebElement constructor. The collection is composed by choosing all elements in the
document that match a specified CSS selector expression.
The number of selected elements is provided through the count() property. Individual
elements can be retrieved by index using at().
It is also possible to iterate through all elements in the collection using Qt's foreach
macro:
\code
QWebElementCollection collection = document.findAll("p");
foreach (QWebElement paraElement, collection) {
...
}
\endcode
*/
/*!
Constructs an empty collection.
*/
QWebElementCollection::QWebElementCollection()
{
}
/*!
Constructs a copy of \a other.
*/
QWebElementCollection::QWebElementCollection(const QWebElementCollection &other)
: d(other.d)
{
}
/*!
Constructs a collection of elements from the list of child elements of \a contextElement that
match the specified CSS selector \a query.
*/
QWebElementCollection::QWebElementCollection(const QWebElement &contextElement, const QString &query)
{
d = QExplicitlySharedDataPointer<QWebElementCollectionPrivate>(QWebElementCollectionPrivate::create(contextElement.m_element, query));
}
/*!
Assigns \a other to this collection and returns a reference to this collection.
*/
QWebElementCollection &QWebElementCollection::operator=(const QWebElementCollection &other)
{
d = other.d;
return *this;
}
/*!
Destroys the collection.
*/
QWebElementCollection::~QWebElementCollection()
{
}
/*! \fn QWebElementCollection &QWebElementCollection::operator+=(const QWebElementCollection &other)
Appends the items of the \a other list to this list and returns a
reference to this list.
\sa operator+(), append()
*/
/*!
Returns a collection that contains all the elements of this collection followed
by all the elements in the \a other collection. Duplicates may occur in the result.
\sa operator+=()
*/
QWebElementCollection QWebElementCollection::operator+(const QWebElementCollection &other) const
{
QWebElementCollection n = *this; n.d.detach(); n += other; return n;
}
/*!
Extends the collection by appending all items of \a other.
The resulting collection may include duplicate elements.
\sa operator+=()
*/
void QWebElementCollection::append(const QWebElementCollection &other)
{
if (!d) {
*this = other;
return;
}
if (!other.d)
return;
Vector<RefPtr<Node> > nodes;
RefPtr<NodeList> results[] = { d->m_result, other.d->m_result };
nodes.reserveInitialCapacity(results[0]->length() + results[1]->length());
for (int i = 0; i < 2; ++i) {
int j = 0;
Node* n = results[i]->item(j);
while (n) {
nodes.append(n);
n = results[i]->item(++j);
}
}
d->m_result = StaticNodeList::adopt(nodes);
}
/*!
Returns the number of elements in the collection.
*/
int QWebElementCollection::count() const
{
if (!d)
return 0;
return d->m_result->length();
}
/*!
Returns the element at index position \a i in the collection.
*/
QWebElement QWebElementCollection::at(int i) const
{
if (!d)
return QWebElement();
Node* n = d->m_result->item(i);
return QWebElement(toElement(n));
}
/*!
\fn const QWebElement QWebElementCollection::operator[](int position) const
Returns the element at the specified \a position in the collection.
*/
/*! \fn QWebElement QWebElementCollection::first() const
Returns the first element in the collection.
\sa last(), operator[](), at(), count()
*/
/*! \fn QWebElement QWebElementCollection::last() const
Returns the last element in the collection.
\sa first(), operator[](), at(), count()
*/
/*!
Returns a QList object with the elements contained in this collection.
*/
QList<QWebElement> QWebElementCollection::toList() const
{
if (!d)
return QList<QWebElement>();
QList<QWebElement> elements;
int i = 0;
Node* n = d->m_result->item(i);
while (n) {
if (n->isElementNode())
elements.append(QWebElement(toElement(n)));
n = d->m_result->item(++i);
}
return elements;
}
/*!
\fn QWebElementCollection::const_iterator QWebElementCollection::begin() const
Returns an STL-style iterator pointing to the first element in the collection.
\sa end()
*/
/*!
\fn QWebElementCollection::const_iterator QWebElementCollection::end() const
Returns an STL-style iterator pointing to the imaginary element after the
last element in the list.
\sa begin()
*/
/*!
\class QWebElementCollection::const_iterator
\inmodule QtWebKit
\since 4.6
\brief The QWebElementCollection::const_iterator class provides an STL-style const iterator for QWebElementCollection.
QWebElementCollection provides STL style const iterators for fast low-level access to the elements.
QWebElementCollection::const_iterator allows you to iterate over a QWebElementCollection.
*/
/*!
\fn QWebElementCollection::const_iterator::const_iterator(const const_iterator &other)
Constructs a copy of \a other.
*/
/*!
\fn QWebElementCollection::const_iterator::const_iterator(const QWebElementCollection *collection, int index)
\internal
*/
/*!
\fn const QWebElement QWebElementCollection::const_iterator::operator*() const
Returns the current element.
*/
/*!
\fn bool QWebElementCollection::const_iterator::operator==(const const_iterator &other) const
Returns true if \a other points to the same item as this iterator;
otherwise returns false.
\sa operator!=()
*/
/*!
\fn bool QWebElementCollection::const_iterator::operator!=(const const_iterator &other) const
Returns true if \a other points to a different element than this;
iterator; otherwise returns false.
\sa operator==()
*/
/*!
\fn QWebElementCollection::const_iterator &QWebElementCollection::const_iterator::operator++()
The prefix ++ operator (\c{++it}) advances the iterator to the next element in the collection
and returns an iterator to the new current element.
Calling this function on QWebElementCollection::end() leads to undefined results.
\sa operator--()
*/
/*!
\fn QWebElementCollection::const_iterator QWebElementCollection::const_iterator::operator++(int)
\overload
The postfix ++ operator (\c{it++}) advances the iterator to the next element in the collection
and returns an iterator to the previously current element.
Calling this function on QWebElementCollection::end() leads to undefined results.
*/
/*!
\fn QWebElementCollection::const_iterator &QWebElementCollection::const_iterator::operator--()
The prefix -- operator (\c{--it}) makes the preceding element current and returns an
iterator to the new current element.
Calling this function on QWebElementCollection::begin() leads to undefined results.
\sa operator++()
*/
/*!
\fn QWebElementCollection::const_iterator QWebElementCollection::const_iterator::operator--(int)
\overload
The postfix -- operator (\c{it--}) makes the preceding element current and returns
an iterator to the previously current element.
*/
/*!
\fn QWebElementCollection::const_iterator &QWebElementCollection::const_iterator::operator+=(int j)
Advances the iterator by \a j elements. If \a j is negative, the iterator goes backward.
\sa operator-=(), operator+()
*/
/*!
\fn QWebElementCollection::const_iterator &QWebElementCollection::const_iterator::operator-=(int j)
Makes the iterator go back by \a j elements. If \a j is negative, the iterator goes forward.
\sa operator+=(), operator-()
*/
/*!
\fn QWebElementCollection::const_iterator QWebElementCollection::const_iterator::operator+(int j) const
Returns an iterator to the element at \a j positions forward from this iterator. If \a j
is negative, the iterator goes backward.
\sa operator-(), operator+=()
*/
/*!
\fn QWebElementCollection::const_iterator QWebElementCollection::const_iterator::operator-(int j) const
Returns an iterator to the element at \a j positiosn backward from this iterator.
If \a j is negative, the iterator goes forward.
\sa operator+(), operator-=()
*/
/*!
\fn int QWebElementCollection::const_iterator::operator-(const_iterator other) const
Returns the number of elements between the item point to by \a other
and the element pointed to by this iterator.
*/
/*!
\fn bool QWebElementCollection::const_iterator::operator<(const const_iterator &other) const
Returns true if the element pointed to by this iterator is less than the element pointed to
by the \a other iterator.
*/
/*!
\fn bool QWebElementCollection::const_iterator::operator<=(const const_iterator &other) const
Returns true if the element pointed to by this iterator is less than or equal to the
element pointed to by the \a other iterator.
*/
/*!
\fn bool QWebElementCollection::const_iterator::operator>(const const_iterator &other) const
Returns true if the element pointed to by this iterator is greater than the element pointed to
by the \a other iterator.
*/
/*!
\fn bool QWebElementCollection::const_iterator::operator>=(const const_iterator &other) const
Returns true if the element pointed to by this iterator is greater than or equal to the
element pointed to by the \a other iterator.
*/
/*!
\fn QWebElementCollection::iterator QWebElementCollection::begin()
Returns an STL-style iterator pointing to the first element in the collection.
\sa end()
*/
/*!
\fn QWebElementCollection::iterator QWebElementCollection::end()
Returns an STL-style iterator pointing to the imaginary element after the
last element in the list.
\sa begin()
*/
/*!
\fn QWebElementCollection::const_iterator QWebElementCollection::constBegin() const
Returns an STL-style iterator pointing to the first element in the collection.
\sa end()
*/
/*!
\fn QWebElementCollection::const_iterator QWebElementCollection::constEnd() const
Returns an STL-style iterator pointing to the imaginary element after the
last element in the list.
\sa begin()
*/
/*!
\class QWebElementCollection::iterator
\inmodule QtWebKit
\since 4.6
\brief The QWebElementCollection::iterator class provides an STL-style iterator for QWebElementCollection.
QWebElementCollection provides STL style iterators for fast low-level access to the elements.
QWebElementCollection::iterator allows you to iterate over a QWebElementCollection.
*/
/*!
\fn QWebElementCollection::iterator::iterator(const iterator &other)
Constructs a copy of \a other.
*/
/*!
\fn QWebElementCollection::iterator::iterator(const QWebElementCollection *collection, int index)
\internal
*/
/*!
\fn const QWebElement QWebElementCollection::iterator::operator*() const
Returns the current element.
*/
/*!
\fn bool QWebElementCollection::iterator::operator==(const iterator &other) const
Returns true if \a other points to the same item as this iterator;
otherwise returns false.
\sa operator!=()
*/
/*!
\fn bool QWebElementCollection::iterator::operator!=(const iterator &other) const
Returns true if \a other points to a different element than this;
iterator; otherwise returns false.
\sa operator==()
*/
/*!
\fn QWebElementCollection::iterator &QWebElementCollection::iterator::operator++()
The prefix ++ operator (\c{++it}) advances the iterator to the next element in the collection
and returns an iterator to the new current element.
Calling this function on QWebElementCollection::end() leads to undefined results.
\sa operator--()
*/
/*!
\fn QWebElementCollection::iterator QWebElementCollection::iterator::operator++(int)
\overload
The postfix ++ operator (\c{it++}) advances the iterator to the next element in the collection
and returns an iterator to the previously current element.
Calling this function on QWebElementCollection::end() leads to undefined results.
*/
/*!
\fn QWebElementCollection::iterator &QWebElementCollection::iterator::operator--()
The prefix -- operator (\c{--it}) makes the preceding element current and returns an
iterator to the new current element.
Calling this function on QWebElementCollection::begin() leads to undefined results.
\sa operator++()
*/
/*!
\fn QWebElementCollection::iterator QWebElementCollection::iterator::operator--(int)
\overload
The postfix -- operator (\c{it--}) makes the preceding element current and returns
an iterator to the previously current element.
*/
/*!
\fn QWebElementCollection::iterator &QWebElementCollection::iterator::operator+=(int j)
Advances the iterator by \a j elements. If \a j is negative, the iterator goes backward.
\sa operator-=(), operator+()
*/
/*!
\fn QWebElementCollection::iterator &QWebElementCollection::iterator::operator-=(int j)
Makes the iterator go back by \a j elements. If \a j is negative, the iterator goes forward.
\sa operator+=(), operator-()
*/
/*!
\fn QWebElementCollection::iterator QWebElementCollection::iterator::operator+(int j) const
Returns an iterator to the element at \a j positions forward from this iterator. If \a j
is negative, the iterator goes backward.
\sa operator-(), operator+=()
*/
/*!
\fn QWebElementCollection::iterator QWebElementCollection::iterator::operator-(int j) const
Returns an iterator to the element at \a j positiosn backward from this iterator.
If \a j is negative, the iterator goes forward.
\sa operator+(), operator-=()
*/
/*!
\fn int QWebElementCollection::iterator::operator-(iterator other) const
Returns the number of elements between the item point to by \a other
and the element pointed to by this iterator.
*/
/*!
\fn bool QWebElementCollection::iterator::operator<(const iterator &other) const
Returns true if the element pointed to by this iterator is less than the element pointed to
by the \a other iterator.
*/
/*!
\fn bool QWebElementCollection::iterator::operator<=(const iterator &other) const
Returns true if the element pointed to by this iterator is less than or equal to the
element pointed to by the \a other iterator.
*/
/*!
\fn bool QWebElementCollection::iterator::operator>(const iterator &other) const
Returns true if the element pointed to by this iterator is greater than the element pointed to
by the \a other iterator.
*/
/*!
\fn bool QWebElementCollection::iterator::operator>=(const iterator &other) const
Returns true if the element pointed to by this iterator is greater than or equal to the
element pointed to by the \a other iterator.
*/
QWebElement QtWebElementRuntime::create(Element* element)
{
return QWebElement(element);
}
Element* QtWebElementRuntime::get(const QWebElement& element)
{
return element.m_element;
}
static QVariant convertJSValueToWebElementVariant(JSC::JSObject* object, int *distance, HashSet<JSObjectRef>* visitedObjects)
{
Element* element = 0;
QVariant ret;
if (object && object->inherits(&JSElement::s_info)) {
element =(static_cast<JSElement*>(object))->impl();
*distance = 0;
// Allow other objects to reach this one. This won't cause our algorithm to
// loop since when we find an Element we do not recurse.
visitedObjects->remove(toRef(object));
} else if (object && object->inherits(&JSDocument::s_info)) {
// To support TestRunnerQt::nodesFromRect(), used in DRT, we do an implicit
// conversion from 'document' to the QWebElement representing the 'document.documentElement'.
// We can't simply use a QVariantMap in nodesFromRect() because it currently times out
// when serializing DOMMimeType and DOMPlugin, even if we limit the recursion.
element =(static_cast<JSDocument*>(object))->impl()->documentElement();
}
return QVariant::fromValue<QWebElement>(QtWebElementRuntime::create(element));
}
static JSC::JSValue convertWebElementVariantToJSValue(JSC::ExecState* exec, WebCore::JSDOMGlobalObject* globalObject, const QVariant& variant)
{
return WebCore::toJS(exec, globalObject, QtWebElementRuntime::get(variant.value<QWebElement>()));
}
void QtWebElementRuntime::initialize()
{
static bool initialized = false;
if (initialized)
return;
initialized = true;
int id = qRegisterMetaType<QWebElement>();
JSC::Bindings::registerCustomType(id, convertJSValueToWebElementVariant, convertWebElementVariantToJSValue);
}
|