gtk+ r20621 - trunk/gtk



Author: timj
Date: Fri Jun 20 11:09:49 2008
New Revision: 20621
URL: http://svn.gnome.org/viewvc/gtk+?rev=20621&view=rev

Log:
Switch to "guint GSEAL (foo) : width;" when packing fields in guints.

* gtk/gtkbox.h:
* gtk/gtkbutton.h:
* gtk/gtkcellrenderer.h:
* gtk/gtkcellrenderertext.h:
* gtk/gtkcheckmenuitem.h:
* gtk/gtkcontainer.h:
* gtk/gtkentry.h:
* gtk/gtkhandlebox.h:
* gtk/gtkimcontextsimple.h:
* gtk/gtklabel.h:
* gtk/gtkliststore.h:
* gtk/gtkmenu.h:
* gtk/gtkmenuitem.h:
* gtk/gtkmenushell.h:
* gtk/gtknotebook.h:
* gtk/gtkpaned.h:
* gtk/gtkplug.h:
* gtk/gtkprintjob.h:
* gtk/gtkprogressbar.h:
* gtk/gtkrange.h:
* gtk/gtkscale.h:
* gtk/gtkscrolledwindow.h:
* gtk/gtksizegroup.h:
* gtk/gtksocket.h:
* gtk/gtkspinbutton.h:
* gtk/gtkstatusbar.h:
* gtk/gtktable.h:
* gtk/gtktearoffmenuitem.h:
* gtk/gtktextbuffer.h:
* gtk/gtktextview.h:
* gtk/gtktogglebutton.h:
* gtk/gtktoolbar.h:
* gtk/gtktreestore.h:
* gtk/gtktreeviewcolumn.h:
* gtk/gtkwindow.h: Do not specify width inside GSEAL() when packing fields in guints.


Modified:
   trunk/gtk/gtkbox.h
   trunk/gtk/gtkbutton.h
   trunk/gtk/gtkcellrenderer.h
   trunk/gtk/gtkcellrenderertext.h
   trunk/gtk/gtkcheckmenuitem.h
   trunk/gtk/gtkcontainer.h
   trunk/gtk/gtkentry.h
   trunk/gtk/gtkhandlebox.h
   trunk/gtk/gtkimcontextsimple.h
   trunk/gtk/gtklabel.h
   trunk/gtk/gtkliststore.h
   trunk/gtk/gtkmenu.h
   trunk/gtk/gtkmenuitem.h
   trunk/gtk/gtkmenushell.h
   trunk/gtk/gtknotebook.h
   trunk/gtk/gtkpaned.h
   trunk/gtk/gtkplug.h
   trunk/gtk/gtkprintjob.h
   trunk/gtk/gtkprogressbar.h
   trunk/gtk/gtkrange.h
   trunk/gtk/gtkscale.h
   trunk/gtk/gtkscrolledwindow.h
   trunk/gtk/gtksizegroup.h
   trunk/gtk/gtksocket.h
   trunk/gtk/gtkspinbutton.h
   trunk/gtk/gtkstatusbar.h
   trunk/gtk/gtktable.h
   trunk/gtk/gtktearoffmenuitem.h
   trunk/gtk/gtktextbuffer.h
   trunk/gtk/gtktextview.h
   trunk/gtk/gtktogglebutton.h
   trunk/gtk/gtktoolbar.h
   trunk/gtk/gtktreestore.h
   trunk/gtk/gtktreeviewcolumn.h
   trunk/gtk/gtkwindow.h

Modified: trunk/gtk/gtkbox.h
==============================================================================
--- trunk/gtk/gtkbox.h	(original)
+++ trunk/gtk/gtkbox.h	Fri Jun 20 11:09:49 2008
@@ -58,7 +58,7 @@
   /*< public >*/
   GList *GSEAL (children);
   gint16 GSEAL (spacing);
-  guint GSEAL (homogeneous : 1);
+  guint GSEAL (homogeneous) : 1;
 };
 
 struct _GtkBoxClass

Modified: trunk/gtk/gtkbutton.h
==============================================================================
--- trunk/gtk/gtkbutton.h	(original)
+++ trunk/gtk/gtkbutton.h	Fri Jun 20 11:09:49 2008
@@ -60,15 +60,15 @@
 
   guint GSEAL (activate_timeout);
 
-  guint GSEAL (constructed : 1);
-  guint GSEAL (in_button : 1);
-  guint GSEAL (button_down : 1);
-  guint GSEAL (relief : 2);
-  guint GSEAL (use_underline : 1);
-  guint GSEAL (use_stock : 1);
-  guint GSEAL (depressed : 1);
-  guint GSEAL (depress_on_activate : 1);
-  guint GSEAL (focus_on_click : 1);
+  guint GSEAL (constructed) : 1;
+  guint GSEAL (in_button) : 1;
+  guint GSEAL (button_down) : 1;
+  guint GSEAL (relief) : 2;
+  guint GSEAL (use_underline) : 1;
+  guint GSEAL (use_stock) : 1;
+  guint GSEAL (depressed) : 1;
+  guint GSEAL (depress_on_activate) : 1;
+  guint GSEAL (focus_on_click) : 1;
 };
 
 struct _GtkButtonClass

