From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/41808 Path: main.gmane.org!not-for-mail From: Karl Kleinpaste Newsgroups: gmane.emacs.gnus.general Subject: Toolbar additions? Date: Wed, 09 Jan 2002 23:19:34 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035177146 8058 80.91.224.250 (21 Oct 2002 05:12:26 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 05:12:26 +0000 (UTC) Return-Path: Original-Received: (qmail 10385 invoked from network); 10 Jan 2002 04:21:53 -0000 Original-Received: from malifon.math.uh.edu (mail@129.7.128.13) by mastaler.com with SMTP; 10 Jan 2002 04:21:53 -0000 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 16OWgy-0006PD-00; Wed, 09 Jan 2002 22:19:52 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 09 Jan 2002 22:19:43 -0600 (CST) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id WAA19636 for ; Wed, 9 Jan 2002 22:19:33 -0600 (CST) Original-Received: (qmail 10358 invoked by alias); 10 Jan 2002 04:19:34 -0000 Original-Received: (qmail 10353 invoked from network); 10 Jan 2002 04:19:33 -0000 Original-Received: from mesquite.slip.cs.cmu.edu (HELO cinnamon.vanillaknot.com) (128.2.207.11) by gnus.org with SMTP; 10 Jan 2002 04:19:33 -0000 Original-Received: (from karl@localhost) by cinnamon.vanillaknot.com (8.11.6/8.11.6) id g0A4JYM07588; Wed, 9 Jan 2002 23:19:34 -0500 Original-To: ding@gnus.org X-Face: ?=p^Gj2JkX~UU_@W}[q/'Dxn19x-zfIQ](y<&ky/?1-&Nz&,!W}R.Gp+"LeGojoR =RF>?!XVs{a:`Yt(gqM<#$Zy(C@]'dR4Hy4S1.I(n3:2"R:=Uy!)K9>U!gNTyH{p +_w#F[gt).$Vyvo5=9LF^PeQ(@H#}QLAbfyYxX/8t:TDR5nA\|RmJO"EwjL8tWyvM Original-Lines: 17 User-Agent: Gnus/5.090005 (Oort Gnus v0.05) XEmacs/21.4 (Common Lisp, i686-pc-linux) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:41808 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:41808 --=-=-= I'd like to see this happen to the toolbars: 1. Put a "save" button in the *Group* toolbar (borrowing the usual floppy-disc-looking icon) 2. Put a "print" button in the *Summary* toolbars (borrowing the main toolbar's printer icon) 3. Put a "delete" button in the mail *Summary* toolbar (borrowing the "cancel" icon from the news *Summary* toolbar) The first and last of these are no-brainers. But the "print" thing, which I began to want quite a lot a couple months back, required that I pick up an icon to copy into Gnus' toolbar glyph directory. Is there a better way to do such a thing, so that if foo.xbm is not found in Gnus' toolbar area, it will be found in the mail toolbar area? --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=xmas.diff --- lisp/gnus-xmas.el.orig Wed Jan 9 23:07:58 2002 +++ lisp/gnus-xmas.el Sun Jan 6 21:45:56 2002 @@ -555,6 +555,8 @@ [gnus-group-unsubscribe gnus-group-unsubscribe t "Unsubscribe group"] [gnus-group-subscribe gnus-group-subscribe t "Subscribe group"] [gnus-group-kill-group gnus-group-kill-group t "Kill group"] + ; icon below borrowed from summary mode. + [gnus-summary-mail-save gnus-group-save-newsrc t "Save .newsrc files"] [gnus-group-exit gnus-group-exit t "Exit Gnus"]) "The group buffer toolbar.") @@ -582,6 +584,9 @@ gnus-summary-save-article-file t "Save article in file"] [gnus-summary-save-article gnus-summary-save-article t "Save article"] + ; icon below borrowed from main toolbar. + [printer-cap + gnus-summary-print-article t "Print article"] [gnus-uu-post-news gnus-uu-post-news t "Post a uuencoded article"] [gnus-summary-cancel-article @@ -612,6 +617,12 @@ gnus-summary-save-article-file t "Save article in file"] [gnus-summary-save-article gnus-summary-save-article t "Save article"] + ; icon below borrowed from main toolbar. + [printer-cap + gnus-summary-print-article t "Print article"] + ; icon below borrowed from regular summary toolbar. + [gnus-summary-cancel-article + gnus-summary-delete-article t "Delete message"] [gnus-summary-catchup gnus-summary-catchup t "Catchup"] [gnus-summary-catchup-and-exit --=-=-=--