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
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "nsTableRowGroupFrame.h"
#include "mozilla/ComputedStyle.h"
#include "mozilla/PresShell.h"
#include "mozilla/StaticPrefs_layout.h"
#include "nsCOMPtr.h"
#include "nsTableRowFrame.h"
#include "nsTableFrame.h"
#include "nsTableCellFrame.h"
#include "nsPresContext.h"
#include "nsStyleConsts.h"
#include "nsIContent.h"
#include "nsIFrame.h"
#include "nsIFrameInlines.h"
#include "nsGkAtoms.h"
#include "nsCSSRendering.h"
#include "nsHTMLParts.h"
#include "nsCSSFrameConstructor.h"
#include "nsDisplayList.h"
#include "nsCellMap.h" //table cell navigation
#include <algorithm>
using namespace mozilla;
using namespace mozilla::layout;
namespace mozilla {
struct TableRowGroupReflowInput final {
// Our reflow input
const ReflowInput& mReflowInput;
// The available size (computed from the parent)
LogicalSize mAvailSize;
// Running block-offset
nscoord mBCoord = 0;
explicit TableRowGroupReflowInput(const ReflowInput& aReflowInput)
: mReflowInput(aReflowInput), mAvailSize(aReflowInput.AvailableSize()) {}
~TableRowGroupReflowInput() = default;
};
} // namespace mozilla
nsTableRowGroupFrame::nsTableRowGroupFrame(ComputedStyle* aStyle,
nsPresContext* aPresContext)
: nsContainerFrame(aStyle, aPresContext, kClassID) {
SetRepeatable(false);
}
nsTableRowGroupFrame::~nsTableRowGroupFrame() = default;
void nsTableRowGroupFrame::Destroy(DestroyContext& aContext) {
nsTableFrame::MaybeUnregisterPositionedTablePart(this);
nsContainerFrame::Destroy(aContext);
}
NS_QUERYFRAME_HEAD(nsTableRowGroupFrame)
NS_QUERYFRAME_ENTRY(nsTableRowGroupFrame)
NS_QUERYFRAME_TAIL_INHERITING(nsContainerFrame)
int32_t nsTableRowGroupFrame::GetRowCount() const {
#ifdef DEBUG
for (nsIFrame* f : mFrames) {
NS_ASSERTION(f->StyleDisplay()->mDisplay == mozilla::StyleDisplay::TableRow,
"Unexpected display");
NS_ASSERTION(f->IsTableRowFrame(), "Unexpected frame type");
}
#endif
return mFrames.GetLength();
}
int32_t nsTableRowGroupFrame::GetStartRowIndex() const {
int32_t result = -1;
if (mFrames.NotEmpty()) {
NS_ASSERTION(mFrames.FirstChild()->IsTableRowFrame(),
"Unexpected frame type");
result = static_cast<nsTableRowFrame*>(mFrames.FirstChild())->GetRowIndex();
}
// if the row group doesn't have any children, get it the hard way
if (-1 == result) {
return GetTableFrame()->GetStartRowIndex(this);
}
return result;
}
void nsTableRowGroupFrame::AdjustRowIndices(int32_t aRowIndex,
int32_t anAdjustment) {
for (nsIFrame* rowFrame : mFrames) {
if (mozilla::StyleDisplay::TableRow == rowFrame->StyleDisplay()->mDisplay) {
int32_t index = ((nsTableRowFrame*)rowFrame)->GetRowIndex();
if (index >= aRowIndex) {
((nsTableRowFrame*)rowFrame)->SetRowIndex(index + anAdjustment);
}
}
}
}
int32_t nsTableRowGroupFrame::GetAdjustmentForStoredIndex(
int32_t aStoredIndex) {
nsTableFrame* tableFrame = GetTableFrame();
return tableFrame->GetAdjustmentForStoredIndex(aStoredIndex);
}
void nsTableRowGroupFrame::MarkRowsAsDeleted(nsTableRowFrame& aStartRowFrame,
int32_t aNumRowsToDelete) {
nsTableRowFrame* currentRowFrame = &aStartRowFrame;
for (;;) {
// XXXneerja - Instead of calling AddDeletedRowIndex() per row frame
// it is possible to change AddDeleteRowIndex to instead take
// <start row index> and <num of rows to mark for deletion> as arguments.
// The problem that emerges here is mDeletedRowIndexRanges only stores
// disjoint index ranges and since AddDeletedRowIndex() must operate on
// the "stored" index, in some cases it is possible that the range
// of indices to delete becomes overlapping EG: Deleting rows 9 - 11 and
// then from the remaining rows deleting the *new* rows 7 to 20.
// Handling these overlapping ranges is much more complicated to
// implement and so I opted to add the deleted row index of one row at a
// time and maintain the invariant that the range of deleted row indices
// is always disjoint.
currentRowFrame->AddDeletedRowIndex();
if (--aNumRowsToDelete == 0) {
break;
}
currentRowFrame = do_QueryFrame(currentRowFrame->GetNextSibling());
if (!currentRowFrame) {
MOZ_ASSERT_UNREACHABLE("expected another row frame");
break;
}
}
}
void nsTableRowGroupFrame::AddDeletedRowIndex(int32_t aDeletedRowStoredIndex) {
nsTableFrame* tableFrame = GetTableFrame();
return tableFrame->AddDeletedRowIndex(aDeletedRowStoredIndex);
}
void nsTableRowGroupFrame::InitRepeatedFrame(
nsTableRowGroupFrame* aHeaderFooterFrame) {
nsTableRowFrame* copyRowFrame = GetFirstRow();
nsTableRowFrame* originalRowFrame = aHeaderFooterFrame->GetFirstRow();
AddStateBits(NS_REPEATED_ROW_OR_ROWGROUP);
while (copyRowFrame && originalRowFrame) {
copyRowFrame->AddStateBits(NS_REPEATED_ROW_OR_ROWGROUP);
int rowIndex = originalRowFrame->GetRowIndex();
copyRowFrame->SetRowIndex(rowIndex);
// For each table cell frame set its column index
nsTableCellFrame* originalCellFrame = originalRowFrame->GetFirstCell();
nsTableCellFrame* copyCellFrame = copyRowFrame->GetFirstCell();
while (copyCellFrame && originalCellFrame) {
NS_ASSERTION(
originalCellFrame->GetContent() == copyCellFrame->GetContent(),
"cell frames have different content");
uint32_t colIndex = originalCellFrame->ColIndex();
copyCellFrame->SetColIndex(colIndex);
// Move to the next cell frame
copyCellFrame = copyCellFrame->GetNextCell();
originalCellFrame = originalCellFrame->GetNextCell();
}
// Move to the next row frame
originalRowFrame = originalRowFrame->GetNextRow();
copyRowFrame = copyRowFrame->GetNextRow();
}
}
// Handle the child-traversal part of DisplayGenericTablePart
static void DisplayRows(nsDisplayListBuilder* aBuilder, nsIFrame* aFrame,
const nsDisplayListSet& aLists) {
nscoord overflowAbove;
nsTableRowGroupFrame* f = static_cast<nsTableRowGroupFrame*>(aFrame);
// Don't try to use the row cursor if we have to descend into placeholders;
// we might have rows containing placeholders, where the row's overflow
// area doesn't intersect the dirty rect but we need to descend into the row
// to see out of flows.
// Note that we really want to check ShouldDescendIntoFrame for all
// the rows in |f|, but that's exactly what we're trying to avoid, so we
// approximate it by checking it for |f|: if it's true for any row
// in |f| then it's true for |f| itself.
nsIFrame* kid = aBuilder->ShouldDescendIntoFrame(f, true)
? nullptr
: f->GetFirstRowContaining(aBuilder->GetVisibleRect().y,
&overflowAbove);
if (kid) {
// have a cursor, use it
while (kid) {
if (kid->GetRect().y - overflowAbove >=
aBuilder->GetVisibleRect().YMost()) {
break;
}
f->BuildDisplayListForChild(aBuilder, kid, aLists);
kid = kid->GetNextSibling();
}
return;
}
// No cursor. Traverse children the hard way and build a cursor while we're at
// it
nsTableRowGroupFrame::FrameCursorData* cursor = f->SetupRowCursor();
kid = f->PrincipalChildList().FirstChild();
while (kid) {
f->BuildDisplayListForChild(aBuilder, kid, aLists);
if (cursor) {
if (!cursor->AppendFrame(kid)) {
f->ClearRowCursor();
return;
}
}
kid = kid->GetNextSibling();
}
if (cursor) {
cursor->FinishBuildingCursor();
}
}
void nsTableRowGroupFrame::BuildDisplayList(nsDisplayListBuilder* aBuilder,
const nsDisplayListSet& aLists) {
DisplayOutsetBoxShadow(aBuilder, aLists.BorderBackground());
for (nsTableRowFrame* row = GetFirstRow(); row; row = row->GetNextRow()) {
if (!aBuilder->GetDirtyRect().Intersects(row->InkOverflowRect() +
row->GetNormalPosition())) {
continue;
}
row->PaintCellBackgroundsForFrame(this, aBuilder, aLists,
row->GetNormalPosition());
}
DisplayInsetBoxShadow(aBuilder, aLists.BorderBackground());
DisplayOutline(aBuilder, aLists);
DisplayRows(aBuilder, this, aLists);
}
LogicalSides nsTableRowGroupFrame::GetLogicalSkipSides() const {
LogicalSides skip(mWritingMode);
if (MOZ_UNLIKELY(StyleBorder()->mBoxDecorationBreak ==
StyleBoxDecorationBreak::Clone)) {
return skip;
}
if (GetPrevInFlow()) {
skip += LogicalSide::BStart;
}
if (GetNextInFlow()) {
skip += LogicalSide::BEnd;
}
return skip;
}
// Position and size aKidFrame and update our reflow input.
void nsTableRowGroupFrame::PlaceChild(
nsPresContext* aPresContext, TableRowGroupReflowInput& aReflowInput,
nsIFrame* aKidFrame, const ReflowInput& aKidReflowInput, WritingMode aWM,
const LogicalPoint& aKidPosition, const nsSize& aContainerSize,
ReflowOutput& aDesiredSize, const nsRect& aOriginalKidRect,
const nsRect& aOriginalKidInkOverflow) {
bool isFirstReflow = aKidFrame->HasAnyStateBits(NS_FRAME_FIRST_REFLOW);
// Place and size the child
FinishReflowChild(aKidFrame, aPresContext, aDesiredSize, &aKidReflowInput,
aWM, aKidPosition, aContainerSize,
ReflowChildFlags::ApplyRelativePositioning);
nsTableFrame* tableFrame = GetTableFrame();
if (tableFrame->IsBorderCollapse()) {
nsTableFrame::InvalidateTableFrame(aKidFrame, aOriginalKidRect,
aOriginalKidInkOverflow, isFirstReflow);
}
// Adjust the running block-offset
aReflowInput.mBCoord += aDesiredSize.BSize(aWM);
// If our block-size is constrained then update the available bsize
if (NS_UNCONSTRAINEDSIZE != aReflowInput.mAvailSize.BSize(aWM)) {
aReflowInput.mAvailSize.BSize(aWM) -= aDesiredSize.BSize(aWM);
}
}
void nsTableRowGroupFrame::InitChildReflowInput(nsPresContext* aPresContext,
bool aBorderCollapse,
ReflowInput& aReflowInput) {
const auto childWM = aReflowInput.GetWritingMode();
LogicalMargin border(childWM);
if (aBorderCollapse) {
auto* rowFrame = static_cast<nsTableRowFrame*>(aReflowInput.mFrame);
border = rowFrame->GetBCBorderWidth(childWM);
}
const LogicalMargin zeroPadding(childWM);
aReflowInput.Init(aPresContext, Nothing(), Some(border), Some(zeroPadding));
}
static void CacheRowBSizesForPrinting(nsTableRowFrame* aFirstRow,
WritingMode aWM) {
for (nsTableRowFrame* row = aFirstRow; row; row = row->GetNextRow()) {
if (!row->GetPrevInFlow()) {
row->SetUnpaginatedBSize(row->BSize(aWM));
}
}
}
void nsTableRowGroupFrame::ReflowChildren(
nsPresContext* aPresContext, ReflowOutput& aDesiredSize,
TableRowGroupReflowInput& aReflowInput, nsReflowStatus& aStatus,
bool* aPageBreakBeforeEnd) {
if (aPageBreakBeforeEnd) {
*aPageBreakBeforeEnd = false;
}
WritingMode wm = aReflowInput.mReflowInput.GetWritingMode();
nsTableFrame* tableFrame = GetTableFrame();
const bool borderCollapse = tableFrame->IsBorderCollapse();
// XXXldb Should we really be checking IsPaginated(),
// or should we *only* check available block-size?
// (Think about multi-column layout!)
bool isPaginated = aPresContext->IsPaginated() &&
NS_UNCONSTRAINEDSIZE != aReflowInput.mAvailSize.BSize(wm);
bool reflowAllKids = aReflowInput.mReflowInput.ShouldReflowAllKids() ||
tableFrame->IsGeometryDirty() ||
tableFrame->NeedToCollapse();
// in vertical-rl mode, we always need the row bsizes in order to
// get the necessary containerSize for placing our kids
bool needToCalcRowBSizes = reflowAllKids || wm.IsVerticalRL();
nsSize containerSize =
aReflowInput.mReflowInput.ComputedSizeAsContainerIfConstrained();
nsIFrame* prevKidFrame = nullptr;
for (nsTableRowFrame* kidFrame = GetFirstRow(); kidFrame;
prevKidFrame = kidFrame, kidFrame = kidFrame->GetNextRow()) {
const nscoord rowSpacing =
tableFrame->GetRowSpacing(kidFrame->GetRowIndex());
// Reflow the row frame
if (reflowAllKids || kidFrame->IsSubtreeDirty() ||
(aReflowInput.mReflowInput.mFlags.mSpecialBSizeReflow &&
(isPaginated ||
kidFrame->HasAnyStateBits(NS_FRAME_CONTAINS_RELATIVE_BSIZE)))) {
LogicalRect oldKidRect = kidFrame->GetLogicalRect(wm, containerSize);
nsRect oldKidInkOverflow = kidFrame->InkOverflowRect();
ReflowOutput kidDesiredSize(aReflowInput.mReflowInput);
// Reflow the child into the available space, giving it as much bsize as
// it wants. We'll deal with splitting later after we've computed the row
// bsizes, taking into account cells with row spans...
LogicalSize kidAvailSize = aReflowInput.mAvailSize;
kidAvailSize.BSize(wm) = NS_UNCONSTRAINEDSIZE;
ReflowInput kidReflowInput(aPresContext, aReflowInput.mReflowInput,
kidFrame, kidAvailSize, Nothing(),
ReflowInput::InitFlag::CallerWillInit);
InitChildReflowInput(aPresContext, borderCollapse, kidReflowInput);
// This can indicate that columns were resized.
if (aReflowInput.mReflowInput.IsIResize()) {
kidReflowInput.SetIResize(true);
}
NS_ASSERTION(kidFrame == mFrames.FirstChild() || prevKidFrame,
"If we're not on the first frame, we should have a "
"previous sibling...");
// If prev row has nonzero YMost, then we can't be at the top of the page
if (prevKidFrame && prevKidFrame->GetNormalRect().YMost() > 0) {
kidReflowInput.mFlags.mIsTopOfPage = false;
}
LogicalPoint kidPosition(wm, 0, aReflowInput.mBCoord);
ReflowChild(kidFrame, aPresContext, kidDesiredSize, kidReflowInput, wm,
kidPosition, containerSize, ReflowChildFlags::Default,
aStatus);
// Place the child
PlaceChild(aPresContext, aReflowInput, kidFrame, kidReflowInput, wm,
kidPosition, containerSize, kidDesiredSize,
oldKidRect.GetPhysicalRect(wm, containerSize),
oldKidInkOverflow);
aReflowInput.mBCoord += rowSpacing;
if (!reflowAllKids) {
if (IsSimpleRowFrame(tableFrame, kidFrame)) {
// Inform the row of its new bsize.
kidFrame->DidResize();
// the overflow area may have changed inflate the overflow area
const nsStylePosition* stylePos = StylePosition();
if (tableFrame->IsAutoBSize(wm) &&
!stylePos->BSize(wm, StyleDisplay()->mPosition)
->ConvertsToLength()) {
// Because other cells in the row may need to be aligned
// differently, repaint the entire row
InvalidateFrame();
} else if (oldKidRect.BSize(wm) != kidDesiredSize.BSize(wm)) {
needToCalcRowBSizes = true;
}
} else {
needToCalcRowBSizes = true;
}
}
if (isPaginated && aPageBreakBeforeEnd && !*aPageBreakBeforeEnd) {
nsTableRowFrame* nextRow = kidFrame->GetNextRow();
if (nextRow) {
*aPageBreakBeforeEnd =
nsTableFrame::PageBreakAfter(kidFrame, nextRow);
}
}
} else {
// Move a child that was skipped during a reflow.
const LogicalPoint oldPosition =
kidFrame->GetLogicalNormalPosition(wm, containerSize);
if (oldPosition.B(wm) != aReflowInput.mBCoord) {
kidFrame->InvalidateFrameSubtree();
const LogicalPoint offset(wm, 0,
aReflowInput.mBCoord - oldPosition.B(wm));
kidFrame->MovePositionBy(wm, offset);
nsTableFrame::RePositionViews(kidFrame);
kidFrame->InvalidateFrameSubtree();
}
// Adjust the running b-offset so we know where the next row should be
// placed
nscoord bSize = kidFrame->BSize(wm) + rowSpacing;
aReflowInput.mBCoord += bSize;
if (NS_UNCONSTRAINEDSIZE != aReflowInput.mAvailSize.BSize(wm)) {
aReflowInput.mAvailSize.BSize(wm) -= bSize;
}
}
ConsiderChildOverflow(aDesiredSize.mOverflowAreas, kidFrame);
}
if (GetFirstRow()) {
aReflowInput.mBCoord -=
tableFrame->GetRowSpacing(GetStartRowIndex() + GetRowCount());
}
// Return our desired rect
aDesiredSize.ISize(wm) = aReflowInput.mReflowInput.AvailableISize();
aDesiredSize.BSize(wm) = aReflowInput.mBCoord;
if (aReflowInput.mReflowInput.mFlags.mSpecialBSizeReflow) {
DidResizeRows(aDesiredSize);
if (isPaginated) {
CacheRowBSizesForPrinting(GetFirstRow(), wm);
}
} else if (needToCalcRowBSizes) {
CalculateRowBSizes(aPresContext, aDesiredSize, aReflowInput.mReflowInput);
if (!reflowAllKids) {
InvalidateFrame();
}
}
}
nsTableRowFrame* nsTableRowGroupFrame::GetFirstRow() const {
nsIFrame* firstChild = mFrames.FirstChild();
MOZ_ASSERT(
!firstChild || static_cast<nsTableRowFrame*>(do_QueryFrame(firstChild)),
"How do we have a non-row child?");
return static_cast<nsTableRowFrame*>(firstChild);
}
nsTableRowFrame* nsTableRowGroupFrame::GetLastRow() const {
nsIFrame* lastChild = mFrames.LastChild();
MOZ_ASSERT(
!lastChild || static_cast<nsTableRowFrame*>(do_QueryFrame(lastChild)),
"How do we have a non-row child?");
return static_cast<nsTableRowFrame*>(lastChild);
}
struct RowInfo {
RowInfo() { bSize = pctBSize = hasStyleBSize = hasPctBSize = isSpecial = 0; }
unsigned bSize; // content bsize or fixed bsize, excluding pct bsize
unsigned pctBSize : 29; // pct bsize
unsigned hasStyleBSize : 1;
unsigned hasPctBSize : 1;
unsigned isSpecial : 1; // there is no cell originating in the row with
// rowspan=1 and there are at least 2 cells spanning
// the row and there is no style bsize on the row
};
static void UpdateBSizes(RowInfo& aRowInfo, nscoord aAdditionalBSize,
nscoord& aTotal, nscoord& aUnconstrainedTotal) {
aRowInfo.bSize += aAdditionalBSize;
aTotal += aAdditionalBSize;
if (!aRowInfo.hasStyleBSize) {
aUnconstrainedTotal += aAdditionalBSize;
}
}
void nsTableRowGroupFrame::DidResizeRows(ReflowOutput& aDesiredSize) {
// Update the cells spanning rows with their new bsizes.
// This is the place where all of the cells in the row get set to the bsize
// of the row.
// Reset the overflow area.
aDesiredSize.mOverflowAreas.Clear();
for (nsTableRowFrame* rowFrame = GetFirstRow(); rowFrame;
rowFrame = rowFrame->GetNextRow()) {
rowFrame->DidResize();
ConsiderChildOverflow(aDesiredSize.mOverflowAreas, rowFrame);
}
}
// This calculates the bsize of all the rows and takes into account
// style bsize on the row group, style bsizes on rows and cells, style bsizes on
// rowspans. Actual row bsizes will be adjusted later if the table has a style
// bsize. Even if rows don't change bsize, this method must be called to set the
// bsizes of each cell in the row to the bsize of its row.
void nsTableRowGroupFrame::CalculateRowBSizes(nsPresContext* aPresContext,
ReflowOutput& aDesiredSize,
const ReflowInput& aReflowInput) {
nsTableFrame* tableFrame = GetTableFrame();
const bool isPaginated = aPresContext->IsPaginated();
int32_t numEffCols = tableFrame->GetEffectiveColCount();
int32_t startRowIndex = GetStartRowIndex();
// find the row corresponding to the row index we just found
nsTableRowFrame* startRowFrame = GetFirstRow();
if (!startRowFrame) {
return;
}
// The current row group block-size is the block-origin of the 1st row
// we are about to calculate a block-size for.
WritingMode wm = aReflowInput.GetWritingMode();
nsSize containerSize; // actual value is unimportant as we're initially
// computing sizes, not physical positions
nscoord startRowGroupBSize =
startRowFrame->GetLogicalNormalPosition(wm, containerSize).B(wm);
int32_t numRows =
GetRowCount() - (startRowFrame->GetRowIndex() - GetStartRowIndex());
// Collect the current bsize of each row.
if (numRows <= 0) {
return;
}
AutoTArray<RowInfo, 32> rowInfo;
// XXX(Bug 1631371) Check if this should use a fallible operation as it
// pretended earlier.
rowInfo.AppendElements(numRows);
bool hasRowSpanningCell = false;
nscoord bSizeOfRows = 0;
nscoord bSizeOfUnStyledRows = 0;
// Get the bsize of each row without considering rowspans. This will be the
// max of the largest desired bsize of each cell, the largest style bsize of
// each cell, the style bsize of the row.
nscoord pctBSizeBasis = GetBSizeBasis(aReflowInput);
int32_t
rowIndex; // the index in rowInfo, not among the rows in the row group
nsTableRowFrame* rowFrame;
for (rowFrame = startRowFrame, rowIndex = 0; rowFrame;
rowFrame = rowFrame->GetNextRow(), rowIndex++) {
nscoord nonPctBSize = rowFrame->GetContentBSize();
if (isPaginated) {
nonPctBSize = std::max(nonPctBSize, rowFrame->BSize(wm));
}
if (!rowFrame->GetPrevInFlow()) {
if (rowFrame->HasPctBSize()) {
rowInfo[rowIndex].hasPctBSize = true;
rowInfo[rowIndex].pctBSize = rowFrame->GetInitialBSize(pctBSizeBasis);
}
rowInfo[rowIndex].hasStyleBSize = rowFrame->HasStyleBSize();
nonPctBSize = std::max(nonPctBSize, rowFrame->GetFixedBSize());
}
UpdateBSizes(rowInfo[rowIndex], nonPctBSize, bSizeOfRows,
bSizeOfUnStyledRows);
if (!rowInfo[rowIndex].hasStyleBSize) {
if (isPaginated ||
tableFrame->HasMoreThanOneCell(rowIndex + startRowIndex)) {
rowInfo[rowIndex].isSpecial = true;
// iteratate the row's cell frames to see if any do not have rowspan > 1
nsTableCellFrame* cellFrame = rowFrame->GetFirstCell();
while (cellFrame) {
int32_t rowSpan = tableFrame->GetEffectiveRowSpan(
rowIndex + startRowIndex, *cellFrame);
if (1 == rowSpan) {
rowInfo[rowIndex].isSpecial = false;
break;
}
cellFrame = cellFrame->GetNextCell();
}
}
}
// See if a cell spans into the row. If so we'll have to do the next step
if (!hasRowSpanningCell) {
if (tableFrame->RowIsSpannedInto(rowIndex + startRowIndex, numEffCols)) {
hasRowSpanningCell = true;
}
}
}
if (hasRowSpanningCell) {
// Get the bsize of cells with rowspans and allocate any extra space to the
// rows they span iteratate the child frames and process the row frames
// among them
for (rowFrame = startRowFrame, rowIndex = 0; rowFrame;
rowFrame = rowFrame->GetNextRow(), rowIndex++) {
// See if the row has an originating cell with rowspan > 1. We cannot
// determine this for a row in a continued row group by calling
// RowHasSpanningCells, because the row's fif may not have any originating
// cells yet the row may have a continued cell which originates in it.
if (GetPrevInFlow() || tableFrame->RowHasSpanningCells(
startRowIndex + rowIndex, numEffCols)) {
nsTableCellFrame* cellFrame = rowFrame->GetFirstCell();
// iteratate the row's cell frames
while (cellFrame) {
const nscoord rowSpacing =
tableFrame->GetRowSpacing(startRowIndex + rowIndex);
int32_t rowSpan = tableFrame->GetEffectiveRowSpan(
rowIndex + startRowIndex, *cellFrame);
if ((rowIndex + rowSpan) > numRows) {
// there might be rows pushed already to the nextInFlow
rowSpan = numRows - rowIndex;
}
if (rowSpan > 1) { // a cell with rowspan > 1, determine the bsize of
// the rows it spans
nscoord bsizeOfRowsSpanned = 0;
nscoord bsizeOfUnStyledRowsSpanned = 0;
nscoord numSpecialRowsSpanned = 0;
nscoord cellSpacingTotal = 0;
int32_t spanX;
for (spanX = 0; spanX < rowSpan; spanX++) {
bsizeOfRowsSpanned += rowInfo[rowIndex + spanX].bSize;
if (!rowInfo[rowIndex + spanX].hasStyleBSize) {
bsizeOfUnStyledRowsSpanned += rowInfo[rowIndex + spanX].bSize;
}
if (0 != spanX) {
cellSpacingTotal += rowSpacing;
}
if (rowInfo[rowIndex + spanX].isSpecial) {
numSpecialRowsSpanned++;
}
}
nscoord bsizeOfAreaSpanned = bsizeOfRowsSpanned + cellSpacingTotal;
// get the bsize of the cell
LogicalSize cellFrameSize = cellFrame->GetLogicalSize(wm);
LogicalSize cellDesSize = cellFrame->GetDesiredSize();
cellDesSize.BSize(wm) = rowFrame->CalcCellActualBSize(
cellFrame, cellDesSize.BSize(wm), wm);
cellFrameSize.BSize(wm) = cellDesSize.BSize(wm);
if (bsizeOfAreaSpanned < cellFrameSize.BSize(wm)) {
// the cell's bsize is larger than the available space of the rows
// it spans so distribute the excess bsize to the rows affected
nscoord extra = cellFrameSize.BSize(wm) - bsizeOfAreaSpanned;
nscoord extraUsed = 0;
if (0 == numSpecialRowsSpanned) {
// NS_ASSERTION(bsizeOfRowsSpanned > 0, "invalid row span
// situation");
bool haveUnStyledRowsSpanned = (bsizeOfUnStyledRowsSpanned > 0);
nscoord divisor = (haveUnStyledRowsSpanned)
? bsizeOfUnStyledRowsSpanned
: bsizeOfRowsSpanned;
if (divisor > 0) {
for (spanX = rowSpan - 1; spanX >= 0; spanX--) {
if (!haveUnStyledRowsSpanned ||
!rowInfo[rowIndex + spanX].hasStyleBSize) {
// The amount of additional space each row gets is
// proportional to its bsize
float percent = ((float)rowInfo[rowIndex + spanX].bSize) /
((float)divisor);
// give rows their percentage, except for the first row
// which gets the remainder
nscoord extraForRow =
(0 == spanX)
? extra - extraUsed
: NSToCoordRound(((float)(extra)) * percent);
extraForRow = std::min(extraForRow, extra - extraUsed);
// update the row bsize
UpdateBSizes(rowInfo[rowIndex + spanX], extraForRow,
bSizeOfRows, bSizeOfUnStyledRows);
extraUsed += extraForRow;
if (extraUsed >= extra) {
NS_ASSERTION((extraUsed == extra),
"invalid row bsize calculation");
break;
}
}
}
} else {
// put everything in the last row
UpdateBSizes(rowInfo[rowIndex + rowSpan - 1], extra,
bSizeOfRows, bSizeOfUnStyledRows);
}
} else {
// give the extra to the special rows
nscoord numSpecialRowsAllocated = 0;
for (spanX = rowSpan - 1; spanX >= 0; spanX--) {
if (rowInfo[rowIndex + spanX].isSpecial) {
// The amount of additional space each degenerate row gets
// is proportional to the number of them
float percent = 1.0f / ((float)numSpecialRowsSpanned);
// give rows their percentage, except for the first row
// which gets the remainder
nscoord extraForRow =
(numSpecialRowsSpanned - 1 == numSpecialRowsAllocated)
? extra - extraUsed
: NSToCoordRound(((float)(extra)) * percent);
extraForRow = std::min(extraForRow, extra - extraUsed);
// update the row bsize
UpdateBSizes(rowInfo[rowIndex + spanX], extraForRow,
bSizeOfRows, bSizeOfUnStyledRows);
extraUsed += extraForRow;
if (extraUsed >= extra) {
NS_ASSERTION((extraUsed == extra),
"invalid row bsize calculation");
break;
}
}
}
}
}
} // if (rowSpan > 1)
cellFrame = cellFrame->GetNextCell();
} // while (cellFrame)
} // if (tableFrame->RowHasSpanningCells(startRowIndex + rowIndex) {
} // while (rowFrame)
}
// pct bsize rows have already got their content bsizes.
// Give them their pct bsizes up to pctBSizeBasis
nscoord extra = pctBSizeBasis - bSizeOfRows;
for (rowFrame = startRowFrame, rowIndex = 0; rowFrame && (extra > 0);
rowFrame = rowFrame->GetNextRow(), rowIndex++) {
RowInfo& rInfo = rowInfo[rowIndex];
if (rInfo.hasPctBSize) {
nscoord rowExtra =
(rInfo.pctBSize > rInfo.bSize) ? rInfo.pctBSize - rInfo.bSize : 0;
rowExtra = std::min(rowExtra, extra);
UpdateBSizes(rInfo, rowExtra, bSizeOfRows, bSizeOfUnStyledRows);
extra -= rowExtra;
}
}
bool styleBSizeAllocation = false;
nscoord rowGroupBSize = startRowGroupBSize + bSizeOfRows +
tableFrame->GetRowSpacing(0, numRows - 1);
// if we have a style bsize, allocate the extra bsize to unconstrained rows
if ((aReflowInput.ComputedBSize() > rowGroupBSize) &&
(NS_UNCONSTRAINEDSIZE != aReflowInput.ComputedBSize())) {
nscoord extraComputedBSize = aReflowInput.ComputedBSize() - rowGroupBSize;
nscoord extraUsed = 0;
bool haveUnStyledRows = (bSizeOfUnStyledRows > 0);
nscoord divisor = (haveUnStyledRows) ? bSizeOfUnStyledRows : bSizeOfRows;
if (divisor > 0) {
styleBSizeAllocation = true;
for (rowIndex = 0; rowIndex < numRows; rowIndex++) {
if (!haveUnStyledRows || !rowInfo[rowIndex].hasStyleBSize) {
// The amount of additional space each row gets is based on the
// percentage of space it occupies
float percent = ((float)rowInfo[rowIndex].bSize) / ((float)divisor);
// give rows their percentage, except for the last row which gets the
// remainder
nscoord extraForRow =
(numRows - 1 == rowIndex)
? extraComputedBSize - extraUsed
: NSToCoordRound(((float)extraComputedBSize) * percent);
extraForRow = std::min(extraForRow, extraComputedBSize - extraUsed);
// update the row bsize
UpdateBSizes(rowInfo[rowIndex], extraForRow, bSizeOfRows,
bSizeOfUnStyledRows);
extraUsed += extraForRow;
if (extraUsed >= extraComputedBSize) {
NS_ASSERTION((extraUsed == extraComputedBSize),
"invalid row bsize calculation");
break;
}
}
}
}
rowGroupBSize = aReflowInput.ComputedBSize();
}
if (wm.IsVertical()) {
// we need the correct containerSize below for block positioning in
// vertical-rl writing mode
containerSize.width = rowGroupBSize;
}
nscoord bOrigin = startRowGroupBSize;
// update the rows with their (potentially) new bsizes
for (rowFrame = startRowFrame, rowIndex = 0; rowFrame;
rowFrame = rowFrame->GetNextRow(), rowIndex++) {
nsRect rowBounds = rowFrame->GetRect();
LogicalSize rowBoundsSize(wm, rowBounds.Size());
nsRect rowInkOverflow = rowFrame->InkOverflowRect();
nscoord deltaB =
bOrigin - rowFrame->GetLogicalNormalPosition(wm, containerSize).B(wm);
nscoord rowBSize =
(rowInfo[rowIndex].bSize > 0) ? rowInfo[rowIndex].bSize : 0;
if (deltaB != 0 || (rowBSize != rowBoundsSize.BSize(wm))) {
// Resize/move the row to its final size and position
if (deltaB != 0) {
rowFrame->InvalidateFrameSubtree();
}
rowFrame->MovePositionBy(wm, LogicalPoint(wm, 0, deltaB));
rowFrame->SetSize(LogicalSize(wm, rowBoundsSize.ISize(wm), rowBSize));
nsTableFrame::InvalidateTableFrame(rowFrame, rowBounds, rowInkOverflow,
false);
if (deltaB != 0) {
nsTableFrame::RePositionViews(rowFrame);
// XXXbz we don't need to update our overflow area?
}
}
bOrigin += rowBSize + tableFrame->GetRowSpacing(startRowIndex + rowIndex);
}
if (isPaginated && styleBSizeAllocation) {
// since the row group has a style bsize, cache the row bsizes,
// so next in flows can honor them
CacheRowBSizesForPrinting(GetFirstRow(), wm);
}
DidResizeRows(aDesiredSize);
aDesiredSize.BSize(wm) = rowGroupBSize; // Adjust our desired size
}
nscoord nsTableRowGroupFrame::CollapseRowGroupIfNecessary(nscoord aBTotalOffset,
nscoord aISize,
WritingMode aWM) {
nsTableFrame* tableFrame = GetTableFrame();
nsSize containerSize = tableFrame->GetSize();
const nsStyleVisibility* groupVis = StyleVisibility();
bool collapseGroup = StyleVisibility::Collapse == groupVis->mVisible;
if (collapseGroup) {
tableFrame->SetNeedToCollapse(true);
}
OverflowAreas overflow;
nsTableRowFrame* rowFrame = GetFirstRow();
bool didCollapse = false;
nscoord bGroupOffset = 0;
while (rowFrame) {
bGroupOffset += rowFrame->CollapseRowIfNecessary(
bGroupOffset, aISize, collapseGroup, didCollapse);
ConsiderChildOverflow(overflow, rowFrame);
rowFrame = rowFrame->GetNextRow();
}
LogicalRect groupRect = GetLogicalRect(aWM, containerSize);
nsRect oldGroupRect = GetRect();
nsRect oldGroupInkOverflow = InkOverflowRect();
groupRect.BSize(aWM) -= bGroupOffset;
if (didCollapse) {
// add back the cellspacing between rowgroups
groupRect.BSize(aWM) +=
tableFrame->GetRowSpacing(GetStartRowIndex() + GetRowCount());
}
groupRect.BStart(aWM) -= aBTotalOffset;
groupRect.ISize(aWM) = aISize;
if (aBTotalOffset != 0) {
InvalidateFrameSubtree();
}
SetRect(aWM, groupRect, containerSize);
overflow.UnionAllWith(
nsRect(0, 0, groupRect.Width(aWM), groupRect.Height(aWM)));
FinishAndStoreOverflow(overflow, groupRect.Size(aWM).GetPhysicalSize(aWM));
nsTableFrame::RePositionViews(this);
nsTableFrame::InvalidateTableFrame(this, oldGroupRect, oldGroupInkOverflow,
false);
return bGroupOffset;
}
nsTableRowFrame* nsTableRowGroupFrame::CreateContinuingRowFrame(
nsIFrame* aRowFrame) {
// Create the continuing frame which will create continuing cell frames.
auto* contRowFrame = static_cast<nsTableRowFrame*>(
PresShell()->FrameConstructor()->CreateContinuingFrame(aRowFrame, this));
// Add the continuing row frame to the child list.
mFrames.InsertFrame(nullptr, aRowFrame, contRowFrame);
// Push the continuing row frame and the frames that follow.
// This needs to match `UndoContinuedRow`.
PushChildrenToOverflow(contRowFrame, aRowFrame);
return contRowFrame;
}
// Reflow the cells with rowspan > 1 which originate between aFirstRow
// and end on or after aLastRow. aFirstTruncatedRow is the highest row on the
// page that contains a cell which cannot split on this page
void nsTableRowGroupFrame::SplitSpanningCells(
nsPresContext* aPresContext, const ReflowInput& aReflowInput,
nsTableFrame* aTable, nsTableRowFrame* aFirstRow, nsTableRowFrame* aLastRow,
bool aFirstRowIsTopOfPage, nscoord aSpanningRowBEnd,
const nsSize& aContainerSize, nsTableRowFrame*& aContRow,
nsTableRowFrame*& aFirstTruncatedRow, nscoord& aDesiredBSize) {
NS_ASSERTION(aSpanningRowBEnd >= 0, "Can't split negative bsizes");
aFirstTruncatedRow = nullptr;
aDesiredBSize = 0;
const WritingMode wm = aReflowInput.GetWritingMode();
const bool borderCollapse = aTable->IsBorderCollapse();
int32_t lastRowIndex = aLastRow->GetRowIndex();
bool wasLast = false;
bool haveRowSpan = false;
// Iterate the rows between aFirstRow and aLastRow
for (nsTableRowFrame* row = aFirstRow; !wasLast; row = row->GetNextRow()) {
wasLast = (row == aLastRow);
int32_t rowIndex = row->GetRowIndex();
const LogicalRect rowRect = row->GetLogicalNormalRect(wm, aContainerSize);
// Iterate the cells looking for those that have rowspan > 1
for (nsTableCellFrame* cell = row->GetFirstCell(); cell;
cell = cell->GetNextCell()) {
int32_t rowSpan = aTable->GetEffectiveRowSpan(rowIndex, *cell);
// Only reflow rowspan > 1 cells which span aLastRow. Those which don't
// span aLastRow were reflowed correctly during the unconstrained bsize
// reflow.
if ((rowSpan > 1) && (rowIndex + rowSpan > lastRowIndex)) {
haveRowSpan = true;
nsReflowStatus status;
// Ask the row to reflow the cell to the bsize of all the rows it spans
// up through aLastRow cellAvailBSize is the space between the row group
// start and the end of the page
const nscoord cellAvailBSize = aSpanningRowBEnd - rowRect.BStart(wm);
NS_ASSERTION(cellAvailBSize >= 0, "No space for cell?");
bool isTopOfPage = (row == aFirstRow) && aFirstRowIsTopOfPage;
LogicalSize rowAvailSize(
wm, aReflowInput.AvailableISize(),
std::max(aReflowInput.AvailableBSize() - rowRect.BStart(wm), 0));
// Don't let the available block-size exceed what CalculateRowBSizes set
// for it.
rowAvailSize.BSize(wm) =
std::min(rowAvailSize.BSize(wm), rowRect.BSize(wm));
ReflowInput rowReflowInput(
aPresContext, aReflowInput, row,
rowAvailSize.ConvertTo(row->GetWritingMode(), wm), Nothing(),
ReflowInput::InitFlag::CallerWillInit);
InitChildReflowInput(aPresContext, borderCollapse, rowReflowInput);
rowReflowInput.mFlags.mIsTopOfPage = isTopOfPage; // set top of page
nscoord cellBSize =
row->ReflowCellFrame(aPresContext, rowReflowInput, isTopOfPage,
cell, cellAvailBSize, status);
aDesiredBSize = std::max(aDesiredBSize, rowRect.BStart(wm) + cellBSize);
if (status.IsComplete()) {
if (cellBSize > cellAvailBSize) {
aFirstTruncatedRow = row;
if ((row != aFirstRow) || !aFirstRowIsTopOfPage) {
// return now, since we will be getting another reflow after
// either (1) row is moved to the next page or (2) the row group
// is moved to the next page
return;
}
}
} else {
if (!aContRow) {
aContRow = CreateContinuingRowFrame(aLastRow);
}
if (aContRow) {
if (row != aLastRow) {
// aContRow needs a continuation for cell, since cell spanned into
// aLastRow but does not originate there
nsTableCellFrame* contCell = static_cast<nsTableCellFrame*>(
PresShell()->FrameConstructor()->CreateContinuingFrame(
cell, aLastRow));
uint32_t colIndex = cell->ColIndex();
aContRow->InsertCellFrame(contCell, colIndex);
}
}
}
}
}
}
if (!haveRowSpan) {
aDesiredBSize = aLastRow->GetLogicalNormalRect(wm, aContainerSize).BEnd(wm);
}
}
// Remove the next-in-flow of the row, its cells and their cell blocks. This
// is necessary in case the row doesn't need a continuation later on or needs
// a continuation which doesn't have the same number of cells that now exist.
void nsTableRowGroupFrame::UndoContinuedRow(nsPresContext* aPresContext,
nsTableRowFrame* aRow) {
if (!aRow) {
return; // allow null aRow to avoid callers doing null checks
}
// rowBefore was the prev-sibling of aRow's next-sibling before aRow was
// created
nsTableRowFrame* rowBefore = (nsTableRowFrame*)aRow->GetPrevInFlow();
MOZ_ASSERT(mFrames.ContainsFrame(rowBefore),
"rowBefore not in our frame list?");
// Needs to match `CreateContinuingRowFrame` - we're assuming that continued
// frames always go into overflow frames list.
AutoFrameListPtr overflows(aPresContext, StealOverflowFrames());
if (!rowBefore || !overflows || overflows->IsEmpty() ||
overflows->FirstChild() != aRow) {
NS_ERROR("invalid continued row");
return;
}
DestroyContext context(aPresContext->PresShell());
// Destroy aRow, its cells, and their cell blocks. Cell blocks that have split
// will not have reflowed yet to pick up content from any overflow lines.
overflows->DestroyFrame(context, aRow);
// Put the overflow rows into our child list
if (!overflows->IsEmpty()) {
mFrames.InsertFrames(nullptr, rowBefore, std::move(*overflows));
}
}
void nsTableRowGroupFrame::SplitRowGroup(nsPresContext* aPresContext,
ReflowOutput& aDesiredSize,
const ReflowInput& aReflowInput,
nsTableFrame* aTableFrame,
nsReflowStatus& aStatus,
bool aRowForcedPageBreak) {
MOZ_ASSERT(aPresContext->IsPaginated(),
"SplitRowGroup currently supports only paged media");
const WritingMode wm = aReflowInput.GetWritingMode();
nsTableRowFrame* prevRowFrame = nullptr;
aDesiredSize.BSize(wm) = 0;
aDesiredSize.SetOverflowAreasToDesiredBounds();
const nscoord availISize = aReflowInput.AvailableISize();
const nscoord availBSize = aReflowInput.AvailableBSize();
const nsSize containerSize =
aReflowInput.ComputedSizeAsContainerIfConstrained();
const bool borderCollapse = aTableFrame->IsBorderCollapse();
const nscoord pageBSize =
LogicalSize(wm, aPresContext->GetPageSize()).BSize(wm);
NS_ASSERTION(pageBSize != NS_UNCONSTRAINEDSIZE,
"The table shouldn't be split when there should be space");
bool isTopOfPage = aReflowInput.mFlags.mIsTopOfPage;
nsTableRowFrame* firstRowThisPage = GetFirstRow();
// Need to dirty the table's geometry, or else the row might skip
// reflowing its cell as an optimization.
aTableFrame->SetGeometryDirty();
// Walk each of the row frames looking for the first row frame that doesn't
// fit in the available space
for (nsTableRowFrame* rowFrame = firstRowThisPage; rowFrame;
rowFrame = rowFrame->GetNextRow()) {
bool rowIsOnPage = true;
const nscoord rowSpacing =
aTableFrame->GetRowSpacing(rowFrame->GetRowIndex());
const LogicalRect rowRect =
rowFrame->GetLogicalNormalRect(wm, containerSize);
// See if the row fits on this page
if (rowRect.BEnd(wm) > availBSize) {
nsTableRowFrame* contRow = nullptr;
// Reflow the row in the availabe space and have it split if it is the 1st
// row (on the page) or there is at least 5% of the current page available
// XXX this 5% should be made a preference
if (!prevRowFrame ||
(availBSize - aDesiredSize.BSize(wm) > pageBSize / 20)) {
LogicalSize availSize(wm, availISize,
std::max(availBSize - rowRect.BStart(wm), 0));
// Don't let the available block-size exceed what CalculateRowBSizes set
// for it.
availSize.BSize(wm) = std::min(availSize.BSize(wm), rowRect.BSize(wm));
ReflowInput rowReflowInput(
aPresContext, aReflowInput, rowFrame,
availSize.ConvertTo(rowFrame->GetWritingMode(), wm), Nothing(),
ReflowInput::InitFlag::CallerWillInit);
InitChildReflowInput(aPresContext, borderCollapse, rowReflowInput);
rowReflowInput.mFlags.mIsTopOfPage = isTopOfPage; // set top of page
ReflowOutput rowMetrics(aReflowInput);
// Get the old size before we reflow.
nsRect oldRowRect = rowFrame->GetRect();
nsRect oldRowInkOverflow = rowFrame->InkOverflowRect();
// Reflow the cell with the constrained bsize. A cell with rowspan >1
// will get this reflow later during SplitSpanningCells.
//
// Note: We just pass dummy aPos and aContainerSize since we are not
// moving the row frame.
const LogicalPoint dummyPos(wm);
const nsSize dummyContainerSize;
ReflowChild(rowFrame, aPresContext, rowMetrics, rowReflowInput, wm,
dummyPos, dummyContainerSize, ReflowChildFlags::NoMoveFrame,
aStatus);
FinishReflowChild(rowFrame, aPresContext, rowMetrics, &rowReflowInput,
wm, dummyPos, dummyContainerSize,
ReflowChildFlags::NoMoveFrame);
rowFrame->DidResize(ForceAlignTopForTableCell::Yes);
if (!aRowForcedPageBreak && !aStatus.IsFullyComplete() &&
ShouldAvoidBreakInside(aReflowInput)) {
aStatus.SetInlineLineBreakBeforeAndReset();
break;
}
nsTableFrame::InvalidateTableFrame(rowFrame, oldRowRect,
oldRowInkOverflow, false);
if (aStatus.IsIncomplete()) {
// The row frame is incomplete and all of the rowspan 1 cells' block
// frames split
if ((rowMetrics.BSize(wm) <= rowReflowInput.AvailableBSize()) ||
isTopOfPage) {
// The row stays on this page because either it split ok or we're on
// the top of page. If top of page and the block-size exceeded the
// avail block-size, then there will be data loss.
NS_ASSERTION(
rowMetrics.BSize(wm) <= rowReflowInput.AvailableBSize(),
"Data loss - incomplete row needed more block-size than "
"available, on top of page!");
contRow = CreateContinuingRowFrame(rowFrame);
aDesiredSize.BSize(wm) += rowMetrics.BSize(wm);
if (prevRowFrame) {
aDesiredSize.BSize(wm) += rowSpacing;
}
} else {
// Put the row on the next page to give it more block-size.
rowIsOnPage = false;
}
} else {
// The row frame is complete because either (1) its minimum block-size
// is greater than the available block-size we gave it, or (2) it may
// have been given a larger block-size through style than its content,
// or (3) it contains a rowspan >1 cell which hasn't been reflowed
// with a constrained block-size yet (we will find out when
// SplitSpanningCells is called below)
if (rowMetrics.BSize(wm) > availSize.BSize(wm) ||
(aStatus.IsInlineBreakBefore() && !aRowForcedPageBreak)) {
// cases (1) and (2)
if (isTopOfPage) {
// We're on top of the page, so keep the row on this page. There
// will be data loss. Push the row frame that follows
nsTableRowFrame* nextRowFrame = rowFrame->GetNextRow();
if (nextRowFrame) {
aStatus.Reset();
aStatus.SetIncomplete();
}
aDesiredSize.BSize(wm) += rowMetrics.BSize(wm);
if (prevRowFrame) {
aDesiredSize.BSize(wm) += rowSpacing;
}
NS_WARNING(
"Data loss - complete row needed more block-size than "
"available, on top of page");
} else {
// We're not on top of the page, so put the row on the next page
// to give it more block-size.
rowIsOnPage = false;
}
}
}
} else {
// Put the row on the next page to give it more block-size.
rowIsOnPage = false;
}
nsTableRowFrame* lastRowThisPage = rowFrame;
nscoord spanningRowBEnd = availBSize;
if (!rowIsOnPage) {
NS_ASSERTION(!contRow,
"We should not have created a continuation if none of "
"this row fits");
if (!prevRowFrame ||
(!aRowForcedPageBreak && ShouldAvoidBreakInside(aReflowInput))) {
aStatus.SetInlineLineBreakBeforeAndReset();
break;
}
spanningRowBEnd =
prevRowFrame->GetLogicalNormalRect(wm, containerSize).BEnd(wm);
lastRowThisPage = prevRowFrame;
aStatus.Reset();
aStatus.SetIncomplete();
}
// reflow the cells with rowspan >1 that occur on the page
nsTableRowFrame* firstTruncatedRow;
nscoord bMost;
SplitSpanningCells(aPresContext, aReflowInput, aTableFrame,
firstRowThisPage, lastRowThisPage,
aReflowInput.mFlags.mIsTopOfPage, spanningRowBEnd,
containerSize, contRow, firstTruncatedRow, bMost);
if (firstTruncatedRow) {
// A rowspan >1 cell did not fit (and could not split) in the space we
// gave it
if (firstTruncatedRow == firstRowThisPage) {
if (aReflowInput.mFlags.mIsTopOfPage) {
NS_WARNING("data loss in a row spanned cell");
} else {
// We can't push children, so let our parent reflow us again with
// more space
aDesiredSize.BSize(wm) = rowRect.BEnd(wm);
aStatus.Reset();
UndoContinuedRow(aPresContext, contRow);
contRow = nullptr;
}
} else {
// Try to put firstTruncateRow on the next page
nsTableRowFrame* rowBefore = firstTruncatedRow->GetPrevRow();
const nscoord oldSpanningRowBEnd = spanningRowBEnd;
spanningRowBEnd =
rowBefore->GetLogicalNormalRect(wm, containerSize).BEnd(wm);
UndoContinuedRow(aPresContext, contRow);
contRow = nullptr;
nsTableRowFrame* oldLastRowThisPage = lastRowThisPage;
lastRowThisPage = rowBefore;
aStatus.Reset();
aStatus.SetIncomplete();
// Call SplitSpanningCells again with rowBefore as the last row on the
// page
SplitSpanningCells(aPresContext, aReflowInput, aTableFrame,
firstRowThisPage, rowBefore,
aReflowInput.mFlags.mIsTopOfPage, spanningRowBEnd,
containerSize, contRow, firstTruncatedRow,
aDesiredSize.BSize(wm));
if (firstTruncatedRow) {
if (aReflowInput.mFlags.mIsTopOfPage) {
// We were better off with the 1st call to SplitSpanningCells, do
// it again
UndoContinuedRow(aPresContext, contRow);
contRow = nullptr;
lastRowThisPage = oldLastRowThisPage;
spanningRowBEnd = oldSpanningRowBEnd;
SplitSpanningCells(aPresContext, aReflowInput, aTableFrame,
firstRowThisPage, lastRowThisPage,
aReflowInput.mFlags.mIsTopOfPage,
spanningRowBEnd, containerSize, contRow,
firstTruncatedRow, aDesiredSize.BSize(wm));
NS_WARNING("data loss in a row spanned cell");
} else {
// Let our parent reflow us again with more space
aDesiredSize.BSize(wm) = rowRect.BEnd(wm);
aStatus.Reset();
UndoContinuedRow(aPresContext, contRow);
contRow = nullptr;
}
}
}
} else {
aDesiredSize.BSize(wm) = std::max(aDesiredSize.BSize(wm), bMost);
if (contRow) {
aStatus.Reset();
aStatus.SetIncomplete();
}
}
if (aStatus.IsIncomplete() && !contRow) {
if (nsTableRowFrame* nextRow = lastRowThisPage->GetNextRow()) {
PushChildrenToOverflow(nextRow, lastRowThisPage);
}
} else if (aStatus.IsComplete() && lastRowThisPage) {
// Our size from the unconstrained reflow exceeded the constrained
// available space but our size in the constrained reflow is Complete.
// This can happen when a non-zero block-end margin is suppressed in
// nsBlockFrame::ComputeFinalSize.
if (nsTableRowFrame* nextRow = lastRowThisPage->GetNextRow()) {
aStatus.Reset();
aStatus.SetIncomplete();
PushChildrenToOverflow(nextRow, lastRowThisPage);
}
}
break;
}
aDesiredSize.BSize(wm) = rowRect.BEnd(wm);
prevRowFrame = rowFrame;
// see if there is a page break after the row
nsTableRowFrame* nextRow = rowFrame->GetNextRow();
if (nextRow && nsTableFrame::PageBreakAfter(rowFrame, nextRow)) {
PushChildrenToOverflow(nextRow, rowFrame);
aStatus.Reset();
aStatus.SetIncomplete();
break;
}
// After the 1st row that has a block-size, we can't be on top of the page
// anymore.
isTopOfPage = isTopOfPage && rowRect.BEnd(wm) == 0;
}
}
/** Layout the entire row group.
* This method stacks rows vertically according to HTML 4.0 rules.
* Rows are responsible for layout of their children.
*/
void nsTableRowGroupFrame::Reflow(nsPresContext* aPresContext,
ReflowOutput& aDesiredSize,
const ReflowInput& aReflowInput,
nsReflowStatus& aStatus) {
MarkInReflow();
DO_GLOBAL_REFLOW_COUNT("nsTableRowGroupFrame");
MOZ_ASSERT(aStatus.IsEmpty(), "Caller should pass a fresh reflow status!");
// Row geometry may be going to change so we need to invalidate any row
// cursor.
ClearRowCursor();
// see if a special bsize reflow needs to occur due to having a pct bsize
nsTableFrame::CheckRequestSpecialBSizeReflow(aReflowInput);
nsTableFrame* tableFrame = GetTableFrame();
TableRowGroupReflowInput state(aReflowInput);
const nsStyleVisibility* groupVis = StyleVisibility();
bool collapseGroup = StyleVisibility::Collapse == groupVis->mVisible;
if (collapseGroup) {
tableFrame->SetNeedToCollapse(true);
}
// Check for an overflow list
MoveOverflowToChildList();
// Reflow the existing frames.
bool splitDueToPageBreak = false;
ReflowChildren(aPresContext, aDesiredSize, state, aStatus,
&splitDueToPageBreak);
// See if all the frames fit. Do not try to split anything if we're
// not paginated ... we can't split across columns yet.
WritingMode wm = aReflowInput.GetWritingMode();
if (aReflowInput.mFlags.mTableIsSplittable &&
aReflowInput.AvailableBSize() != NS_UNCONSTRAINEDSIZE &&
(aStatus.IsIncomplete() || splitDueToPageBreak ||
aDesiredSize.BSize(wm) > aReflowInput.AvailableBSize())) {
// Nope, find a place to split the row group
auto& mutableRIFlags = const_cast<ReflowInput::Flags&>(aReflowInput.mFlags);
const bool savedSpecialBSizeReflow = mutableRIFlags.mSpecialBSizeReflow;
mutableRIFlags.mSpecialBSizeReflow = false;
SplitRowGroup(aPresContext, aDesiredSize, aReflowInput, tableFrame, aStatus,
splitDueToPageBreak);
mutableRIFlags.mSpecialBSizeReflow = savedSpecialBSizeReflow;
}
// XXXmats The following is just bogus. We leave it here for now because
// ReflowChildren should pull up rows from our next-in-flow before returning
// a Complete status, but doesn't (bug 804888).
if (GetNextInFlow() && GetNextInFlow()->PrincipalChildList().FirstChild()) {
aStatus.SetIncomplete();
}
SetHasStyleBSize((NS_UNCONSTRAINEDSIZE != aReflowInput.ComputedBSize()) &&
(aReflowInput.ComputedBSize() > 0));
// Just set our isize to what was available.
// The table will calculate the isize and not use our value.
aDesiredSize.ISize(wm) = aReflowInput.AvailableISize();
aDesiredSize.UnionOverflowAreasWithDesiredBounds();
// If our parent is in initial reflow, it'll handle invalidating our
// entire overflow rect.
if (!GetParent()->HasAnyStateBits(NS_FRAME_FIRST_REFLOW) &&
aDesiredSize.Size(wm) != GetLogicalSize(wm)) {
InvalidateFrame();
}
FinishAndStoreOverflow(&aDesiredSize);
// Any absolutely-positioned children will get reflowed in
// nsIFrame::FixupPositionedTableParts in another pass, so propagate our
// dirtiness to them before our parent clears our dirty bits.
PushDirtyBitToAbsoluteFrames();
}
bool nsTableRowGroupFrame::ComputeCustomOverflow(
OverflowAreas& aOverflowAreas) {
// Row cursor invariants depend on the ink overflow area of the rows,
// which may have changed, so we need to clear the cursor now.
ClearRowCursor();
return nsContainerFrame::ComputeCustomOverflow(aOverflowAreas);
}
/* virtual */
void nsTableRowGroupFrame::DidSetComputedStyle(
ComputedStyle* aOldComputedStyle) {
nsContainerFrame::DidSetComputedStyle(aOldComputedStyle);
nsTableFrame::PositionedTablePartMaybeChanged(this, aOldComputedStyle);
if (!aOldComputedStyle) {
return; // avoid the following on init
}
nsTableFrame* tableFrame = GetTableFrame();
if (tableFrame->IsBorderCollapse() &&
tableFrame->BCRecalcNeeded(aOldComputedStyle, Style())) {
TableArea damageArea(0, GetStartRowIndex(), tableFrame->GetColCount(),
GetRowCount());
tableFrame->AddBCDamageArea(damageArea);
}
}
void nsTableRowGroupFrame::AppendFrames(ChildListID aListID,
nsFrameList&& aFrameList) {
NS_ASSERTION(aListID == FrameChildListID::Principal, "unexpected child list");
DrainSelfOverflowList(); // ensure the last frame is in mFrames
ClearRowCursor();
// collect the new row frames in an array
// XXXbz why are we doing the QI stuff? There shouldn't be any non-rows here.
AutoTArray<nsTableRowFrame*, 8> rows;
for (nsIFrame* f : aFrameList) {
nsTableRowFrame* rowFrame = do_QueryFrame(f);
NS_ASSERTION(rowFrame, "Unexpected frame; frame constructor screwed up");
if (rowFrame) {
NS_ASSERTION(
mozilla::StyleDisplay::TableRow == f->StyleDisplay()->mDisplay,
"wrong display type on rowframe");
rows.AppendElement(rowFrame);
}
}
int32_t rowIndex = GetRowCount();
// Append the frames to the sibling chain
mFrames.AppendFrames(nullptr, std::move(aFrameList));
if (rows.Length() > 0) {
nsTableFrame* tableFrame = GetTableFrame();
tableFrame->AppendRows(this, rowIndex, rows);
PresShell()->FrameNeedsReflow(this, IntrinsicDirty::FrameAndAncestors,
NS_FRAME_HAS_DIRTY_CHILDREN);
tableFrame->SetGeometryDirty();
}
}
void nsTableRowGroupFrame::InsertFrames(
ChildListID aListID, nsIFrame* aPrevFrame,
const nsLineList::iterator* aPrevFrameLine, nsFrameList&& aFrameList) {
NS_ASSERTION(aListID == FrameChildListID::Principal, "unexpected child list");
NS_ASSERTION(!aPrevFrame || aPrevFrame->GetParent() == this,
"inserting after sibling frame with different parent");
DrainSelfOverflowList(); // ensure aPrevFrame is in mFrames
ClearRowCursor();
// collect the new row frames in an array
// XXXbz why are we doing the QI stuff? There shouldn't be any non-rows here.
nsTableFrame* tableFrame = GetTableFrame();
nsTArray<nsTableRowFrame*> rows;
bool gotFirstRow = false;
for (nsIFrame* f : aFrameList) {
nsTableRowFrame* rowFrame = do_QueryFrame(f);
NS_ASSERTION(rowFrame, "Unexpected frame; frame constructor screwed up");
if (rowFrame) {
NS_ASSERTION(
mozilla::StyleDisplay::TableRow == f->StyleDisplay()->mDisplay,
"wrong display type on rowframe");
rows.AppendElement(rowFrame);
if (!gotFirstRow) {
rowFrame->SetFirstInserted(true);
gotFirstRow = true;
tableFrame->SetRowInserted(true);
}
}
}
int32_t startRowIndex = GetStartRowIndex();
// Insert the frames in the sibling chain
mFrames.InsertFrames(nullptr, aPrevFrame, std::move(aFrameList));
int32_t numRows = rows.Length();
if (numRows > 0) {
nsTableRowFrame* prevRow =
(nsTableRowFrame*)nsTableFrame::GetFrameAtOrBefore(
this, aPrevFrame, LayoutFrameType::TableRow);
int32_t rowIndex = (prevRow) ? prevRow->GetRowIndex() + 1 : startRowIndex;
tableFrame->InsertRows(this, rows, rowIndex, true);
PresShell()->FrameNeedsReflow(this, IntrinsicDirty::FrameAndAncestors,
NS_FRAME_HAS_DIRTY_CHILDREN);
tableFrame->SetGeometryDirty();
}
}
void nsTableRowGroupFrame::RemoveFrame(DestroyContext& aContext,
ChildListID aListID,
nsIFrame* aOldFrame) {
NS_ASSERTION(aListID == FrameChildListID::Principal, "unexpected child list");
ClearRowCursor();
// XXX why are we doing the QI stuff? There shouldn't be any non-rows here.
nsTableRowFrame* rowFrame = do_QueryFrame(aOldFrame);
if (rowFrame) {
nsTableFrame* tableFrame = GetTableFrame();
// remove the rows from the table (and flag a rebalance)
tableFrame->RemoveRows(*rowFrame, 1, true);
PresShell()->FrameNeedsReflow(this, IntrinsicDirty::FrameAndAncestors,
NS_FRAME_HAS_DIRTY_CHILDREN);
tableFrame->SetGeometryDirty();
}
mFrames.DestroyFrame(aContext, aOldFrame);
}
/* virtual */
nsMargin nsTableRowGroupFrame::GetUsedMargin() const {
return nsMargin(0, 0, 0, 0);
}
/* virtual */
nsMargin nsTableRowGroupFrame::GetUsedBorder() const {
return nsMargin(0, 0, 0, 0);
}
/* virtual */
nsMargin nsTableRowGroupFrame::GetUsedPadding() const {
return nsMargin(0, 0, 0, 0);
}
nscoord nsTableRowGroupFrame::GetBSizeBasis(const ReflowInput& aReflowInput) {
nscoord result = 0;
nsTableFrame* tableFrame = GetTableFrame();
int32_t startRowIndex = GetStartRowIndex();
if ((aReflowInput.ComputedBSize() > 0) &&
(aReflowInput.ComputedBSize() < NS_UNCONSTRAINEDSIZE)) {
nscoord cellSpacing = tableFrame->GetRowSpacing(
startRowIndex,
std::max(startRowIndex, startRowIndex + GetRowCount() - 1));
result = aReflowInput.ComputedBSize() - cellSpacing;
} else {
const ReflowInput* parentRI = aReflowInput.mParentReflowInput;
if (parentRI && (tableFrame != parentRI->mFrame)) {
parentRI = parentRI->mParentReflowInput;
}
if (parentRI && (tableFrame == parentRI->mFrame) &&
(parentRI->ComputedBSize() > 0) &&
(parentRI->ComputedBSize() < NS_UNCONSTRAINEDSIZE)) {
nscoord cellSpacing =
tableFrame->GetRowSpacing(-1, tableFrame->GetRowCount());
result = parentRI->ComputedBSize() - cellSpacing;
}
}
return result;
}
bool nsTableRowGroupFrame::IsSimpleRowFrame(nsTableFrame* aTableFrame,
nsTableRowFrame* aRowFrame) {
int32_t rowIndex = aRowFrame->GetRowIndex();
// It's a simple row frame if there are no cells that span into or
// across the row
int32_t numEffCols = aTableFrame->GetEffectiveColCount();
if (!aTableFrame->RowIsSpannedInto(rowIndex, numEffCols) &&
!aTableFrame->RowHasSpanningCells(rowIndex, numEffCols)) {
return true;
}
return false;
}
/** find page break before the first row **/
bool nsTableRowGroupFrame::HasInternalBreakBefore() const {
nsIFrame* firstChild = mFrames.FirstChild();
if (!firstChild) {
return false;
}
return firstChild->StyleDisplay()->BreakBefore();
}
/** find page break after the last row **/
bool nsTableRowGroupFrame::HasInternalBreakAfter() const {
nsIFrame* lastChild = mFrames.LastChild();
if (!lastChild) {
return false;
}
return lastChild->StyleDisplay()->BreakAfter();
}
/* ----- global methods ----- */
nsTableRowGroupFrame* NS_NewTableRowGroupFrame(PresShell* aPresShell,
ComputedStyle* aStyle) {
return new (aPresShell)
nsTableRowGroupFrame(aStyle, aPresShell->GetPresContext());
}
NS_IMPL_FRAMEARENA_HELPERS(nsTableRowGroupFrame)
#ifdef DEBUG_FRAME_DUMP
nsresult nsTableRowGroupFrame::GetFrameName(nsAString& aResult) const {
return MakeFrameName(u"TableRowGroup"_ns, aResult);
}
#endif
LogicalMargin nsTableRowGroupFrame::GetBCBorderWidth(WritingMode aWM) {
LogicalMargin border(aWM);
nsTableRowFrame* firstRowFrame = GetFirstRow();
if (!firstRowFrame) {
return border;
}
nsTableRowFrame* lastRowFrame = firstRowFrame;
for (nsTableRowFrame* rowFrame = firstRowFrame->GetNextRow(); rowFrame;
rowFrame = rowFrame->GetNextRow()) {
lastRowFrame = rowFrame;
}
border.BStart(aWM) = firstRowFrame->GetBStartBCBorderWidth();
border.BEnd(aWM) = lastRowFrame->GetBEndBCBorderWidth();
return border;
}
// nsILineIterator methods
int32_t nsTableRowGroupFrame::GetNumLines() const { return GetRowCount(); }
bool nsTableRowGroupFrame::IsLineIteratorFlowRTL() {
return StyleDirection::Rtl == GetTableFrame()->StyleVisibility()->mDirection;
}
Result<nsILineIterator::LineInfo, nsresult> nsTableRowGroupFrame::GetLine(
int32_t aLineNumber) {
if ((aLineNumber < 0) || (aLineNumber >= GetRowCount())) {
return Err(NS_ERROR_FAILURE);
}
LineInfo structure;
nsTableFrame* table = GetTableFrame();
nsTableCellMap* cellMap = table->GetCellMap();
aLineNumber += GetStartRowIndex();
structure.mNumFramesOnLine =
cellMap->GetNumCellsOriginatingInRow(aLineNumber);
if (structure.mNumFramesOnLine == 0) {
return structure;
}
int32_t colCount = table->GetColCount();
for (int32_t i = 0; i < colCount; i++) {
CellData* data = cellMap->GetDataAt(aLineNumber, i);
if (data && data->IsOrig()) {
structure.mFirstFrameOnLine = (nsIFrame*)data->GetCellFrame();
nsIFrame* parent = structure.mFirstFrameOnLine->GetParent();
structure.mLineBounds = parent->GetRect();
return structure;
}
}
MOZ_ASSERT_UNREACHABLE("cellmap is lying");
return Err(NS_ERROR_FAILURE);
}
int32_t nsTableRowGroupFrame::FindLineContaining(nsIFrame* aFrame,
int32_t aStartLine) {
NS_ENSURE_TRUE(aFrame, -1);
nsTableRowFrame* rowFrame = do_QueryFrame(aFrame);
if (MOZ_UNLIKELY(!rowFrame)) {
// When we do not have valid table structure in the DOM tree, somebody wants
// to check the line number with an out-of-flow child of this frame because
// its parent frame is set to this frame. Otherwise, the caller must have
// a bug.
MOZ_ASSERT(aFrame->GetParent() == this);
MOZ_ASSERT(aFrame->HasAnyStateBits(NS_FRAME_OUT_OF_FLOW));
return -1;
}
int32_t rowIndexInGroup = rowFrame->GetRowIndex() - GetStartRowIndex();
return rowIndexInGroup >= aStartLine ? rowIndexInGroup : -1;
}
NS_IMETHODIMP
nsTableRowGroupFrame::CheckLineOrder(int32_t aLine, bool* aIsReordered,
nsIFrame** aFirstVisual,
nsIFrame** aLastVisual) {
*aIsReordered = false;
*aFirstVisual = nullptr;
*aLastVisual = nullptr;
return NS_OK;
}
NS_IMETHODIMP
nsTableRowGroupFrame::FindFrameAt(int32_t aLineNumber, nsPoint aPos,
nsIFrame** aFrameFound,
bool* aPosIsBeforeFirstFrame,
bool* aPosIsAfterLastFrame) {
nsTableFrame* table = GetTableFrame();
nsTableCellMap* cellMap = table->GetCellMap();
*aFrameFound = nullptr;
*aPosIsBeforeFirstFrame = true;
*aPosIsAfterLastFrame = false;
aLineNumber += GetStartRowIndex();
int32_t numCells = cellMap->GetNumCellsOriginatingInRow(aLineNumber);
if (numCells == 0) {
return NS_OK;
}
nsIFrame* frame = nullptr;
int32_t colCount = table->GetColCount();
for (int32_t i = 0; i < colCount; i++) {
CellData* data = cellMap->GetDataAt(aLineNumber, i);
if (data && data->IsOrig()) {
frame = (nsIFrame*)data->GetCellFrame();
break;
}
}
NS_ASSERTION(frame, "cellmap is lying");
bool isRTL = StyleDirection::Rtl == table->StyleVisibility()->mDirection;
LineFrameFinder finder(aPos, table->GetSize(), table->GetWritingMode(),
isRTL);
int32_t n = numCells;
while (n--) {
finder.Scan(frame);
if (finder.IsDone()) {
break;
}
frame = frame->GetNextSibling();
}
finder.Finish(aFrameFound, aPosIsBeforeFirstFrame, aPosIsAfterLastFrame);
return NS_OK;
}
// end nsLineIterator methods
NS_DECLARE_FRAME_PROPERTY_DELETABLE(RowCursorProperty,
nsTableRowGroupFrame::FrameCursorData)
void nsTableRowGroupFrame::ClearRowCursor() {
if (!HasAnyStateBits(NS_ROWGROUP_HAS_ROW_CURSOR)) {
return;
}
RemoveStateBits(NS_ROWGROUP_HAS_ROW_CURSOR);
RemoveProperty(RowCursorProperty());
}
nsTableRowGroupFrame::FrameCursorData* nsTableRowGroupFrame::SetupRowCursor() {
if (HasAnyStateBits(NS_ROWGROUP_HAS_ROW_CURSOR)) {
// We already have a valid row cursor. Don't waste time rebuilding it.
return nullptr;
}
nsIFrame* f = mFrames.FirstChild();
int32_t count;
for (count = 0; f && count < MIN_ROWS_NEEDING_CURSOR; ++count) {
f = f->GetNextSibling();
}
if (!f) {
// Less than MIN_ROWS_NEEDING_CURSOR rows, so just don't bother
return nullptr;
}
FrameCursorData* data = new FrameCursorData();
SetProperty(RowCursorProperty(), data);
AddStateBits(NS_ROWGROUP_HAS_ROW_CURSOR);
return data;
}
nsIFrame* nsTableRowGroupFrame::GetFirstRowContaining(nscoord aY,
nscoord* aOverflowAbove) {
if (!HasAnyStateBits(NS_ROWGROUP_HAS_ROW_CURSOR)) {
return nullptr;
}
FrameCursorData* property = GetProperty(RowCursorProperty());
uint32_t cursorIndex = property->mCursorIndex;
uint32_t frameCount = property->mFrames.Length();
if (cursorIndex >= frameCount) {
return nullptr;
}
nsIFrame* cursorFrame = property->mFrames[cursorIndex];
// The cursor's frame list excludes frames with empty overflow-area, so
// we don't need to check that here.
// We use property->mOverflowBelow here instead of computing the frame's
// true overflowArea.YMost(), because it is essential for the thresholds
// to form a monotonically increasing sequence. Otherwise we would break
// encountering a row whose overflowArea.YMost() is <= aY but which has
// a row above it containing cell(s) that span to include aY.
while (cursorIndex > 0 &&
cursorFrame->GetRect().YMost() + property->mOverflowBelow > aY) {
--cursorIndex;
cursorFrame = property->mFrames[cursorIndex];
}
while (cursorIndex + 1 < frameCount &&
cursorFrame->GetRect().YMost() + property->mOverflowBelow <= aY) {
++cursorIndex;
cursorFrame = property->mFrames[cursorIndex];
}
property->mCursorIndex = cursorIndex;
*aOverflowAbove = property->mOverflowAbove;
return cursorFrame;
}
bool nsTableRowGroupFrame::FrameCursorData::AppendFrame(nsIFrame* aFrame) {
// The cursor requires a monotonically increasing sequence in order to
// identify which rows can be skipped, and position:relative can move
// rows around such that the overflow areas don't provide this.
// We take the union of the overflow rect, and the frame's 'normal' position
// (excluding position:relative changes) and record the max difference between
// this combined overflow and the frame's rect.
nsRect positionedOverflowRect = aFrame->InkOverflowRect();
nsPoint positionedToNormal =
aFrame->GetNormalPosition() - aFrame->GetPosition();
nsRect normalOverflowRect = positionedOverflowRect + positionedToNormal;
nsRect overflowRect = positionedOverflowRect.Union(normalOverflowRect);
if (overflowRect.IsEmpty()) {
return true;
}
nscoord overflowAbove = -overflowRect.y;
nscoord overflowBelow = overflowRect.YMost() - aFrame->GetSize().height;
mOverflowAbove = std::max(mOverflowAbove, overflowAbove);
mOverflowBelow = std::max(mOverflowBelow, overflowBelow);
// XXX(Bug 1631371) Check if this should use a fallible operation as it
// pretended earlier, or change the return type to void.
mFrames.AppendElement(aFrame);
return true;
}
void nsTableRowGroupFrame::InvalidateFrame(uint32_t aDisplayItemKey,
bool aRebuildDisplayItems) {
nsIFrame::InvalidateFrame(aDisplayItemKey, aRebuildDisplayItems);
if (GetTableFrame()->IsBorderCollapse()) {
const bool rebuild = StaticPrefs::layout_display_list_retain_sc();
GetParent()->InvalidateFrameWithRect(InkOverflowRect() + GetPosition(),
aDisplayItemKey, rebuild);
}
}
void nsTableRowGroupFrame::InvalidateFrameWithRect(const nsRect& aRect,
uint32_t aDisplayItemKey,
bool aRebuildDisplayItems) {
nsIFrame::InvalidateFrameWithRect(aRect, aDisplayItemKey,
aRebuildDisplayItems);
// If we have filters applied that would affects our bounds, then
// we get an inactive layer created and this is computed
// within FrameLayerBuilder
GetParent()->InvalidateFrameWithRect(aRect + GetPosition(), aDisplayItemKey,
aRebuildDisplayItems);
}
|