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 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
|
/*
* Copyright (C) 2011 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 program 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 program; 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 "QtDialogRunner.h"
#include "WKRetainPtr.h"
#include "WKStringQt.h"
#include "qtwebsecurityorigin_p.h"
namespace WebKit {
// All dialogs need a way to support the state of the
// dialog being done/finished/dismissed. This is handled
// in the dialog base context.
class DialogContextBase : public QObject {
Q_OBJECT
public:
DialogContextBase()
: QObject()
, m_dismissed(false)
{
}
public Q_SLOTS:
// Allows clients to call dismiss() directly, while also
// being able to hook up signals to automatically also
// dismiss the dialog since it's a slot.
void dismiss()
{
m_dismissed = true;
emit dismissed();
}
Q_SIGNALS:
void dismissed();
private:
// We store the dismissed state so that run() can check to see if a
// dialog has already been dismissed before spinning an event loop.
bool m_dismissed;
friend void QtDialogRunner::run();
};
class DialogContextObject : public DialogContextBase {
Q_OBJECT
Q_PROPERTY(QString message READ message CONSTANT)
Q_PROPERTY(QString defaultValue READ defaultValue CONSTANT)
public:
DialogContextObject(const QString& message, const QString& defaultValue = QString())
: DialogContextBase()
, m_message(message)
, m_defaultValue(defaultValue)
{
connect(this, SIGNAL(accepted(QString)), SLOT(dismiss()));
connect(this, SIGNAL(rejected()), SLOT(dismiss()));
}
QString message() const { return m_message; }
QString defaultValue() const { return m_defaultValue; }
public Q_SLOTS:
void accept(const QString& result = QString()) { emit accepted(result); }
void reject() { emit rejected(); }
Q_SIGNALS:
void accepted(const QString& result);
void rejected();
private:
QString m_message;
QString m_defaultValue;
};
class BaseAuthenticationContextObject : public DialogContextBase {
Q_OBJECT
Q_PROPERTY(QString hostname READ hostname CONSTANT)
Q_PROPERTY(QString prefilledUsername READ prefilledUsername CONSTANT)
public:
BaseAuthenticationContextObject(const QString& hostname, const QString& prefilledUsername)
: DialogContextBase()
, m_hostname(hostname)
, m_prefilledUsername(prefilledUsername)
{
connect(this, SIGNAL(accepted(QString, QString)), SLOT(dismiss()));
connect(this, SIGNAL(rejected()), SLOT(dismiss()));
}
QString hostname() const { return m_hostname; }
QString prefilledUsername() const { return m_prefilledUsername; }
public Q_SLOTS:
void accept(const QString& username, const QString& password) { emit accepted(username, password); }
void reject() { emit rejected(); }
Q_SIGNALS:
void accepted(const QString& username, const QString& password);
void rejected();
private:
QString m_hostname;
QString m_prefilledUsername;
};
class HttpAuthenticationDialogContextObject : public BaseAuthenticationContextObject {
Q_OBJECT
Q_PROPERTY(QString realm READ realm CONSTANT)
public:
HttpAuthenticationDialogContextObject(const QString& hostname, const QString& realm, const QString& prefilledUsername)
: BaseAuthenticationContextObject(hostname, prefilledUsername)
, m_realm(realm)
{
}
QString realm() const { return m_realm; }
private:
QString m_realm;
};
class ProxyAuthenticationDialogContextObject : public BaseAuthenticationContextObject {
Q_OBJECT
Q_PROPERTY(quint16 port READ port CONSTANT)
public:
ProxyAuthenticationDialogContextObject(const QString& hostname, quint16 port, const QString& prefilledUsername)
: BaseAuthenticationContextObject(hostname, prefilledUsername)
, m_port(port)
{
}
quint16 port() const { return m_port; }
private:
quint16 m_port;
};
class CertificateVerificationDialogContextObject : public DialogContextBase {
Q_OBJECT
Q_PROPERTY(QString hostname READ hostname CONSTANT)
public:
CertificateVerificationDialogContextObject(const QString& hostname)
: DialogContextBase()
, m_hostname(hostname)
{
connect(this, SIGNAL(accepted()), SLOT(dismiss()));
connect(this, SIGNAL(rejected()), SLOT(dismiss()));
}
QString hostname() const { return m_hostname; }
public Q_SLOTS:
void accept() { emit accepted(); }
void reject() { emit rejected(); }
Q_SIGNALS:
void accepted();
void rejected();
private:
QString m_hostname;
};
class FilePickerContextObject : public DialogContextBase {
Q_OBJECT
Q_PROPERTY(QStringList fileList READ fileList CONSTANT)
Q_PROPERTY(bool allowMultipleFiles READ allowMultipleFiles CONSTANT)
public:
FilePickerContextObject(const QStringList& selectedFiles, bool allowMultiple)
: DialogContextBase()
, m_allowMultiple(allowMultiple)
, m_fileList(selectedFiles)
{
connect(this, SIGNAL(fileSelected(QStringList)), SLOT(dismiss()));
connect(this, SIGNAL(rejected()), SLOT(dismiss()));
}
QStringList fileList() const { return m_fileList; }
bool allowMultipleFiles() const { return m_allowMultiple;}
public Q_SLOTS:
void reject() { emit rejected();}
void accept(const QVariant& path)
{
QStringList filesPath = path.toStringList();
if (filesPath.isEmpty()) {
emit rejected();
return;
}
// For single file upload, send only the first element if there are more than one file paths
if (!m_allowMultiple && filesPath.count() > 1)
filesPath = QStringList(filesPath.at(0));
emit fileSelected(filesPath);
}
Q_SIGNALS:
void rejected();
void fileSelected(const QStringList&);
private:
bool m_allowMultiple;
QStringList m_fileList;
};
class DatabaseQuotaDialogContextObject : public DialogContextBase {
Q_OBJECT
Q_PROPERTY(QString databaseName READ databaseName CONSTANT)
Q_PROPERTY(QString displayName READ displayName CONSTANT)
Q_PROPERTY(quint64 currentQuota READ currentQuota CONSTANT)
Q_PROPERTY(quint64 currentOriginUsage READ currentOriginUsage CONSTANT)
Q_PROPERTY(quint64 currentDatabaseUsage READ currentDatabaseUsage CONSTANT)
Q_PROPERTY(quint64 expectedUsage READ expectedUsage CONSTANT)
Q_PROPERTY(QtWebSecurityOrigin* origin READ securityOrigin CONSTANT)
public:
DatabaseQuotaDialogContextObject(const QString& databaseName, const QString& displayName, WKSecurityOriginRef securityOrigin, quint64 currentQuota, quint64 currentOriginUsage, quint64 currentDatabaseUsage, quint64 expectedUsage)
: DialogContextBase()
, m_databaseName(databaseName)
, m_displayName(displayName)
, m_currentQuota(currentQuota)
, m_currentOriginUsage(currentOriginUsage)
, m_currentDatabaseUsage(currentDatabaseUsage)
, m_expectedUsage(expectedUsage)
{
WKRetainPtr<WKStringRef> scheme = adoptWK(WKSecurityOriginCopyProtocol(securityOrigin));
WKRetainPtr<WKStringRef> host = adoptWK(WKSecurityOriginCopyHost(securityOrigin));
m_securityOrigin.setScheme(WKStringCopyQString(scheme.get()));
m_securityOrigin.setHost(WKStringCopyQString(host.get()));
m_securityOrigin.setPort(static_cast<int>(WKSecurityOriginGetPort(securityOrigin)));
connect(this, SIGNAL(accepted(quint64)), SLOT(dismiss()));
connect(this, SIGNAL(rejected()), SLOT(dismiss()));
}
QString databaseName() const { return m_databaseName; }
QString displayName() const { return m_displayName; }
quint64 currentQuota() const { return m_currentQuota; }
quint64 currentOriginUsage() const { return m_currentOriginUsage; }
quint64 currentDatabaseUsage() const { return m_currentDatabaseUsage; }
quint64 expectedUsage() const { return m_expectedUsage; }
QtWebSecurityOrigin* securityOrigin() { return &m_securityOrigin; }
public Q_SLOTS:
void accept(quint64 size) { emit accepted(size); }
void reject() { emit rejected(); }
Q_SIGNALS:
void accepted(quint64 size);
void rejected();
private:
QString m_databaseName;
QString m_displayName;
quint64 m_currentQuota;
quint64 m_currentOriginUsage;
quint64 m_currentDatabaseUsage;
quint64 m_expectedUsage;
QtWebSecurityOrigin m_securityOrigin;
};
} // namespace WebKit
|