Seal GtkRuler.

svn path=/trunk/; revision=20595
This commit is contained in:
Tim Janik 2008-06-20 11:07:24 +00:00
parent f22e16307a
commit 3378ee8ace

View File

@ -67,20 +67,21 @@ struct _GtkRuler
{ {
GtkWidget widget; GtkWidget widget;
GdkPixmap *backing_store; GdkPixmap *GSEAL (backing_store);
GdkGC *non_gr_exp_gc; /* unused */ GdkGC *GSEAL (non_gr_exp_gc); /* unused */
GtkRulerMetric *metric; GtkRulerMetric *GSEAL (metric);
gint xsrc, ysrc; gint GSEAL (xsrc);
gint slider_size; gint GSEAL (ysrc);
gint GSEAL (slider_size);
/* The upper limit of the ruler (in points) */ /* The upper limit of the ruler (in points) */
gdouble lower; gdouble GSEAL (lower);
/* The lower limit of the ruler */ /* The lower limit of the ruler */
gdouble upper; gdouble GSEAL (upper);
/* The position of the mark on the ruler */ /* The position of the mark on the ruler */
gdouble position; gdouble GSEAL (position);
/* The maximum size of the ruler */ /* The maximum size of the ruler */
gdouble max_size; gdouble GSEAL (max_size);
}; };
struct _GtkRulerClass struct _GtkRulerClass