From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: New GNOME 2 icons Date: Mon, 28 Apr 2003 00:38:54 -0400 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <87y9246u49.fsf@nyaumo.jasonrumney.net> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: main.gmane.org 1051504981 11604 80.91.224.249 (28 Apr 2003 04:43:01 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 28 Apr 2003 04:43:01 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Mon Apr 28 06:42:59 2003 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19A0Tj-000311-00 for ; Mon, 28 Apr 2003 06:42:59 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 19A0bj-0007P5-00 for ; Mon, 28 Apr 2003 06:51:15 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19A0Ul-0006DM-00 for emacs-devel@quimby.gnus.org; Mon, 28 Apr 2003 00:44:03 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 19A0RR-0004ln-00 for emacs-devel@gnu.org; Mon, 28 Apr 2003 00:40:37 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 19A0Pz-0003f0-00 for emacs-devel@gnu.org; Mon, 28 Apr 2003 00:39:08 -0400 Original-Received: from fencepost.gnu.org ([199.232.76.164]) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19A0Pm-0003Uw-00 for emacs-devel@gnu.org; Mon, 28 Apr 2003 00:38:54 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.10) id 19A0Pm-00023k-00; Mon, 28 Apr 2003 00:38:54 -0400 Original-To: Jason Rumney In-reply-to: <87y9246u49.fsf@nyaumo.jasonrumney.net> (message from Jason Rumney on 21 Apr 2003 11:08:06 +0100) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Emacs development discussions. List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:13498 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:13498 Perhaps we should make it easier for the end user to replace the set of tool-bar icons, currently it appears to need the icons to be copied to a specific location and Emacs restarted. The tool-bar code finds the icons by calling find-image, which searches load-path and data-directory. If the tool-bar has not yet been set up, it ought to be sufficient to put a different dir into load-path. Once it is set up, one would need to change the file names in the :image data structures in the bindings in tool-bar-map. Perhaps we should have some more specific way of finding tool-bar image files rather than using find-image. It could be pretty simple. It should still look under the `lisp' directory. Is anyone interested in implementing this selection mechanism?