diff options
author | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-10-30 17:32:15 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-10-30 17:35:22 +0900 |
commit | 3b1c301a6627a0cf00cf0ab1f8b40198cae0bab5 (patch) | |
tree | 5366f6c7fed0cba7e672a8e9bb4df079404ef12b /gtk/gtkcellareabox.h | |
parent | 211c39c50010a0f3bebcb60a14c72f68d63d512f (diff) | |
download | gtk+-3b1c301a6627a0cf00cf0ab1f8b40198cae0bab5.tar.gz |
Made GtkCellAreaBox:align-cells a packing property per cell
Implemented all request apis on GtkCellAreaBox considering
alignment of groups of cells (some cells can be aligned while
others fill space smartly).
Diffstat (limited to 'gtk/gtkcellareabox.h')
-rw-r--r-- | gtk/gtkcellareabox.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gtk/gtkcellareabox.h b/gtk/gtkcellareabox.h index ee29ffe8a0..0a0c052229 100644 --- a/gtk/gtkcellareabox.h +++ b/gtk/gtkcellareabox.h @@ -67,16 +67,15 @@ GType gtk_cell_area_box_get_type (void) G_GNUC_CONST; GtkCellArea *gtk_cell_area_box_new (void); void gtk_cell_area_box_pack_start (GtkCellAreaBox *box, GtkCellRenderer *renderer, - gboolean expand); + gboolean expand, + gboolean align); void gtk_cell_area_box_pack_end (GtkCellAreaBox *box, GtkCellRenderer *renderer, - gboolean expand); + gboolean expand, + gboolean align); gint gtk_cell_area_box_get_spacing (GtkCellAreaBox *box); void gtk_cell_area_box_set_spacing (GtkCellAreaBox *box, gint spacing); -gboolean gtk_cell_area_box_get_align_cells (GtkCellAreaBox *box); -void gtk_cell_area_box_set_align_cells (GtkCellAreaBox *box, - gboolean align); G_END_DECLS |