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. svn path=/trunk/; revision=20621
This commit is contained in:
parent
10896d4874
commit
cd19149ad5
@ -58,7 +58,7 @@ struct _GtkBox
|
||||
/*< public >*/
|
||||
GList *GSEAL (children);
|
||||
gint16 GSEAL (spacing);
|
||||
guint GSEAL (homogeneous : 1);
|
||||
guint GSEAL (homogeneous) : 1;
|
||||
};
|
||||
|
||||
struct _GtkBoxClass
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
|
@ -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 */
|
||||
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
};
|
||||
|
||||
|
@ -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
|
||||
|
@ -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 (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 (has_before_previous) : 1;
|
||||
guint GSEAL (has_before_next) : 1;
|
||||
guint GSEAL (has_after_previous) : 1;
|
||||
guint GSEAL (has_after_next) : 1;
|
||||
};
|
||||
|
||||
struct _GtkNotebookClass
|
||||
|
@ -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);
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
};
|
||||
|
@ -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);
|
||||
};
|
||||
|
@ -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);
|
||||
|
@ -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
|
||||
|
@ -62,7 +62,7 @@ struct _GtkStatusbar
|
||||
|
||||
GdkWindow *GSEAL (grip_window);
|
||||
|
||||
guint GSEAL (has_resize_grip : 1);
|
||||
guint GSEAL (has_resize_grip) : 1;
|
||||
};
|
||||
|
||||
struct _GtkStatusbarClass
|
||||
|
@ -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
|
||||
|
@ -52,7 +52,7 @@ struct _GtkTearoffMenuItem
|
||||
{
|
||||
GtkMenuItem menu_item;
|
||||
|
||||
guint GSEAL (torn_off : 1);
|
||||
guint GSEAL (torn_off) : 1;
|
||||
};
|
||||
|
||||
struct _GtkTearoffMenuItemClass
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 (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);
|
||||
|
Loading…
Reference in New Issue
Block a user