/* * qtmaildir - a Qt6 mail client for notmuch-indexed Maildirs * Copyright (C) 2026 Danilo M. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #pragma once #include #include #include #include struct ThreadSummary { QString threadId; QString subject; QString authors; QDateTime date; int totalCount = 0; int matchedCount = 0; QStringList tags; /// Who the thread's messages were sent TO, summarised for one line. /// /// Empty unless the query asked for it, and that is a performance /// contract rather than a default: To is NOT served from notmuch's index, /// so filling this reads every message file. Measured at 8.7 ms per thread, /// which is 38 seconds over a 4411-thread inbox and 663 ms over a /// 601-thread sent view. Only a Sent query asks. /// /// Shown in the sender's place there, where `authors` is the user on every /// row and carries nothing. QString recipients; bool isUnread() const { return tags.contains(QStringLiteral("unread")); } bool isFlagged() const { return tags.contains(QStringLiteral("flagged")); } bool isDeleted() const { return tags.contains(QStringLiteral("deleted")); } bool isSpam() const { return tags.contains(QStringLiteral("spam")); } /// notmuch applies "attachment" itself while indexing, so this needs no /// MIME parsing and no extra worker query: the tag is already in tags. bool hasAttachment() const { return tags.contains(QStringLiteral("attachment")); } /// True while the thread is tagged for removal. notmuch deletes nothing /// itself: the tag marks the thread for whatever the user's sync script /// does next, so the row has to show it is on its way out. bool isDoomed() const { return isDeleted() || isSpam(); } }; struct MessageRef { QString messageId; QString filePath; QStringList tags; /// True when the message itself matched the user's query, as opposed to /// being pulled in only because a sibling in its thread matched. Drives /// whether it renders expanded or as a stub. bool matched = true; }; /// One message as a row in the thread list. /// /// Separate from MessageRef, which exists for RENDERING a thread and carries /// only what the message pane needs. A row has to be drawn without opening the /// message at all, so the display facts live here. struct MessageNode { QString messageId; QString threadId; ///< The thread this message belongs to. QString from; QString subject; QDateTime date; QStringList tags; QString filePath; /// Reply depth within the thread. 0 is the thread's first message, which /// occupies the ROOT row rather than a child row: the user's model is /// "N replies", so a thread of 7 shows 1 root and 6 descendants. int depth = 0; bool isUnread() const { return tags.contains(QStringLiteral("unread")); } bool isFlagged() const { return tags.contains(QStringLiteral("flagged")); } /// notmuch applies "attachment" while indexing, so this needs no MIME /// parsing, exactly as on ThreadSummary. bool hasAttachment() const { return tags.contains(QStringLiteral("attachment")); } }; /// What an action is about to touch, resolved from the selection. /// /// Exists because the thread list holds two kinds of row since item 20, so a /// keypress alone no longer says whether it hit one message or seven. Actions /// take one of these rather than a bare list of thread ids, and the status bar /// reports it: this project's answer to that ambiguity is to make the scope /// visible, not to add a confirmation dialog. See CLAUDE.md on why. struct ActionScope { QStringList threadIds; ///< Whole threads to act on. QStringList messageIds; ///< Individual messages to act on. /// Messages the action will touch in total, for the status bar. A whole /// thread contributes all of its messages, a message row contributes one. int messageCount = 0; /// True when any whole thread is in scope, which drives the /// "(whole thread)" suffix in the status bar. bool wholeThread = false; bool isEmpty() const { return threadIds.isEmpty() && messageIds.isEmpty(); } }; /// One tag mutation, kept so it can be inverted for undo. struct TagChange { QStringList messageIds; QStringList added; QStringList removed; QString description; ///< Shown in the undo action's text. TagChange inverted() const { return TagChange{ messageIds, removed, added, QStringLiteral("Undo %1").arg(description) }; } }; /// Database-level facts for the Maildir overview. /// /// Every field is -1 until answered, so a dialog opened against a database that /// cannot be read shows "unknown" rather than a confident zero. A zero is a /// claim, and "no mail at all" is exactly the wrong thing to tell someone whose /// index failed to open. struct DatabaseStats { int messages = -1; ///< Every message notmuch has indexed. int threads = -1; ///< Every thread. Differs from messages by reply depth. int tags = -1; ///< Distinct tag names in the database. }; Q_DECLARE_METATYPE(ThreadSummary) Q_DECLARE_METATYPE(MessageRef) Q_DECLARE_METATYPE(MessageNode) Q_DECLARE_METATYPE(TagChange) Q_DECLARE_METATYPE(DatabaseStats)