show icons in feedlist

This commit is contained in:
Tobias Fella 2020-03-30 21:58:30 +02:00
parent ce103c9fc3
commit 03d5b12423
1 changed files with 26 additions and 21 deletions

View File

@ -18,7 +18,7 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
import QtQuick 2.13 import QtQuick 2.14
import QtQuick.Controls 2.10 as Controls import QtQuick.Controls 2.10 as Controls
import QtQuick.Layouts 1.12 import QtQuick.Layouts 1.12
@ -68,7 +68,7 @@ Kirigami.ScrollablePage {
} }
header: header:
Kirigami.SwipeListItem { Kirigami.AbstractListItem {
Controls.Label { Controls.Label {
text: "All feeds" text: "All feeds"
} }
@ -81,27 +81,32 @@ Kirigami.ScrollablePage {
} }
} }
delegate: Kirigami.SwipeListItem { delegate: Kirigami.AbstractListItem {
Controls.Label { height: Kirigami.Units.gridUnit*2
text: model.feed.name
}
width: parent.width Item {
height: Kirigami.Units.gridUnit * 2 height: parent.height
actions: [
Kirigami.Action { Kirigami.Icon {
icon.name: "list-remove" id: icon
text: "Remove" source: model.feed.image
onTriggered: feedListModel.remove_feed(index) width: height
}, height: parent.height
Kirigami.Action { }
icon.name: "document-edit"
text: "Edit" Controls.Label {
onTriggered:; //TODO text: model.feed.name
height: parent.height
leftPadding: Kirigami.Units.gridUnit*0.5
anchors.left: icon.right
}
MouseArea {
x: 0
y: 0
width: parent.width
height: parent.height
onClicked: pageStack.push("qrc:/EntryListPage.qml", {feed: model.feed})
} }
]
onClicked: {
pageStack.push("qrc:/EntryListPage.qml", {feed: model.feed})
} }
} }
} }