X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkarrow.h;h=0ab1bf84f6cdf804a15307212f260a1d6605de05;hb=d97861bd8b338c3d25d7ffb5496edee9eee9bfbb;hp=7692b77180acd5cc57f876307ec0da6151b174d3;hpb=3845ca6eea4ed8c74d302965342bfcd748b79b31;p=~andy%2Fgtk diff --git a/gtk/gtkarrow.h b/gtk/gtkarrow.h index 7692b7718..0ab1bf84f 100644 --- a/gtk/gtkarrow.h +++ b/gtk/gtkarrow.h @@ -12,23 +12,24 @@ * 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 @@ -42,21 +43,27 @@ G_BEGIN_DECLS #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); };