comparison src/console-gtk-impl.h @ 5120:d1247f3cc363 ben-lisp-object

latest work on lisp-object workspace; more changes eliminating LCRECORD in place of LISP_OBJECT; now compiles and runs.
author Ben Wing <ben@xemacs.org>
date Mon, 28 Dec 2009 01:15:52 -0600
parents e0db3c197671
children a9c41067dd88
comparison
equal deleted inserted replaced
5119:d877c14318b3 5120:d1247f3cc363
48 DECLARE_CONSOLE_TYPE (gtk); 48 DECLARE_CONSOLE_TYPE (gtk);
49 49
50 struct gtk_device 50 struct gtk_device
51 { 51 {
52 #ifdef NEW_GC 52 #ifdef NEW_GC
53 struct lrecord_header header; 53 LISP_OBJECT_HEADER header;
54 #endif /* NEW_GC */ 54 #endif /* NEW_GC */
55 /* Gtk application info. */ 55 /* Gtk application info. */
56 GtkWidget *gtk_app_shell; 56 GtkWidget *gtk_app_shell;
57 57
58 /* Cache of GC's for frame's on this device. */ 58 /* Cache of GC's for frame's on this device. */
142 #define MAX_CONCURRENT_TOP_WIDGETS 8 142 #define MAX_CONCURRENT_TOP_WIDGETS 8
143 143
144 struct gtk_frame 144 struct gtk_frame
145 { 145 {
146 #ifdef NEW_GC 146 #ifdef NEW_GC
147 struct lrecord_header header; 147 LISP_OBJECT_HEADER header;
148 #endif /* NEW_GC */ 148 #endif /* NEW_GC */
149 149
150 /* The widget of this frame. */ 150 /* The widget of this frame. */
151 GtkWidget *widget; /* This is really a GtkWindow */ 151 GtkWidget *widget; /* This is really a GtkWindow */
152 152