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 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
/*
* Copyright (C) 2010 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#if ENABLE(FULLSCREEN_API)
#include "RenderFullScreen.h"
#include "RenderBlockFlow.h"
#include "RenderLayer.h"
#include "RenderLayerCompositor.h"
namespace WebCore {
class RenderFullScreenPlaceholder final : public RenderBlockFlow {
public:
RenderFullScreenPlaceholder(RenderFullScreen& owner, PassRef<RenderStyle> style)
: RenderBlockFlow(owner.document(), WTF::move(style))
, m_owner(owner)
{
}
private:
virtual bool isRenderFullScreenPlaceholder() const { return true; }
virtual void willBeDestroyed();
RenderFullScreen& m_owner;
};
void RenderFullScreenPlaceholder::willBeDestroyed()
{
m_owner.setPlaceholder(0);
RenderBlockFlow::willBeDestroyed();
}
RenderFullScreen::RenderFullScreen(Document& document, PassRef<RenderStyle> style)
: RenderFlexibleBox(document, WTF::move(style))
, m_placeholder(0)
{
setReplaced(false);
}
void RenderFullScreen::willBeDestroyed()
{
if (m_placeholder) {
removeFromParent();
if (!m_placeholder->beingDestroyed())
m_placeholder->destroy();
ASSERT(!m_placeholder);
}
// RenderObjects are unretained, so notify the document (which holds a pointer to a RenderFullScreen)
// if it's RenderFullScreen is destroyed.
if (document().fullScreenRenderer() == this)
document().fullScreenRendererDestroyed();
RenderFlexibleBox::willBeDestroyed();
}
static PassRef<RenderStyle> createFullScreenStyle()
{
auto fullscreenStyle = RenderStyle::createDefaultStyle();
// Create a stacking context:
fullscreenStyle.get().setZIndex(INT_MAX);
fullscreenStyle.get().setFontDescription(FontDescription());
fullscreenStyle.get().font().update(0);
fullscreenStyle.get().setDisplay(FLEX);
fullscreenStyle.get().setJustifyContent(JustifyCenter);
fullscreenStyle.get().setAlignItems(AlignCenter);
fullscreenStyle.get().setFlexDirection(FlowColumn);
fullscreenStyle.get().setPosition(FixedPosition);
fullscreenStyle.get().setWidth(Length(100.0, Percent));
fullscreenStyle.get().setHeight(Length(100.0, Percent));
fullscreenStyle.get().setLeft(Length(0, WebCore::Fixed));
fullscreenStyle.get().setTop(Length(0, WebCore::Fixed));
fullscreenStyle.get().setBackgroundColor(Color::black);
return fullscreenStyle;
}
RenderFullScreen* RenderFullScreen::wrapRenderer(RenderObject* object, RenderElement* parent, Document& document)
{
RenderFullScreen* fullscreenRenderer = new RenderFullScreen(document, createFullScreenStyle());
fullscreenRenderer->initializeStyle();
if (parent && !parent->isChildAllowed(*fullscreenRenderer, fullscreenRenderer->style())) {
fullscreenRenderer->destroy();
return 0;
}
if (object) {
// |object->parent()| can be null if the object is not yet attached
// to |parent|.
if (RenderElement* parent = object->parent()) {
RenderBlock* containingBlock = object->containingBlock();
ASSERT(containingBlock);
// Since we are moving the |object| to a new parent |fullscreenRenderer|,
// the line box tree underneath our |containingBlock| is not longer valid.
containingBlock->deleteLines();
parent->addChild(fullscreenRenderer, object);
object->removeFromParent();
// Always just do a full layout to ensure that line boxes get deleted properly.
// Because objects moved from |parent| to |fullscreenRenderer|, we want to
// make new line boxes instead of leaving the old ones around.
parent->setNeedsLayoutAndPrefWidthsRecalc();
containingBlock->setNeedsLayoutAndPrefWidthsRecalc();
}
fullscreenRenderer->addChild(object);
fullscreenRenderer->setNeedsLayoutAndPrefWidthsRecalc();
}
document.setFullScreenRenderer(fullscreenRenderer);
return fullscreenRenderer;
}
void RenderFullScreen::unwrapRenderer(bool& requiresRenderTreeRebuild)
{
requiresRenderTreeRebuild = false;
if (parent()) {
auto* child = firstChild();
// Things can get very complicated with anonymous block generation.
// We can restore correctly without rebuild in simple cases only.
// FIXME: We should have a mechanism for removing a block without reconstructing the tree.
if (child != lastChild())
requiresRenderTreeRebuild = true;
else if (child && child->isAnonymousBlock()) {
auto& anonymousBlock = toRenderBlock(*child);
if (anonymousBlock.firstChild() != anonymousBlock.lastChild())
requiresRenderTreeRebuild = true;
}
while ((child = firstChild())) {
if (child->isAnonymousBlock() && !requiresRenderTreeRebuild) {
if (auto* nonAnonymousChild = toRenderBlock(*child).firstChild())
child = nonAnonymousChild;
else {
child->removeFromParent();
child->destroy();
continue;
}
}
// We have to clear the override size, because as a flexbox, we
// may have set one on the child, and we don't want to leave that
// lying around on the child.
if (child->isBox())
toRenderBox(child)->clearOverrideSize();
child->removeFromParent();
parent()->addChild(child, this);
parent()->setNeedsLayoutAndPrefWidthsRecalc();
}
}
if (placeholder())
placeholder()->removeFromParent();
removeFromParent();
document().setFullScreenRenderer(0);
}
void RenderFullScreen::setPlaceholder(RenderBlock* placeholder)
{
m_placeholder = placeholder;
}
void RenderFullScreen::createPlaceholder(PassRef<RenderStyle> style, const LayoutRect& frameRect)
{
if (style.get().width().isAuto())
style.get().setWidth(Length(frameRect.width(), Fixed));
if (style.get().height().isAuto())
style.get().setHeight(Length(frameRect.height(), Fixed));
if (m_placeholder) {
m_placeholder->setStyle(WTF::move(style));
return;
}
m_placeholder = new RenderFullScreenPlaceholder(*this, WTF::move(style));
m_placeholder->initializeStyle();
if (parent()) {
parent()->addChild(m_placeholder, this);
parent()->setNeedsLayoutAndPrefWidthsRecalc();
}
}
}
#endif
|