Modified: trunk/gtk/gtkcellrenderer.h
==============================================================================
--- trunk/gtk/gtkcellrenderer.h	(original)
+++ trunk/gtk/gtkcellrenderer.h	Fri Jun 20 11:09:49 2008
@@ -70,13 +70,13 @@
   guint16 GSEAL (xpad);
   guint16 GSEAL (ypad);
 
-  guint GSEAL (mode : 2);
-  guint GSEAL (visible : 1);
-  guint GSEAL (is_expander : 1);
-  guint GSEAL (is_expanded : 1);
-  guint GSEAL (cell_background_set : 1);
-  guint GSEAL (sensitive : 1);
-  guint GSEAL (editing : 1);
+  guint GSEAL (mode) : 2;
+  guint GSEAL (visible) : 1;
+  guint GSEAL (is_expander) : 1;
+  guint GSEAL (is_expanded) : 1;
+  guint GSEAL (cell_background_set) : 1;
+  guint GSEAL (sensitive) : 1;
+  guint GSEAL (editing) : 1;
 };
 
 struct _GtkCellRendererClass

Modified: trunk/gtk/gtkcellrenderertext.h
==============================================================================
--- trunk/gtk/gtkcellrenderertext.h	(original)
+++ trunk/gtk/gtkcellrenderertext.h	Fri Jun 20 11:09:49 2008
@@ -59,23 +59,23 @@
   gint GSEAL (rise);
   gint GSEAL (fixed_height_rows);
 
-  guint GSEAL (strikethrough : 1);
+  guint GSEAL (strikethrough) : 1;
 
-  guint GSEAL (editable  : 1);
+  guint GSEAL (editable)  : 1;
 
-  guint GSEAL (scale_set : 1);
+  guint GSEAL (scale_set) : 1;
 
-  guint GSEAL (foreground_set : 1);
-  guint GSEAL (background_set : 1);
+  guint GSEAL (foreground_set) : 1;
+  guint GSEAL (background_set) : 1;
 
-  guint GSEAL (underline_set : 1);
+  guint GSEAL (underline_set) : 1;
 
-  guint GSEAL (rise_set : 1);
+  guint GSEAL (rise_set) : 1;
 
-  guint GSEAL (strikethrough_set : 1);
+  guint GSEAL (strikethrough_set) : 1;
 
-  guint GSEAL (editable_set : 1);
-  guint GSEAL (calc_fixed_height : 1);
+  guint GSEAL (editable_set) : 1;
+  guint GSEAL (calc_fixed_height) : 1;
 };
 
 struct _GtkCellRendererTextClass

Modified: trunk/gtk/gtkcheckmenuitem.h
==============================================================================
--- trunk/gtk/gtkcheckmenuitem.h	(original)
+++ trunk/gtk/gtkcheckmenuitem.h	Fri Jun 20 11:09:49 2008
@@ -53,10 +53,10 @@
 {
   GtkMenuItem menu_item;
 
-  guint GSEAL (active : 1);
-  guint GSEAL (always_show_toggle : 1);
-  guint GSEAL (inconsistent : 1);
-  guint GSEAL (draw_as_radio : 1);
+  guint GSEAL (active) : 1;
+  guint GSEAL (always_show_toggle) : 1;
+  guint GSEAL (inconsistent) : 1;
+  guint GSEAL (draw_as_radio) : 1;
 };
 
 struct _GtkCheckMenuItemClass

Modified: trunk/gtk/gtkcontainer.h
==============================================================================
--- trunk/gtk/gtkcontainer.h	(original)
+++ trunk/gtk/gtkcontainer.h	Fri Jun 20 11:09:49 2008
@@ -59,13 +59,13 @@
 
   GtkWidget *GSEAL (focus_child);
 
-  guint GSEAL (border_width : 16);
+  guint GSEAL (border_width) : 16;
 
   /*< private >*/
-  guint GSEAL (need_resize : 1);
-  guint GSEAL (resize_mode : 2);
-  guint GSEAL (reallocate_redraws : 1);
-  guint GSEAL (has_focus_chain : 1);
+  guint GSEAL (need_resize) : 1;
+  guint GSEAL (resize_mode) : 2;
+  guint GSEAL (reallocate_redraws) : 1;
+  guint GSEAL (has_focus_chain) : 1;
 };
 
 struct _GtkContainerClass

Modified: trunk/gtk/gtkentry.h
==============================================================================
--- trunk/gtk/gtkentry.h	(original)
+++ trunk/gtk/gtkentry.h	Fri Jun 20 11:09:49 2008
@@ -58,10 +58,10 @@
 
   gchar       *GSEAL (text);
 
-  guint        GSEAL (editable : 1);
-  guint        GSEAL (visible  : 1);
-  guint        GSEAL (overwrite_mode : 1);
-  guint        GSEAL (in_drag : 1);	            /* FIXME: Should be private?
+  guint        GSEAL (editable) : 1;
+  guint        GSEAL (visible)  : 1;
+  guint        GSEAL (overwrite_mode) : 1;
+  guint        GSEAL (in_drag) : 1;	            /* FIXME: Should be private?
                                                        Dragging within the selection */
 
   guint16      GSEAL (text_length);	            /* length in use, in chars */
@@ -77,19 +77,19 @@
 
   PangoLayout  *GSEAL (cached_layout);
 
