Mercurial > hg > xemacs-beta
diff tests/gtk/toolbar-test.el @ 462:0784d089fdc9 r21-2-46
Import from CVS: tag r21-2-46
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:44:37 +0200 |
parents | |
children | db7068430402 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/gtk/toolbar-test.el Mon Aug 13 11:44:37 2007 +0200 @@ -0,0 +1,34 @@ +(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)