Mercurial > hg > xemacs-beta
annotate lisp/gtk-widget-accessors.el @ 5287:cd167465bf69
More permission consistency.
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Mon, 14 Jun 2010 15:03:08 +0900 |
parents | ba07c880114a |
children | e4305eb6fb8c |
rev | line source |
---|---|
5287
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5231
diff
changeset
|
1 ;; gtk-widget-accessors.el --- GTK wrappers for widgets |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5231
diff
changeset
|
2 ;; |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5231
diff
changeset
|
3 ;; Copyright (C) 2000, 2001 William M. Perry |
cd167465bf69
More permission consistency.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
5231
diff
changeset
|
4 ;; |
4709
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
622
diff
changeset
|
5 ;; This file is part of XEmacs. |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
622
diff
changeset
|
6 ;; |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
622
diff
changeset
|
7 ;; XEmacs is free software; you can redistribute it and/or modify it |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
622
diff
changeset
|
8 ;; under the terms of the GNU General Public License as published by the |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
622
diff
changeset
|
9 ;; Free Software Foundation; either version 2, or (at your option) any |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
622
diff
changeset
|
10 ;; later version. |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
622
diff
changeset
|
11 ;; |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
622
diff
changeset
|
12 ;; 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:
622
diff
changeset
|
13 ;; 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:
622
diff
changeset
|
14 ;; 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:
622
diff
changeset
|
15 ;; for more details. |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
622
diff
changeset
|
16 ;; |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
622
diff
changeset
|
17 ;; You should have received a copy of 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:
622
diff
changeset
|
18 ;; along with XEmacs; see the file COPYING. If not, write to |
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
622
diff
changeset
|
19 ;; the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, |
5231
ba07c880114a
Fix up FSF's Franklin Street address in many files.
Stephen J. Turnbull <stephen@xemacs.org>
parents:
4709
diff
changeset
|
20 ;; Boston, MA 02110-1301, USA. */ |
4709
db7068430402
Add explicit GPL v2 or later notices to Bill Perry's code, where such notices
Jerry James <james@xemacs.org>
parents:
622
diff
changeset
|
21 |
622 | 22 (globally-declare-fboundp |
502 | 23 '(gtk-fundamental-type)) |
24 | |
462 | 25 (require 'gtk-ffi) |
26 | |
27 (defconst GTK_TYPE_INVALID 0) | |
28 (defconst GTK_TYPE_NONE 1) | |
29 (defconst GTK_TYPE_CHAR 2) | |
30 (defconst GTK_TYPE_UCHAR 3) | |
31 (defconst GTK_TYPE_BOOL 4) | |
32 (defconst GTK_TYPE_INT 5) | |
33 (defconst GTK_TYPE_UINT 6) | |
34 (defconst GTK_TYPE_LONG 7) | |
35 (defconst GTK_TYPE_ULONG 8) | |
36 (defconst GTK_TYPE_FLOAT 9) | |
37 (defconst GTK_TYPE_DOUBLE 10) | |
38 (defconst GTK_TYPE_STRING 11) | |
39 (defconst GTK_TYPE_ENUM 12) | |
40 (defconst GTK_TYPE_FLAGS 13) | |
41 (defconst GTK_TYPE_BOXED 14) | |
42 (defconst GTK_TYPE_POINTER 15) | |
43 (defconst GTK_TYPE_SIGNAL 16) | |
44 (defconst GTK_TYPE_ARGS 17) | |
45 (defconst GTK_TYPE_CALLBACK 18) | |
46 (defconst GTK_TYPE_C_CALLBACK 19) | |
47 (defconst GTK_TYPE_FOREIGN 20) | |
48 (defconst GTK_TYPE_OBJECT 21) | |
49 | |
50 (defconst gtk-value-accessor-names | |
51 '("INVALID" "NONE" "CHAR" "UCHAR" "BOOL" "INT" "UINT" "LONG" "ULONG" "FLOAT" "DOUBLE" | |
52 "STRING" "ENUM" "FLAGS" "BOXED" "POINTER" "SIGNAL" "ARGS" "CALLBACK" "C_CALLBACK" | |
53 "FOREIGN" "OBJECT")) | |
54 | |
55 (defun define-widget-accessors (gtk-class | |
56 wrapper | |
57 prefix args) | |
58 "Output stub C code to access parts of a widget from lisp. | |
59 GTK-CLASS is the GTK class to grant access to. | |
60 WRAPPER is a fragment to construct GTK C macros for typechecking/etc. (ie: WIDGET) | |
61 ARGS is a list of (type . name) cons cells. | |
62 Defines a whole slew of functions to access & set the slots in the | |
63 structure." | |
64 (set-buffer (get-buffer-create "emacs-widget-accessors.c")) | |
65 (goto-char (point-max)) | |
66 (let ((arg) | |
67 (base-arg-type nil) | |
68 (lisp-func-name nil) | |
69 (c-func-name nil) | |
70 (func-names nil)) | |
71 (setq gtk-class (symbol-name gtk-class) | |
72 wrapper (upcase wrapper)) | |
73 (while (setq arg (pop args)) | |
74 (setq lisp-func-name (format "gtk-%s-%s" prefix (cdr arg)) | |
75 lisp-func-name (replace-in-string lisp-func-name "_" "-") | |
76 c-func-name (concat "F" (replace-in-string lisp-func-name "-" "_"))) | |
77 (insert | |
78 "DEFUN (\"" lisp-func-name "\", " c-func-name ", 1, 1, 0, /*\n" | |
79 "Access the `" (symbol-name (cdr arg)) "' slot of OBJ, a " gtk-class " object.\n" | |
80 "*/\n" | |
81 "\t(obj))\n" | |
82 "{\n" | |
83 (format "\t%s *the_obj = NULL;\n" gtk-class) | |
84 "\tGtkArg arg;\n" | |
85 "\n" | |
86 "\tCHECK_GTK_OBJECT (obj);\n" | |
87 "\n" | |
88 (format "\tif (!GTK_IS_%s (XGTK_OBJECT (obj)->object))\n" wrapper) | |
89 "\t{\n" | |
591 | 90 (format "\t\twtaerror (\"Object is not a %s\", obj);\n" gtk-class) |
462 | 91 "\t};\n" |
92 "\n" | |
93 (format "\tthe_obj = GTK_%s (XGTK_OBJECT (obj)->object);\n" wrapper) | |
94 | |
95 (format "\targ.type = gtk_type_from_name (\"%s\");\n" (symbol-name (car arg)))) | |
96 ; (format "\targ.type = GTK_TYPE_%s;\n" (or | |
97 ; (nth (gtk-fundamental-type (car arg)) | |
98 ; gtk-value-accessor-names) | |
99 ; (case (car arg) | |
100 ; (GtkListOfString "STRING_LIST") | |
101 ; (GtkListOfObject "OBJECT_LIST") | |
102 ; (otherwise | |
103 ; "POINTER"))))) | |
104 | |
105 (setq base-arg-type (gtk-fundamental-type (car arg))) | |
106 (cond | |
107 ((= base-arg-type GTK_TYPE_OBJECT) | |
108 (insert | |
109 (format "\tGTK_VALUE_OBJECT (arg) = GTK_OBJECT (the_obj->%s);" | |
110 (cdr arg)))) | |
111 ((or (= base-arg-type GTK_TYPE_POINTER) | |
112 (= base-arg-type GTK_TYPE_BOXED)) | |
113 (insert | |
114 (format "\tGTK_VALUE_%s (arg) = (void *)the_obj->%s;" | |
115 (nth (gtk-fundamental-type (car arg)) gtk-value-accessor-names) | |
116 (cdr arg)))) | |
117 (t | |
118 (insert | |
119 (format "\tGTK_VALUE_%s (arg) = the_obj->%s;" | |
120 (or (nth (gtk-fundamental-type (car arg)) gtk-value-accessor-names) "POINTER") | |
121 (cdr arg))))) | |
122 (insert | |
123 "\n" | |
124 "\treturn (gtk_type_to_lisp (&arg));\n" | |
125 "}\n\n") | |
126 (push c-func-name func-names)) | |
127 func-names)) | |
128 | |
129 (defun import-widget-accessors (file syms-function-name &rest description) | |
130 "Import multiple widgets, and emit a suitable vars_of_foo() function for them.\n" | |
523 | 131 (declare (special c-mode-common-hook c-mode-hook)) |
462 | 132 (let ((c-mode-common-hook nil) |
133 (c-mode-hook nil)) | |
134 (find-file file)) | |
135 (erase-buffer) | |
591 | 136 (insert "/* This file was automatically generated by ../lisp/gtk-widget-accessors.el */\n" |
137 "/* DO NOT EDIT BY HAND!!! */\n") | |
462 | 138 (let ((c-funcs nil)) |
139 (while description | |
140 (setq c-funcs (nconc (define-widget-accessors | |
141 (pop description) (pop description) | |
142 (pop description) (pop description)) c-funcs))) | |
143 (goto-char (point-max)) | |
144 (insert "void " syms-function-name " (void)\n" | |
145 "{\n\t" | |
146 (mapconcat (lambda (x) | |
147 (concat "DEFSUBR (" x ");")) c-funcs "\n\t") | |
148 "\n}")) | |
149 (save-buffer)) | |
150 | |
151 ;; Because the new FFI layer imports GTK types lazily, we need to load | |
152 ;; up all of the gtk types we know about, or we get errors about | |
153 ;; unknown GTK types later on. | |
154 (mapatoms (lambda (sym) | |
155 (if (string-match "gtk-[^-]+-get-type" (symbol-name sym)) | |
156 (funcall sym)))) | |
157 | |
158 (import-widget-accessors | |
591 | 159 "../src/emacs-widget-accessors.c" |
462 | 160 "syms_of_widget_accessors " |
161 | |
162 'GtkAdjustment "ADJUSTMENT" "adjustment" | |
163 '((gfloat . lower) | |
164 (gfloat . upper) | |
165 (gfloat . value) | |
166 (gfloat . step_increment) | |
167 (gfloat . page_increment) | |
168 (gfloat . page_size)) | |
169 | |
170 'GtkWidget "WIDGET" "widget" | |
171 '((GtkStyle . style) | |
172 (GdkWindow . window) | |
173 (GtkStateType . state) | |
174 (GtkString . name) | |
175 (GtkWidget . parent)) | |
176 | |
177 'GtkButton "BUTTON" "button" | |
178 '((GtkWidget . child) | |
179 (gboolean . in_button) | |
180 (gboolean . button_down)) | |
181 | |
182 'GtkCombo "COMBO" "combo" | |
183 '((GtkWidget . entry) | |
184 (GtkWidget . button) | |
185 (GtkWidget . popup) | |
186 (GtkWidget . popwin) | |
187 (GtkWidget . list)) | |
188 | |
189 'GtkGammaCurve "GAMMA_CURVE" "gamma-curve" | |
190 '((GtkWidget . table) | |
191 (GtkWidget . curve) | |
192 (gfloat . gamma) | |
193 (GtkWidget . gamma_dialog) | |
194 (GtkWidget . gamma_text)) | |
195 | |
196 'GtkCheckMenuItem "CHECK_MENU_ITEM" "check-menu-item" | |
197 '((gboolean . active)) | |
198 | |
199 'GtkNotebook "NOTEBOOK" "notebook" | |
200 '((GtkPositionType . tab_pos)) | |
201 | |
202 'GtkText "TEXT" "text" | |
203 '((GtkAdjustment . hadj) | |
204 (GtkAdjustment . vadj)) | |
205 | |
206 'GtkFileSelection "FILE_SELECTION" "file-selection" | |
207 '((GtkWidget . dir_list) | |
208 (GtkWidget . file_list) | |
209 (GtkWidget . selection_entry) | |
210 (GtkWidget . selection_text) | |
211 (GtkWidget . main_vbox) | |
212 (GtkWidget . ok_button) | |
213 (GtkWidget . cancel_button) | |
214 (GtkWidget . help_button) | |
215 (GtkWidget . action_area)) | |
216 | |
217 'GtkFontSelectionDialog "FONT_SELECTION_DIALOG" "font-selection-dialog" | |
218 '((GtkWidget . fontsel) | |
219 (GtkWidget . main_vbox) | |
220 (GtkWidget . action_area) | |
221 (GtkWidget . ok_button) | |
222 (GtkWidget . apply_button) | |
223 (GtkWidget . cancel_button)) | |
224 | |
225 'GtkColorSelectionDialog "COLOR_SELECTION_DIALOG" "color-selection-dialog" | |
226 '((GtkWidget . colorsel) | |
227 (GtkWidget . main_vbox) | |
228 (GtkWidget . ok_button) | |
229 (GtkWidget . reset_button) | |
230 (GtkWidget . cancel_button) | |
231 (GtkWidget . help_button)) | |
232 | |
233 'GtkDialog "DIALOG" "dialog" | |
234 '((GtkWidget . vbox) | |
235 (GtkWidget . action_area)) | |
236 | |
237 'GtkInputDialog "INPUT_DIALOG" "input-dialog" | |
238 '((GtkWidget . close_button) | |
239 (GtkWidget . save_button)) | |
240 | |
241 'GtkPlug "PLUG" "plug" | |
242 '((GdkWindow . socket_window) | |
243 (gint . same_app)) | |
244 | |
245 'GtkObject "OBJECT" "object" | |
246 '((guint . flags) | |
247 (guint . ref_count)) | |
248 | |
249 'GtkPaned "PANED" "paned" | |
250 '((GtkWidget . child1) | |
251 (GtkWidget . child2) | |
252 (gboolean . child1_resize) | |
253 (gboolean . child2_resize) | |
254 (gboolean . child1_shrink) | |
255 (gboolean . child2_shrink)) | |
256 | |
257 'GtkCList "CLIST" "clist" | |
258 '((gint . rows) | |
259 (gint . columns) | |
260 (GtkAdjustment . hadjustment) | |
261 (GtkAdjustment . vadjustment) | |
262 (GtkSortType . sort_type) | |
263 (gint . focus_row) | |
264 (gint . sort_column)) | |
265 | |
266 'GtkList "LIST" "list" | |
267 '((GtkListOfObject . children) | |
268 (GtkListOfObject . selection)) | |
269 | |
270 'GtkTree "TREE" "tree" | |
271 '((GtkListOfObject . children) | |
272 (GtkTree . root_tree) | |
273 (GtkWidget . tree_owner) | |
274 (GtkListOfObject . selection)) | |
275 | |
276 'GtkTreeItem "TREE_ITEM" "tree-item" | |
277 '((GtkWidget . subtree)) | |
278 | |
279 'GtkScrolledWindow "SCROLLED_WINDOW" "scrolled-window" | |
280 '((GtkWidget . hscrollbar) | |
281 (GtkWidget . vscrollbar) | |
282 (gboolean . hscrollbar_visible) | |
283 (gboolean . vscrollbar_visible)) | |
284 | |
285 ) |