X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpspp-sheet-view-column.h;h=75482e9497f86cba2b714238f14ed5585f9a7075;hb=d5a566a2900f69ab51c7dae78cd7810a4204589a;hp=95ba779508dacfd376c3bffc233eda5537640e1f;hpb=3ccf4f19ece6c4da5a2d13173c032011faf330b8;p=pspp diff --git a/src/ui/gui/pspp-sheet-view-column.h b/src/ui/gui/pspp-sheet-view-column.h index 95ba779508..75482e9497 100644 --- a/src/ui/gui/pspp-sheet-view-column.h +++ b/src/ui/gui/pspp-sheet-view-column.h @@ -61,56 +61,55 @@ struct _PsppSheetViewColumn { GObject parent; - GtkWidget *PSEAL (tree_view); - GtkWidget *PSEAL (button); - GtkWidget *PSEAL (child); - GtkWidget *PSEAL (arrow); - GtkWidget *PSEAL (alignment); - GdkWindow *PSEAL (window); - GtkCellEditable *PSEAL (editable_widget); - gfloat PSEAL (xalign); - guint PSEAL (property_changed_signal); - gint PSEAL (spacing); - GtkAllocation PSEAL (allocation); + GtkWidget *tree_view; + GtkWidget *button; + GtkWidget *child; + GtkWidget *bin; + GdkWindow *window; + GtkCellEditable *editable_widget; + GtkAlign halign; + guint property_changed_signal; + gint spacing; + GtkAllocation allocation; /* Sizing fields */ /* see gtk+/doc/tree-column-sizing.txt for more information on them */ - gint PSEAL (requested_width); - gint PSEAL (button_request); - gint PSEAL (resized_width); - gint PSEAL (width); - gint PSEAL (fixed_width); - gint PSEAL (min_width); - gint PSEAL (max_width); + gint requested_width; + gint button_request; + gint resized_width; + gint width; + gint fixed_width; + gint min_width; + gint max_width; /* dragging columns */ - gint PSEAL (drag_x); - gint PSEAL (drag_y); + gint drag_x; + gint drag_y; - gchar *PSEAL (title); - GList *PSEAL (cell_list); + gchar *title; + GList *cell_list; /* Sorting */ - guint PSEAL (sort_clicked_signal); - guint PSEAL (sort_column_changed_signal); - gint PSEAL (sort_column_id); - GtkSortType PSEAL (sort_order); + guint sort_clicked_signal; + guint sort_column_changed_signal; + gint sort_column_id; + GtkSortType sort_order; /* Flags */ - guint PSEAL (visible) : 1; - guint PSEAL (resizable) : 1; - guint PSEAL (clickable) : 1; - guint PSEAL (dirty) : 1; - guint PSEAL (show_sort_indicator) : 1; - guint PSEAL (maybe_reordered) : 1; - guint PSEAL (reorderable) : 1; - guint PSEAL (use_resized_width) : 1; - guint PSEAL (expand) : 1; - guint PSEAL (quick_edit) : 1; - guint PSEAL (selected) : 1; - guint PSEAL (selectable) : 1; - guint PSEAL (row_head) : 1; - guint PSEAL (tabbable) : 1; + guint visible : 1; + guint resizable : 1; + guint clickable : 1; + guint dirty : 1; + guint show_sort_indicator : 1; + guint maybe_reordered : 1; + guint reorderable : 1; + guint use_resized_width : 1; + guint expand : 1; + guint quick_edit : 1; + guint selected : 1; + guint selectable : 1; + guint row_head : 1; + guint tabbable : 1; }; struct _PsppSheetViewColumnClass @@ -194,9 +193,9 @@ gboolean pspp_sheet_view_column_get_clickable (PsppSheetVie void pspp_sheet_view_column_set_widget (PsppSheetViewColumn *tree_column, GtkWidget *widget); GtkWidget *pspp_sheet_view_column_get_widget (PsppSheetViewColumn *tree_column); -void pspp_sheet_view_column_set_alignment (PsppSheetViewColumn *tree_column, - gfloat xalign); -gfloat pspp_sheet_view_column_get_alignment (PsppSheetViewColumn *tree_column); +void pspp_sheet_view_column_set_alignment (PsppSheetViewColumn *tree_columna, + GtkAlign xalign); +GtkAlign pspp_sheet_view_column_get_alignment (PsppSheetViewColumn *tree_column); void pspp_sheet_view_column_set_reorderable (PsppSheetViewColumn *tree_column, gboolean reorderable); gboolean pspp_sheet_view_column_get_reorderable (PsppSheetViewColumn *tree_column);