File: RenderStyle%2BSettersInlines.h

package info (click to toggle)
webkit2gtk 2.51.90-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 484,192 kB
  • sloc: cpp: 3,930,945; javascript: 197,713; ansic: 167,619; python: 53,160; asm: 21,857; ruby: 18,114; perl: 17,149; xml: 4,631; sh: 2,462; yacc: 2,394; java: 2,032; lex: 1,358; pascal: 372; makefile: 215
file content (185 lines) | stat: -rw-r--r-- 4,902 bytes parent folder | download
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
/**
 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
 * Copyright (C) 2000 Antti Koivisto (koivisto@kde.org)
 * Copyright (C) 2000 Dirk Mueller (mueller@kde.org)
 * Copyright (C) 2003-2025 Apple Inc. All rights reserved.
 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
 * Copyright (C) 2014-2021 Google Inc. All rights reserved.
 * Copyright (C) 2025 Samuel Weinig <sam@webkit.org>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#pragma once

#include "RenderStyle+GettersInlines.h"

#define RENDER_STYLE_PROPERTIES_SETTERS_INLINES_INCLUDE_TRAP 1
#include "RenderStyleProperties+SettersInlines.h"
#undef RENDER_STYLE_PROPERTIES_SETTERS_INLINES_INCLUDE_TRAP

namespace WebCore {

// MARK: - Initialization

inline void RenderStyle::inheritFrom(const RenderStyle& other)
{
    return m_computedStyle.inheritFrom(other.m_computedStyle);
}

inline void RenderStyle::inheritIgnoringCustomPropertiesFrom(const RenderStyle& other)
{
    return m_computedStyle.inheritIgnoringCustomPropertiesFrom(other.m_computedStyle);
}

inline void RenderStyle::inheritUnicodeBidiFrom(const RenderStyle& other)
{
    return m_computedStyle.inheritUnicodeBidiFrom(other.m_computedStyle);
}

inline void RenderStyle::inheritColumnPropertiesFrom(const RenderStyle& other)
{
    return m_computedStyle.inheritColumnPropertiesFrom(other.m_computedStyle);
}

inline void RenderStyle::fastPathInheritFrom(const RenderStyle& other)
{
    return m_computedStyle.fastPathInheritFrom(other.m_computedStyle);
}

inline void RenderStyle::copyNonInheritedFrom(const RenderStyle& other)
{
    return m_computedStyle.copyNonInheritedFrom(other.m_computedStyle);
}

inline void RenderStyle::copyContentFrom(const RenderStyle& other)
{
    return m_computedStyle.copyContentFrom(other.m_computedStyle);
}

inline void RenderStyle::copyPseudoElementBitsFrom(const RenderStyle& other)
{
    return m_computedStyle.copyPseudoElementBitsFrom(other.m_computedStyle);
}

// MARK: - Style adjustment utilities

inline void RenderStyle::setPageScaleTransform(float scale)
{
    m_computedStyle.setPageScaleTransform(scale);
}

inline void RenderStyle::setColumnStylesFromPaginationMode(PaginationMode paginationMode)
{
    m_computedStyle.setColumnStylesFromPaginationMode(paginationMode);
}

inline void RenderStyle::adjustAnimations()
{
    m_computedStyle.adjustAnimations();
}

inline void RenderStyle::adjustTransitions()
{
    m_computedStyle.adjustTransitions();
}

inline void RenderStyle::adjustBackgroundLayers()
{
    m_computedStyle.adjustBackgroundLayers();
}

inline void RenderStyle::adjustMaskLayers()
{
    m_computedStyle.adjustMaskLayers();
}

inline void RenderStyle::adjustScrollTimelines()
{
    m_computedStyle.adjustScrollTimelines();
}

inline void RenderStyle::adjustViewTimelines()
{
    m_computedStyle.adjustViewTimelines();
}

inline void RenderStyle::addToTextDecorationLineInEffect(Style::TextDecorationLine value)
{
    m_computedStyle.addToTextDecorationLineInEffect(value);
}

inline void RenderStyle::containIntrinsicWidthAddAuto()
{
    m_computedStyle.containIntrinsicWidthAddAuto();
}

inline void RenderStyle::containIntrinsicHeightAddAuto()
{
    m_computedStyle.containIntrinsicHeightAddAuto();
}

inline void RenderStyle::setGridAutoFlowDirection(Style::GridAutoFlow::Direction direction)
{
    m_computedStyle.setGridAutoFlowDirection(direction);
}

inline void RenderStyle::resetBorderBottom()
{
    m_computedStyle.resetBorderBottom();
}

inline void RenderStyle::resetBorderLeft()
{
    m_computedStyle.resetBorderLeft();
}

inline void RenderStyle::resetBorderRight()
{
    m_computedStyle.resetBorderRight();
}

inline void RenderStyle::resetBorderTop()
{
    m_computedStyle.resetBorderTop();
}

inline void RenderStyle::resetMargin()
{
    m_computedStyle.resetMargin();
}

inline void RenderStyle::resetPadding()
{
    m_computedStyle.resetPadding();
}

inline void RenderStyle::resetBorder()
{
    m_computedStyle.resetBorder();
}

inline void RenderStyle::resetBorderExceptRadius()
{
    m_computedStyle.resetBorderExceptRadius();
}

inline void RenderStyle::resetBorderRadius()
{
    m_computedStyle.resetBorderRadius();
}

} // namespace WebCore