-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathqultralightframe.cpp
534 lines (434 loc) · 12.8 KB
/
qultralightframe.cpp
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
/*
Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
Copyright (C) 2008 Holger Hans Peter Freyther
Copyright (C) 2009 Girish Ramakrishnan <[email protected]>
Copyright (C) 2021 Jerzy Głowacki
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 "qultralightframe.h"
#include "qultralightview.h"
#include <QFileInfo>
using namespace WebCore;
QT_BEGIN_NAMESPACE
extern Q_GUI_EXPORT int qt_defaultDpi();
QT_END_NAMESPACE
QUltralightFrame::QUltralightFrame(QUltralightPage *parentPage) : QObject(parentPage)
{
_page = parentPage;
_view = qobject_cast<QUltralightView*>(parentPage->_view);
}
QUltralightFrame::QUltralightFrame(QUltralightFrame* parent, QUltralightFrameData* frameData) : QObject(parent)
{
_page = parent->_page;
_view = qobject_cast<QUltralightView*>(parent->_page->_view);
}
QUltralightFrame::~QUltralightFrame()
{
}
void QUltralightFrame::addToJavaScriptWindowObject(const QString &name, QObject *object, ValueOwnership ownership)
{
// d->addToJavaScriptWindowObject(name, object, static_cast<QUltralightFrameAdapter::ValueOwnership>(ownership));
}
QString QUltralightFrame::toHtml() const
{
// return d->toHtml();
return QString();
}
QString QUltralightFrame::toPlainText() const
{
// return d->toPlainText();
return QString();
}
QString QUltralightFrame::title() const
{
return QUltralightView::ulStringToQString(_view->_overlay->view()->title());
}
QMultiMap<QString, QString> QUltralightFrame::metaData() const
{
// return d->metaData();
return QMultiMap<QString, QString>();
}
void QUltralightFrame::setUrl(const QUrl &url)
{
const QUrl absolute = ensureAbsoluteUrl(url);
load(absolute);
}
QUrl QUltralightFrame::url() const
{
return QUltralightView::ulStringToQUrl(_view->_overlay->view()->url());
}
QUrl QUltralightFrame::requestedUrl() const
{
return url();
}
QUrl QUltralightFrame::baseUrl() const
{
return url().resolved(QUrl("./"));
}
QIcon QUltralightFrame::icon() const
{
return QUltralightSettings::iconForUrl(url());
}
QString QUltralightFrame::frameName() const
{
// return d->uniqueName();
return QString();
}
QUltralightPage *QUltralightFrame::page() const
{
return _page;
}
void QUltralightFrame::load(const QUrl &url)
{
// The load() overload ensures that the url is absolute.
load(QNetworkRequest(url));
}
void QUltralightFrame::load(const QNetworkRequest &req, QNetworkAccessManager::Operation operation, const QByteArray &body)
{
_view->_overlay->view()->LoadURL(QUltralightView::QUrlToUlString(req.url()));
}
void QUltralightFrame::setHtml(const QString &html, const QUrl &baseUrl)
{
_view->_overlay->view()->LoadHTML(QUltralightView::QStringToUlString(html), QUltralightView::QUrlToUlString(baseUrl));
}
void QUltralightFrame::setContent(const QByteArray &data, const QString &mimeType, const QUrl &baseUrl)
{
// d->setContent(data, mimeType, baseUrl);
}
QUltralightFrame *QUltralightFrame::parentFrame() const
{
// return d->parentFrame();
return const_cast<QUltralightFrame*>(this);
}
QList<QUltralightFrame*> QUltralightFrame::childFrames() const
{
// QList<QObject*> objects = d->childFrames();
// QList<QUltralightFrame*> rc;
// rc.reserve(objects.size());
// Q_FOREACH(QObject* object, objects) {
// if (QUltralightFrame* frame = qobject_cast<QUltralightFrame*>(object))
// rc.append(frame);
// }
// return rc;
return QList<QUltralightFrame*>();
}
Qt::ScrollBarPolicy QUltralightFrame::scrollBarPolicy(Qt::Orientation orientation) const
{
// if (orientation == Qt::Horizontal)
// return d->horizontalScrollBarPolicy;
// return d->verticalScrollBarPolicy;
return Qt::ScrollBarPolicy();
}
void QUltralightFrame::setScrollBarPolicy(Qt::Orientation orientation, Qt::ScrollBarPolicy policy)
{
// d->setScrollBarPolicy(orientation, policy);
}
void QUltralightFrame::setScrollBarValue(Qt::Orientation orientation, int value)
{
// d->setScrollBarValue(orientation, value);
}
int QUltralightFrame::scrollBarValue(Qt::Orientation orientation) const
{
// return d->scrollBarValue(orientation);
return 0;
}
int QUltralightFrame::scrollBarMaximum(Qt::Orientation orientation) const
{
// return d->scrollBarMaximum(orientation);
return 0;
}
int QUltralightFrame::scrollBarMinimum(Qt::Orientation orientation) const
{
Q_UNUSED(orientation);
return 0;
}
QRect QUltralightFrame::scrollBarGeometry(Qt::Orientation orientation) const
{
// return d->scrollBarGeometry(orientation);
return QRect();
}
void QUltralightFrame::scroll(int dx, int dy)
{
// d->scrollBy(dx, dy);
}
QPoint QUltralightFrame::scrollPosition() const
{
// return d->scrollPosition();
return QPoint();
}
void QUltralightFrame::setScrollPosition(const QPoint &pos)
{
// QPoint current = scrollPosition();
// int dx = pos.x() - current.x();
// int dy = pos.y() - current.y();
// scroll(dx, dy);
}
void QUltralightFrame::scrollToAnchor(const QString& anchor)
{
// d->scrollToAnchor(anchor);
}
void QUltralightFrame::render(QPainter* painter, RenderLayers layer, const QRegion& clip)
{
// if (!clip.isEmpty())
// d->renderRelativeCoords(painter, layer, clip);
// else if (d->hasView())
// d->renderRelativeCoords(painter, layer, QRegion(d->frameRect()));
}
void QUltralightFrame::render(QPainter* painter, const QRegion& clip)
{
render(painter, AllLayers, clip);
}
void QUltralightFrame::setTextSizeMultiplier(qreal factor)
{
// d->setTextSizeMultiplier(factor);
}
qreal QUltralightFrame::textSizeMultiplier() const
{
return 1.0;
}
void QUltralightFrame::setZoomFactor(qreal factor)
{
//
}
qreal QUltralightFrame::zoomFactor() const
{
return 1.0;
}
bool QUltralightFrame::hasFocus() const
{
return _view->_overlay->view()->HasFocus();
}
void QUltralightFrame::setFocus()
{
_view->_overlay->view()->Focus();
}
QPoint QUltralightFrame::pos() const
{
return QPoint(_view->_overlay->x(), _view->_overlay->y());
}
QRect QUltralightFrame::geometry() const
{
return QRect(_view->_overlay->x(), _view->_overlay->y(), _view->_overlay->width(), _view->_overlay->height());
}
QSize QUltralightFrame::contentsSize() const
{
return QSize(_view->_overlay->view()->surface()->width(), _view->_overlay->view()->surface()->height());
}
//QWebElement QUltralightFrame::documentElement() const
//{
// return d->documentElement();
//}
//QWebElement QUltralightFrame::ownerElement() const
//{
// return d->ownerElement();
//}
//QWebElementCollection QUltralightFrame::findAllElements(const QString &selectorQuery) const
//{
// return documentElement().findAll(selectorQuery);
//}
//QWebElement QUltralightFrame::findFirstElement(const QString &selectorQuery) const
//{
// return documentElement().findFirst(selectorQuery);
//}
QUltralightHitTestResult QUltralightFrame::hitTestContent(const QPoint &pos) const
{
return QUltralightHitTestResult();
}
bool QUltralightFrame::event(QEvent *e)
{
return QObject::event(e);
}
#ifndef QT_NO_PRINTER
void QUltralightFrame::print(QPrinter *printer) const
{
//#if HAVE(QTPRINTSUPPORT)
// QPainter painter;
// if (!painter.begin(printer))
// return;
// const qreal zoomFactorX = (qreal)printer->logicalDpiX() / qt_defaultDpi();
// const qreal zoomFactorY = (qreal)printer->logicalDpiY() / qt_defaultDpi();
// QRect qprinterRect = printer->pageRect();
// QRect pageRect(0, 0, int(qprinterRect.width() / zoomFactorX), int(qprinterRect.height() / zoomFactorY));
// QtPrintContext printContext(&painter, pageRect, d);
// int docCopies;
// int pageCopies;
// if (printer->collateCopies()) {
// docCopies = 1;
// pageCopies = printer->numCopies();
// } else {
// docCopies = printer->numCopies();
// pageCopies = 1;
// }
// int fromPage = printer->fromPage();
// int toPage = printer->toPage();
// bool ascending = true;
// if (!fromPage && !toPage) {
// fromPage = 1;
// toPage = printContext.pageCount();
// }
// // paranoia check
// fromPage = qMax(1, fromPage);
// toPage = qMin(static_cast<int>(printContext.pageCount()), toPage);
// if (toPage < fromPage) {
// // if the user entered a page range outside the actual number
// // of printable pages, just return
// return;
// }
// if (printer->pageOrder() == QPrinter::LastPageFirst) {
// int tmp = fromPage;
// fromPage = toPage;
// toPage = tmp;
// ascending = false;
// }
// painter.scale(zoomFactorX, zoomFactorY);
// for (int i = 0; i < docCopies; ++i) {
// int page = fromPage;
// while (true) {
// for (int j = 0; j < pageCopies; ++j) {
// if (printer->printerState() == QPrinter::Aborted
// || printer->printerState() == QPrinter::Error) {
// return;
// }
// printContext.spoolPage(page - 1, pageRect.width());
// if (j < pageCopies - 1)
// printer->newPage();
// }
// if (page == toPage)
// break;
// if (ascending)
// ++page;
// else
// --page;
// printer->newPage();
// }
// if (i < docCopies - 1)
// printer->newPage();
// }
//#endif // HAVE(PRINTSUPPORT)
}
#endif // QT_NO_PRINTER
QVariant QUltralightFrame::evaluateJavaScript(const QString& scriptSource)
{
return QUltralightView::ulStringToQString(_view->_overlay->view()->EvaluateScript(QUltralightView::QStringToUlString(scriptSource)));
}
//QUltralightSecurityOrigin QUltralightFrame::securityOrigin() const
//{
// return d->securityOrigin();
//}
QUrl QUltralightFrame::ensureAbsoluteUrl(const QUrl& url)
{
if (!url.isValid() || !url.isRelative())
return url;
// This contains the URL with absolute path but without
// the query and the fragment part.
QUrl baseUrl = QUrl::fromLocalFile(QFileInfo(url.toLocalFile()).absoluteFilePath());
// The path is removed so the query and the fragment parts are there.
QString pathRemoved = url.toString(QUrl::RemovePath);
QUrl toResolve(pathRemoved);
return baseUrl.resolved(toResolve);
}
QUltralightHitTestResult::QUltralightHitTestResult()
{
}
QUltralightHitTestResult::QUltralightHitTestResult(const QUltralightHitTestResult &other)
{
}
QUltralightHitTestResult &QUltralightHitTestResult::operator=(const QUltralightHitTestResult &other)
{
if (this != &other) {
_pos = other.pos();
}
return *this;
}
QUltralightHitTestResult::~QUltralightHitTestResult()
{
}
bool QUltralightHitTestResult::isNull() const
{
return _pos.isNull();
}
QPoint QUltralightHitTestResult::pos() const
{
return _pos;
}
QRect QUltralightHitTestResult::boundingRect() const
{
return _boundingRect;
}
//QWebElement QUltralightHitTestResult::enclosingBlockElement() const
//{
// return _enclosingBlock;
//}
QString QUltralightHitTestResult::title() const
{
return QString();
}
QString QUltralightHitTestResult::linkText() const
{
return QString();
}
QUrl QUltralightHitTestResult::linkUrl() const
{
return QUrl();
}
#if QT_DEPRECATED_SINCE(5,5)
QUrl QUltralightHitTestResult::linkTitle() const
{
return QUrl();
}
#endif // QT_DEPRECATED_SINCE(5,5)
QString QUltralightHitTestResult::linkTitleString() const
{
return QString();
}
//QWebElement QUltralightHitTestResult::linkElement() const
//{
// return QWebElement();
//}
QUltralightFrame *QUltralightHitTestResult::linkTargetFrame() const
{
return 0;
}
QString QUltralightHitTestResult::alternateText() const
{
return QString();
}
QUrl QUltralightHitTestResult::imageUrl() const
{
return QUrl();
}
QUrl QUltralightHitTestResult::mediaUrl() const
{
return QUrl();
}
QPixmap QUltralightHitTestResult::pixmap() const
{
return QPixmap();
}
bool QUltralightHitTestResult::isContentEditable() const
{
return false;
}
bool QUltralightHitTestResult::isContentSelected() const
{
return false;
}
//QWebElement QUltralightHitTestResult::element() const
//{
// return QWebElement();
//}
QUltralightFrame *QUltralightHitTestResult::frame() const
{
return 0;
}