-  guint         GSEAL (cache_includes_preedit : 1);
-  guint         GSEAL (need_im_reset          : 1);
-  guint         GSEAL (has_frame              : 1);
-  guint         GSEAL (activates_default      : 1);
-  guint         GSEAL (cursor_visible         : 1);
-  guint         GSEAL (in_click               : 1); /* Flag so we don't select all when clicking in entry to focus in */
-  guint         GSEAL (is_cell_renderer       : 1);
-  guint         GSEAL (editing_canceled       : 1); /* Only used by GtkCellRendererText */ 
-  guint         GSEAL (mouse_cursor_obscured  : 1);
-  guint         GSEAL (select_words           : 1);
-  guint         GSEAL (select_lines           : 1);
-  guint         GSEAL (resolved_dir           : 4); /* PangoDirection */
-  guint         GSEAL (truncate_multiline     : 1);
+  guint         GSEAL (cache_includes_preedit) : 1;
+  guint         GSEAL (need_im_reset)          : 1;
+  guint         GSEAL (has_frame)              : 1;
+  guint         GSEAL (activates_default)      : 1;
+  guint         GSEAL (cursor_visible)         : 1;
+  guint         GSEAL (in_click)               : 1; /* Flag so we don't select all when clicking in entry to focus in */
+  guint         GSEAL (is_cell_renderer)       : 1;
+  guint         GSEAL (editing_canceled)       : 1; /* Only used by GtkCellRendererText */ 
+  guint         GSEAL (mouse_cursor_obscured)  : 1;
+  guint         GSEAL (select_words)           : 1;
+  guint         GSEAL (select_lines)           : 1;
+  guint         GSEAL (resolved_dir)           : 4; /* PangoDirection */
+  guint         GSEAL (truncate_multiline)     : 1;
 
   guint         GSEAL (button);
   guint         GSEAL (blink_timeout);

Modified: trunk/gtk/gtkhandlebox.h
==============================================================================
--- trunk/gtk/gtkhandlebox.h	(original)
+++ trunk/gtk/gtkhandlebox.h	Fri Jun 20 11:09:49 2008
@@ -61,11 +61,11 @@
   GdkWindow      *GSEAL (bin_window);	/* parent window for children */
   GdkWindow      *GSEAL (float_window);
   GtkShadowType   GSEAL (shadow_type);
-  guint		  GSEAL (handle_position : 2);
-  guint		  GSEAL (float_window_mapped : 1);
-  guint		  GSEAL (child_detached : 1);
-  guint		  GSEAL (in_drag : 1);
-  guint		  GSEAL (shrink_on_detach : 1);
+  guint		  GSEAL (handle_position) : 2;
+  guint		  GSEAL (float_window_mapped) : 1;
+  guint		  GSEAL (child_detached) : 1;
+  guint		  GSEAL (in_drag) : 1;
+  guint		  GSEAL (shrink_on_detach) : 1;
 
   signed int      GSEAL (snap_edge : 3); /* -1 == unset */
   

Modified: trunk/gtk/gtkimcontextsimple.h
==============================================================================
--- trunk/gtk/gtkimcontextsimple.h	(original)
+++ trunk/gtk/gtkimcontextsimple.h	Fri Jun 20 11:09:49 2008
@@ -53,8 +53,8 @@
   gunichar GSEAL (tentative_match);
   gint GSEAL (tentative_match_len);
 
-  guint GSEAL (in_hex_sequence : 1);
-  guint GSEAL (modifiers_dropped : 1);
+  guint GSEAL (in_hex_sequence) : 1;
+  guint GSEAL (modifiers_dropped) : 1;
 };
 
 struct _GtkIMContextSimpleClass

Modified: trunk/gtk/gtklabel.h
==============================================================================
--- trunk/gtk/gtklabel.h	(original)
+++ trunk/gtk/gtklabel.h	Fri Jun 20 11:09:49 2008
@@ -57,16 +57,16 @@
 
   /*< private >*/
   gchar  *GSEAL (label);
-  guint   GSEAL (jtype            : 2);
-  guint   GSEAL (wrap             : 1);
-  guint   GSEAL (use_underline    : 1);
-  guint   GSEAL (use_markup       : 1);
-  guint   GSEAL (ellipsize        : 3);
-  guint   GSEAL (single_line_mode : 1);
-  guint   GSEAL (have_transform   : 1);
-  guint   GSEAL (in_click         : 1);
-  guint   GSEAL (wrap_mode        : 3);
-  guint   GSEAL (pattern_set      : 1);
+  guint   GSEAL (jtype)            : 2;
+  guint   GSEAL (wrap)             : 1;
+  guint   GSEAL (use_underline)    : 1;
+  guint   GSEAL (use_markup)       : 1;
+  guint   GSEAL (ellipsize)        : 3;
+  guint   GSEAL (single_line_mode) : 1;
+  guint   GSEAL (have_transform)   : 1;
+  guint   GSEAL (in_click)         : 1;
+  guint   GSEAL (wrap_mode)        : 3;
+  guint   GSEAL (pattern_set)      : 1;
 
   guint   GSEAL (mnemonic_keyval);
 

Modified: trunk/gtk/gtkliststore.h
==============================================================================
--- trunk/gtk/gtkliststore.h	(original)
+++ trunk/gtk/gtkliststore.h	Fri Jun 20 11:09:49 2008
@@ -59,7 +59,7 @@
   GtkTreeIterCompareFunc GSEAL (default_sort_func);
   gpointer GSEAL (default_sort_data);
   GtkDestroyNotify GSEAL (default_sort_destroy);
