1 /* ///////////////////////////////////////////////////////////////////////////
3 // Purpose: wxWindows's GTK base widget
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////// */
11 #ifndef __GTK_MYFIXED_H__
12 #define __GTK_MYFIXED_H__
16 #include <gtk/gtkcontainer.h>
21 #endif /* __cplusplus */
24 #define GTK_MYFIXED(obj) GTK_CHECK_CAST (obj, gtk_myfixed_get_type (), GtkMyFixed)
25 #define GTK_MYFIXED_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, gtk_myfixed_get_type (), GtkMyFixedClass)
26 #define GTK_IS_MYFIXED(obj) GTK_CHECK_TYPE (obj, gtk_myfixed_get_type ())
29 typedef struct _GtkMyFixed GtkMyFixed
;
30 typedef struct _GtkMyFixedClass GtkMyFixedClass
;
31 typedef struct _GtkMyFixedChild GtkMyFixedChild
;
35 GtkContainer container
;
40 struct _GtkMyFixedClass
42 GtkContainerClass parent_class
;
45 struct _GtkMyFixedChild
52 guint
gtk_myfixed_get_type (void);
53 GtkWidget
* gtk_myfixed_new (void);
54 void gtk_myfixed_put (GtkMyFixed
*myfixed
,
58 void gtk_myfixed_move (GtkMyFixed
*myfixed
,
65 #endif /* __cplusplus */
68 #endif /* __GTK_MYFIXED_H__ */