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 ())
37 typedef struct _GtkMyFixed GtkMyFixed
;
38 typedef struct _GtkMyFixedClass GtkMyFixedClass
;
42 GtkContainer container
;
44 GtkMyShadowType shadow_type
;
52 GdkWindow
*bin_window
;
54 GdkVisibilityState visibility
;
55 gulong configure_serial
;
59 gboolean clear_on_draw
;
62 struct _GtkMyFixedClass
64 GtkContainerClass parent_class
;
66 void (*set_scroll_adjustments
) (GtkMyFixed
*myfixed
,
67 GtkAdjustment
*hadjustment
,
68 GtkAdjustment
*vadjustment
);
71 guint
gtk_myfixed_get_type (void);
72 GtkWidget
* gtk_myfixed_new (void);
74 void gtk_myfixed_set_shadow_type (GtkMyFixed
*myfixed
,
75 GtkMyShadowType type
);
77 void gtk_my_fixed_set_clear (GtkMyFixed
*myfixed
,
80 void gtk_myfixed_scroll (GtkMyFixed
*myfixed
,
84 void gtk_myfixed_put (GtkMyFixed
*myfixed
,
91 void gtk_myfixed_move (GtkMyFixed
*myfixed
,
96 void gtk_myfixed_resize (GtkMyFixed
*myfixed
,
101 void gtk_myfixed_set_size (GtkMyFixed
*myfixed
,
109 #endif /* __cplusplus */
112 #endif /* __GTK_MYFIXED_H__ */