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
|
/*
* Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
*
* 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.
*
*/
#ifndef RenderOverflow_h
#define RenderOverflow_h
#include "LayoutTypes.h"
namespace WebCore
{
// RenderOverflow is a class for tracking content that spills out of a box. This class is used by RenderBox and
// InlineFlowBox.
//
// There are two types of overflow: layout overflow (which is expected to be reachable via scrolling mechanisms) and
// visual overflow (which is not expected to be reachable via scrolling mechanisms).
//
// Layout overflow examples include other boxes that spill out of our box, For example, in the inline case a tall image
// could spill out of a line box.
// Examples of visual overflow are shadows, text stroke (and eventually outline and border-image).
// This object is allocated only when some of these fields have non-default values in the owning box.
class RenderOverflow {
WTF_MAKE_NONCOPYABLE(RenderOverflow); WTF_MAKE_FAST_ALLOCATED;
public:
RenderOverflow(const LayoutRect& layoutRect, const LayoutRect& visualRect)
: m_minYLayoutOverflow(layoutRect.y())
, m_maxYLayoutOverflow(layoutRect.maxY())
, m_minXLayoutOverflow(layoutRect.x())
, m_maxXLayoutOverflow(layoutRect.maxX())
, m_minYVisualOverflow(visualRect.y())
, m_maxYVisualOverflow(visualRect.maxY())
, m_minXVisualOverflow(visualRect.x())
, m_maxXVisualOverflow(visualRect.maxX())
{
}
LayoutUnit minYLayoutOverflow() const { return m_minYLayoutOverflow; }
LayoutUnit maxYLayoutOverflow() const { return m_maxYLayoutOverflow; }
LayoutUnit minXLayoutOverflow() const { return m_minXLayoutOverflow; }
LayoutUnit maxXLayoutOverflow() const { return m_maxXLayoutOverflow; }
LayoutRect layoutOverflowRect() const;
LayoutUnit minYVisualOverflow() const { return m_minYVisualOverflow; }
LayoutUnit maxYVisualOverflow() const { return m_maxYVisualOverflow; }
LayoutUnit minXVisualOverflow() const { return m_minXVisualOverflow; }
LayoutUnit maxXVisualOverflow() const { return m_maxXVisualOverflow; }
LayoutRect visualOverflowRect() const;
void setMinYLayoutOverflow(LayoutUnit overflow) { m_minYLayoutOverflow = overflow; }
void setMaxYLayoutOverflow(LayoutUnit overflow) { m_maxYLayoutOverflow = overflow; }
void setMinXLayoutOverflow(LayoutUnit overflow) { m_minXLayoutOverflow = overflow; }
void setMaxXLayoutOverflow(LayoutUnit overflow) { m_maxXLayoutOverflow = overflow; }
void setMinYVisualOverflow(LayoutUnit overflow) { m_minYVisualOverflow = overflow; }
void setMaxYVisualOverflow(LayoutUnit overflow) { m_maxYVisualOverflow = overflow; }
void setMinXVisualOverflow(LayoutUnit overflow) { m_minXVisualOverflow = overflow; }
void setMaxXVisualOverflow(LayoutUnit overflow) { m_maxXVisualOverflow = overflow; }
void move(LayoutUnit dx, LayoutUnit dy);
void addLayoutOverflow(const LayoutRect&);
void addVisualOverflow(const LayoutRect&);
void setLayoutOverflow(const LayoutRect&);
void setVisualOverflow(const LayoutRect&);
void resetLayoutOverflow(const LayoutRect& defaultRect);
private:
LayoutUnit m_minYLayoutOverflow;
LayoutUnit m_maxYLayoutOverflow;
LayoutUnit m_minXLayoutOverflow;
LayoutUnit m_maxXLayoutOverflow;
LayoutUnit m_minYVisualOverflow;
LayoutUnit m_maxYVisualOverflow;
LayoutUnit m_minXVisualOverflow;
LayoutUnit m_maxXVisualOverflow;
};
inline LayoutRect RenderOverflow::layoutOverflowRect() const
{
return LayoutRect(m_minXLayoutOverflow, m_minYLayoutOverflow, m_maxXLayoutOverflow - m_minXLayoutOverflow, m_maxYLayoutOverflow - m_minYLayoutOverflow);
}
inline LayoutRect RenderOverflow::visualOverflowRect() const
{
return LayoutRect(m_minXVisualOverflow, m_minYVisualOverflow, m_maxXVisualOverflow - m_minXVisualOverflow, m_maxYVisualOverflow - m_minYVisualOverflow);
}
inline void RenderOverflow::move(LayoutUnit dx, LayoutUnit dy)
{
m_minYLayoutOverflow += dy;
m_maxYLayoutOverflow += dy;
m_minXLayoutOverflow += dx;
m_maxXLayoutOverflow += dx;
m_minYVisualOverflow += dy;
m_maxYVisualOverflow += dy;
m_minXVisualOverflow += dx;
m_maxXVisualOverflow += dx;
}
inline void RenderOverflow::addLayoutOverflow(const LayoutRect& rect)
{
m_minYLayoutOverflow = std::min(rect.y(), m_minYLayoutOverflow);
m_maxYLayoutOverflow = std::max(rect.maxY(), m_maxYLayoutOverflow);
m_minXLayoutOverflow = std::min(rect.x(), m_minXLayoutOverflow);
m_maxXLayoutOverflow = std::max(rect.maxX(), m_maxXLayoutOverflow);
}
inline void RenderOverflow::addVisualOverflow(const LayoutRect& rect)
{
m_minYVisualOverflow = std::min(rect.y(), m_minYVisualOverflow);
m_maxYVisualOverflow = std::max(rect.maxY(), m_maxYVisualOverflow);
m_minXVisualOverflow = std::min(rect.x(), m_minXVisualOverflow);
m_maxXVisualOverflow = std::max(rect.maxX(), m_maxXVisualOverflow);
}
inline void RenderOverflow::setLayoutOverflow(const LayoutRect& rect)
{
m_minYLayoutOverflow = rect.y();
m_maxYLayoutOverflow = rect.maxY();
m_minXLayoutOverflow = rect.x();
m_maxXLayoutOverflow = rect.maxX();
}
inline void RenderOverflow::setVisualOverflow(const LayoutRect& rect)
{
m_minYVisualOverflow = rect.y();
m_maxYVisualOverflow = rect.maxY();
m_minXVisualOverflow = rect.x();
m_maxXVisualOverflow = rect.maxX();
}
inline void RenderOverflow::resetLayoutOverflow(const LayoutRect& rect)
{
m_minYLayoutOverflow = rect.y();
m_maxYLayoutOverflow = rect.maxY();
m_minXLayoutOverflow = rect.x();
m_maxXLayoutOverflow = rect.maxX();
}
} // namespace WebCore
#endif // RenderOverflow_h
|