From 55615ce7c00e580b1a2cdc1ed8ad8eb92f9fbb8b Mon Sep 17 00:00:00 2001 From: Mark Walters Date: Thu, 5 Dec 2013 20:04:31 +0000 Subject: [PATCH] [PATCH WIP v3 3/3] emacs: show: make `seen' mean user viewed whole message --- 36/21ff478c79abfd8d44f1988f73a271c2e8d414 | 172 ++++++++++++++++++++++ 1 file changed, 172 insertions(+) create mode 100644 36/21ff478c79abfd8d44f1988f73a271c2e8d414 diff --git a/36/21ff478c79abfd8d44f1988f73a271c2e8d414 b/36/21ff478c79abfd8d44f1988f73a271c2e8d414 new file mode 100644 index 000000000..d4ac2a72c --- /dev/null +++ b/36/21ff478c79abfd8d44f1988f73a271c2e8d414 @@ -0,0 +1,172 @@ +Return-Path: +X-Original-To: notmuch@notmuchmail.org +Delivered-To: notmuch@notmuchmail.org +Received: from localhost (localhost [127.0.0.1]) + by olra.theworths.org (Postfix) with ESMTP id 2710A431FD4 + for ; Thu, 5 Dec 2013 12:05:13 -0800 (PST) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: 0.201 +X-Spam-Level: +X-Spam-Status: No, score=0.201 tagged_above=-999 required=5 + tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, + FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001, + RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled +Received: from olra.theworths.org ([127.0.0.1]) + by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id IlFzJtoFwl1W for ; + Thu, 5 Dec 2013 12:05:07 -0800 (PST) +Received: from mail-we0-f176.google.com (mail-we0-f176.google.com + [74.125.82.176]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 59274431E82 + for ; Thu, 5 Dec 2013 12:04:54 -0800 (PST) +Received: by mail-we0-f176.google.com with SMTP id w62so11260876wes.7 + for ; Thu, 05 Dec 2013 12:04:53 -0800 (PST) +DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; + h=from:to:cc:subject:date:message-id:in-reply-to:references; + bh=38kBFyaVG/U8ecXRO6b/rSrEm6hrIhK+vDh1pkNIWBg=; + b=OVcGr4nF6Au1KjZu6GIWa02WnFYJcUfG79EXoL6I52COfBYXXgCdelfpEdiBodlxi0 + fGBBwz4RQxjq0b2xv6ea9LnG5BRpc/bHPJ4mXanan3Zt3a1cuD5qP5I34LyB9BmYcAfI + KqfO8mMRy3Ue8eYu9shvDx4vIV2UGnq7mp4L5XA06ze313f/JfbLDUZWzSELamm/FULL + /N5s0p9r09tJpVmfgzpMMfJ5yMgJi/yalRKAxdWyhDaZ38DZKj5OVOUhNiSBPPwR/g/W + 2SSGzXbilzJ5ZDExqbOjvtQrCxL+WBpZorxqu1KayGFed4CWr/c9DpPnmZRjTfhs+2CN + eLrg== +X-Received: by 10.180.10.74 with SMTP id g10mr430150wib.11.1386273893044; + Thu, 05 Dec 2013 12:04:53 -0800 (PST) +Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) + by mx.google.com with ESMTPSA id g16sm9420608wiw.6.2013.12.05.12.04.51 + for + (version=TLSv1.2 cipher=RC4-SHA bits=128/128); + Thu, 05 Dec 2013 12:04:52 -0800 (PST) +From: Mark Walters +To: notmuch@notmuchmail.org +Subject: [PATCH WIP v3 3/3] emacs: show: make `seen' mean user viewed whole + message +Date: Thu, 5 Dec 2013 20:04:31 +0000 +Message-Id: <1386273871-24214-4-git-send-email-markwalters1009@gmail.com> +X-Mailer: git-send-email 1.7.9.1 +In-Reply-To: <1386273871-24214-1-git-send-email-markwalters1009@gmail.com> +References: <1386273871-24214-1-git-send-email-markwalters1009@gmail.com> +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.13 +Precedence: list +List-Id: "Use and development of the notmuch mail system." + +List-Unsubscribe: , + +List-Archive: +List-Post: +List-Help: +List-Subscribe: , + +X-List-Received-Date: Thu, 05 Dec 2013 20:05:13 -0000 + +This changes `seen' to mean that the user viewed `enough' of the whole +message: more precisely, a message is deemed seen if the top of the +message and either the bottom of the message or a point at least some +customisable number of lines into the message have each been visible +in the buffer at some point. + +This is placed into the post-command-hook infrastructure introudced in +the previous patch. +--- + emacs/notmuch-show.el | 74 +++++++++++++++++++++++++++++++++++++++++++++++- + 1 files changed, 72 insertions(+), 2 deletions(-) + +diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el +index 7d0ac5d..6451314 100644 +--- a/emacs/notmuch-show.el ++++ b/emacs/notmuch-show.el +@@ -211,6 +211,20 @@ For example, if you wanted to remove an \"unread\" tag and add a + :type '(repeat string) + :group 'notmuch-show) + ++(defcustom notmuch-show-seen-lines-needed 0.75 ++ "Control which messages get marked seen. ++ ++A message is marked seen if both the top of the message and a ++point far \"enough\" down in the message have each been visible ++in the buffer at some point. This parameter controls the ++definition of enough. Seeing the bottom of message is always ++deemed enough, but additionally...it an integer n then at least n ++lines of message must be visible in the window. If it is a float ++x then at least that proportion of the window must contain the ++message." ++ :type 'number ++ :group 'notmuch-show) ++ + (defface notmuch-show-deleted-tag-face + '((t :strike-through "red" :inherit 'notmuch-tag-face)) + "Face for tags that have been removed" +@@ -1551,9 +1565,65 @@ marked as unread, i.e. the tag changes in + (apply 'notmuch-show-tag-message + (notmuch-tag-change-list notmuch-show-mark-read-tags unread)))) + ++(defun notmuch-show-update-seen (top-or-bottom) ++ "Update seen status of current message ++ ++Mark that we have seen the TOP-OR-BOTTOM of current message." ++ (let* ((current (notmuch-show-get-prop :seen-local)) ++ new) ++ (unless (eq current 'both) ++ (if (eq top-or-bottom 'top) ++ (if (eq current 'bottom) ++ (setq new 'both) ++ (setq new 'top)) ++ (if (eq current 'top) ++ (setq new 'both) ++ (setq new 'bottom))) ++ (unless (eq current new) ++ (notmuch-show-set-prop :seen-local new)) ++ (when (eq new 'both) ++ (notmuch-show-mark-read))))) ++ ++(defun notmuch-show-do-message-seen (start end) ++ "Update seen status for the current message. ++ ++A message is seen if both the top and enough of the rest of the ++message have been visible in the buffer. Enough means either the ++bottom of the message or a point in the message more than ++LINES-NEEDED lines into the message. LINES-NEEDED is ++`notmuch-show-seen-lines-needed` if that is an integer and that ++times the current window height if it is a float." ++ (let* ((lines-needed (if (integerp notmuch-show-seen-lines-needed) ++ notmuch-show-seen-lines-needed ++ (truncate (* notmuch-show-seen-lines-needed (window-body-height))))) ++ (top (notmuch-show-message-top)) ++ (bottom (notmuch-show-message-bottom))) ++ (when (notmuch-show-message-visible-p) ++ (when (>= top start) ++ (notmuch-show-update-seen 'top)) ++ (when (or (<= bottom end) ++ (> (count-screen-lines top end) lines-needed)) ++ (notmuch-show-update-seen 'bottom))))) ++ + (defun notmuch-show-do-seen (start end) +- "Update seen status for all messages between start and end." +- ) ++ "Update seen status for all messages between start and end. ++ ++A message is seen if both the top and enough of the rest of the ++message have been visible in the buffer. See ++`notmuch-show-do-message-seen` for the definition of enough. Seen ++is a buffer local property. The unread status is removed from all ++seen messages when the user quits the show buffer." ++ (save-excursion ++ (goto-char start) ++ (while (and (or (notmuch-show-do-message-seen start end) t) ++ (< (notmuch-show-message-bottom) end) ++ (notmuch-show-goto-message-next))) ++ ++ ;; This is a work around because emacs gives weird answers for ++ ;; window-end if the buffer ends with invisible text. ++ (when (and (pos-visible-in-window-p (point-max)) ++ (notmuch-show-message-visible-p)) ++ (notmuch-show-update-seen 'bottom)))) + + (defun notmuch-show-command-hook () + (when (eq major-mode 'notmuch-show-mode) +-- +1.7.9.1 + -- 2.26.2