-  guint GSEAL (columns_dirty : 1);
+  guint GSEAL (columns_dirty) : 1;
 };
 
 struct _GtkListStoreClass

Modified: trunk/gtk/gtkmenu.h
==============================================================================
--- trunk/gtk/gtkmenu.h	(original)
+++ trunk/gtk/gtkmenu.h	Fri Jun 20 11:09:49 2008
@@ -96,19 +96,19 @@
   GdkRegion *GSEAL (navigation_region);
   guint GSEAL (navigation_timeout);
 
-  guint GSEAL (needs_destruction_ref_count : 1);
-  guint GSEAL (torn_off : 1);
+  guint GSEAL (needs_destruction_ref_count) : 1;
+  guint GSEAL (torn_off) : 1;
   /* The tearoff is active when it is torn off and the not-torn-off
    * menu is not popped up.
    */
-  guint GSEAL (tearoff_active : 1);
+  guint GSEAL (tearoff_active) : 1;
 
-  guint GSEAL (scroll_fast : 1);
+  guint GSEAL (scroll_fast) : 1;
 
-  guint GSEAL (upper_arrow_visible : 1);
-  guint GSEAL (lower_arrow_visible : 1);
-  guint GSEAL (upper_arrow_prelight : 1);
-  guint GSEAL (lower_arrow_prelight : 1);
+  guint GSEAL (upper_arrow_visible) : 1;
+  guint GSEAL (lower_arrow_visible) : 1;
+  guint GSEAL (upper_arrow_prelight) : 1;
+  guint GSEAL (lower_arrow_prelight) : 1;
 };
 
 struct _GtkMenuClass

Modified: trunk/gtk/gtkmenuitem.h
==============================================================================
--- trunk/gtk/gtkmenuitem.h	(original)
+++ trunk/gtk/gtkmenuitem.h	Fri Jun 20 11:09:49 2008
@@ -60,12 +60,12 @@
   guint16 GSEAL (accelerator_width);
   gchar  *GSEAL (accel_path);
 
-  guint GSEAL (show_submenu_indicator : 1);
-  guint GSEAL (submenu_placement : 1);
-  guint GSEAL (submenu_direction : 1);
-  guint GSEAL (right_justify: 1);
-  guint GSEAL (timer_from_keypress : 1);
-  guint GSEAL (from_menubar : 1);
+  guint GSEAL (show_submenu_indicator) : 1;
+  guint GSEAL (submenu_placement) : 1;
+  guint GSEAL (submenu_direction) : 1;
+  guint GSEAL (right_justify): 1;
+  guint GSEAL (timer_from_keypress) : 1;
+  guint GSEAL (from_menubar) : 1;
   guint GSEAL (timer);
 };
 

Modified: trunk/gtk/gtkmenushell.h
==============================================================================
--- trunk/gtk/gtkmenushell.h	(original)
+++ trunk/gtk/gtkmenushell.h	Fri Jun 20 11:09:49 2008
@@ -60,12 +60,12 @@
   guint GSEAL (button);
   guint32 GSEAL (activate_time);
 
-  guint GSEAL (active : 1);
-  guint GSEAL (have_grab : 1);
-  guint GSEAL (have_xgrab : 1);
+  guint GSEAL (active) : 1;
+  guint GSEAL (have_grab) : 1;
+  guint GSEAL (have_xgrab) : 1;
   guint GSEAL (unused1);
   guint GSEAL (unused2);
-  guint GSEAL (ignore_enter : 1);
+  guint GSEAL (ignore_enter) : 1;
 };
 
 struct _GtkMenuShellClass

Modified: trunk/gtk/gtknotebook.h
==============================================================================
--- trunk/gtk/gtknotebook.h	(original)
+++ trunk/gtk/gtknotebook.h	Fri Jun 20 11:09:49 2008
@@ -73,23 +73,23 @@
   guint16 GSEAL (tab_hborder);
   guint16 GSEAL (tab_vborder);
   
-  guint GSEAL (show_tabs          : 1);
-  guint GSEAL (homogeneous        : 1);
-  guint GSEAL (show_border        : 1);
-  guint GSEAL (tab_pos            : 2);
-  guint GSEAL (scrollable         : 1);
-  guint GSEAL (in_child           : 3);
-  guint GSEAL (click_child        : 3);
-  guint GSEAL (button             : 2);
-  guint GSEAL (need_timer         : 1);
-  guint GSEAL (child_has_focus    : 1);
-  guint GSEAL (have_visible_child : 1);
-  guint GSEAL (focus_out          : 1);	/* Flag used by ::move-focus-out implementation */
-
-  guint GSEAL (has_before_previous : 1);
-  guint GSEAL (has_before_next     : 1);
-  guint GSEAL (has_after_previous  : 1);
-  guint GSEAL (has_after_next      : 1);
+  guint GSEAL (show_tabs)          : 1;
+  guint GSEAL (homogeneous)        : 1;
+  guint GSEAL (show_border)        : 1;
+  guint GSEAL (tab_pos)            : 2;
+  guint GSEAL (scrollable)         : 1;
+  guint GSEAL (in_child)           : 3;
+  guint GSEAL (click_child)        : 3;
+  guint GSEAL (button)             : 2;
+  guint GSEAL (need_timer)         : 1;
+  guint GSEAL (child_has_focus)    : 1;
+  guint GSEAL (have_visible_child) : 1;
+  guint GSEAL (focus_out)          : 1;	/* Flag used by ::move-focus-out implementation */
+
+  guint GSEAL (has_before_previous) : 1;
+  guint GSEAL (has_before_next)     : 1;
+  guint GSEAL (has_after_previous)  : 1;
+  guint GSEAL (has_after_next)      : 1;
 };
 
 struct _GtkNotebookClass

