QWebPage and non-GUI app
-
wrote on 18 Aug 2010, 20:46 last edited by
Hi to all!!
This is my first post in this forum. I'm learning Qt and I'm trying to manipulate some web pages from a console qt app.
I started this little program because in the QWebPage documentation there is the following statement, that maybe, I'm not getting correctly (Qt 4.6.3):
"This class is not part of the Qt GUI Framework Edition.
Inherits QObject.
This class was introduced in Qt 4.4."
I understood that this class can be used even in a "widget-less" application, am I wrong?
If this is not the case what does the "This class is not part of the Qt GUI Framework Edition" statement mean?
However, if I try to instantiate a QWebPage in a simple object's constructor the program crashes prompting this:
QWidget: Cannot create a QWidget when no GUI is being used.
Is there a way to use QtWebkit capabilities in a console app ??
-
wrote on 19 Aug 2010, 05:32 last edited by
If an object does not inherit QWidget, you can usually use it in a non-gui application. However, this one seems particularly geared towards providing something for a GUI (menu's and stuff). However, they state in the documentation that you should be able to use it in a widget-less environment.
[quote]QWebPage holds a main frame responsible for web content, settings, the history of navigated links and actions. This class can be used, together with QWebFrame, to provide functionality like QWebView in a widget-less environment.[/quote]
I've tested it and it seems to want to create a QPushButton.
-
wrote on 19 Aug 2010, 08:07 last edited by
That's what I thought too! So either the documentation is wrong or there is something wrong with the implementation....
But still I'll be very glad if someone knows how to use a QWebElement from a non-gui app.
-
wrote on 27 Aug 2010, 12:58 last edited by
I understood that this class can be used even in a “widget-less” application, am I wrong?
Widget less in the sense no QWidget. You can render on any windows surface (graphics view for example, like the new QGraphicsWebView).
This class is not part of the Qt GUI Framework Edition.
This just says QtWebKit is not a part of Qt GUI.
Is there a way to use QtWebkit capabilities in a console app ??
You do a console app with QtWebKit, but you still need the dependency on QtGui and a connection to the graphic server (if only in order to get the fonts...). There are plenty of such tool, look at http://code.google.com/p/wkhtmltopdf/ for example.
-
wrote on 27 Aug 2010, 13:02 last edited by
The "Qt GUI Framework Edition" is one of the editions of the comertial licenses.
-
wrote on 15 Sept 2010, 00:53 last edited by
Does anyone have any ideas which versions of Qt have this problem and which versions don't? I tried it on 4.6.3 and it has the problem and was wondering if anyone could recommend a version which doesn't (maybe the prerelease versions of 4.7?).
I need to compile the versions and don't really want to compile another version only to find that it also doesn't work (It takes me 4-5 hours to compile).
-
wrote on 15 Sept 2010, 07:56 last edited by
[quote author="QBall" date="1284512003"]Does anyone have any ideas which versions of Qt have this problem and which versions don't?[/quote]
Which problem? Have you read the replies of the original post?