X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c67daf87774c71ae9f73af9969008af220e52a11..c96faa7c9b1926d63a2fff32ac4508d3138a7bee:/include/wx/gtk/win_gtk.h diff --git a/include/wx/gtk/win_gtk.h b/include/wx/gtk/win_gtk.h index d42e89bebe..90afdf4b79 100644 --- a/include/wx/gtk/win_gtk.h +++ b/include/wx/gtk/win_gtk.h @@ -2,9 +2,8 @@ // Name: win_gtk.h // Purpose: wxWindows's GTK base widget // Author: Robert Roebling -// Created: 01/02/97 -// Id: -// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem +// Id: $Id$ +// Copyright: (c) 1998 Robert Roebling // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////// */ @@ -12,10 +11,10 @@ #ifndef __GTK_MYFIXED_H__ #define __GTK_MYFIXED_H__ - #include #include - +#include +#include #ifdef __cplusplus extern "C" { @@ -34,13 +33,21 @@ typedef struct _GtkMyFixedChild GtkMyFixedChild; struct _GtkMyFixed { GtkContainer container; - GList *children; +#if (GTK_MINOR_VERSION > 0) + GtkShadowType shadow_type; +#endif }; struct _GtkMyFixedClass { GtkContainerClass parent_class; + +#if (GTK_MINOR_VERSION > 0) + void (*set_scroll_adjustments) (GtkMyFixed *myfixed, + GtkAdjustment *hadjustment, + GtkAdjustment *vadjustment); +#endif }; struct _GtkMyFixedChild @@ -52,6 +59,10 @@ struct _GtkMyFixedChild guint gtk_myfixed_get_type (void); GtkWidget* gtk_myfixed_new (void); +#if (GTK_MINOR_VERSION > 0) +void gtk_myfixed_set_shadow_type (GtkMyFixed *myfixed, + GtkShadowType type); +#endif void gtk_myfixed_put (GtkMyFixed *myfixed, GtkWidget *widget, gint16 x, @@ -60,7 +71,6 @@ void gtk_myfixed_move (GtkMyFixed *myfixed, GtkWidget *widget, gint16 x, gint16 y); - #ifdef __cplusplus } #endif /* __cplusplus */