Modified: trunk/gtk/gtkpaned.h
==============================================================================
--- trunk/gtk/gtkpaned.h	(original)
+++ trunk/gtk/gtkpaned.h	Fri Jun 20 11:09:49 2008
@@ -67,15 +67,15 @@
   gint GSEAL (min_position);
   gint GSEAL (max_position);
 
-  guint GSEAL (position_set : 1);
-  guint GSEAL (in_drag : 1);
-  guint GSEAL (child1_shrink : 1);
-  guint GSEAL (child1_resize : 1);
-  guint GSEAL (child2_shrink : 1);
-  guint GSEAL (child2_resize : 1);
-  guint GSEAL (orientation : 1);
-  guint GSEAL (in_recursion : 1);
-  guint GSEAL (handle_prelit : 1);
+  guint GSEAL (position_set) : 1;
+  guint GSEAL (in_drag) : 1;
+  guint GSEAL (child1_shrink) : 1;
+  guint GSEAL (child1_resize) : 1;
+  guint GSEAL (child2_shrink) : 1;
+  guint GSEAL (child2_resize) : 1;
+  guint GSEAL (orientation) : 1;
+  guint GSEAL (in_recursion) : 1;
+  guint GSEAL (handle_prelit) : 1;
 
   GtkWidget *GSEAL (last_child1_focus);
   GtkWidget *GSEAL (last_child2_focus);

Modified: trunk/gtk/gtkplug.h
==============================================================================
--- trunk/gtk/gtkplug.h	(original)
+++ trunk/gtk/gtkplug.h	Fri Jun 20 11:09:49 2008
@@ -59,7 +59,7 @@
   GtkWindowGroup *GSEAL (modality_group);
   GHashTable *GSEAL (grabbed_keys);
 
-  guint GSEAL (same_app : 1);
+  guint GSEAL (same_app) : 1;
 };
 
 struct _GtkPlugClass

Modified: trunk/gtk/gtkprintjob.h
==============================================================================
--- trunk/gtk/gtkprintjob.h	(original)
+++ trunk/gtk/gtkprintjob.h	Fri Jun 20 11:09:49 2008
@@ -63,9 +63,9 @@
   GtkPageSet GSEAL (page_set);
   gint GSEAL (num_copies);
   gdouble GSEAL (scale);
-  guint GSEAL (rotate_to_orientation : 1);
-  guint GSEAL (collate               : 1);
-  guint GSEAL (reverse               : 1);
+  guint GSEAL (rotate_to_orientation) : 1;
+  guint GSEAL (collate)               : 1;
+  guint GSEAL (reverse)               : 1;
 };
 
 struct _GtkPrintJobClass

Modified: trunk/gtk/gtkprogressbar.h
==============================================================================
--- trunk/gtk/gtkprogressbar.h	(original)
+++ trunk/gtk/gtkprogressbar.h	Fri Jun 20 11:09:49 2008
@@ -79,9 +79,9 @@
 
   gdouble GSEAL(pulse_fraction);
   
-  guint GSEAL(activity_dir : 1);
-  guint GSEAL(ellipsize : 3);
-  guint GSEAL(dirty : 1);
+  guint GSEAL (activity_dir) : 1;
+  guint GSEAL (ellipsize) : 3;
+  guint GSEAL (dirty) : 1;
 };
 
 struct _GtkProgressBarClass

Modified: trunk/gtk/gtkrange.h
==============================================================================
--- trunk/gtk/gtkrange.h	(original)
+++ trunk/gtk/gtkrange.h	Fri Jun 20 11:09:49 2008
@@ -60,24 +60,24 @@
 
   GtkAdjustment *GSEAL (adjustment);
   GtkUpdateType GSEAL (update_policy);
-  guint GSEAL (inverted : 1);
+  guint GSEAL (inverted) : 1;
 
   /*< protected >*/
 
-  guint GSEAL (flippable : 1);
+  guint GSEAL (flippable) : 1;
 
   /* Steppers are: < > ---- < >
    *               a b      c d
    */
 
-  guint GSEAL (has_stepper_a : 1);
-  guint GSEAL (has_stepper_b : 1);
-  guint GSEAL (has_stepper_c : 1);
-  guint GSEAL (has_stepper_d : 1);
+  guint GSEAL (has_stepper_a) : 1;
+  guint GSEAL (has_stepper_b) : 1;
+  guint GSEAL (has_stepper_c) : 1;
+  guint GSEAL (has_stepper_d) : 1;
 
-  guint GSEAL (need_recalc : 1);
+  guint GSEAL (need_recalc) : 1;
 
