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 6E4D6431FBD for ; Mon, 17 Dec 2012 13:55:11 -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 nopHsOVNPWCU for ; Mon, 17 Dec 2012 13:55:09 -0800 (PST) Received: from mail-wg0-f47.google.com (mail-wg0-f47.google.com [74.125.82.47]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 5C8C7431FBF for ; Mon, 17 Dec 2012 13:55:04 -0800 (PST) Received: by mail-wg0-f47.google.com with SMTP id dq11so2813118wgb.2 for ; Mon, 17 Dec 2012 13:55:03 -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:x-mailer:in-reply-to:references; bh=6Xcd3O6gONiAvzQULez5Hpig+jpas4M9nNDOblAr7dA=; b=TUUau4fcLA3PtNQqBgw6Z8dWByXdOYTkqNWDo0eM9KVIFboBdTUF6mBr0/e05H8Mr0 SmsAJokve/YPVA+h7AimE7bbBe/tQImA+d3PnokGNm7mzDxko0WA1hNuMpiBJp4lbwa7 QNvhFoPkpQ877xZFQ5kb1/fqnmQyc62qPyE9n37w3w0iocBE1m4DB9SXJVl2RzmgwEyo UqH2qIGZV7CS3qhpJZELaVvajwT/ItOnYebaiiLDUnGxgMT62A5cAI+Rwi2+dqXL2h5k k58tozrjHbMQc9yNsBvGumX2CG+z99DQEVdrsi6Y6+ljWNsDjQECQNuDwBByLmCf6ipG XQjg== Received: by 10.194.122.98 with SMTP id lr2mr19881705wjb.55.1355781303171; Mon, 17 Dec 2012 13:55:03 -0800 (PST) Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) by mx.google.com with ESMTPS id bd7sm14589810wib.8.2012.12.17.13.55.01 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 17 Dec 2012 13:55:02 -0800 (PST) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH v4 2/5] emacs: show: add overlays for each part Date: Mon, 17 Dec 2012 21:54:44 +0000 Message-Id: <1355781287-6010-3-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 In-Reply-To: <1355781287-6010-1-git-send-email-markwalters1009@gmail.com> References: <1355781287-6010-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: Mon, 17 Dec 2012 21:55:12 -0000 This makes notmuch-show-insert-bodypart add an overlay for any non-trivial part with a button header (currently the first text/plain part does not have a button). At this point the overlay is available to the button but there is no action using it yet. In addition the argument HIDE is passed down to notmuch-show-insert-part-overlays to request that the part be hidden by default but this is not acted on yet. --- emacs/notmuch-show.el | 62 +++++++++++++++++++++++++++++++++++++------------ 1 files changed, 47 insertions(+), 15 deletions(-) diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el index c39d2fb..7a81519 100644 --- a/emacs/notmuch-show.el +++ b/emacs/notmuch-show.el @@ -567,11 +567,10 @@ message at DEPTH in the current thread." ;; but it's not clear that this is the wrong thing to do - which ;; should be chosen if there are more than one that match? (mapc (lambda (inner-part) - (let ((inner-type (plist-get inner-part :content-type))) - (if (or notmuch-show-all-multipart/alternative-parts - (string= chosen-type inner-type)) - (notmuch-show-insert-bodypart msg inner-part depth) - (notmuch-show-insert-part-header (plist-get inner-part :id) inner-type inner-type nil " (not shown)")))) + (let* ((inner-type (plist-get inner-part :content-type)) + (hide (not (or notmuch-show-all-multipart/alternative-parts + (string= chosen-type inner-type))))) + (notmuch-show-insert-bodypart msg inner-part depth hide))) inner-parts) (when notmuch-show-indent-multipart @@ -839,17 +838,50 @@ message at DEPTH in the current thread." (setq handlers (cdr handlers)))) t) -(defun notmuch-show-insert-bodypart (msg part depth) - "Insert the body part PART at depth DEPTH in the current thread." +(defun notmuch-show-create-part-overlays (msg beg end hide) + "Add an overlay to the part between BEG and END" + (let* ((button (button-at beg)) + (part-beg (and button (1+ (button-end button))))) + + ;; If the part contains no text we do not make it toggleable. We + ;; also need to check that the button is a genuine part button not + ;; a notmuch-wash button. + (when (and button (/= part-beg end) (button-get button :base-label)) + (let ((base-label (button-get button :base-label)) + (overlay (make-overlay part-beg end)) + (message-invis-spec (plist-get msg :message-invis-spec)) + (invis-spec (make-symbol "notmuch-part-region"))) + + (overlay-put overlay 'invisible (list invis-spec message-invis-spec)) + (overlay-put overlay 'priority 10) + ;; Now we have to add invis-spec to every overlay this + ;; overlay contains, otherwise these inner overlays will + ;; override this one. + (dolist (inner (overlays-in part-beg end)) + (when (and (>= (overlay-start inner) part-beg) + (<= (overlay-end inner) end)) + (overlay-put inner 'invisible + (cons invis-spec (overlay-get inner 'invisible))))) + + (button-put button 'invisibility-spec invis-spec) + (button-put button 'overlay overlay))))) + +(defun notmuch-show-insert-bodypart (msg part depth &optional hide) + "Insert the body part PART at depth DEPTH in the current thread. + +If HIDE is non-nil then initially hide this part." (let ((content-type (downcase (plist-get part :content-type))) - (nth (plist-get part :id))) - (notmuch-show-insert-bodypart-internal msg part content-type nth depth content-type)) - ;; Some of the body part handlers leave point somewhere up in the - ;; part, so we make sure that we're down at the end. - (goto-char (point-max)) - ;; Ensure that the part ends with a carriage return. - (unless (bolp) - (insert "\n"))) + (nth (plist-get part :id)) + (beg (point))) + + (notmuch-show-insert-bodypart-internal msg part content-type nth depth content-type) + ;; Some of the body part handlers leave point somewhere up in the + ;; part, so we make sure that we're down at the end. + (goto-char (point-max)) + ;; Ensure that the part ends with a carriage return. + (unless (bolp) + (insert "\n")) + (notmuch-show-create-part-overlays msg beg (point) hide))) (defun notmuch-show-insert-body (msg body depth) "Insert the body BODY at depth DEPTH in the current thread." -- 1.7.9.1