annotate tests/gtk/xemacs-toolbar.el @ 2775:05d62157e048

[xemacs-hg @ 2005-05-15 16:37:52 by crestani] New allocator improvements lisp/ChangeLog addition: 2005-05-15 Marcus Crestani <crestani@xemacs.org> * diagnose.el: Lrecord and string data statistics. * diagnose.el (show-memory-usage): Add output for additional lrecord statistics (currently only string data). * diagnose.el (show-lrecord-stats): New. Print detailed lrecord statistics. src/ChangeLog addition: 2005-05-15 Marcus Crestani <crestani@xemacs.org> * alloc.c: Add string data statistics. * alloc.c (dec_lrecord_stats): Use size of lrecord for statistics and cons counter bookkeeping. * alloc.c (finalize_string): Add string data statistics. * alloc.c (make_uninit_string): Add string data statistics. * alloc.c (make_string_nocopy): Add string data statistics. * alloc.c (kkcc_marking): Move break out of #ifdef. * alloc.c (Flrecord_stats): New. Collect lrecord statistics. * alloc.c (Fgarbage_collect): Use Flrecord_stats. * alloc.c (syms_of_alloc): Add Flrecord_stats. * dumper.c: Fix hash table. * dumper.c (pdump_make_hash): Fix hash table. * dumper.c (pdump_get_mc_addr): Fix hash table. * dumper.c (pdump_put_mc_addr): Fix hash table. * dumper.c (pdump_reloc_one_mc): Fix indentation. * dumper.c (pdump_load_finish): Add lrecord statistics bookkeeping. * lrecord.h: Add string data statistics. * mc-alloc.c (remove_cell): Lrecord statistics, fix indentation. * mule-charset.c: Marking through *_unicode_description not needed. * symbols.c (init_symbols_once_early): Bump lrecord statistics. * window.c: Marking through line_start_cache not needed. * xemacs.def.in.in: Fix typo.
author crestani
date Sun, 15 May 2005 16:38:14 +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 (defvar gtk-torture-test-toolbar-open-active-p t)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
2
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
3 (defvar gtk-torture-test-toolbar
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
4 '([toolbar-file-icon
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
5 (lambda ()
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
6 (setq gtk-torture-test-toolbar-open-active-p (not gtk-torture-test-toolbar-open-active-p)))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
7 gtk-torture-test-toolbar-open-active-p
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
8 "Dynamic enabled-p slot... broken in XEmacs 21.1.x"]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
9 [:size 35 :style 3d]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
10 [toolbar-folder-icon toolbar-dired t "Edit a directory"]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
11 [:size 35 :style 2d]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
12 [toolbar-news-icon toolbar-news t "Read news"]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
13 nil
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
14 [toolbar-info-icon toolbar-info t "Info documentation"]
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
15 ))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
16
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
17 (defun gtk-torture-test-toolbar ()
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
18 (interactive)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
19 (switch-to-buffer (get-buffer-create "Toolbar testing"))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
20 (set-specifier default-toolbar gtk-torture-test-toolbar (current-buffer))
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents:
diff changeset
21 (set-specifier default-toolbar-visible-p t (current-buffer)))