The Following 9 Users Say Thank You to marxian For This Useful Post: | ||
![]() |
2014-02-26
, 02:51
|
|
Posts: 2,448 |
Thanked: 9,523 times |
Joined on Aug 2010
@ Wigan, UK
|
#52
|
import org.hildon.components 1.0 import org.hildon.webkit 1.0 Window { id: mainWindow windowTitle: qsTr("Browser") tools: Action { text: qsTr("About") onTriggered: dialog.open() } WebView { id: webView anchors { left: parent.left right: parent.right top: parent.top bottom: toolbar.top } } ToolBar { id: toolbar anchors { left: parent.left right: parent.right bottom: parent.bottom } Action { icon: "general_backspace" enabled: webView.status != WebView.Null onTriggered: webView.back() } TextField { onReturnPressed: if (acceptableInput) webView.url = text } Action { icon: webView.status == WebView.Loading ? "general_stop" : "general_refresh" enabled: webView.status != WebView.Null onTriggered: webView.status == WebView.Loading ? webView.stop() : webView.reload() } } Dialog { id: dialog windowTitle: qsTr("About") content: Label { anchors.fill: parent wordWrap: true text: qsTr("Qt Components Hildon Browser is a demo of Qt Components Hildon Webkit.") } buttons: Button { text: qsTr("Done") onClicked: dialog.accept() } } }
![]() |
2014-02-26
, 03:07
|
Posts: 863 |
Thanked: 213 times |
Joined on Feb 2012
@ Goa
|
#53
|
![]() |
2014-02-26
, 11:39
|
Posts: 3,328 |
Thanked: 4,476 times |
Joined on May 2011
@ Poland
|
#54
|
import QtWebkit x.y
![]() |
2014-02-26
, 14:01
|
|
Posts: 2,448 |
Thanked: 9,523 times |
Joined on Aug 2010
@ Wigan, UK
|
#55
|
![]() |
2014-02-26
, 14:09
|
|
Posts: 2,448 |
Thanked: 9,523 times |
Joined on Aug 2010
@ Wigan, UK
|
#56
|
Why a separate module for webkit instead ofCode:import QtWebkit x.y
The Following User Says Thank You to marxian For This Useful Post: | ||
![]() |
2014-02-26
, 14:12
|
Posts: 3,328 |
Thanked: 4,476 times |
Joined on May 2011
@ Poland
|
#57
|
The standard QtWebKit module requires a QGraphicsScene to render the QML WebView element. You cannot use any of the visual elements due to lack of QGraphicsScene. I intend to also replace the non-visual elements (Timer etc) with my own in order to avoid importing the QtQuick module which is of limited use.
![]() |
2014-02-26
, 14:21
|
|
Posts: 2,448 |
Thanked: 9,523 times |
Joined on Aug 2010
@ Wigan, UK
|
#58
|
Maybe you could simply "reimport" the non-visual elements without creating the replacements?
The Following User Says Thank You to marxian For This Useful Post: | ||
![]() |
2014-02-26
, 17:57
|
Posts: 3,328 |
Thanked: 4,476 times |
Joined on May 2011
@ Poland
|
#59
|
I don't think that's possible. I expect they are exposed in the same way as any custom declarative plugin, which means that it's all or nothing. You can't import only specific elements.
Besides, some of them may not work correctly, and those that do will probably have some redundant code.
![]() |
2014-02-26
, 20:40
|
|
Posts: 2,448 |
Thanked: 9,523 times |
Joined on Aug 2010
@ Wigan, UK
|
#60
|
But I guess you'll reuse the Qt types, not create your own ones, just removing the UI stuff?
The Following 2 Users Say Thank You to marxian For This Useful Post: | ||
![]() |
Tags |
hildon, qml components |
|
The project includes an example gallery at /examples/gallery.
Some screenshots and example code:
'Men of high position are allowed, by a special act of grace, to accomodate their reasoning to the answer they need. Logic is only required in those of lesser rank.' - J K Galbraith
My website
GitHub