#include <QApplication>
#include <QUrl>
#include <QWebView>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QUrl url("http://www.wolframalpha.com/");
QWebView* webView = new QWebView();
webView->load(url);
webView->show();
return a.exec();
}
When this program runs, widget with rendering area rises.
It's just only rendering area. i.e.
No comments:
Post a Comment