TableFormattingDetails.cpp 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670
  1. /*
  2. * This source file is part of RmlUi, the HTML/CSS Interface Middleware
  3. *
  4. * For the latest information, see http://github.com/mikke89/RmlUi
  5. *
  6. * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
  7. * Copyright (c) 2019-2023 The RmlUi Team, and contributors
  8. *
  9. * Permission is hereby granted, free of charge, to any person obtaining a copy
  10. * of this software and associated documentation files (the "Software"), to deal
  11. * in the Software without restriction, including without limitation the rights
  12. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  13. * copies of the Software, and to permit persons to whom the Software is
  14. * furnished to do so, subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice shall be included in
  17. * all copies or substantial portions of the Software.
  18. *
  19. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  20. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  21. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  22. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  23. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  24. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  25. * THE SOFTWARE.
  26. *
  27. */
  28. #include "TableFormattingDetails.h"
  29. #include "../../../Include/RmlUi/Core/ComputedValues.h"
  30. #include "../../../Include/RmlUi/Core/Element.h"
  31. #include "ContainerBox.h"
  32. #include "LayoutDetails.h"
  33. #include <algorithm>
  34. #include <float.h>
  35. namespace Rml {
  36. bool TableGrid::Build(Element* element_table, TableWrapper& table_wrapper)
  37. {
  38. RMLUI_ASSERT(rows.empty() && columns.empty() && cells.empty() && open_cells.empty());
  39. ElementList non_parented_cell_elements;
  40. const int num_table_children = element_table->GetNumChildren();
  41. for (int i = 0; i < num_table_children; i++)
  42. {
  43. using Display = Style::Display;
  44. Element* element = element_table->GetChild(i);
  45. const Display display = element->GetDisplay();
  46. if (display == Display::None)
  47. continue;
  48. if (!non_parented_cell_elements.empty() && display != Display::TableCell)
  49. {
  50. PushRow(nullptr, std::move(non_parented_cell_elements), table_wrapper);
  51. non_parented_cell_elements.clear();
  52. }
  53. if (display == Display::TableCell)
  54. {
  55. non_parented_cell_elements.push_back(element);
  56. }
  57. else if (display == Display::TableRow)
  58. {
  59. PushRow(element, {}, table_wrapper);
  60. }
  61. else if (display == Display::TableRowGroup)
  62. {
  63. const int num_row_group_children = element->GetNumChildren();
  64. const int row_group_index = (int)rows.size();
  65. int num_rows_added = 0;
  66. for (int j = 0; j < num_row_group_children; j++)
  67. {
  68. Element* element_row = element->GetChild(j);
  69. const Display display_row = element_row->GetDisplay();
  70. if (display_row != Display::TableRow)
  71. {
  72. if (display_row != Display::None)
  73. {
  74. Log::Message(Log::LT_WARNING, "Only table rows are valid children of table row groups. Ignoring element %s.",
  75. element_row->GetAddress().c_str());
  76. }
  77. continue;
  78. }
  79. PushRow(element_row, {}, table_wrapper);
  80. num_rows_added += 1;
  81. }
  82. if (num_rows_added > 0)
  83. {
  84. rows[row_group_index].element_group = element;
  85. rows[row_group_index].group_span = num_rows_added;
  86. }
  87. if (element->GetPosition() == Style::Position::Relative)
  88. table_wrapper.AddRelativeElement(element);
  89. }
  90. else if (rows.empty() && display == Display::TableColumn)
  91. {
  92. const int span = Math::Max(1, element->GetAttribute("span", 1));
  93. PushColumn(element, span);
  94. }
  95. else if (rows.empty() && display == Display::TableColumnGroup)
  96. {
  97. PushColumnGroup(element);
  98. }
  99. else
  100. {
  101. if (display == Display::TableColumn || display == Display::TableColumnGroup)
  102. Log::Message(Log::LT_WARNING, "Table columns and column groups must precede any table rows. Ignoring element %s.",
  103. element->GetAddress().c_str());
  104. else
  105. Log::Message(Log::LT_WARNING,
  106. "Only table columns, column groups, rows, row groups, and cells are valid children of tables. Ignoring element %s.",
  107. element->GetAddress().c_str());
  108. }
  109. }
  110. if (!non_parented_cell_elements.empty())
  111. {
  112. PushRow(nullptr, std::move(non_parented_cell_elements), table_wrapper);
  113. non_parented_cell_elements.clear();
  114. }
  115. // Sort cells by the last row they span.
  116. std::sort(cells.begin(), cells.end(), [](const Cell& a, const Cell& b) { return a.row_last < b.row_last; });
  117. if (!open_cells.empty())
  118. {
  119. Log::Message(Log::LT_WARNING,
  120. "One or more cells span below the last row in table %s. They will not be formatted. Add additional rows, or adjust the rowspan "
  121. "attribute.",
  122. element_table->GetAddress().c_str());
  123. }
  124. open_cells.clear();
  125. open_cells.shrink_to_fit();
  126. return true;
  127. }
  128. void TableGrid::PushColumn(Element* element_column, int span)
  129. {
  130. Column column;
  131. column.element_column = element_column;
  132. column.column_span = span;
  133. columns.push_back(column);
  134. for (int j = 1; j < span; j++)
  135. columns.push_back({});
  136. }
  137. void TableGrid::PushColumnGroup(Element* element_column_group)
  138. {
  139. const int column_begin = (int)columns.size();
  140. int group_span = Math::Max(0, element_column_group->GetAttribute("span", 0));
  141. if (group_span == 0)
  142. {
  143. // Look through the column group to find all its column children.
  144. const int num_column_group_children = element_column_group->GetNumChildren();
  145. for (int j = 0; j < num_column_group_children; j++)
  146. {
  147. Element* child = element_column_group->GetChild(j);
  148. if (child->GetDisplay() == Style::Display::TableColumn)
  149. {
  150. const int column_span = Math::Max(1, child->GetAttribute("span", 1));
  151. PushColumn(child, column_span);
  152. group_span += column_span;
  153. }
  154. }
  155. }
  156. else
  157. {
  158. // Push empty columns, the group properties are filled below.
  159. for (int j = 0; j < group_span; j++)
  160. columns.push_back({});
  161. }
  162. if (group_span > 0)
  163. {
  164. columns[column_begin].element_group = element_column_group;
  165. columns[column_begin].group_span = group_span;
  166. }
  167. }
  168. void TableGrid::PushOrMergeColumnsFromFirstRow(Element* element_cell, int column_begin, int span)
  169. {
  170. for (int column_index = column_begin; column_index < column_begin + span; column_index++)
  171. {
  172. Column* column = nullptr;
  173. if (column_index < (int)columns.size())
  174. {
  175. column = &columns[column_index];
  176. }
  177. else
  178. {
  179. RMLUI_ASSERT(column_index == (int)columns.size());
  180. columns.push_back({});
  181. column = &columns.back();
  182. }
  183. if (column_index == column_begin)
  184. {
  185. column->element_cell = element_cell;
  186. column->cell_span = span;
  187. }
  188. }
  189. }
  190. void TableGrid::PushRow(Element* element_row, ElementList cell_elements, TableWrapper& table_wrapper)
  191. {
  192. const int row_index = (int)rows.size();
  193. if (element_row)
  194. {
  195. RMLUI_ASSERT(cell_elements.empty());
  196. const int num_row_children = element_row->GetNumChildren();
  197. cell_elements.reserve(num_row_children);
  198. for (int j = 0; j < num_row_children; j++)
  199. {
  200. Element* element_cell = element_row->GetChild(j);
  201. const Style::Display cell_display = element_cell->GetComputedValues().display();
  202. if (cell_display == Style::Display::TableCell)
  203. {
  204. cell_elements.push_back(element_cell);
  205. }
  206. else if (cell_display != Style::Display::None)
  207. {
  208. Log::Message(Log::LT_WARNING, "Only table cells are allowed as children of table rows. %s", element_cell->GetAddress().c_str());
  209. }
  210. }
  211. if (element_row->GetPosition() == Style::Position::Relative)
  212. table_wrapper.AddRelativeElement(element_row);
  213. }
  214. rows.push_back(Row{element_row, nullptr, 0});
  215. const int num_cells_spanning_this_row = (int)open_cells.size();
  216. // For all child cell elements of this row, add them to the list of open cells.
  217. for (int j = 0, column = 0; j < (int)cell_elements.size(); j++)
  218. {
  219. Element* element_cell = cell_elements[j];
  220. const int row_span = Math::Max(1, element_cell->GetAttribute("rowspan", 1));
  221. const int col_span = Math::Max(1, element_cell->GetAttribute("colspan", 1));
  222. if (row_index == 0)
  223. {
  224. // This is the first row. The cells of this row along with previous <col> elements define the columns.
  225. PushOrMergeColumnsFromFirstRow(element_cell, column, col_span);
  226. }
  227. // Offset the column if we have any rowspan elements from previous rows overlapping with the current column.
  228. for (bool continue_offset_column = true; continue_offset_column;)
  229. {
  230. continue_offset_column = false;
  231. for (int k = 0; k < num_cells_spanning_this_row; k++)
  232. {
  233. if (column >= open_cells[k].column_begin && column <= open_cells[k].column_last)
  234. {
  235. column = open_cells[k].column_last + 1;
  236. continue_offset_column = true;
  237. break;
  238. }
  239. }
  240. }
  241. const int column_last = column + col_span - 1;
  242. if (column_last >= (int)columns.size())
  243. {
  244. Log::Message(Log::LT_WARNING,
  245. "Too many columns in table row %d while encountering cell: %s\nThe number of columns is %d, as determined by the table columns or "
  246. "the first table row.",
  247. row_index + 1, element_cell->GetAddress().c_str(), (int)columns.size());
  248. break;
  249. }
  250. const Style::Position cell_position = element_cell->GetPosition();
  251. if (cell_position == Style::Position::Absolute || cell_position == Style::Position::Fixed)
  252. {
  253. table_wrapper.AddAbsoluteElement(element_cell, {}, table_wrapper.GetElement());
  254. }
  255. else
  256. {
  257. // Add the new cell to our list.
  258. open_cells.emplace_back();
  259. Cell& cell = open_cells.back();
  260. cell.element_cell = element_cell;
  261. cell.row_begin = row_index;
  262. cell.row_last = row_index + row_span - 1;
  263. cell.column_begin = column;
  264. cell.column_last = column_last;
  265. if (cell_position == Style::Position::Relative)
  266. table_wrapper.AddRelativeElement(element_cell);
  267. }
  268. column += col_span;
  269. }
  270. // Partition the cells to determine those who end at this row.
  271. const auto it_cells_in_row_end =
  272. std::partition(open_cells.begin(), open_cells.end(), [row_index](const Cell& cell) { return cell.row_last == row_index; });
  273. // Close cells ending at this row.
  274. cells.insert(cells.end(), open_cells.begin(), it_cells_in_row_end);
  275. open_cells.erase(open_cells.begin(), it_cells_in_row_end);
  276. }
  277. void TracksSizing::GetEdgeSizes(float& margin_a, float& margin_b, float& padding_border_a, float& padding_border_b,
  278. const ComputedAxisSize& computed) const
  279. {
  280. LayoutDetails::GetEdgeSizes(margin_a, margin_b, padding_border_a, padding_border_b, computed, table_initial_content_size);
  281. }
  282. void TracksSizing::ApplyGroupElement(const int index, const int span, const ComputedAxisSize& computed)
  283. {
  284. RMLUI_ASSERT(span >= 1 && index + span - 1 < (int)metrics.size());
  285. float margin_a, margin_b;
  286. float padding_border_a, padding_border_b;
  287. GetEdgeSizes(margin_a, margin_b, padding_border_a, padding_border_b, computed);
  288. // Add left/top edges.
  289. TrackMetric& metric_begin = metrics[index];
  290. metric_begin.group_padding_border_a = padding_border_a;
  291. metric_begin.sum_margin_a = margin_a;
  292. // Add right/bottom edges.
  293. TrackMetric& metric_last = metrics[index + span - 1];
  294. metric_last.group_padding_border_b = padding_border_b;
  295. metric_last.sum_margin_b = margin_b;
  296. }
  297. void TracksSizing::ApplyTrackElement(const int index, const int span, const ComputedAxisSize& computed)
  298. {
  299. RMLUI_ASSERT(span >= 1 && index + span - 1 < (int)metrics.size());
  300. float margin_a, margin_b;
  301. float padding_border_a, padding_border_b;
  302. TrackMetric& metric_begin = metrics[index];
  303. // We target the content box because track sizes are defined in terms of the border box of cells, equal to the content size of tracks.
  304. InitializeSize(metric_begin, margin_a, margin_b, padding_border_a, padding_border_b, computed, span, Style::BoxSizing::ContentBox);
  305. // Add left/top edges. Increment the values because we are merging with any previously set edges.
  306. metric_begin.column_padding_border_a += padding_border_a;
  307. metric_begin.sum_margin_a += margin_a;
  308. // Add right/bottom edges.
  309. TrackMetric& metric_last = metrics[index + span - 1];
  310. metric_last.column_padding_border_b += padding_border_b;
  311. metric_last.sum_margin_b += margin_b;
  312. // The size of all spanning tracks are distributed equally.
  313. for (int j = 1; j < span; j++)
  314. {
  315. TrackMetric& metric = metrics[index + j];
  316. metric.sizing_mode = metric_begin.sizing_mode;
  317. metric.fixed_size = metric_begin.fixed_size;
  318. metric.flex_size = metric_begin.flex_size;
  319. metric.min_size = metric_begin.min_size;
  320. metric.max_size = metric_begin.max_size;
  321. }
  322. }
  323. void TracksSizing::ApplyCellElement(const int index, const int span, const ComputedAxisSize& computed)
  324. {
  325. // Merge the metrics of the cell with the existing track: If the existing track
  326. // has auto min-/max-/size, we use the cell's min-/max-/size if it has any.
  327. RMLUI_ASSERT(span >= 1 && index + span - 1 < (int)metrics.size());
  328. float margin_a, margin_b;
  329. float padding_border_a, padding_border_b;
  330. TrackMetric cell_metric;
  331. // We target the border box because track sizes are defined in terms of the border box of cells.
  332. InitializeSize(cell_metric, margin_a, margin_b, padding_border_a, padding_border_b, computed, span, Style::BoxSizing::BorderBox);
  333. cell_metric.sum_margin_a = margin_a;
  334. // Merge the size determined by this cell with any existing track sizes.
  335. for (int j = 0; j < span; j++)
  336. {
  337. if (j == 1)
  338. cell_metric.sum_margin_a = 0;
  339. if (j == span - 1)
  340. cell_metric.sum_margin_b = margin_b;
  341. // Merge the existing track metrics with the cell sizing data.
  342. TrackMetric& destination = metrics[index + j];
  343. if (destination.sizing_mode != TrackSizingMode::Fixed && cell_metric.sizing_mode == TrackSizingMode::Fixed)
  344. {
  345. destination.fixed_size = cell_metric.fixed_size;
  346. destination.flex_size = 0;
  347. destination.sizing_mode = TrackSizingMode::Fixed;
  348. }
  349. if (destination.min_size == 0)
  350. destination.min_size = cell_metric.min_size;
  351. if (destination.max_size == FLT_MAX)
  352. destination.max_size = cell_metric.max_size;
  353. destination.sum_margin_a += cell_metric.sum_margin_a;
  354. destination.sum_margin_b += cell_metric.sum_margin_b;
  355. }
  356. }
  357. void TracksSizing::InitializeSize(TrackMetric& metric, float& margin_a, float& margin_b, float& padding_border_a, float& padding_border_b,
  358. const ComputedAxisSize& computed, const int span, const Style::BoxSizing target_box) const
  359. {
  360. RMLUI_ASSERT(span >= 1);
  361. GetEdgeSizes(margin_a, margin_b, padding_border_a, padding_border_b, computed);
  362. const float padding_border_sum = padding_border_a + padding_border_b;
  363. // Find the min/max size.
  364. metric.min_size = ResolveValue(computed.min_size, table_initial_content_size);
  365. metric.max_size = ResolveValue(computed.max_size, table_initial_content_size);
  366. if (target_box == Style::BoxSizing::ContentBox && computed.box_sizing == Style::BoxSizing::BorderBox)
  367. {
  368. metric.min_size = Math::Max(0.0f, metric.min_size - padding_border_sum);
  369. if (metric.max_size < FLT_MAX)
  370. metric.max_size = Math::Max(0.0f, metric.max_size - padding_border_sum);
  371. }
  372. else if (target_box == Style::BoxSizing::BorderBox && computed.box_sizing == Style::BoxSizing::ContentBox)
  373. {
  374. if (metric.min_size > 0)
  375. metric.min_size += padding_border_sum;
  376. if (metric.max_size < FLT_MAX)
  377. metric.max_size += padding_border_sum;
  378. }
  379. // Find fixed and flexible sizes.
  380. if (computed.size.type == Style::LengthPercentageAuto::Auto)
  381. {
  382. metric.sizing_mode = TrackSizingMode::Auto;
  383. }
  384. else if (computed.size.type == Style::LengthPercentageAuto::Percentage && computed.size.value >= 100.f)
  385. {
  386. // Percentages >= 100% are resolved as flexible size.
  387. metric.sizing_mode = TrackSizingMode::Flexible;
  388. metric.flex_size = Math::Max(0.01f * computed.size.value / float(span), 0.f);
  389. }
  390. else
  391. {
  392. float width = ResolveValue(computed.size, table_initial_content_size);
  393. if (target_box == Style::BoxSizing::ContentBox && computed.box_sizing == Style::BoxSizing::BorderBox)
  394. width = Math::Max(0.f, width - padding_border_sum);
  395. else if (target_box == Style::BoxSizing::BorderBox && computed.box_sizing == Style::BoxSizing::ContentBox)
  396. width += padding_border_sum;
  397. metric.sizing_mode = TrackSizingMode::Fixed;
  398. metric.flex_size = 0;
  399. metric.fixed_size = Math::Clamp(width, metric.min_size, metric.max_size);
  400. metric.min_size = metric.fixed_size;
  401. metric.max_size = metric.fixed_size;
  402. }
  403. if (span > 1)
  404. {
  405. // Account for distribution of fixed size over the tracks we are spanning.
  406. const float width_factor = 1.f / float(span);
  407. metric.fixed_size *= width_factor;
  408. metric.min_size *= width_factor;
  409. if (metric.max_size < FLT_MAX)
  410. metric.max_size *= width_factor;
  411. }
  412. }
  413. void TracksSizing::ResolveFlexibleSize()
  414. {
  415. // The fixed spacing includes the table gaps, and the track and track-group elements' padding, border, and margins.
  416. float sum_fixed_spacing = table_gap * float((int)metrics.size() - 1);
  417. for (const TrackMetric& metric : metrics)
  418. {
  419. // Any auto size must have been resolved to either fixed or flexible before running this algorithm.
  420. RMLUI_ASSERT(metric.sizing_mode == TrackSizingMode::Fixed || metric.sizing_mode == TrackSizingMode::Flexible);
  421. sum_fixed_spacing += metric.column_padding_border_a + metric.column_padding_border_b;
  422. sum_fixed_spacing += metric.group_padding_border_a + metric.group_padding_border_a;
  423. sum_fixed_spacing += metric.sum_margin_a + metric.sum_margin_b;
  424. }
  425. float table_available_size = 0.0f;
  426. // Convert any flexible sizes to fixed sizes by filling up the size of the table.
  427. for (bool continue_iteration = true; continue_iteration;)
  428. {
  429. continue_iteration = false;
  430. float fr_to_px_ratio = 0;
  431. // Calculate the fr/px-ratio. [fr] is here the unit for flexible width.
  432. {
  433. float sum_fixed_size = sum_fixed_spacing; // [px]
  434. float sum_flex_size = 0; // [fr]
  435. for (const TrackMetric& metric : metrics)
  436. {
  437. sum_flex_size += metric.flex_size;
  438. sum_fixed_size += (metric.flex_size == 0.f ? metric.fixed_size : 0.0f);
  439. }
  440. sum_flex_size = Math::Max(1.f, sum_flex_size);
  441. table_available_size = table_initial_content_size - sum_fixed_size;
  442. fr_to_px_ratio = Math::Max(0.0f, table_available_size) / sum_flex_size;
  443. }
  444. // Iterate through each track and convert flexible size to fixed size.
  445. for (auto& metric : metrics)
  446. {
  447. if (metric.flex_size > 0)
  448. {
  449. const float fixed_flex_size = metric.flex_size * fr_to_px_ratio;
  450. metric.fixed_size = Math::Clamp(fixed_flex_size, metric.min_size, metric.max_size);
  451. table_available_size -= metric.fixed_size;
  452. if (metric.fixed_size != fixed_flex_size)
  453. {
  454. // We met a min/max-constraint, fix the size of this track. Start over with the procedure once we are done with all the tracks.
  455. metric.flex_size = 0.0f;
  456. continue_iteration = true;
  457. }
  458. }
  459. }
  460. }
  461. // If we have distributed all the flexible space, and there is still space available, then distribute the available space over
  462. // the track sizes while respecting max-widths.
  463. if (table_available_size > 0.5f)
  464. {
  465. const int num_tracks = (int)metrics.size();
  466. struct TrackAvailableSize {
  467. int track;
  468. float available_size;
  469. };
  470. Vector<TrackAvailableSize> track_available_sizes(num_tracks);
  471. // Find the available size of all tracks.
  472. for (int i = 0; i < num_tracks; i++)
  473. {
  474. track_available_sizes[i].track = i;
  475. track_available_sizes[i].available_size = metrics[i].max_size - metrics[i].fixed_size;
  476. }
  477. // Sort the tracks by available size, smallest to largest. This lets us "fill up" the most constrained tracks first.
  478. std::sort(track_available_sizes.begin(), track_available_sizes.end(),
  479. [](const TrackAvailableSize& c1, const TrackAvailableSize& c2) { return c1.available_size < c2.available_size; });
  480. for (int i = 0; i < num_tracks; i++)
  481. {
  482. const int track = track_available_sizes[i].track;
  483. const int num_tracks_remaining = num_tracks - i;
  484. const float ideal_add_track_size = table_available_size / float(num_tracks_remaining);
  485. const float add_track_size = Math::Min(ideal_add_track_size, track_available_sizes[i].available_size);
  486. if (add_track_size > 0)
  487. {
  488. metrics[track].fixed_size += add_track_size;
  489. table_available_size = Math::Max(0.0f, table_available_size - add_track_size);
  490. }
  491. }
  492. }
  493. }
  494. static float InitializeTrackBoxes(TrackBoxList& boxes, const TrackMetricList& metrics, const float table_gap)
  495. {
  496. boxes.resize(metrics.size());
  497. float cursor = 0;
  498. // Walk through all the metrics and populate the track box accordingly.
  499. for (size_t i = 0; i < metrics.size(); i++)
  500. {
  501. TrackBox& box = boxes[i];
  502. const TrackMetric& metric = metrics[i];
  503. box.group_offset = cursor + metric.sum_margin_a;
  504. box.track_offset = box.group_offset + metric.group_padding_border_a;
  505. box.cell_offset = box.track_offset + metric.column_padding_border_a;
  506. // The group and column width will be extended if they span multiple columns (see next loop).
  507. box.group_size = metric.fixed_size + metric.column_padding_border_a + metric.column_padding_border_b;
  508. box.cell_size = metric.fixed_size;
  509. box.track_size = metric.fixed_size;
  510. cursor = box.cell_offset + metric.fixed_size + metric.column_padding_border_b + metric.group_padding_border_b + metric.sum_margin_b;
  511. if (i != metrics.size() - 1)
  512. cursor += table_gap;
  513. }
  514. return cursor;
  515. }
  516. float BuildColumnBoxes(TrackBoxList& column_boxes, const TrackMetricList& column_metrics, const TableGrid::ColumnList& grid_columns,
  517. const float table_gap_x)
  518. {
  519. const float columns_width = InitializeTrackBoxes(column_boxes, column_metrics, table_gap_x);
  520. const int num_columns = (int)column_metrics.size();
  521. // Extend column and column group widths to cover all the columns they span.
  522. for (int i = 0; i < num_columns; i++)
  523. {
  524. const int column_span = grid_columns[i].column_span;
  525. const int group_span = grid_columns[i].group_span;
  526. if (column_span > 1 && i + column_span - 1 < num_columns)
  527. {
  528. TrackBox& metric = column_boxes[i];
  529. TrackBox& metric_last_span = column_boxes[i + column_span - 1];
  530. metric.track_size = metric_last_span.cell_size + (metric_last_span.cell_offset - metric.cell_offset);
  531. }
  532. if (group_span > 1 && i + group_span - 1 < num_columns)
  533. {
  534. TrackBox& metric = column_boxes[i];
  535. TrackBox& metric_last_span = column_boxes[i + group_span - 1];
  536. metric.group_size = metric_last_span.group_size + (metric_last_span.track_offset - metric.track_offset);
  537. }
  538. }
  539. return columns_width;
  540. }
  541. float BuildRowBoxes(TrackBoxList& row_boxes, const TrackMetricList& row_metrics, const TableGrid::RowList& grid_rows, const float table_gap_y)
  542. {
  543. const float rows_height = InitializeTrackBoxes(row_boxes, row_metrics, table_gap_y);
  544. const int num_rows = (int)row_metrics.size();
  545. // Extend row group heights to cover the all rows they span.
  546. for (int i = 0; i < num_rows; i++)
  547. {
  548. const int group_span = grid_rows[i].group_span;
  549. if (group_span > 1 && i + group_span - 1 < num_rows)
  550. {
  551. TrackBox& metric = row_boxes[i];
  552. TrackBox& metric_last_span = row_boxes[i + group_span - 1];
  553. metric.group_size = metric_last_span.group_size + (metric_last_span.track_offset - metric.track_offset);
  554. }
  555. }
  556. return rows_height;
  557. }
  558. } // namespace Rml