Commit e80719ed authored by Pierre Rossi's avatar Pierre Rossi
Browse files

Use QUrl::fromUserInput in the QtQuick view

Showing with 27 additions and 5 deletions
...@@ -4,6 +4,8 @@ TARGET = example ...@@ -4,6 +4,8 @@ TARGET = example
HEADERS = quickwindow.h widgetwindow.h HEADERS = quickwindow.h widgetwindow.h
SOURCES = quickwindow.cpp widgetwindow.cpp main.cpp SOURCES = quickwindow.cpp widgetwindow.cpp main.cpp
OTHER_FILES += quickwindow.qml
INCLUDEPATH += ../lib INCLUDEPATH += ../lib
LIBPATH = $$getOutDir()/$$getConfigDir()/lib LIBPATH = $$getOutDir()/$$getConfigDir()/lib
...@@ -13,3 +15,4 @@ QMAKE_RPATHDIR += $$LIBPATH ...@@ -13,3 +15,4 @@ QMAKE_RPATHDIR += $$LIBPATH
QT += widgets quick QT += widgets quick
MOC_DIR=$$PWD MOC_DIR=$$PWD
...@@ -41,8 +41,30 @@ ...@@ -41,8 +41,30 @@
#include "quickwindow.h" #include "quickwindow.h"
#include <QFileInfo>
#include <QObject>
#include <QQmlContext>
#include <QQmlEngine>
#include <QUrl>
class Utils : public QObject {
Q_OBJECT
public:
Utils(QObject* parent = 0) : QObject(parent) { }
Q_INVOKABLE static QUrl fromUserInput(const QString& userInput)
{
QFileInfo fileInfo(userInput);
if (fileInfo.exists())
return QUrl(fileInfo.absoluteFilePath());
return QUrl::fromUserInput(userInput);
}
};
#include "quickwindow.moc"
QuickWindow::QuickWindow() QuickWindow::QuickWindow()
{ {
engine()->rootContext()->setContextProperty("utils", new Utils(this));
setSource(QUrl("example/quickwindow.qml")); setSource(QUrl("example/quickwindow.qml"));
setResizeMode(QQuickView::SizeRootObjectToView); setResizeMode(QQuickView::SizeRootObjectToView);
setTitle("QQuick Example"); setTitle("QQuick Example");
......
...@@ -72,7 +72,7 @@ Item { ...@@ -72,7 +72,7 @@ Item {
selectByMouse: true selectByMouse: true
onAccepted: { onAccepted: {
webContentsView.url = text webContentsView.url = utils.fromUserInput(text)
} }
} }
} }
......
...@@ -81,10 +81,7 @@ QUrl QQuickWebContentsView::url() const ...@@ -81,10 +81,7 @@ QUrl QQuickWebContentsView::url() const
void QQuickWebContentsView::setUrl(const QUrl& url) void QQuickWebContentsView::setUrl(const QUrl& url)
{ {
QString urlString = url.toString(); GURL gurl(url.toString().toStdString());
GURL gurl(urlString.toStdString());
if (!gurl.has_scheme())
gurl = GURL(std::string("http://") + urlString.toStdString());
content::NavigationController::LoadURLParams params(gurl); content::NavigationController::LoadURLParams params(gurl);
params.transition_type = content::PageTransitionFromInt(content::PAGE_TRANSITION_TYPED | content::PAGE_TRANSITION_FROM_ADDRESS_BAR); params.transition_type = content::PageTransitionFromInt(content::PAGE_TRANSITION_TYPED | content::PAGE_TRANSITION_FROM_ADDRESS_BAR);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment