summaryrefslogtreecommitdiff
path: root/gtk/gtkcellareaboxcontextprivate.h
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2011-01-11 16:40:35 +0100
committerBenjamin Otte <otte@redhat.com>2011-01-11 16:46:59 +0100
commitb30b33998ff8b12176585e0dad0ebd391fd35f8d (patch)
tree1ae7f198037e3a2aedb516ff5c14929d8538e121 /gtk/gtkcellareaboxcontextprivate.h
parent8899ab3f91d3af4029ff0de2eb1a1519be7d2d92 (diff)
downloadgtk+-b30b33998ff8b12176585e0dad0ebd391fd35f8d.tar.gz
gtk: Prefix GtkCellAreaBoxContext symbols with an underscore
They are private.
Diffstat (limited to 'gtk/gtkcellareaboxcontextprivate.h')
-rw-r--r--gtk/gtkcellareaboxcontextprivate.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/gtk/gtkcellareaboxcontextprivate.h b/gtk/gtkcellareaboxcontextprivate.h
index d586cc341a..b5664ae78b 100644
--- a/gtk/gtkcellareaboxcontextprivate.h
+++ b/gtk/gtkcellareaboxcontextprivate.h
@@ -35,7 +35,7 @@
G_BEGIN_DECLS
-#define GTK_TYPE_CELL_AREA_BOX_CONTEXT (gtk_cell_area_box_context_get_type ())
+#define GTK_TYPE_CELL_AREA_BOX_CONTEXT (_gtk_cell_area_box_context_get_type ())
#define GTK_CELL_AREA_BOX_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CELL_AREA_BOX_CONTEXT, GtkCellAreaBoxContext))
#define GTK_CELL_AREA_BOX_CONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CELL_AREA_BOX_CONTEXT, GtkCellAreaBoxContextClass))
#define GTK_IS_CELL_AREA_BOX_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CELL_AREA_BOX_CONTEXT))
@@ -59,11 +59,11 @@ struct _GtkCellAreaBoxContextClass
};
-GType gtk_cell_area_box_context_get_type (void) G_GNUC_CONST;
+GType _gtk_cell_area_box_context_get_type (void) G_GNUC_CONST;
/* Create a duplicate of the context */
-GtkCellAreaBoxContext *gtk_cell_area_box_context_copy (GtkCellAreaBox *box,
+GtkCellAreaBoxContext *_gtk_cell_area_box_context_copy (GtkCellAreaBox *box,
GtkCellAreaBoxContext *box_context);
/* Initialize group array dimensions */
@@ -73,54 +73,54 @@ void gtk_cell_area_box_init_groups (GtkCellAreaBoxCo
gboolean *align_groups);
/* Update cell-group sizes */
-void gtk_cell_area_box_context_push_group_width (GtkCellAreaBoxContext *box_context,
+void _gtk_cell_area_box_context_push_group_width (GtkCellAreaBoxContext *box_context,
gint group_idx,
gint minimum_width,
gint natural_width);
-void gtk_cell_area_box_context_push_group_height_for_width (GtkCellAreaBoxContext *box_context,
+void _gtk_cell_area_box_context_push_group_height_for_width (GtkCellAreaBoxContext *box_context,
gint group_idx,
gint for_width,
gint minimum_height,
gint natural_height);
-void gtk_cell_area_box_context_push_group_height (GtkCellAreaBoxContext *box_context,
+void _gtk_cell_area_box_context_push_group_height (GtkCellAreaBoxContext *box_context,
gint group_idx,
gint minimum_height,
gint natural_height);
-void gtk_cell_area_box_context_push_group_width_for_height (GtkCellAreaBoxContext *box_context,
+void _gtk_cell_area_box_context_push_group_width_for_height (GtkCellAreaBoxContext *box_context,
gint group_idx,
gint for_height,
gint minimum_width,
gint natural_width);
/* Fetch cell-group sizes */
-void gtk_cell_area_box_context_get_group_width (GtkCellAreaBoxContext *box_context,
+void _gtk_cell_area_box_context_get_group_width (GtkCellAreaBoxContext *box_context,
gint group_idx,
gint *minimum_width,
gint *natural_width);
-void gtk_cell_area_box_context_get_group_height_for_width (GtkCellAreaBoxContext *box_context,
+void _gtk_cell_area_box_context_get_group_height_for_width (GtkCellAreaBoxContext *box_context,
gint group_idx,
gint for_width,
gint *minimum_height,
gint *natural_height);
-void gtk_cell_area_box_context_get_group_height (GtkCellAreaBoxContext *box_context,
+void _gtk_cell_area_box_context_get_group_height (GtkCellAreaBoxContext *box_context,
gint group_idx,
gint *minimum_height,
gint *natural_height);
-void gtk_cell_area_box_context_get_group_width_for_height (GtkCellAreaBoxContext *box_context,
+void _gtk_cell_area_box_context_get_group_width_for_height (GtkCellAreaBoxContext *box_context,
gint group_idx,
gint for_height,
gint *minimum_width,
gint *natural_width);
-GtkRequestedSize *gtk_cell_area_box_context_get_widths (GtkCellAreaBoxContext *box_context,
+GtkRequestedSize *_gtk_cell_area_box_context_get_widths (GtkCellAreaBoxContext *box_context,
gint *n_widths);
-GtkRequestedSize *gtk_cell_area_box_context_get_heights (GtkCellAreaBoxContext *box_context,
+GtkRequestedSize *_gtk_cell_area_box_context_get_heights (GtkCellAreaBoxContext *box_context,
gint *n_heights);
/* Private context/area interaction */
@@ -131,7 +131,7 @@ typedef struct {
} GtkCellAreaBoxAllocation;
GtkCellAreaBoxAllocation *
-gtk_cell_area_box_context_get_orientation_allocs (GtkCellAreaBoxContext *context,
+_gtk_cell_area_box_context_get_orientation_allocs (GtkCellAreaBoxContext *context,
gint *n_allocs);
G_END_DECLS