Implement OPML import in the desktop and touch ui

The core has already implemented parsing OPML files from
URLs and files, it only needs to be exposed by the UI which
this parch does.
This commit is contained in:
Jeena 2016-02-10 19:54:53 +01:00
parent 1386245b50
commit 8aab9adb4d
4 changed files with 46 additions and 0 deletions

View file

@ -7,6 +7,7 @@ import '../common'
import '../common/util.js' as Util
Dialog {
property alias labelText: urlEntyLabel.text
signal addUrl(string url)
width: 300
@ -18,6 +19,7 @@ Dialog {
anchors.fill: parent
Label {
id: urlEntyLabel
text: 'URL:'
}