~mmach/netext73/webkit2gtk

« back to all changes in this revision

Viewing changes to Source/WebCore/layout/LayoutContext.h

  • Committer: mmach
  • Date: 2023-06-16 17:21:37 UTC
  • Revision ID: netbit73@gmail.com-20230616172137-2rqx6yr96ga9g3kp
1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2018 Apple Inc. All rights reserved.
 
3
 *
 
4
 * Redistribution and use in source and binary forms, with or without
 
5
 * modification, are permitted provided that the following conditions
 
6
 * are met:
 
7
 * 1. Redistributions of source code must retain the above copyright
 
8
 *    notice, this list of conditions and the following disclaimer.
 
9
 * 2. Redistributions in binary form must reproduce the above copyright
 
10
 *    notice, this list of conditions and the following disclaimer in the
 
11
 *    documentation and/or other materials provided with the distribution.
 
12
 *
 
13
 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
 
14
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 
15
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 
16
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
 
17
 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
18
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
19
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
20
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
21
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
22
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
 
23
 * THE POSSIBILITY OF SUCH DAMAGE.
 
24
 */
 
25
 
 
26
#pragma once
 
27
 
 
28
#if ENABLE(LAYOUT_FORMATTING_CONTEXT)
 
29
 
 
30
#include <wtf/IsoMalloc.h>
 
31
#include <wtf/OptionSet.h>
 
32
 
 
33
namespace WebCore {
 
34
 
 
35
class GraphicsContext;
 
36
class IntRect;
 
37
class LayoutSize;
 
38
class RenderView;
 
39
 
 
40
namespace Layout {
 
41
 
 
42
class Container;
 
43
class InvalidationState;
 
44
class LayoutState;
 
45
class FormattingContext;
 
46
 
 
47
// LayoutContext is the entry point for layout.
 
48
// LayoutContext::layout() generates the display tree for the root container's subtree (it does not run layout on the root though).
 
49
// Note, while the initial containing block is entry point for the initial layout, it does not necessarily need to be the entry point of any
 
50
// subsequent layouts (subtree layout). A non-initial, subtree layout could be initiated on multiple formatting contexts.
 
51
// Each formatting context has an entry point for layout, which potenitally means multiple entry points per layout frame.
 
52
class LayoutContext {
 
53
    WTF_MAKE_ISO_ALLOCATED(LayoutContext);
 
54
public:
 
55
    LayoutContext(LayoutState&);
 
56
 
 
57
    void layout(const LayoutSize& rootContentBoxSize, InvalidationState&);
 
58
    void layoutWithPreparedRootGeometry(InvalidationState&);
 
59
 
 
60
    static std::unique_ptr<FormattingContext> createFormattingContext(const Container& formattingContextRoot, LayoutState&);
 
61
 
 
62
    // FIXME: This is temporary. 
 
63
    static void paint(const LayoutState&, GraphicsContext&, const IntRect& dirtyRect);
 
64
#ifndef NDEBUG
 
65
    // For testing purposes only
 
66
    static void verifyAndOutputMismatchingLayoutTree(const LayoutState&, const RenderView&);
 
67
#endif
 
68
 
 
69
private:
 
70
    void layoutFormattingContextSubtree(const Container&, InvalidationState&);
 
71
    LayoutState& layoutState() { return m_layoutState; }
 
72
 
 
73
    LayoutState& m_layoutState;
 
74
};
 
75
 
 
76
}
 
77
}
 
78
#endif