-  guint GSEAL (slider_size_fixed : 1);
+  guint GSEAL (slider_size_fixed) : 1;
 
   gint GSEAL (min_slider_size);
 
@@ -92,8 +92,8 @@
   gint GSEAL (round_digits);
 
   /*< private >*/
-  guint GSEAL (trough_click_forward : 1);  /* trough click was on the forward side of slider */
-  guint GSEAL (update_pending : 1);        /* need to emit value_changed */
+  guint GSEAL (trough_click_forward) : 1;  /* trough click was on the forward side of slider */
+  guint GSEAL (update_pending) : 1;        /* need to emit value_changed */
   GtkRangeLayout *GSEAL (layout);
   GtkRangeStepTimer *GSEAL (timer);
   gint GSEAL (slide_initial_slider_position);

Modified: trunk/gtk/gtkscale.h
==============================================================================
--- trunk/gtk/gtkscale.h	(original)
+++ trunk/gtk/gtkscale.h	Fri Jun 20 11:09:49 2008
@@ -54,8 +54,8 @@
   GtkRange range;
 
   gint GSEAL(digits);
-  guint GSEAL(draw_value : 1);
-  guint GSEAL(value_pos : 2);
+  guint GSEAL (draw_value) : 1;
+  guint GSEAL (value_pos) : 2;
 };
 
 struct _GtkScaleClass

Modified: trunk/gtk/gtkscrolledwindow.h
==============================================================================
--- trunk/gtk/gtkscrolledwindow.h	(original)
+++ trunk/gtk/gtkscrolledwindow.h	Fri Jun 20 11:09:49 2008
@@ -62,12 +62,12 @@
   GtkWidget *GSEAL (vscrollbar);
 
   /*< private >*/
-  guint GSEAL (hscrollbar_policy      : 2);
-  guint GSEAL (vscrollbar_policy      : 2);
-  guint GSEAL (hscrollbar_visible     : 1);
-  guint GSEAL (vscrollbar_visible     : 1);
-  guint GSEAL (window_placement       : 2);
-  guint GSEAL (focus_out              : 1);	/* Flag used by ::move-focus-out implementation */
+  guint GSEAL (hscrollbar_policy)      : 2;
+  guint GSEAL (vscrollbar_policy)      : 2;
+  guint GSEAL (hscrollbar_visible)     : 1;
+  guint GSEAL (vscrollbar_visible)     : 1;
+  guint GSEAL (window_placement)       : 2;
+  guint GSEAL (focus_out)              : 1;	/* Flag used by ::move-focus-out implementation */
 
   guint16 GSEAL (shadow_type);
 };

Modified: trunk/gtk/gtksizegroup.h
==============================================================================
--- trunk/gtk/gtksizegroup.h	(original)
+++ trunk/gtk/gtksizegroup.h	Fri Jun 20 11:09:49 2008
@@ -49,9 +49,9 @@
 
   guint8 GSEAL (mode);
 
-  guint GSEAL (have_width : 1);
-  guint GSEAL (have_height : 1);
-  guint GSEAL (ignore_hidden : 1);
+  guint GSEAL (have_width) : 1;
+  guint GSEAL (have_height) : 1;
+  guint GSEAL (ignore_hidden) : 1;
 
   GtkRequisition GSEAL (requisition);
 };

Modified: trunk/gtk/gtksocket.h
==============================================================================
--- trunk/gtk/gtksocket.h	(original)
+++ trunk/gtk/gtksocket.h	Fri Jun 20 11:09:49 2008
@@ -58,12 +58,12 @@
   GtkWidget *GSEAL (plug_widget);
 
   gshort GSEAL (xembed_version); /* -1 == not xembed */
-  guint GSEAL (same_app : 1);
-  guint GSEAL (focus_in : 1);
-  guint GSEAL (have_size : 1);
-  guint GSEAL (need_map : 1);
-  guint GSEAL (is_mapped : 1);
-  guint GSEAL (active : 1);
+  guint GSEAL (same_app) : 1;
+  guint GSEAL (focus_in) : 1;
+  guint GSEAL (have_size) : 1;
+  guint GSEAL (need_map) : 1;
+  guint GSEAL (is_mapped) : 1;
+  guint GSEAL (active) : 1;
 
   GtkAccelGroup *GSEAL (accel_group);
   GtkWidget *GSEAL (toplevel);

Modified: trunk/gtk/gtkspinbutton.h
==============================================================================
--- trunk/gtk/gtkspinbutton.h	(original)
+++ trunk/gtk/gtkspinbutton.h	Fri Jun 20 11:09:49 2008
@@ -88,15 +88,15 @@
 
   GtkSpinButtonUpdatePolicy GSEAL (update_policy);
 
-  guint GSEAL (in_child : 2);
-  guint GSEAL (click_child : 2); /* valid: GTK_ARROW_UP=0, GTK_ARROW_DOWN=1 or 2=NONE/BOTH */
-  guint GSEAL (button : 2);
-  guint GSEAL (need_timer : 1);
-  guint GSEAL (timer_calls : 3);
-  guint GSEAL (digits : 10);
-  guint GSEAL (numeric : 1);
-  guint GSEAL (wrap : 1);
-  guint GSEAL (snap_to_ticks : 1);
+  guint GSEAL (in_child) : 2;
+  guint GSEAL (click_child) : 2; /* valid: GTK_ARROW_UP=0, GTK_ARROW_DOWN=1 or 2=NONE/BOTH */
+  guint GSEAL (button) : 2;
+  guint GSEAL (need_timer) : 1;
+  guint GSEAL (timer_calls) : 3;
+  guint GSEAL (digits) : 10;
+  guint GSEAL (numeric) : 1;
+  guint GSEAL (wrap) : 1;
+  guint GSEAL (snap_to_ticks) : 1;
 };
 
 struct _GtkSpinButtonClass

