Mercurial > hg > xemacs-beta
annotate src/symsinit.h @ 4908:b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
-------------------- ChangeLog entries follow: --------------------
src/ChangeLog addition:
2010-02-01 Ben Wing <ben@xemacs.org>
* compiler.h:
Create a USED() macro to force unused-var warnings to go away,
in certain cases where it's inconvenient to do otherwise (e.g.
when THIS_IS_GTK in redisplay-xlike-inc.c).
* console-x.h:
Remove unneeded decls, make some static.
* redisplay-xlike-inc.c:
* console-xlike-inc.h: New file. Include defns from
redisplay-xlike-inc.c that may be useful in other XLIKE files.
Correct the handling of colors and font-style setting functions
in the xlike defns. Lots of fixes in the GTK-specific defns.
* depend: Regenerate.
* event-xlike-inc.c:
* event-xlike-inc.c (USE_UNICODE_MAP):
* event-xlike-inc.c (endif):
* gccache-gtk.c:
* gtk-glue.c (xemacs_list_to_gtklist):
* gtk-glue.c (xemacs_gtklist_to_list):
* gtk-glue.c (FROB):
* gtk-glue.c (face_to_gc):
* gtk-glue.c (face_to_style):
* gtk-glue.c (gdk_event_to_emacs_event):
* gtk-xemacs.h (struct _GtkXEmacs):
* gtk-xemacs.h (struct _GtkXEmacsClass):
* objects-xlike-inc.c:
Cosmetic, comment fixes.
* glyphs.c (pixmap_to_lisp_data):
Unused var fixes.
* gtk-glue.c:
* gccache-gtk.c:
* gtk-xemacs.c:
* gtk-xemacs.h:
* objects-xlike-inc.c:
* ui-gtk.c:
* ui-gtk.h:
* xgccache.c:
* xgccache.c (GC_CACHE_SIZE):
* xgccache.h:
Misc include-file fixes.
* objects-xlike-inc.c (XFUN):
* objects-xlike-inc.c (xlistfonts_checking_charset):
Combine some ifdeffed stuff using defs in console-xlike-inc.h.
* redisplay-gtk.c:
* redisplay-gtk.c (THIS_IS_GTK):
* redisplay-gtk.c (XLIKE_bevel_area):
* redisplay-gtk.c (XLIKE_ring_bell):
* redisplay-gtk.c (gdk_draw_text_image):
Fix numerous compile problems. Delete gtk_output_shadows(),
which mostly duplicates generic bevel_modeline(). Fix up
gtk_bevel_modeline() into XLIKE_bevel_area() and make use of
the style var properly to set the appropriate GTK constant.
* redisplay-x.c:
* redisplay-x.c (XLIKE_window_output_begin):
* redisplay-x.c (XLIKE_window_output_end):
* redisplay-x.c (XLIKE_bevel_area):
* redisplay-x.c (x_output_shadows):
* redisplay-x.c (XLIKE_ring_bell):
Make x_output_shadows be static. Change the defn of various
functions to look like XLIKE_foo() so it matches the calling
convention elsewhere.
* redisplay-xlike-inc.c:
* redisplay-xlike-inc.c (NEED_GCCACHE_H):
* redisplay-xlike-inc.c (XLIKE_text_width):
* redisplay-xlike-inc.c (XLIKE_get_gc):
* redisplay-xlike-inc.c (XLIKE_text_width_single_run):
* redisplay-xlike-inc.c (XFT_FROB_LISP_COLOR):
* redisplay-xlike-inc.c (XLIKE_output_xlike_pixmap):
* redisplay-xlike-inc.c (XLIKE_output_pixmap):
* redisplay-xlike-inc.c (XLIKE_output_vertical_divider):
* redisplay-xlike-inc.c (XLIKE_flash):
Lots of header fixes. Lots of stuff moved to console-xlike-inc.h.
Use XFUN() to generate function names instead of directly
calling XLIKE_PASTE(). Remove unnecessary prototypes.
Unify calls to text_width funs. Make XLIKE_get_gc non-static
since it's called from gtk. Change the color-function calls
and fill-style-setting calls to match the changes in
console-xlike-inc.h. Use USED() to avoid some warnings.
* symsinit.h:
Sort the prototypes, and add a fun `sort-symsinit' in a comment
that does the sorting (using sort-regexp-fields).
* symsinit.h (init_number):
* sysgtk.h: New file, wraps the various GTK headers.
* sysgdkx.h: New file, wraps <gtk/gdkx.h>. Keep this separate to
* event-gtk.h: Delete. Combine stuff into console-gtk.h.
help isolate X-specific code from GTK.
* device-gtk.c:
* event-gtk.c:
* console-gtk.h:
* frame-gtk.c:
* gccache-gtk.c:
* gccache-gtk.h:
* glyphs-gtk.c (gtk_colorize_image_instance):
* glyphs-gtk.h:
* gtk-xemacs.h:
* objects-gtk.c:
* objects-gtk.c (MAX_FONT_COUNT):
* ui-gtk.h:
Use sysgtk.h or sysgdkx.h instead of directly including GTK
headers. Don't include event-gtk.h.
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Mon, 01 Feb 2010 02:15:28 -0600 |
parents | b3ea9c582280 |
children | 17362f371cc2 |
rev | line source |
---|---|
428 | 1 /* Various initialization function prototypes. |
2 Copyright (C) 1995 Board of Trustees, University of Illinois. | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
3 Copyright (C) 2001, 2002, 2010 Ben Wing. |
428 | 4 |
5 This file is part of XEmacs. | |
6 | |
7 XEmacs is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
9 Free Software Foundation; either version 2, or (at your option) any | |
10 later version. | |
11 | |
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with XEmacs; see the file COPYING. If not, write to | |
4802
2fc0e2f18322
Don't create any bignums before pdumping. Add bignum, ratio, and bigfloat
Jerry James <james@xemacs.org>
parents:
3381
diff
changeset
|
19 the Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, |
2fc0e2f18322
Don't create any bignums before pdumping. Add bignum, ratio, and bigfloat
Jerry James <james@xemacs.org>
parents:
3381
diff
changeset
|
20 Boston, MA 02111-1301, USA. */ |
428 | 21 |
22 /* Synched up with: Not in FSF. */ | |
23 | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
24 /* There is no need to put ifdefs around the prototypes here. Extra |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
25 prototypes won't hurt anything. */ |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
26 |
440 | 27 #ifndef INCLUDED_symsinit_h_ |
28 #define INCLUDED_symsinit_h_ | |
428 | 29 |
30 /* Earliest environment initializations (dump-time and run-time). */ | |
31 | |
2367 | 32 void init_win32_very_very_early (void); |
33 | |
428 | 34 void init_data_very_early (void); |
35 void init_floatfns_very_early (void); | |
36 void init_free_hook (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
37 void init_mswindows_dde_very_early (void); |
428 | 38 void init_process_times_very_early (void); |
39 void init_ralloc (void); | |
40 void init_signals_very_early (void); | |
41 | |
814 | 42 /* Early Lisp-engine initialization -- dump-time only for init, dump-time |
43 and post-pdump-load-time for reinit. We call the reinit() routine | |
44 ourselves at post-pdump-load-time, but the init_() routine calls the | |
45 reinit() routine itself. (This is because sometimes the timing of when | |
46 to call the routine is tricky -- the init routine might need to do some | |
47 stuff, call the reinit() routine, and do some more stuff.) */ | |
428 | 48 |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
49 void reinit_alloc_early (void); |
428 | 50 void init_alloc_once_early (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
51 void reinit_eistring_early (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
52 void init_eistring_once_early (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
53 void init_elhash_once_early (void); |
428 | 54 void init_errors_once_early (void); |
1204 | 55 void reinit_opaque_early (void); |
428 | 56 void init_opaque_once_early (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
57 void reinit_symbols_early (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
58 void init_symbols_once_early (void); |
814 | 59 |
60 /* Reset the Lisp engine. Called both at dump-time, run-time and | |
61 run-temacs-time; at dump-time, it's called early, before any of the | |
62 vars() or complex_vars() routines. Currently does almost nothing. */ | |
63 | |
64 void init_alloc_early (void); | |
65 | |
66 /* Called somewhat randomly -- at dump-time, in the middle of the vars() | |
67 calls, and at run-time, just before the late initializations. */ | |
68 | |
69 void init_eval_semi_early (void); | |
428 | 70 |
71 /* Declare the built-in symbols and primitives (dump-time only). */ | |
72 | |
73 void syms_of_abbrev (void); | |
74 void syms_of_alloc (void); | |
75 void syms_of_balloon_x (void); | |
76 void syms_of_buffer (void); | |
77 void syms_of_bytecode (void); | |
78 void syms_of_callint (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
79 EXTERN_C void syms_of_canna_api (void); |
428 | 80 void syms_of_casefiddle (void); |
81 void syms_of_casetab (void); | |
82 void syms_of_chartab (void); | |
83 void syms_of_cmdloop (void); | |
84 void syms_of_cmds (void); | |
771 | 85 void syms_of_console (void); |
428 | 86 void syms_of_console_mswindows (void); |
771 | 87 void syms_of_console_tty (void); |
428 | 88 void syms_of_data (void); |
89 void syms_of_database (void); | |
90 void syms_of_debug (void); | |
771 | 91 void syms_of_device (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
92 void syms_of_device_gtk (void); |
428 | 93 void syms_of_device_mswindows (void); |
771 | 94 void syms_of_device_tty (void); |
428 | 95 void syms_of_device_x (void); |
771 | 96 void syms_of_dialog (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
97 void syms_of_dialog_gtk (void); |
442 | 98 void syms_of_dialog_mswindows (void); |
428 | 99 void syms_of_dialog_x (void); |
100 void syms_of_dired (void); | |
101 void syms_of_dired_mswindows (void); | |
102 void syms_of_doc (void); | |
103 void syms_of_dragdrop (void); | |
104 void syms_of_editfns (void); | |
1706 | 105 EXTERN_C void syms_of_eldap (void); |
428 | 106 void syms_of_elhash (void); |
107 void syms_of_emacs (void); | |
108 void syms_of_eval (void); | |
771 | 109 void syms_of_event_Xt (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
110 void syms_of_event_gtk (void); |
428 | 111 void syms_of_event_mswindows (void); |
771 | 112 void syms_of_event_stream (void); |
428 | 113 void syms_of_events (void); |
114 void syms_of_extents (void); | |
115 void syms_of_faces (void); | |
771 | 116 void syms_of_file_coding (void); |
428 | 117 void syms_of_fileio (void); |
118 void syms_of_filelock (void); | |
119 void syms_of_floatfns (void); | |
120 void syms_of_fns (void); | |
121 void syms_of_font_lock (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
122 void syms_of_font_mgr (void); |
428 | 123 void syms_of_frame (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
124 void syms_of_frame_gtk (void); |
428 | 125 void syms_of_frame_mswindows (void); |
771 | 126 void syms_of_frame_tty (void); |
428 | 127 void syms_of_frame_x (void); |
128 void syms_of_free_hook (void); | |
129 void syms_of_general (void); | |
771 | 130 void syms_of_glyphs (void); |
428 | 131 void syms_of_glyphs_eimage (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
132 void syms_of_glyphs_gtk (void); |
771 | 133 void syms_of_glyphs_mswindows (void); |
563 | 134 void syms_of_glyphs_shared (void); |
428 | 135 void syms_of_glyphs_widget (void); |
771 | 136 void syms_of_glyphs_x (void); |
137 void syms_of_gpmevent (void); | |
138 void syms_of_gui (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
139 void syms_of_gui_gtk (void); |
440 | 140 void syms_of_gui_mswindows (void); |
428 | 141 void syms_of_gui_x (void); |
142 void syms_of_gutter (void); | |
143 void syms_of_indent (void); | |
144 void syms_of_input_method_xlib (void); | |
145 void syms_of_intl (void); | |
771 | 146 void syms_of_intl_win32 (void); |
147 void syms_of_intl_x (void); | |
428 | 148 void syms_of_keymap (void); |
149 void syms_of_lread (void); | |
150 void syms_of_macros (void); | |
151 void syms_of_marker (void); | |
2720 | 152 void syms_of_mc_alloc (void); |
428 | 153 void syms_of_md5 (void); |
154 void syms_of_menubar (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
155 void syms_of_menubar_gtk (void); |
428 | 156 void syms_of_menubar_mswindows (void); |
771 | 157 void syms_of_menubar_x (void); |
428 | 158 void syms_of_minibuf (void); |
159 void syms_of_module (void); | |
160 void syms_of_mule_ccl (void); | |
161 void syms_of_mule_charset (void); | |
771 | 162 void syms_of_mule_coding (void); |
428 | 163 void syms_of_mule_wnn (void); |
771 | 164 void syms_of_nt (void); |
1983 | 165 void syms_of_number (void); |
771 | 166 void syms_of_objects (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
167 void syms_of_objects_gtk (void); |
771 | 168 void syms_of_objects_mswindows (void); |
428 | 169 void syms_of_objects_tty (void); |
170 void syms_of_objects_x (void); | |
1706 | 171 EXTERN_C void syms_of_postgresql (void); |
428 | 172 void syms_of_print (void); |
173 void syms_of_process (void); | |
174 void syms_of_process_nt (void); | |
175 void syms_of_profile (void); | |
176 void syms_of_ralloc (void); | |
177 void syms_of_rangetab (void); | |
178 void syms_of_redisplay (void); | |
179 void syms_of_scrollbar (void); | |
180 void syms_of_scrollbar_mswindows(void); | |
181 void syms_of_search (void); | |
182 void syms_of_select (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
183 void syms_of_select_gtk (void); |
428 | 184 void syms_of_select_mswindows (void); |
771 | 185 void syms_of_select_x (void); |
428 | 186 void syms_of_signal (void); |
187 void syms_of_sound (void); | |
188 void syms_of_specifier (void); | |
189 void syms_of_sunpro (void); | |
190 void syms_of_symbols (void); | |
191 void syms_of_syntax (void); | |
440 | 192 void syms_of_tests (void); |
771 | 193 void syms_of_text (void); |
428 | 194 void syms_of_toolbar (void); |
195 void syms_of_tooltalk (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
196 void syms_of_ui_byhand (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
197 void syms_of_ui_gtk (void); |
428 | 198 void syms_of_undo (void); |
771 | 199 void syms_of_unicode (void); |
428 | 200 void syms_of_widget (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
201 void syms_of_widget_accessors (void); |
771 | 202 void syms_of_win32 (void); |
428 | 203 void syms_of_window (void); |
204 | |
771 | 205 /* Initialize the console types (dump-time only for console_type_(), |
206 post-pdump-load-time only for reinit_). */ | |
428 | 207 |
208 void console_type_create (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
209 void console_type_create_device_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
210 void console_type_create_device_mswindows (void); |
428 | 211 void console_type_create_device_tty (void); |
212 void console_type_create_device_x (void); | |
213 void reinit_console_type_create_device_x (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
214 void console_type_create_dialog_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
215 void console_type_create_dialog_mswindows (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
216 void console_type_create_dialog_x (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
217 void console_type_create_frame_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
218 void console_type_create_frame_mswindows (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
219 void console_type_create_frame_tty (void); |
428 | 220 void console_type_create_frame_x (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
221 void console_type_create_glyphs_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
222 void console_type_create_glyphs_mswindows (void); |
428 | 223 void console_type_create_glyphs_x (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
224 void console_type_create_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
225 void reinit_console_type_create_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
226 void console_type_create_menubar_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
227 void console_type_create_menubar_mswindows (void); |
428 | 228 void console_type_create_menubar_x (void); |
229 void console_type_create_mswindows (void); | |
230 void reinit_console_type_create_mswindows (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
231 void console_type_create_objects_gtk (void); |
428 | 232 void console_type_create_objects_mswindows (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
233 void console_type_create_objects_tty (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
234 void console_type_create_objects_x (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
235 void console_type_create_redisplay_gtk (void); |
428 | 236 void console_type_create_redisplay_mswindows (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
237 void console_type_create_redisplay_tty (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
238 void console_type_create_redisplay_x (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
239 void console_type_create_scrollbar_gtk (void); |
428 | 240 void console_type_create_scrollbar_mswindows (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
241 void console_type_create_scrollbar_x (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
242 void console_type_create_select_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
243 void console_type_create_select_mswindows (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
244 void console_type_create_select_x (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
245 void console_type_create_stream (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
246 void reinit_console_type_create_stream (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
247 void console_type_create_toolbar_gtk (void); |
428 | 248 void console_type_create_toolbar_mswindows (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
249 void console_type_create_toolbar_x (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
250 void console_type_create_tty (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
251 void reinit_console_type_create_tty (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
252 void console_type_create_x (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
253 void reinit_console_type_create_x (void); |
428 | 254 |
771 | 255 /* Initialize the specifier types (dump-time only for specifier_type_(), |
256 post-pdump-load-time only for reinit_). */ | |
428 | 257 |
258 void specifier_type_create (void); | |
259 void reinit_specifier_type_create (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
260 void specifier_type_create_gutter (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
261 void reinit_specifier_type_create_gutter (void); |
428 | 262 void specifier_type_create_image (void); |
263 void reinit_specifier_type_create_image (void); | |
264 void specifier_type_create_objects (void); | |
265 void reinit_specifier_type_create_objects (void); | |
266 void specifier_type_create_toolbar (void); | |
267 void reinit_specifier_type_create_toolbar (void); | |
268 | |
771 | 269 /* Initialize the coding system types (dump-time only for |
270 coding_system_type_(), post-pdump-load-time only for reinit_). */ | |
271 | |
272 void coding_system_type_create (void); | |
273 void reinit_coding_system_type_create (void); | |
274 void coding_system_type_create_intl_win32 (void); | |
275 void reinit_coding_system_type_create_intl_win32 (void); | |
276 void coding_system_type_create_mule_coding (void); | |
277 void reinit_coding_system_type_create_mule_coding (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
278 void coding_system_type_create_unicode (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
279 void reinit_coding_system_type_create_unicode (void); |
771 | 280 |
428 | 281 /* Initialize the structure types (dump-time only). */ |
282 | |
283 void structure_type_create (void); | |
284 void structure_type_create_chartab (void); | |
285 void structure_type_create_faces (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
286 void structure_type_create_hash_table (void); |
428 | 287 void structure_type_create_rangetab (void); |
288 | |
289 /* Initialize the image instantiator types (dump-time only). */ | |
290 | |
291 void image_instantiator_format_create (void); | |
292 void image_instantiator_format_create_glyphs_eimage (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
293 void image_instantiator_format_create_glyphs_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
294 void image_instantiator_format_create_glyphs_mswindows (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
295 void image_instantiator_format_create_glyphs_tty (void); |
428 | 296 void image_instantiator_format_create_glyphs_widget (void); |
297 void image_instantiator_format_create_glyphs_x (void); | |
298 | |
299 /* Initialize the lstream types (dump-time only). */ | |
300 | |
301 void lstream_type_create (void); | |
302 void lstream_type_create_file_coding (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
303 void lstream_type_create_mswindows_selectable (void); |
428 | 304 void lstream_type_create_print (void); |
305 | |
306 /* Initialize process types */ | |
307 | |
308 void process_type_create_nt (void); | |
309 void process_type_create_unix (void); | |
310 | |
311 /* Allow for Fprovide() (dump-time only). */ | |
312 | |
313 void init_provide_once (void); | |
314 | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
315 /* Lisp interactive function to sort groups of initialization functions by |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
316 name, ignoring any reinit_ or init_ at the beginning. Put the cursor |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
317 after the last right paren, type C-x C-e, then select some text and |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
318 M-x sort-symsinit. |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
319 |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
320 (defun sort-symsinit (start end) |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
321 (interactive "r") |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
322 (sort-regexp-fields nil "^.*?void \\(?:re\\)?\\(init_\\)?\\([A-Za-z0-9_]+\\).*$" "\\2" |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
323 start end)) |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
324 |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
325 */ |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
326 |
771 | 327 /* Initialize most variables (dump-time for vars_, dump-time and |
2367 | 328 post-pdump-load-time for reinit_vars). */ |
428 | 329 |
330 void vars_of_abbrev (void); | |
331 void vars_of_alloc (void); | |
332 void vars_of_balloon_x (void); | |
333 void vars_of_buffer (void); | |
334 void reinit_vars_of_buffer (void); | |
335 void vars_of_bytecode (void); | |
336 void vars_of_callint (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
337 EXTERN_C void vars_of_canna_api (void); |
428 | 338 void vars_of_chartab (void); |
339 void vars_of_cmdloop (void); | |
340 void vars_of_cmds (void); | |
341 void vars_of_console (void); | |
342 void reinit_vars_of_console (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
343 void vars_of_console_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
344 void vars_of_console_mswindows (void); |
428 | 345 void vars_of_console_stream (void); |
346 void vars_of_console_tty (void); | |
3381 | 347 void vars_of_console_x (void); |
428 | 348 void vars_of_data (void); |
349 void vars_of_database (void); | |
350 void vars_of_debug (void); | |
351 void reinit_vars_of_debug (void); | |
352 void vars_of_device (void); | |
353 void reinit_vars_of_device (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
354 void vars_of_device_gtk (void); |
428 | 355 void vars_of_device_mswindows (void); |
356 void vars_of_device_x (void); | |
357 void reinit_vars_of_device_x (void); | |
358 void vars_of_dialog (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
359 void vars_of_dialog_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
360 void vars_of_dialog_mswindows (void); |
428 | 361 void vars_of_dialog_x (void); |
362 void vars_of_dired (void); | |
363 void vars_of_dired_mswindows (void); | |
364 void vars_of_doc (void); | |
365 void vars_of_dragdrop (void); | |
366 void vars_of_editfns (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
367 EXTERN_C void vars_of_eldap (void); |
428 | 368 void vars_of_emacs (void); |
369 void vars_of_eval (void); | |
370 void reinit_vars_of_eval (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
371 void vars_of_event_Xt (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
372 void reinit_vars_of_event_Xt (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
373 void vars_of_event_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
374 void reinit_vars_of_event_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
375 void vars_of_event_mswindows (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
376 void reinit_vars_of_event_mswindows (void); |
428 | 377 void vars_of_event_stream (void); |
378 void reinit_vars_of_event_stream (void); | |
379 void vars_of_event_tty (void); | |
380 void reinit_vars_of_event_tty (void); | |
381 void vars_of_events (void); | |
382 void reinit_vars_of_events (void); | |
383 void vars_of_extents (void); | |
384 void reinit_vars_of_extents (void); | |
385 void vars_of_faces (void); | |
771 | 386 void vars_of_file_coding (void); |
387 void reinit_vars_of_file_coding (void); | |
428 | 388 void vars_of_fileio (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
389 #ifdef USE_C_FONT_LOCK |
442 | 390 void reinit_vars_of_fileio (void); |
428 | 391 void vars_of_filelock (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
392 #endif /* USE_C_FONT_LOCK */ |
428 | 393 void vars_of_floatfns (void); |
771 | 394 void vars_of_fns (void); |
428 | 395 void vars_of_font_lock (void); |
396 void reinit_vars_of_font_lock (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
397 void vars_of_font_mgr (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
398 void reinit_vars_of_font_mgr (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
399 void vars_of_frame (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
400 void vars_of_frame_gtk (void); |
428 | 401 void vars_of_frame_mswindows (void); |
438 | 402 void reinit_vars_of_frame_mswindows (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
403 void vars_of_frame_tty (void); |
428 | 404 void vars_of_frame_x (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
405 void vars_of_glyphs (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
406 void reinit_vars_of_glyphs (void); |
428 | 407 void vars_of_glyphs_eimage (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
408 void vars_of_glyphs_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
409 void vars_of_glyphs_mswindows (void); |
428 | 410 void vars_of_glyphs_widget (void); |
411 void reinit_vars_of_glyphs_widget (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
412 void vars_of_glyphs_x (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
413 void vars_of_gpmevent (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
414 void vars_of_gui (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
415 void vars_of_gui_gtk (void); |
428 | 416 void vars_of_gui_x (void); |
417 void reinit_vars_of_gui_x (void); | |
418 void vars_of_gutter (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
419 void vars_of_indent (void); |
428 | 420 void vars_of_input_method_motif (void); |
421 void vars_of_input_method_xlib (void); | |
422 void vars_of_insdel (void); | |
423 void reinit_vars_of_insdel (void); | |
424 void vars_of_intl (void); | |
771 | 425 void vars_of_intl_win32 (void); |
428 | 426 void vars_of_keymap (void); |
427 void vars_of_lread (void); | |
428 void reinit_vars_of_lread (void); | |
429 void vars_of_lstream (void); | |
430 void reinit_vars_of_lstream (void); | |
431 void vars_of_macros (void); | |
432 void vars_of_md5 (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
433 void vars_of_menubar (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
434 void vars_of_menubar_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
435 void reinit_vars_of_menubar_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
436 void vars_of_menubar_mswindows (void); |
428 | 437 void vars_of_menubar_x (void); |
438 void reinit_vars_of_menubar_x (void); | |
439 void vars_of_minibuf (void); | |
440 void reinit_vars_of_minibuf (void); | |
441 void vars_of_module (void); | |
442 void reinit_vars_of_module (void); | |
443 void vars_of_mule_ccl(void); | |
444 void vars_of_mule_charset (void); | |
771 | 445 void vars_of_mule_coding (void); |
446 void reinit_vars_of_mule_coding (void); | |
428 | 447 void vars_of_mule_wnn (void); |
442 | 448 void reinit_vars_of_mule_wnn (void); |
440 | 449 void vars_of_nt (void); |
1983 | 450 void vars_of_number (void); |
4802
2fc0e2f18322
Don't create any bignums before pdumping. Add bignum, ratio, and bigfloat
Jerry James <james@xemacs.org>
parents:
3381
diff
changeset
|
451 void reinit_vars_of_number (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
452 void reinit_vars_of_object_mswindows (void); |
428 | 453 void vars_of_objects (void); |
454 void reinit_vars_of_objects (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
455 void vars_of_objects_gtk (void); |
428 | 456 void vars_of_objects_mswindows (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
457 void vars_of_objects_tty (void); |
428 | 458 void vars_of_objects_x (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
459 EXTERN_C void vars_of_postgresql (void); |
428 | 460 void vars_of_print (void); |
461 void reinit_vars_of_print (void); | |
462 void vars_of_process (void); | |
463 void vars_of_process_nt (void); | |
464 void vars_of_process_unix (void); | |
465 void vars_of_profile (void); | |
466 void vars_of_ralloc (void); | |
2526 | 467 void vars_of_realpath (void); |
428 | 468 void vars_of_redisplay (void); |
814 | 469 void vars_of_regex (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
470 void vars_of_scrollbar (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
471 void vars_of_scrollbar_gtk (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
472 void vars_of_scrollbar_mswindows (void); |
428 | 473 void vars_of_scrollbar_x (void); |
474 void reinit_vars_of_scrollbar_x (void); | |
475 void vars_of_search (void); | |
476 void reinit_vars_of_search (void); | |
477 void vars_of_select (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
478 void vars_of_select_gtk (void); |
428 | 479 void vars_of_select_mswindows (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
480 void vars_of_select_x (void); |
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
481 void reinit_vars_of_select_x (void); |
428 | 482 void vars_of_sound (void); |
483 void vars_of_specifier (void); | |
484 void vars_of_sunpro (void); | |
485 void vars_of_symbols (void); | |
486 void vars_of_syntax (void); | |
440 | 487 void vars_of_tests (void); |
771 | 488 void vars_of_text (void); |
489 void reinit_vars_of_text (void); | |
428 | 490 void vars_of_toolbar (void); |
491 void vars_of_tooltalk (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
492 void vars_of_ui_gtk (void); |
428 | 493 void vars_of_undo (void); |
494 void reinit_vars_of_undo (void); | |
771 | 495 void vars_of_unicode (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
496 void vars_of_win32 (void); |
428 | 497 void vars_of_window (void); |
498 void reinit_vars_of_window (void); | |
499 | |
500 /* Initialize specifier variables (dump-time only). */ | |
501 | |
502 void specifier_vars_of_glyphs (void); | |
863 | 503 void specifier_vars_of_glyphs_widget (void); |
428 | 504 void specifier_vars_of_gutter (void); |
505 void specifier_vars_of_menubar (void); | |
506 void specifier_vars_of_redisplay (void); | |
507 void specifier_vars_of_scrollbar (void); | |
508 void specifier_vars_of_toolbar (void); | |
509 void specifier_vars_of_window (void); | |
510 | |
771 | 511 /* Initialize variables with complex dependencies on other variables |
512 (dump-time for complex_vars_, dump-time and post-pdump-load-time | |
513 for reinit_(), pdump-load-time-only for reinit_..._runtime_only()). | |
514 #### The reinit_() functions should be called from emacs.c, not the | |
515 corresponding complex_vars_of_(). */ | |
428 | 516 |
517 void complex_vars_of_alloc (void); | |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
518 void complex_vars_of_buffer (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
519 void reinit_complex_vars_of_buffer_runtime_only (void); |
428 | 520 void complex_vars_of_casetab (void); |
521 void complex_vars_of_chartab (void); | |
522 void complex_vars_of_console (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
523 void reinit_complex_vars_of_console_runtime_only (void); |
428 | 524 void complex_vars_of_emacs (void); |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
525 void complex_vars_of_faces (void); |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
526 void complex_vars_of_file_coding (void); |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
527 void complex_vars_of_font_mgr (void); |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
528 void complex_vars_of_frame (void); |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
529 void complex_vars_of_glyphs (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
530 void complex_vars_of_glyphs_gtk (void); |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
531 void complex_vars_of_glyphs_mswindows (void); |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
532 void complex_vars_of_glyphs_x (void); |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
533 void complex_vars_of_intl_win32 (void); |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
534 void complex_vars_of_keymap (void); |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
535 void complex_vars_of_menubar (void); |
428 | 536 void complex_vars_of_minibuf (void); |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
537 void reinit_complex_vars_of_minibuf (void); |
4834
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
538 void complex_vars_of_mule_charset (void); |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
539 void complex_vars_of_scrollbar (void); |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
540 void complex_vars_of_syntax (void); |
b3ea9c582280
Use new cygwin_conv_path API with Cygwin 1.7 for converting names between Win32 and POSIX, UTF-8-aware, with attendant changes elsewhere
Ben Wing <ben@xemacs.org>
parents:
4802
diff
changeset
|
541 void complex_vars_of_unicode (void); |
428 | 542 |
543 /* Late initialization -- stuff pertaining only to interactive usage, | |
771 | 544 I/O, or Lisp reading. (Dump-time and run-time, but the code itself |
545 may conditionalize on this by checking the `initialized' variable.) */ | |
428 | 546 |
771 | 547 void init_buffer_1 (void); |
548 void init_buffer_2 (void); | |
442 | 549 void init_console_stream (int reinit); |
428 | 550 void init_device_tty (void); |
551 void init_editfns (void); | |
552 void init_event_Xt_late (void); | |
4908
b3ce27ca7647
various fixes related to gtk, redisplay-xlike-inc.c
Ben Wing <ben@xemacs.org>
parents:
4834
diff
changeset
|
553 void init_event_gtk_late (void); |
814 | 554 void init_event_mswindows_late (void); |
428 | 555 void init_event_stream (void); |
556 void init_event_tty_late (void); | |
557 void init_event_unixoid (void); | |
771 | 558 void init_file_coding (void); |
428 | 559 void init_hpplay (void); |
771 | 560 void init_intl (void); |
561 void init_intl_win32 (void); | |
428 | 562 void init_lread (void); |
563 void init_macros (void); | |
814 | 564 void init_mswindows_environment (void); |
565 void init_nt (void); | |
771 | 566 void init_postgresql_from_environment (void); |
428 | 567 void init_redisplay (void); |
771 | 568 void init_select_mswindows (void); |
428 | 569 void init_sunpro (void); |
442 | 570 void init_win32 (void); |
814 | 571 void init_xemacs_process (void); |
428 | 572 |
1983 | 573 /* Enhanced number initialization: must be done only at runtime due to complex |
574 interactions with the supporting libraries. */ | |
575 void init_number (void); | |
576 | |
440 | 577 #endif /* INCLUDED_symsinit_h_ */ |