Implement basic UI with QML (MailListPage) and batching DbChangeProcessor (Step 3-4 of transition plan)

This commit is contained in:
Padrino
2026-05-17 01:09:01 +02:00
parent e3071a23e0
commit acec320222
20 changed files with 829 additions and 82 deletions
+24
View File
@@ -0,0 +1,24 @@
import QtQuick 2.15
ListModel {
ListElement {
folderName: "Inbox"
unreadCount: 5
}
ListElement {
folderName: "Sent"
unreadCount: 0
}
ListElement {
folderName: "Drafts"
unreadCount: 0
}
ListElement {
folderName: "Trash"
unreadCount: 0
}
ListElement {
folderName: "Spam"
unreadCount: 0
}
}