summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk/gtkbox.h2
-rw-r--r--gtk/gtkbutton.h18
-rw-r--r--gtk/gtkcellrenderer.h14
-rw-r--r--gtk/gtkcellrenderertext.h20
-rw-r--r--gtk/gtkcheckmenuitem.h8
-rw-r--r--gtk/gtkcontainer.h10
-rw-r--r--gtk/gtkentry.h34
-rw-r--r--gtk/gtkhandlebox.h10
-rw-r--r--gtk/gtkimcontextsimple.h4
-rw-r--r--gtk/gtklabel.h20
-rw-r--r--gtk/gtkliststore.h2
-rw-r--r--gtk/gtkmenu.h16
-rw-r--r--gtk/gtkmenuitem.h12
-rw-r--r--gtk/gtkmenushell.h8
-rw-r--r--gtk/gtknotebook.h34
-rw-r--r--gtk/gtkpaned.h18
-rw-r--r--gtk/gtkplug.h2
-rw-r--r--gtk/gtkprintjob.h6
-rw-r--r--gtk/gtkprogressbar.h6
-rw-r--r--gtk/gtkrange.h20
-rw-r--r--gtk/gtkscale.h4
-rw-r--r--gtk/gtkscrolledwindow.h12
-rw-r--r--gtk/gtksizegroup.h6
-rw-r--r--gtk/gtksocket.h12
-rw-r--r--gtk/gtkspinbutton.h18
-rw-r--r--gtk/gtkstatusbar.h2
-rw-r--r--gtk/gtktable.h2
-rw-r--r--gtk/gtktearoffmenuitem.h2
-rw-r--r--gtk/gtktextbuffer.h4
-rw-r--r--gtk/gtktextview.h16
-rw-r--r--gtk/gtktogglebutton.h6
-rw-r--r--gtk/gtktoolbar.h4
-rw-r--r--gtk/gtktreestore.h2
-rw-r--r--gtk/gtktreeviewcolumn.h18
-rw-r--r--gtk/gtkwindow.h42
35 files changed, 207 insertions, 207 deletions
diff --git a/gtk/gtkbox.h b/gtk/gtkbox.h
index 3110fa3a05..28d42a3e37 100644
--- a/gtk/gtkbox.h
+++ b/gtk/gtkbox.h
@@ -58,7 +58,7 @@ struct _GtkBox
/*< public >*/
GList *GSEAL (children);
gint16 GSEAL (spacing);
- guint GSEAL (homogeneous : 1);
+ guint GSEAL (homogeneous) : 1;
};
struct _GtkBoxClass
diff --git a/gtk/gtkbutton.h b/gtk/gtkbutton.h
index 6264a071f5..a8c1e8e4ee 100644
--- a/gtk/gtkbutton.h
+++ b/gtk/gtkbutton.h
@@ -60,15 +60,15 @@ struct _GtkButton
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
diff --git a/gtk/gtkcellrenderer.h b/gtk/gtkcellrenderer.h
index bcb021031b..25e8571103 100644
--- a/gtk/gtkcellrenderer.h
+++ b/gtk/gtkcellrenderer.h
@@ -70,13 +70,13 @@ struct _GtkCellRenderer
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
diff --git a/gtk/gtkcellrenderertext.h b/gtk/gtkcellrenderertext.h
index 0d37552470..2875b272cb 100644
--- a/gtk/gtkcellrenderertext.h
+++ b/gtk/gtkcellrenderertext.h
@@ -59,23 +59,23 @@ struct _GtkCellRendererText
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
diff --git a/gtk/gtkcheckmenuitem.h b/gtk/gtkcheckmenuitem.h
index bb5509c5e0..0098b79b61 100644
--- a/gtk/gtkcheckmenuitem.h
+++ b/gtk/gtkcheckmenuitem.h
@@ -53,10 +53,10 @@ 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);
+ guint GSEAL (active) : 1;
+ guint GSEAL (always_show_toggle) : 1;
+ guint GSEAL (inconsistent) : 1;
+ guint GSEAL (draw_as_radio) : 1;
};
struct _GtkCheckMenuItemClass
diff --git a/gtk/gtkcontainer.h b/gtk/gtkcontainer.h
index e7c2ff38bc..f56dbe89b2 100644
--- a/gtk/gtkcontainer.h
+++ b/gtk/gtkcontainer.h
@@ -59,13 +59,13 @@ struct _GtkContainer
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
diff --git a/gtk/gtkentry.h b/gtk/gtkentry.h
index 651658c4f7..2019b1eee6 100644
--- a/gtk/gtkentry.h
+++ b/gtk/gtkentry.h
@@ -58,10 +58,10 @@ struct _GtkEntry
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 @@ struct _GtkEntry
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);
diff --git a/gtk/gtkhandlebox.h b/gtk/gtkhandlebox.h
index 9292466c76..1799737e63 100644
--- a/gtk/gtkhandlebox.h
+++ b/gtk/gtkhandlebox.h
@@ -61,11 +61,11 @@ struct _GtkHandleBox
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 */
diff --git a/gtk/gtkimcontextsimple.h b/gtk/gtkimcontextsimple.h
index eb26e693ff..2c44db25a3 100644
--- a/gtk/gtkimcontextsimple.h
+++ b/gtk/gtkimcontextsimple.h
@@ -53,8 +53,8 @@ struct _GtkIMContextSimple
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
diff --git a/gtk/gtklabel.h b/gtk/gtklabel.h
index 5333dc7543..27e300dad9 100644
--- a/gtk/gtklabel.h
+++ b/gtk/gtklabel.h
@@ -57,16 +57,16 @@ struct _GtkLabel
/*< 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);
diff --git a/gtk/gtkliststore.h b/gtk/gtkliststore.h
index af19c45544..0d893b8484 100644
--- a/gtk/gtkliststore.h
+++ b/gtk/gtkliststore.h
@@ -59,7 +59,7 @@ struct _GtkListStore
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
diff --git a/gtk/gtkmenu.h b/gtk/gtkmenu.h
index 9271451a7e..3521e5ded3 100644
--- a/gtk/gtkmenu.h
+++ b/gtk/gtkmenu.h
@@ -96,19 +96,19 @@ struct _GtkMenu
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
diff --git a/gtk/gtkmenuitem.h b/gtk/gtkmenuitem.h
index 2ea41712c6..8bd3c7f9e7 100644
--- a/gtk/gtkmenuitem.h
+++ b/gtk/gtkmenuitem.h
@@ -60,12 +60,12 @@ struct _GtkMenuItem
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);
};
diff --git a/gtk/gtkmenushell.h b/gtk/gtkmenushell.h
index 94ddbde340..ffb294fe62 100644
--- a/gtk/gtkmenushell.h
+++ b/gtk/gtkmenushell.h
@@ -60,12 +60,12 @@ struct _GtkMenuShell
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
diff --git a/gtk/gtknotebook.h b/gtk/gtknotebook.h
index c1f28efad0..3e4ea32cc6 100644
--- a/gtk/gtknotebook.h
+++ b/gtk/gtknotebook.h
@@ -73,23 +73,23 @@ struct _GtkNotebook
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
diff --git a/gtk/gtkpaned.h b/gtk/gtkpaned.h
index 2a50001553..f816105986 100644
--- a/gtk/gtkpaned.h
+++ b/gtk/gtkpaned.h
@@ -67,15 +67,15 @@ struct _GtkPaned
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);
diff --git a/gtk/gtkplug.h b/gtk/gtkplug.h
index 208e3a7799..e09fd92f71 100644
--- a/gtk/gtkplug.h
+++ b/gtk/gtkplug.h
@@ -59,7 +59,7 @@ struct _GtkPlug
GtkWindowGroup *GSEAL (modality_group);
GHashTable *GSEAL (grabbed_keys);
- guint GSEAL (same_app : 1);
+ guint GSEAL (same_app) : 1;
};
struct _GtkPlugClass
diff --git a/gtk/gtkprintjob.h b/gtk/gtkprintjob.h
index 0bd4c404e7..71ddfdc5ab 100644
--- a/gtk/gtkprintjob.h
+++ b/gtk/gtkprintjob.h
@@ -63,9 +63,9 @@ struct _GtkPrintJob
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
diff --git a/gtk/gtkprogressbar.h b/gtk/gtkprogressbar.h
index d8ee3b0ec5..f4a5aeda40 100644
--- a/gtk/gtkprogressbar.h
+++ b/gtk/gtkprogressbar.h
@@ -79,9 +79,9 @@ struct _GtkProgressBar
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
diff --git a/gtk/gtkrange.h b/gtk/gtkrange.h
index 68deba06ce..b3c497d4c3 100644
--- a/gtk/gtkrange.h
+++ b/gtk/gtkrange.h
@@ -60,24 +60,24 @@ struct _GtkRange
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 @@ struct _GtkRange
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);
diff --git a/gtk/gtkscale.h b/gtk/gtkscale.h
index 16b34267f7..b83b699e18 100644
--- a/gtk/gtkscale.h
+++ b/gtk/gtkscale.h
@@ -54,8 +54,8 @@ struct _GtkScale
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
diff --git a/gtk/gtkscrolledwindow.h b/gtk/gtkscrolledwindow.h
index 57bd61e12e..b36071ca95 100644
--- a/gtk/gtkscrolledwindow.h
+++ b/gtk/gtkscrolledwindow.h
@@ -62,12 +62,12 @@ struct _GtkScrolledWindow
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);
};
diff --git a/gtk/gtksizegroup.h b/gtk/gtksizegroup.h
index c2cb889537..ecd2ceacf6 100644
--- a/gtk/gtksizegroup.h
+++ b/gtk/gtksizegroup.h
@@ -49,9 +49,9 @@ struct _GtkSizeGroup
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);
};
diff --git a/gtk/gtksocket.h b/gtk/gtksocket.h
index ecb7cd6083..db347c06f0 100644
--- a/gtk/gtksocket.h
+++ b/gtk/gtksocket.h
@@ -58,12 +58,12 @@ struct _GtkSocket
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);
diff --git a/gtk/gtkspinbutton.h b/gtk/gtkspinbutton.h
index bcb855f97d..b513f9ae78 100644
--- a/gtk/gtkspinbutton.h
+++ b/gtk/gtkspinbutton.h
@@ -88,15 +88,15 @@ struct _GtkSpinButton
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
diff --git a/gtk/gtkstatusbar.h b/gtk/gtkstatusbar.h
index 841e90d32c..3ca102b6c8 100644
--- a/gtk/gtkstatusbar.h
+++ b/gtk/gtkstatusbar.h
@@ -62,7 +62,7 @@ struct _GtkStatusbar
GdkWindow *GSEAL (grip_window);
- guint GSEAL (has_resize_grip : 1);
+ guint GSEAL (has_resize_grip) : 1;
};
struct _GtkStatusbarClass
diff --git a/gtk/gtktable.h b/gtk/gtktable.h
index 85dc0bac4e..39fe9b9967 100644
--- a/gtk/gtktable.h
+++ b/gtk/gtktable.h
@@ -62,7 +62,7 @@ struct _GtkTable
guint16 GSEAL (ncols);
guint16 GSEAL (column_spacing);
guint16 GSEAL (row_spacing);
- guint GSEAL (homogeneous : 1);
+ guint GSEAL (homogeneous) : 1;
};
struct _GtkTableClass
diff --git a/gtk/gtktearoffmenuitem.h b/gtk/gtktearoffmenuitem.h
index 7d1e88c027..2a5b7fed10 100644
--- a/gtk/gtktearoffmenuitem.h
+++ b/gtk/gtktearoffmenuitem.h
@@ -52,7 +52,7 @@ struct _GtkTearoffMenuItem
{
GtkMenuItem menu_item;
- guint GSEAL (torn_off : 1);
+ guint GSEAL (torn_off) : 1;
};
struct _GtkTearoffMenuItemClass
diff --git a/gtk/gtktextbuffer.h b/gtk/gtktextbuffer.h
index c84c3b6c77..fd1131410a 100644
--- a/gtk/gtktextbuffer.h
+++ b/gtk/gtktextbuffer.h
@@ -86,9 +86,9 @@ struct _GtkTextBuffer
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
diff --git a/gtk/gtktextview.h b/gtk/gtktextview.h
index b20cfee11e..2dfe23ff42 100644
--- a/gtk/gtktextview.h
+++ b/gtk/gtktextview.h
@@ -85,24 +85,24 @@ struct _GtkTextView
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);
diff --git a/gtk/gtktogglebutton.h b/gtk/gtktogglebutton.h
index f9ca07e41b..009688a7b2 100644
--- a/gtk/gtktogglebutton.h
+++ b/gtk/gtktogglebutton.h
@@ -52,9 +52,9 @@ struct _GtkToggleButton
{
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
diff --git a/gtk/gtktoolbar.h b/gtk/gtktoolbar.h
index 45788b76ca..818969756f 100644
--- a/gtk/gtktoolbar.h
+++ b/gtk/gtktoolbar.h
@@ -115,8 +115,8 @@ struct _GtkToolbar
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
diff --git a/gtk/gtktreestore.h b/gtk/gtktreestore.h
index 8fdb720544..d14de83e9f 100644
--- a/gtk/gtktreestore.h
+++ b/gtk/gtktreestore.h
@@ -58,7 +58,7 @@ struct _GtkTreeStore
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
diff --git a/gtk/gtktreeviewcolumn.h b/gtk/gtktreeviewcolumn.h
index b868801580..9552b277f9 100644
--- a/gtk/gtktreeviewcolumn.h
+++ b/gtk/gtktreeviewcolumn.h
@@ -100,15 +100,15 @@ struct _GtkTreeViewColumn
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
diff --git a/gtk/gtkwindow.h b/gtk/gtkwindow.h
index b99e40fa8b..40cb937cd5 100644
--- a/gtk/gtkwindow.h
+++ b/gtk/gtkwindow.h
@@ -70,40 +70,40 @@ struct _GtkWindow
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 (modal : 1);
- guint GSEAL (destroy_with_parent : 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 (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);