Mercurial > hg > xemacs-beta
annotate src/gtk-xemacs.h @ 4117:229bd619740a
[xemacs-hg @ 2007-08-15 11:06:02 by crestani]
2007-08-15 Marcus Crestani <crestani@xemacs.org>
* buffer.c (Fkill_buffer):
* console-tty.c (free_tty_console_struct):
* device-gtk.c (free_gtk_device_struct):
* device-msw.c (mswindows_delete_device):
* device-msw.c (msprinter_delete_device):
* device-x.c (free_x_device_struct):
* device-x.c (x_delete_device):
* dynarr.c (Dynarr_lisp_realloc):
* dynarr.c (Dynarr_free):
* elhash.c:
* elhash.c (finalize_hash_table):
* elhash.c (resize_hash_table):
* elhash.c (pdump_reorganize_hash_table):
* extents.c (gap_array_delete_marker):
* frame-gtk.c (gtk_delete_frame):
* frame-msw.c (mswindows_delete_frame):
* frame-x.c (x_delete_frame):
* glyphs.c (check_for_ignored_expose):
* mc-alloc.c (mc_realloc_1):
* mc-alloc.h:
* objects-tty.c (tty_finalize_color_instance):
* objects-tty.c (tty_finalize_font_instance):
* objects-tty.c (console_type_create_objects_tty):
* syntax.c:
* syntax.c (uninit_buffer_syntax_cache):
* vdb.c (Ftest_vdb): Remove all calls to mc_free.
author | crestani |
---|---|
date | Wed, 15 Aug 2007 11:06:10 +0000 |
parents | 543769b89fed |
children | db7068430402 |
rev | line source |
---|---|
462 | 1 /* gtk-xemacs.h |
2 ** | |
3 ** Description: A widget to encapsulate a XEmacs 'text widget' | |
4 ** | |
5 ** Created by: William M. Perry | |
6 ** Copyright (c) 2000 William M. Perry <wmperry@gnu.org> | |
7 ** | |
8 */ | |
9 | |
10 #ifndef __GTK_XEMACS_H__ | |
11 #define __GTK_XEMACS_H__ | |
12 | |
13 #include <config.h> | |
14 #include "frame.h" | |
15 #include <gdk/gdk.h> | |
16 #include <gtk/gtkfixed.h> | |
17 | |
1743 | 18 BEGIN_C_DECLS |
462 | 19 |
20 #define GTK_XEMACS(obj) GTK_CHECK_CAST (obj, gtk_xemacs_get_type (), GtkXEmacs) | |
21 #define GTK_XEMACS_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gtk_xemacs_get_type (), GtkXEmacsClass) | |
22 #define GTK_IS_XEMACS(obj) GTK_CHECK_TYPE (obj, gtk_xemacs_get_type ()) | |
23 #define GTK_XEMACS_FRAME(obj) GTK_XEMACS (obj)->f | |
24 | |
25 typedef struct _GtkXEmacs GtkXEmacs; | |
26 typedef struct _GtkXEmacsClass GtkXEmacsClass; | |
27 | |
28 struct _GtkXEmacs | |
29 { | |
30 GtkFixed fixed; | |
31 struct frame *f; | |
32 }; | |
33 | |
34 struct _GtkXEmacsClass | |
35 { | |
36 GtkFixedClass parent_class; | |
37 }; | |
38 | |
39 guint gtk_xemacs_get_type (void); | |
40 GtkWidget *gtk_xemacs_new (struct frame *f); | |
41 | |
1743 | 42 END_C_DECLS |
462 | 43 |
44 #endif /* __GTK_XEMACS_H__ */ |