Mercurial > hg > xemacs-beta
annotate lisp/gtk.el @ 5416:365bc8cb5894
Convert to GPLv3 misc files.
author | Mats Lidell <matsl@xemacs.org> |
---|---|
date | Wed, 27 Oct 2010 00:09:04 +0200 |
parents | 91b3aa59f49b |
children | b9167d522a9a |
rev | line source |
---|---|
4709
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
4103
diff
changeset
|
1 ;; This file is part of XEmacs. |
5404
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5231
diff
changeset
|
2 |
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5231
diff
changeset
|
3 ;; XEmacs is free software: you can redistribute it and/or modify it |
4709
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
4103
diff
changeset
|
4 ;; under the terms of the GNU General Public License as published by the |
5404
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5231
diff
changeset
|
5 ;; Free Software Foundation, either version 3 of the License, or (at your |
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5231
diff
changeset
|
6 ;; option) any later version. |
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5231
diff
changeset
|
7 |
4709
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
4103
diff
changeset
|
8 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
4103
diff
changeset
|
9 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
4103
diff
changeset
|
10 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
4103
diff
changeset
|
11 ;; for more details. |
5404
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5231
diff
changeset
|
12 |
4709
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
4103
diff
changeset
|
13 ;; You should have received a copy of the GNU General Public License |
5404
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
5231
diff
changeset
|
14 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
4709
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
4103
diff
changeset
|
15 |
502 | 16 (globally-declare-fboundp |
4103 | 17 '(gtk-import-function-internal |
18 gtk-call-function | |
19 gtk-type-name | |
20 gtk-import-function)) | |
502 | 21 |
22 (globally-declare-boundp | |
23 '(gtk-enumeration-info)) | |
24 | |
462 | 25 (gtk-import-function nil "gdk_flush") |
26 | |
27 (defun gtk-describe-enumerations () | |
28 "Show a list of all GtkEnum or GtkFlags objects available from lisp." | |
29 (interactive) | |
30 (set-buffer (get-buffer-create "*GTK Enumerations*")) | |
31 (erase-buffer) | |
32 (let ((separator (make-string (- (window-width) 3) ?-))) | |
33 (maphash (lambda (key val) | |
34 (insert | |
35 separator "\n" | |
36 (if (stringp key) | |
37 key | |
38 (gtk-type-name key)) "\n") | |
39 (mapc (lambda (cell) | |
40 (insert (format "\t%40s == %d\n" (car cell) (cdr cell)))) val)) | |
41 gtk-enumeration-info)) | |
42 (goto-char (point-min)) | |
43 (display-buffer (current-buffer))) |