Modified: trunk/gtk/gtkstatusbar.h
==============================================================================
--- trunk/gtk/gtkstatusbar.h	(original)
+++ trunk/gtk/gtkstatusbar.h	Fri Jun 20 11:09:49 2008
@@ -62,7 +62,7 @@
 
   GdkWindow *GSEAL (grip_window);
 
-  guint GSEAL (has_resize_grip : 1);
+  guint GSEAL (has_resize_grip) : 1;
 };
 
 struct _GtkStatusbarClass

Modified: trunk/gtk/gtktable.h
==============================================================================
--- trunk/gtk/gtktable.h	(original)
+++ trunk/gtk/gtktable.h	Fri Jun 20 11:09:49 2008
@@ -62,7 +62,7 @@
   guint16 GSEAL (ncols);
   guint16 GSEAL (column_spacing);
   guint16 GSEAL (row_spacing);
-  guint GSEAL (homogeneous : 1);
+  guint GSEAL (homogeneous) : 1;
 };
 
 struct _GtkTableClass

Modified: trunk/gtk/gtktearoffmenuitem.h
==============================================================================
--- trunk/gtk/gtktearoffmenuitem.h	(original)
+++ trunk/gtk/gtktearoffmenuitem.h	Fri Jun 20 11:09:49 2008
@@ -52,7 +52,7 @@
 {
   GtkMenuItem menu_item;
 
-  guint GSEAL (torn_off : 1);
+  guint GSEAL (torn_off) : 1;
 };
 
 struct _GtkTearoffMenuItemClass

Modified: trunk/gtk/gtktextbuffer.h
==============================================================================
--- trunk/gtk/gtktextbuffer.h	(original)
+++ trunk/gtk/gtktextbuffer.h	Fri Jun 20 11:09:49 2008
@@ -86,9 +86,9 @@
   guint GSEAL (user_action_count);
 
   /* Whether the buffer has been modified since last save */
-  guint GSEAL (modified : 1);
+  guint GSEAL (modified) : 1;
 
-  guint GSEAL (has_selection : 1);
+  guint GSEAL (has_selection) : 1;
 };
 
 struct _GtkTextBufferClass

Modified: trunk/gtk/gtktextview.h
==============================================================================
--- trunk/gtk/gtktextview.h	(original)
+++ trunk/gtk/gtktextview.h	Fri Jun 20 11:09:49 2008
@@ -85,24 +85,24 @@
   gint GSEAL (right_margin);
   gint GSEAL (indent);
   PangoTabArray *GSEAL (tabs);
-  guint GSEAL (editable : 1);
+  guint GSEAL (editable) : 1;
 
-  guint GSEAL (overwrite_mode : 1);
-  guint GSEAL (cursor_visible : 1);
+  guint GSEAL (overwrite_mode) : 1;
+  guint GSEAL (cursor_visible) : 1;
 
   /* if we have reset the IM since the last character entered */  
-  guint GSEAL (need_im_reset : 1);
+  guint GSEAL (need_im_reset) : 1;
 
-  guint GSEAL (accepts_tab : 1);
+  guint GSEAL (accepts_tab) : 1;
 
-  guint GSEAL (width_changed : 1);
+  guint GSEAL (width_changed) : 1;
 
   /* debug flag - means that we've validated onscreen since the
    * last "invalidate" signal from the layout
    */
-  guint GSEAL (onscreen_validated : 1);
+  guint GSEAL (onscreen_validated) : 1;
 
-  guint GSEAL (mouse_cursor_obscured : 1);
+  guint GSEAL (mouse_cursor_obscured) : 1;
 
   GtkTextWindow *GSEAL (text_window);
   GtkTextWindow *GSEAL (left_window);

Modified: trunk/gtk/gtktogglebutton.h
==============================================================================
--- trunk/gtk/gtktogglebutton.h	(original)
+++ trunk/gtk/gtktogglebutton.h	Fri Jun 20 11:09:49 2008
@@ -52,9 +52,9 @@
 {
   GtkButton button;
 
-  guint GSEAL (active : 1);
-  guint GSEAL (draw_indicator : 1);
-  guint GSEAL (inconsistent : 1);
+  guint GSEAL (active) : 1;
+  guint GSEAL (draw_indicator) : 1;
+  guint GSEAL (inconsistent) : 1;
 };
 
 struct _GtkToggleButtonClass

Modified: trunk/gtk/gtktoolbar.h
==============================================================================
--- trunk/gtk/gtktoolbar.h	(original)
+++ trunk/gtk/gtktoolbar.h	Fri Jun 20 11:09:49 2008
@@ -115,8 +115,8 @@
   guint            _gtk_reserved1;
   guint            _gtk_reserved2;
 
