X-Git-Url: http://pileus.org/git/?a=blobdiff_plain;f=gtk%2Fgtkcheckmenuitem.h;h=c793bcd8d3af8a74b1c4ebdd77f2ca34d5bbeb5c;hb=ceeed09d0780e5a2227fcfdb3e13f7530aa5fcf2;hp=bf5230cf89e6fe5f3192e372eec45eb5c921fcac;hpb=77d4d3cdae0739c0a5643fb23891f8790f05c074;p=~andy%2Fgtk diff --git a/gtk/gtkcheckmenuitem.h b/gtk/gtkcheckmenuitem.h index bf5230cf8..c793bcd8d 100644 --- a/gtk/gtkcheckmenuitem.h +++ b/gtk/gtkcheckmenuitem.h @@ -12,9 +12,7 @@ * 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 . */ /* @@ -24,14 +22,14 @@ * GTK+ at ftp://ftp.gtk.org/pub/gtk/. */ -#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) -#error "Only can be included directly." -#endif - #ifndef __GTK_CHECK_MENU_ITEM_H__ #define __GTK_CHECK_MENU_ITEM_H__ +#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION) +#error "Only can be included directly." +#endif + #include @@ -45,17 +43,16 @@ G_BEGIN_DECLS #define GTK_CHECK_MENU_ITEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CHECK_MENU_ITEM, GtkCheckMenuItemClass)) -typedef struct _GtkCheckMenuItem GtkCheckMenuItem; -typedef struct _GtkCheckMenuItemClass GtkCheckMenuItemClass; +typedef struct _GtkCheckMenuItem GtkCheckMenuItem; +typedef struct _GtkCheckMenuItemPrivate GtkCheckMenuItemPrivate; +typedef struct _GtkCheckMenuItemClass GtkCheckMenuItemClass; struct _GtkCheckMenuItem { GtkMenuItem menu_item; - guint GSEAL (active) : 1; - guint GSEAL (always_show_toggle) : 1; - guint GSEAL (inconsistent) : 1; - guint GSEAL (draw_as_radio) : 1; + /*< private >*/ + GtkCheckMenuItemPrivate *priv; }; struct _GtkCheckMenuItemClass @@ -64,7 +61,7 @@ struct _GtkCheckMenuItemClass void (* toggled) (GtkCheckMenuItem *check_menu_item); void (* draw_indicator) (GtkCheckMenuItem *check_menu_item, - GdkRectangle *area); + cairo_t *cr); /* Padding for future expansion */ void (*_gtk_reserved1) (void); @@ -91,6 +88,11 @@ void gtk_check_menu_item_set_draw_as_radio (GtkCheckMenuItem *check_menu_i gboolean gtk_check_menu_item_get_draw_as_radio (GtkCheckMenuItem *check_menu_item); +/* private */ +void _gtk_check_menu_item_set_active (GtkCheckMenuItem *check_menu_item, + gboolean is_active); + + G_END_DECLS #endif /* __GTK_CHECK_MENU_ITEM_H__ */