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
|
/*
* Copyright (C) 2012 Intel Corporation. All rights reserved.
* Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
*
* 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.
*
*/
#include "config.h"
#include "WebColorPickerQt.h"
#include "qquickwebview_p.h"
#include "qquickwebview_p_p.h"
#include <QtQml/QQmlContext>
#include <QtQml/QQmlEngine>
using namespace WebCore;
namespace WebKit {
class ColorChooserContextObject : public QObject {
Q_OBJECT
Q_PROPERTY(QColor currentColor READ currentColor CONSTANT FINAL)
Q_PROPERTY(QRectF elementRect READ elementRect CONSTANT FINAL)
public:
ColorChooserContextObject(const QColor& color, const QRectF& rect)
: m_currentColor(color)
, m_rect(rect)
{
}
QColor currentColor() const { return m_currentColor; }
QRectF elementRect() const { return m_rect; }
Q_INVOKABLE void accept(const QColor& color) { emit accepted(color); }
Q_INVOKABLE void reject() { emit rejected(); }
Q_SIGNALS:
void accepted(const QColor&);
void rejected();
private:
QColor m_currentColor;
QRectF m_rect;
};
WebColorPickerQt::WebColorPickerQt(WebColorPicker::Client* client, QQuickWebView* webView, const Color& initialColor, const IntRect& elementRect)
: WebColorPicker(client)
, m_webView(webView)
{
const QRectF mappedRect= m_webView->mapRectFromWebContent(QRect(elementRect));
ColorChooserContextObject* contextObject = new ColorChooserContextObject(initialColor, mappedRect);
createItem(contextObject);
}
WebColorPickerQt::~WebColorPickerQt()
{
}
void WebColorPickerQt::createItem(QObject* contextObject)
{
QQmlComponent* component = m_webView->experimental()->colorChooser();
if (!component) {
delete contextObject;
return;
}
createContext(component, contextObject);
QObject* object = component->beginCreate(m_context.get());
if (!object) {
m_context.clear();
return;
}
m_colorChooser = adoptPtr(qobject_cast<QQuickItem*>(object));
if (!m_colorChooser) {
m_context.clear();
return;
}
// Needs to be enqueue because it might trigger deletion.
connect(contextObject, SIGNAL(accepted(QColor)), SLOT(notifyColorSelected(QColor)), Qt::QueuedConnection);
connect(contextObject, SIGNAL(rejected()), SLOT(endChooser()), Qt::QueuedConnection);
QQuickWebViewPrivate::get(m_webView)->addAttachedPropertyTo(m_colorChooser.get());
m_colorChooser->setParentItem(m_webView);
component->completeCreate();
}
void WebColorPickerQt::createContext(QQmlComponent* component, QObject* contextObject)
{
QQmlContext* baseContext = component->creationContext();
if (!baseContext)
baseContext = QQmlEngine::contextForObject(m_webView);
m_context = adoptPtr(new QQmlContext(baseContext));
contextObject->setParent(m_context.get());
m_context->setContextProperty(QLatin1String("model"), contextObject);
m_context->setContextObject(contextObject);
}
void WebColorPickerQt::setSelectedColor(const Color&)
{
// This is suppose to be used to react to DOM changes. When
// a user script changes the input value, the method gives the
// option to update the color chooser UI if we were showing the
// current value. Since we don't, it is irrelevant right now.
// And yes, the name sounds misleading but comes from WebCore.
}
void WebColorPickerQt::notifyColorSelected(const QColor& color)
{
if (!m_client)
return;
// Alpha is always ignored by the color input
Color coreColor = makeRGB(color.red(), color.green(), color.blue());
m_client->didChooseColor(coreColor);
endChooser();
}
void WebColorPickerQt::endChooser()
{
m_colorChooser.clear();
m_context.clear();
if (!m_client)
return;
m_client->didEndColorChooser();
}
} // namespace WebKit
#include "WebColorPickerQt.moc"
#include "moc_WebColorPickerQt.cpp"
|