blob: 5a6f11203cbe97dc36a13c4f682b73809d9ea54b [file] [log] [blame]
/*
* Copyright (C) 2008, 2013 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. ``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
* 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 "EmbeddedWidget.h"
#include <WebCore/Document.h>
#include <WebCore/FrameView.h>
#include <WebCore/HTMLPlugInElement.h>
#include <WebCore/RenderObject.h>
#include <wtf/win/GDIObject.h>
#include "MemoryStream.h"
#include "WebError.h"
#include "WebURLResponse.h"
using namespace WebCore;
Ref<EmbeddedWidget> EmbeddedWidget::create(IWebEmbeddedView* view, HTMLPlugInElement* element, HWND parentWindow, const IntSize& size)
{
auto widget = adoptRef(*new EmbeddedWidget(view, element));
widget->createWindow(parentWindow, size);
return widget;
}
EmbeddedWidget::~EmbeddedWidget()
{
if (m_window)
DestroyWindow(m_window);
}
bool EmbeddedWidget::createWindow(HWND parentWindow, const IntSize& size)
{
ASSERT(!m_window);
HWND window;
SIZE pluginSize(size);
HRESULT hr = m_view->createViewWindow(parentWindow, &pluginSize, &window);
if (FAILED(hr) || !window)
return false;
m_window = window;
return true;
}
void EmbeddedWidget::invalidateRect(const IntRect& rect)
{
if (!m_window)
return;
RECT r = rect;
::InvalidateRect(m_window, &r, false);
}
void EmbeddedWidget::setFrameRect(const IntRect& rect)
{
if (m_element->document().printing())
return;
if (rect != frameRect())
Widget::setFrameRect(rect);
frameRectsChanged();
}
void EmbeddedWidget::frameRectsChanged()
{
if (!parent())
return;
FrameView& frameView = downcast<FrameView>(*parent());
IntRect oldWindowRect = m_windowRect;
IntRect oldClipRect = m_clipRect;
m_windowRect = IntRect(frameView.contentsToWindow(frameRect().location()), frameRect().size());
m_clipRect = windowClipRect();
m_clipRect.move(-m_windowRect.x(), -m_windowRect.y());
if (!m_window)
return;
if (m_windowRect == oldWindowRect && m_clipRect == oldClipRect)
return;
// To prevent flashes while scrolling, we disable drawing during the window
// update process by clipping the window to the zero rect.
bool clipToZeroRect = true;
if (clipToZeroRect) {
auto rgn = adoptGDIObject(::CreateRectRgn(0, 0, 0, 0));
::SetWindowRgn(m_window, rgn.leak(), FALSE);
} else {
auto rgn = adoptGDIObject(::CreateRectRgn(m_clipRect.x(), m_clipRect.y(), m_clipRect.maxX(), m_clipRect.maxY()));
::SetWindowRgn(m_window, rgn.leak(), TRUE);
}
if (m_windowRect != oldWindowRect)
::MoveWindow(m_window, m_windowRect.x(), m_windowRect.y(), m_windowRect.width(), m_windowRect.height(), TRUE);
if (clipToZeroRect) {
auto rgn = adoptGDIObject(::CreateRectRgn(m_clipRect.x(), m_clipRect.y(), m_clipRect.maxX(), m_clipRect.maxY()));
::SetWindowRgn(m_window, rgn.leak(), TRUE);
}
}
void EmbeddedWidget::setFocus(bool focused)
{
if (m_window && focused)
SetFocus(m_window);
Widget::setFocus(focused);
}
void EmbeddedWidget::show()
{
m_isVisible = true;
if (m_attachedToWindow && m_window)
ShowWindow(m_window, SW_SHOWNA);
Widget::show();
}
void EmbeddedWidget::hide()
{
m_isVisible = false;
if (m_attachedToWindow && m_window)
ShowWindow(m_window, SW_HIDE);
Widget::hide();
}
IntRect EmbeddedWidget::windowClipRect() const
{
// Start by clipping to our bounds.
IntRect clipRect(m_windowRect);
// Take our element and get the clip rect from the enclosing layer and frame view.
FrameView* parentView = m_element->document().view();
clipRect.intersect(parentView->windowClipRectForFrameOwner(m_element, true));
return clipRect;
}
void EmbeddedWidget::setParent(ScrollView* parent)
{
Widget::setParent(parent);
if (!m_window)
return;
if (parent)
return;
// If the embedded window or one of its children have the focus, we need to
// clear it to prevent the web view window from being focused because that can
// trigger a layout while the plugin element is being detached.
HWND focusedWindow = ::GetFocus();
if (m_window == focusedWindow || ::IsChild(m_window, focusedWindow))
::SetFocus(0);
}
void EmbeddedWidget::attachToWindow()
{
if (m_attachedToWindow)
return;
m_attachedToWindow = true;
if (m_isVisible && m_window)
ShowWindow(m_window, SW_SHOWNA);
}
void EmbeddedWidget::detachFromWindow()
{
if (!m_attachedToWindow)
return;
if (m_isVisible && m_window)
ShowWindow(m_window, SW_HIDE);
m_attachedToWindow = false;
}
void EmbeddedWidget::didReceiveResponse(const ResourceResponse& response)
{
ASSERT(m_view);
COMPtr<IWebURLResponse> urlResponse(AdoptCOM, WebURLResponse::createInstance(response));
m_view->didReceiveResponse(urlResponse.get());
}
void EmbeddedWidget::didReceiveData(const char* data, int length)
{
COMPtr<MemoryStream> stream = MemoryStream::createInstance(SharedBuffer::create(data, length));
m_view->didReceiveData(stream.get());
}
void EmbeddedWidget::didFinishLoading()
{
m_view->didFinishLoading();
}
void EmbeddedWidget::didFail(const ResourceError& error)
{
COMPtr<IWebError> webError(AdoptCOM, WebError::createInstance(error));
m_view->didFail(webError.get());
}