Mercurial > hg > xemacs-beta
view src/gtk-xemacs.h @ 4381:3906442b491b
Improve style and add tests for 'built-in-symbol-file'.
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Thu, 03 Jan 2008 01:33:59 -0800 |
parents | 543769b89fed |
children | db7068430402 |
line wrap: on
line source
/* gtk-xemacs.h ** ** Description: A widget to encapsulate a XEmacs 'text widget' ** ** Created by: William M. Perry ** Copyright (c) 2000 William M. Perry <wmperry@gnu.org> ** */ #ifndef __GTK_XEMACS_H__ #define __GTK_XEMACS_H__ #include <config.h> #include "frame.h" #include <gdk/gdk.h> #include <gtk/gtkfixed.h> BEGIN_C_DECLS #define GTK_XEMACS(obj) GTK_CHECK_CAST (obj, gtk_xemacs_get_type (), GtkXEmacs) #define GTK_XEMACS_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gtk_xemacs_get_type (), GtkXEmacsClass) #define GTK_IS_XEMACS(obj) GTK_CHECK_TYPE (obj, gtk_xemacs_get_type ()) #define GTK_XEMACS_FRAME(obj) GTK_XEMACS (obj)->f typedef struct _GtkXEmacs GtkXEmacs; typedef struct _GtkXEmacsClass GtkXEmacsClass; struct _GtkXEmacs { GtkFixed fixed; struct frame *f; }; struct _GtkXEmacsClass { GtkFixedClass parent_class; }; guint gtk_xemacs_get_type (void); GtkWidget *gtk_xemacs_new (struct frame *f); END_C_DECLS #endif /* __GTK_XEMACS_H__ */