новые иконки в OpenBoard
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OpenBoard/src/web/UBWebKitUtils.cpp

77 lines
2.0 KiB

/*
* UBWebKitUtils.cpp
*
* Created on: 24 f<EFBFBD>vr. 2009
* Author: Luc
*/
#include "UBWebKitUtils.h"
UBWebKitUtils::UBWebKitUtils()
{
// NOOP
}
UBWebKitUtils::~UBWebKitUtils()
{
// NOOP
}
QList<UBWebKitUtils::HtmlObject> UBWebKitUtils::objectsInFrame(QWebFrame* frame)
{
QList<UBWebKitUtils::HtmlObject> htmlObjects;
if (frame)
{
QVariant res = frame->evaluateJavaScript("window.document.getElementsByTagName('embed').length");
bool ok;
int count = res.toInt(&ok);
if (ok)
{
for (int i = 0; i < count; i++)
{
QString queryWidth = QString("window.document.getElementsByTagName('embed')[%1].width").arg(i);
QString queryHeigth = QString("window.document.getElementsByTagName('embed')[%1].height").arg(i);
QString querySource = QString("window.document.getElementsByTagName('embed')[%1].src").arg(i);
res = frame->evaluateJavaScript(queryWidth);
int width = res.toInt(&ok);
if (width == 0 || !ok)
{
qDebug() << "Width is not defined in pixel. 640 will be used";
width = 640;
}
res = frame->evaluateJavaScript(queryHeigth);
int heigth = res.toInt(&ok);
if (heigth == 0 || !ok)
{
qDebug() << "Height is not defined in pixel. 480 will be used";
heigth = 480;
}
res = frame->evaluateJavaScript(querySource);
QUrl baseUrl = frame->url();
QUrl relativeUrl = QUrl(res.toString());
QString source = baseUrl.resolved(relativeUrl).toString();
if (source.trimmed().length() == 0)
continue;
htmlObjects << UBWebKitUtils::HtmlObject(source, width, heigth);
}
}
}
return htmlObjects;
}