summaryrefslogtreecommitdiff
path: root/gtk/gtkcellareabox.h
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.van.berkom@gmail.com>2010-10-30 17:32:15 +0900
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2010-10-30 17:35:22 +0900
commit3b1c301a6627a0cf00cf0ab1f8b40198cae0bab5 (patch)
tree5366f6c7fed0cba7e672a8e9bb4df079404ef12b /gtk/gtkcellareabox.h
parent211c39c50010a0f3bebcb60a14c72f68d63d512f (diff)
downloadgtk+-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.h9
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