X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkarrow.h;h=0ab1bf84f6cdf804a15307212f260a1d6605de05;hb=3c04597306a918317cb96d6c267fc73a798c04e4;hp=422b4e6ec4069856877b5d2cc0b085c95060d7cd;hpb=62341005d165089fd30ad3ac7b093a3d8221ccab;p=~andy%2Fgtk diff --git a/gtk/gtkarrow.h b/gtk/gtkarrow.h index 422b4e6ec..0ab1bf84f 100644 --- a/gtk/gtkarrow.h +++ b/gtk/gtkarrow.h @@ -12,29 +12,28 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the - * Free Software Foundation, Inc., 59 Temple Place - Suite 330, - * Boston, MA 02111-1307, USA. + * License along with this library. If not, see . */ /* * Modified by the GTK+ Team and others 1997-2001. See the AUTHORS * file for a list of people on the GTK+ Team. See the ChangeLog * files for a list of changes. These files are distributed with - * GTK+ at ftp://ftp.gtk.org/pub/gtk/. + * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */ #ifndef __GTK_ARROW_H__ #define __GTK_ARROW_H__ -#include +#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) +#error "Only can be included directly." +#endif + #include -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ +G_BEGIN_DECLS #define GTK_TYPE_ARROW (gtk_arrow_get_type ()) @@ -44,21 +43,27 @@ extern "C" { #define GTK_IS_ARROW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_ARROW)) #define GTK_ARROW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_ARROW, GtkArrowClass)) - -typedef struct _GtkArrow GtkArrow; -typedef struct _GtkArrowClass GtkArrowClass; +typedef struct _GtkArrow GtkArrow; +typedef struct _GtkArrowPrivate GtkArrowPrivate; +typedef struct _GtkArrowClass GtkArrowClass; struct _GtkArrow { GtkMisc misc; - gint16 arrow_type; - gint16 shadow_type; + /*< private >*/ + GtkArrowPrivate *priv; }; struct _GtkArrowClass { GtkMiscClass parent_class; + + /* Padding for future expansion */ + void (*_gtk_reserved1) (void); + void (*_gtk_reserved2) (void); + void (*_gtk_reserved3) (void); + void (*_gtk_reserved4) (void); }; @@ -70,9 +75,7 @@ void gtk_arrow_set (GtkArrow *arrow, GtkShadowType shadow_type); -#ifdef __cplusplus -} -#endif /* __cplusplus */ +G_END_DECLS #endif /* __GTK_ARROW_H__ */