annotate src/gtk-xemacs.h @ 3025:facf3239ba30
[xemacs-hg @ 2005-10-25 11:16:19 by ben]
rename new->new_, convert 'foo to `foo'
EmacsFrame.c, ExternalClient.c, ExternalShell.c, chartab.c, cmdloop.c, compiler.h, console.c, database.c, device-msw.c, device-x.c, device.c, doc.c, dragdrop.c, eval.c, event-msw.c, event-stream.c, events.c, extents.c, file-coding.c, fns.c, frame-tty.c, frame.c, gpmevent.c, gutter.c, hash.c, imgproc.c, indent.c, keymap.c, lisp-union.h, macros.c, malloc.c, marker.c, menubar-x.c, menubar.c, mule-charset.c, number.c, process.c, profile.h, ralloc.c, redisplay.c, select-common.h, select.c, syntax.c, sysfile.h, sysproc.h, systime.h, syswindows.h, toolbar.c, tooltalk.c, tparam.c, unexaix.c, unexalpha.c, unexconvex.c, unexec.c, unexhp9k800.c, unexmips.c, unicode.c, window.c: new -> new_.
'foo -> `foo'.
lwlib-internal.h: redo assert macros to follow lisp.h and not trigger warnings.
lwlib.c, xlwtabs.c: new -> new_.
author |
ben |
date |
Tue, 25 Oct 2005 11:16:49 +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__ */
|