how to show local web page?

1

How can I show a local web page? I already did something similar but showing a url, not a local web page (in this way I show the url page

m_messageWidget->messageView->setHomepageUrl(QUrl(QString::fromUtf8("urlutilizada").arg(QCoreApplication::applicationVersion())));

I need to be able to replace that with a local website

    
asked by Adolfo Comas 28.07.2017 в 00:29
source

1 answer

1

You need to provide the URL to the widget QWebView . This widget is designed to display HTML content:

QUrl url(QString::fromUtf8("urlutilizada").arg(QCoreApplication::applicationVersion());

QWebView *view = new QWebView(parent);
view->load(url);
view->show();
    
answered by 28.07.2017 / 08:59
source