Mercurial > hg > xemacs-beta
view tests/gtk/toolbar-test.el @ 1692:6265c9c31f53
[xemacs-hg @ 2003-09-18 05:13:54 by youngs]
2003-09-18 Steve Youngs <youngs@xemacs.org>
* configure: Re-generate after Martin's configure.in patch.
2003-09-13 Martin Buchholz <martin@xemacs.org>
* configure.in (OS_RELEASE): Add support for SunOS 5.10.
On current OSes produced by Sun, `uname -r' prints "5.9".
It seems likely that on future OSes, `uname -r' will print "5.10".
We need to accept multi-digit release numbers.
2003-09-13 Martin Buchholz <martin@xemacs.org>
* s/sol2.h: Use OS_RELEASE=os_release_major*100+os_release_minor
author | youngs |
---|---|
date | Thu, 18 Sep 2003 05:14:00 +0000 |
parents | 0784d089fdc9 |
children | db7068430402 |
line wrap: on
line source
(require 'gtk-widgets) (require 'gnome-widgets) (defvar gnomeified-toolbar ;; [CAPTION TOOLTIP ICON CALLBACK ENABLED] '(["Open" "Open a file" new toolbar-open t] ["Dired" "Edit a directory" open toolbar-dired t] ["Save" "Save buffer" save toolbar-save t] ["Print" "Print Buffer" print toolbar-print t] ["Cut" "Kill region" cut toolbar-cut t] ["Copy" "Copy region" copy toolbar-copy t] ["Paste" "Paste from clipboard" paste toolbar-paste t] ["Undo" "Undo edit" undo toolbar-undo t] ["Spell" "Check spelling" spellcheck toolbar-ispell t] ["Replace" "Search & Replace" srchrpl toolbar-replace t] ["Mail" "Read mail" mail toolbar-mail t] ; info ; compile ; debug ; news )) (setq x (gtk-toolbar-new 'horizontal 'both)) (gnome-app-set-toolbar (frame-property nil 'shell-widget) x) (mapc (lambda (descr) (gtk-toolbar-append-item x (aref descr 0) (aref descr 1) "" (gnome-stock-pixmap-widget-new x (aref descr 2)) `(lambda (&rest ignored) (,(aref descr 3))))) gnomeified-toolbar)