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__
15 #include <gtk/gtkcontainer.h>
16 #include <gtk/gtkadjustment.h>
17 #include <gtk/gtkfeatures.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
;
37 #if (GTK_MINOR_VERSION > 0)
38 GtkShadowType shadow_type
;
42 struct _GtkMyFixedClass
44 GtkContainerClass parent_class
;
46 #if (GTK_MINOR_VERSION > 0)
47 void (*set_scroll_adjustments
) (GtkMyFixed
*myfixed
,
48 GtkAdjustment
*hadjustment
,
49 GtkAdjustment
*vadjustment
);
53 struct _GtkMyFixedChild
62 guint
gtk_myfixed_get_type (void);
63 GtkWidget
* gtk_myfixed_new (void);
64 #if (GTK_MINOR_VERSION > 0)
65 void gtk_myfixed_set_shadow_type (GtkMyFixed
*myfixed
,
68 void gtk_myfixed_put (GtkMyFixed
*myfixed
,
75 void gtk_myfixed_move (GtkMyFixed
*myfixed
,
80 void gtk_myfixed_resize (GtkMyFixed
*myfixed
,
85 void gtk_myfixed_set_size (GtkMyFixed
*myfixed
,
93 #endif /* __cplusplus */
96 #endif /* __GTK_MYFIXED_H__ */