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
/*
* UBWebKitUtils.h
*
* Created on: 24 feb. 2009
* Author: Luc
*/
#ifndef UBWEBKITUTILS_H_
#define UBWEBKITUTILS_H_
#include <QtWebKit>
class UBWebKitUtils
{
public:
UBWebKitUtils();
virtual ~UBWebKitUtils();
class HtmlObject
{
public:
HtmlObject(const QString& pSource, int pWidth, int pHeight)
: source(pSource)
, width(pWidth)
, height(pHeight)
{
// NOOP
}
QString source;
int width;
int height;
};
static QList<UBWebKitUtils::HtmlObject> objectsInFrame(QWebFrame* frame);
};
#endif /* UBWEBKITUTILS_H_ */