-  guint            GSEAL (style_set : 1);
-  guint            GSEAL (icon_size_set : 1);
+  guint            GSEAL (style_set) : 1;
+  guint            GSEAL (icon_size_set) : 1;
 };
 
 struct _GtkToolbarClass

Modified: trunk/gtk/gtktreestore.h
==============================================================================
--- trunk/gtk/gtktreestore.h	(original)
+++ trunk/gtk/gtktreestore.h	Fri Jun 20 11:09:49 2008
@@ -58,7 +58,7 @@
   GtkTreeIterCompareFunc GSEAL (default_sort_func);
   gpointer GSEAL (default_sort_data);
   GtkDestroyNotify GSEAL (default_sort_destroy);
-  guint GSEAL (columns_dirty : 1);
+  guint GSEAL (columns_dirty) : 1;
 };
 
 struct _GtkTreeStoreClass

Modified: trunk/gtk/gtktreeviewcolumn.h
==============================================================================
--- trunk/gtk/gtktreeviewcolumn.h	(original)
+++ trunk/gtk/gtktreeviewcolumn.h	Fri Jun 20 11:09:49 2008
@@ -100,15 +100,15 @@
   GtkSortType GSEAL (sort_order);
 
   /* Flags */
-  guint GSEAL (visible             : 1);
-  guint GSEAL (resizable           : 1);
-  guint GSEAL (clickable           : 1);
-  guint GSEAL (dirty               : 1);
-  guint GSEAL (show_sort_indicator : 1);
-  guint GSEAL (maybe_reordered     : 1);
-  guint GSEAL (reorderable         : 1);
-  guint GSEAL (use_resized_width   : 1);
-  guint GSEAL (expand              : 1);
+  guint GSEAL (visible)             : 1;
+  guint GSEAL (resizable)           : 1;
+  guint GSEAL (clickable)           : 1;
+  guint GSEAL (dirty)               : 1;
+  guint GSEAL (show_sort_indicator) : 1;
+  guint GSEAL (maybe_reordered)     : 1;
+  guint GSEAL (reorderable)         : 1;
+  guint GSEAL (use_resized_width)   : 1;
+  guint GSEAL (expand)              : 1;
 };
 
 struct _GtkTreeViewColumnClass

Modified: trunk/gtk/gtkwindow.h
==============================================================================
--- trunk/gtk/gtkwindow.h	(original)
+++ trunk/gtk/gtkwindow.h	Fri Jun 20 11:09:49 2008
@@ -70,40 +70,40 @@
   GtkWindowGroup *GSEAL (group);
 
   guint16 GSEAL (configure_request_count);
-  guint GSEAL (allow_shrink : 1);
-  guint GSEAL (allow_grow : 1);
-  guint GSEAL (configure_notify_received : 1);
+  guint GSEAL (allow_shrink) : 1;
+  guint GSEAL (allow_grow) : 1;
+  guint GSEAL (configure_notify_received) : 1;
   /* The following flags are initially TRUE (before a window is mapped).
    * They cause us to compute a configure request that involves
    * default-only parameters. Once mapped, we set them to FALSE.
    * Then we set them to TRUE again on unmap (for position)
    * and on unrealize (for size).
    */
-  guint GSEAL (need_default_position : 1);
-  guint GSEAL (need_default_size : 1);
-  guint GSEAL (position : 3);
-  guint GSEAL (type : 4); /* GtkWindowType */ 
-  guint GSEAL (has_user_ref_count : 1);
-  guint GSEAL (has_focus : 1);
+  guint GSEAL (need_default_position) : 1;
+  guint GSEAL (need_default_size) : 1;
+  guint GSEAL (position) : 3;
+  guint GSEAL (type) : 4; /* GtkWindowType */ 
+  guint GSEAL (has_user_ref_count) : 1;
+  guint GSEAL (has_focus) : 1;
 
-  guint GSEAL (modal : 1);
-  guint GSEAL (destroy_with_parent : 1);
+  guint GSEAL (modal) : 1;
+  guint GSEAL (destroy_with_parent) : 1;
   
-  guint GSEAL (has_frame : 1);
+  guint GSEAL (has_frame) : 1;
 
   /* gtk_window_iconify() called before realization */
-  guint GSEAL (iconify_initially : 1);
-  guint GSEAL (stick_initially : 1);
-  guint GSEAL (maximize_initially : 1);
-  guint GSEAL (decorated : 1);
+  guint GSEAL (iconify_initially) : 1;
+  guint GSEAL (stick_initially) : 1;
+  guint GSEAL (maximize_initially) : 1;
+  guint GSEAL (decorated) : 1;
   
-  guint GSEAL (type_hint : 3); /* GdkWindowTypeHint if the hint is one of the original eight. If not, then
+  guint GSEAL (type_hint) : 3; /* GdkWindowTypeHint if the hint is one of the original eight. If not, then
 				* it contains GDK_WINDOW_TYPE_HINT_NORMAL
 				*/
-  guint GSEAL (gravity : 5); /* GdkGravity */
+  guint GSEAL (gravity) : 5; /* GdkGravity */
 
-  guint GSEAL (is_active : 1);
-  guint GSEAL (has_toplevel_focus : 1);
+  guint GSEAL (is_active) : 1;
+  guint GSEAL (has_toplevel_focus) : 1;
   
   guint GSEAL (frame_left);
   guint GSEAL (frame_top);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]