summaryrefslogtreecommitdiff
path: root/gtk/gtktable.h
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2011-10-14 00:54:01 -0400
committerMatthias Clasen <mclasen@redhat.com>2011-10-14 00:54:01 -0400
commit7cfb3eda1b994b17a387c549eaf6caed6e7c511a (patch)
tree343f04bc17b15076509d2abeced5dbd3ef3f2511 /gtk/gtktable.h
parent520881ac1148666703d82be03c32d2fbfceb4215 (diff)
downloadgtk+-7cfb3eda1b994b17a387c549eaf6caed6e7c511a.tar.gz
Add deprecation annotations for GtkHandleBox and GtkTable
Diffstat (limited to 'gtk/gtktable.h')
-rw-r--r--gtk/gtktable.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/gtk/gtktable.h b/gtk/gtktable.h
index 71a8594480..132b458cbb 100644
--- a/gtk/gtktable.h
+++ b/gtk/gtktable.h
@@ -103,12 +103,15 @@ struct _GtkTableRowCol
GType gtk_table_get_type (void) G_GNUC_CONST;
+GDK_DEPRECATED_FOR(GtkGrid)
GtkWidget* gtk_table_new (guint rows,
guint columns,
gboolean homogeneous);
+GDK_DEPRECATED_FOR(GtkGrid)
void gtk_table_resize (GtkTable *table,
guint rows,
guint columns);
+GDK_DEPRECATED_FOR(GtkGrid)
void gtk_table_attach (GtkTable *table,
GtkWidget *child,
guint left_attach,
@@ -119,31 +122,43 @@ void gtk_table_attach (GtkTable *table,
GtkAttachOptions yoptions,
guint xpadding,
guint ypadding);
+GDK_DEPRECATED_FOR(GtkGrid)
void gtk_table_attach_defaults (GtkTable *table,
GtkWidget *widget,
guint left_attach,
guint right_attach,
guint top_attach,
guint bottom_attach);
+GDK_DEPRECATED_FOR(GtkGrid)
void gtk_table_set_row_spacing (GtkTable *table,
guint row,
guint spacing);
+GDK_DEPRECATED_FOR(GtkGrid)
guint gtk_table_get_row_spacing (GtkTable *table,
guint row);
+GDK_DEPRECATED_FOR(GtkGrid)
void gtk_table_set_col_spacing (GtkTable *table,
guint column,
guint spacing);
+GDK_DEPRECATED_FOR(GtkGrid)
guint gtk_table_get_col_spacing (GtkTable *table,
guint column);
+GDK_DEPRECATED_FOR(GtkGrid)
void gtk_table_set_row_spacings (GtkTable *table,
guint spacing);
+GDK_DEPRECATED_FOR(GtkGrid)
guint gtk_table_get_default_row_spacing (GtkTable *table);
+GDK_DEPRECATED_FOR(GtkGrid)
void gtk_table_set_col_spacings (GtkTable *table,
guint spacing);
+GDK_DEPRECATED_FOR(GtkGrid)
guint gtk_table_get_default_col_spacing (GtkTable *table);
+GDK_DEPRECATED_FOR(GtkGrid)
void gtk_table_set_homogeneous (GtkTable *table,
gboolean homogeneous);
+GDK_DEPRECATED_FOR(GtkGrid)
gboolean gtk_table_get_homogeneous (GtkTable *table);
+GDK_DEPRECATED_FOR(GtkGrid)
void gtk_table_get_size (GtkTable *table,
guint *rows,
guint *columns);