LayoutTableDetails.cpp 22 KB

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