summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/paint/table_section_painter.h
blob: 4f19519e89923967f1513a4195da7f8b6d93945f (plain)
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
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_TABLE_SECTION_PAINTER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_TABLE_SECTION_PAINTER_H_

#include "third_party/blink/renderer/core/paint/paint_phase.h"
#include "third_party/blink/renderer/core/style/shadow_data.h"
#include "third_party/blink/renderer/platform/geometry/layout_rect.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"

namespace blink {

class CellSpan;
class LayoutTableCell;
class LayoutTableSection;
struct PaintInfo;
struct PhysicalOffset;

class TableSectionPainter {
  STACK_ALLOCATED();

 public:
  TableSectionPainter(const LayoutTableSection& layout_table_section)
      : layout_table_section_(layout_table_section) {}

  void Paint(const PaintInfo&);
  void PaintCollapsedBorders(const PaintInfo&);

 private:
  void PaintObject(const PaintInfo&, const PhysicalOffset& paint_offset);

  void PaintBoxDecorationBackground(const PaintInfo&,
                                    const PhysicalOffset&,
                                    const CellSpan& dirtied_rows,
                                    const CellSpan& dirtied_columns);
  void PaintBackgroundsBehindCell(const LayoutTableCell&, const PaintInfo&);
  void PaintCell(const LayoutTableCell&, const PaintInfo&);

  void PaintSection(const PaintInfo&);
  void PaintCollapsedSectionBorders(const PaintInfo&);

  LayoutRect TableAlignedRect(const PaintInfo& paint_info,
                              const PhysicalOffset& paint_offset);

  const LayoutTableSection& layout_table_section_;
};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_PAINT_TABLE_SECTION_PAINTER_H_