annotate tests/gtk/toolbar-test.el @ 578:190b164ddcac

[xemacs-hg @ 2001-05-25 11:26:50 by ben] device-msw.c, eldap.c, emodules.c, hpplay.c, process-unix.c, sound.h, tooltalk.c, win32.c: Revert Martin's attempted compile-warnings fix. It does fix the warnings, but not the right way. We are trying to eliminate the raw use of `char' and `unsigned char' absolutely everywhere. There is never an occasion to reintroduce these. buffer.h: Instead, we fix these macros so they don't care about the type of their lvalues. We already do this for the non-C-string equivalents of these, and it's correct because it should be OK to pass in an SBufbyte *, for example. In any case, we do not need any type-correctness checking here -- errors will be caught for sure as soon as we remove the -Wno-sign-compare switch. mule-charset.c: Use invalid_argument, not generic signal_error (Qerror, ). alloc.c, chartab.c, console-gtk.c, console-msw.c, console-stream.c, console-stream.h, console-tty.c, console-tty.h, console-x.c, console.c, console.h, device-x.c, device.c, elhash.c, eval.c, faces.c, faces.h, fns.c, glyphs.c, glyphs.h, gui.c, gui.h, lisp.h, lread.c, nt.c, objects-gtk.c, objects-gtk.h, objects-msw.c, objects-tty.c, objects-x.c, objects.c, process-unix.c, rangetab.c, search.c, specifier.c, toolbar.c, window.c, window.h: Rename Error_behavior to Error_Behavior, to be consistent with general naming practices (Lisp_Object, Char_Binary, etc.).
author ben
date Fri, 25 May 2001 11:27:01 +0000
parents 0784d089fdc9
children db7068430402
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
1 (require 'gtk-widgets)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2 (require 'gnome-widgets)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
3
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
4 (defvar gnomeified-toolbar
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
5 ;; [CAPTION TOOLTIP ICON CALLBACK ENABLED]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
6 '(["Open" "Open a file" new toolbar-open t]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
7 ["Dired" "Edit a directory" open toolbar-dired t]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
8 ["Save" "Save buffer" save toolbar-save t]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
9 ["Print" "Print Buffer" print toolbar-print t]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
10 ["Cut" "Kill region" cut toolbar-cut t]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
11 ["Copy" "Copy region" copy toolbar-copy t]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
12 ["Paste" "Paste from clipboard" paste toolbar-paste t]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
13 ["Undo" "Undo edit" undo toolbar-undo t]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
14 ["Spell" "Check spelling" spellcheck toolbar-ispell t]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
15 ["Replace" "Search & Replace" srchrpl toolbar-replace t]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
16 ["Mail" "Read mail" mail toolbar-mail t]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
17 ; info
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
18 ; compile
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
19 ; debug
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
20 ; news
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
21 ))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
22
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
23 (setq x (gtk-toolbar-new 'horizontal 'both))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
24 (gnome-app-set-toolbar (frame-property nil 'shell-widget) x)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
25
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
26 (mapc (lambda (descr)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
27 (gtk-toolbar-append-item x
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
28 (aref descr 0)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
29 (aref descr 1)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
30 ""
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
31 (gnome-stock-pixmap-widget-new x (aref descr 2))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
32 `(lambda (&rest ignored)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
33 (,(aref descr 3)))))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
34 gnomeified-toolbar)