X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=tests%2Fgtk%2Ftoolbar-test.el;fp=tests%2Fgtk%2Ftoolbar-test.el;h=f006bd4c24abb781d5e79ddd7795aa421b0aa964;hb=8dd5c14289d68929b069fa5078f10ea3905f6fa5;hp=0000000000000000000000000000000000000000;hpb=f82a8b0d39ee6a8fc9a5373f29b4761184dcc399;p=chise%2Fxemacs-chise.git diff --git a/tests/gtk/toolbar-test.el b/tests/gtk/toolbar-test.el new file mode 100644 index 0000000..f006bd4 --- /dev/null +++ b/tests/gtk/toolbar-test.el @@ -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)