* src/emacsgtkfixed.c:
* src/emacsgtkfixed.h:
static void emacs_fixed_get_preferred_height (GtkWidget *widget,
gint *minimum,
gint *natural);
+#ifndef HAVE_PGTK
+static GType emacs_fixed_get_type (void);
+#endif
G_DEFINE_TYPE (EmacsFixed, emacs_fixed, GTK_TYPE_FIXED)
static EmacsFixed *
G_BEGIN_DECLS
+#ifdef HAVE_PGTK
#define EMACS_TYPE_FIXED (emacs_fixed_get_type ())
#define EMACS_IS_FIXED(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EMACS_TYPE_FIXED))
+#endif
struct frame;
GtkFixedClass parent_class;
};
+#ifdef HAVE_PGTK
extern GType emacs_fixed_get_type (void);
+#endif
extern GtkWidget *emacs_fixed_new (struct frame *f);